Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 5CCBE7A26D for ; Fri, 14 Apr 2017 13:53:27 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 0F59684DB6; Fri, 14 Apr 2017 13:53:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9455984D7D for ; Fri, 14 Apr 2017 13:53:26 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id GCQ1JAw_ySzj for ; Fri, 14 Apr 2017 13:53:25 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id DBB5F84CDA for ; Fri, 14 Apr 2017 13:53:25 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D9B99FBE4; Fri, 14 Apr 2017 13:53:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1492178005181710" MIME-Version: 1.0 Date: Fri, 14 Apr 2017 13:53:25 +0000 From: "Leonardo Taccari" Subject: CVS commit: pkgsrc/devel/py-dogpile-cache To: pkgsrc-changes@NetBSD.org Reply-To: leot@netbsd.org X-Mailer: log_accum Message-Id: <20170414135325.D9B99FBE4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1492178005181710 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: leot Date: Fri Apr 14 13:53:25 UTC 2017 Added Files: pkgsrc/devel/py-dogpile-cache: DESCR Makefile PLIST distinfo Log Message: Import py-dogpile-cache-0.6.2 as devel/py-dogpile-cache Dogpile consists of two subsystems, one building on top of the other. dogpile provides the concept of a "dogpile lock", a control structure which allows a single thread of execution to be selected as the "creator" of some resource, while allowing other threads of execution to refer to the previous version of this resource as the creation proceeds; if there is no previous version, then those threads block until the object is available. dogpile.cache is a caching API which provides a generic interface to caching backends of any variety, and additionally provides API hooks which integrate these cache backends with the locking mechanism of dogpile. Overall, dogpile.cache is intended as a replacement to the Beaker caching system, the internals of which are written by the same author. All the ideas of Beaker which "work" are re- implemented in dogpile.cache in a more efficient and succinct manner, and all the cruft (Beaker's internals were first written in 2005) relegated to the trash heap. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/devel/py-dogpile-cache/DESCR \ pkgsrc/devel/py-dogpile-cache/Makefile \ pkgsrc/devel/py-dogpile-cache/PLIST \ pkgsrc/devel/py-dogpile-cache/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1492178005181710 Content-Disposition: inline Content-Length: 5934 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/devel/py-dogpile-cache/DESCR diff -u /dev/null pkgsrc/devel/py-dogpile-cache/DESCR:1.1 --- /dev/null Fri Apr 14 13:53:25 2017 +++ pkgsrc/devel/py-dogpile-cache/DESCR Fri Apr 14 13:53:25 2017 @@ -0,0 +1,17 @@ +Dogpile consists of two subsystems, one building on top of the other. + +dogpile provides the concept of a "dogpile lock", a control structure which +allows a single thread of execution to be selected as the "creator" of some +resource, while allowing other threads of execution to refer to the previous +version of this resource as the creation proceeds; if there is no previous +version, then those threads block until the object is available. + +dogpile.cache is a caching API which provides a generic interface to caching +backends of any variety, and additionally provides API hooks which integrate +these cache backends with the locking mechanism of dogpile. + +Overall, dogpile.cache is intended as a replacement to the Beaker caching +system, the internals of which are written by the same author. All the ideas of +Beaker which "work" are re- implemented in dogpile.cache in a more efficient and +succinct manner, and all the cruft (Beaker's internals were first written in +2005) relegated to the trash heap. Index: pkgsrc/devel/py-dogpile-cache/Makefile diff -u /dev/null pkgsrc/devel/py-dogpile-cache/Makefile:1.1 --- /dev/null Fri Apr 14 13:53:25 2017 +++ pkgsrc/devel/py-dogpile-cache/Makefile Fri Apr 14 13:53:25 2017 @@ -0,0 +1,16 @@ +# $NetBSD: Makefile,v 1.1 2017/04/14 13:53:25 leot Exp $ + +DISTNAME= dogpile.cache-0.6.2 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/./-/} +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_PYPI:=d/dogpile.cache/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://bitbucket.org/zzzeek/dogpile.cache +COMMENT= Caching front-end based on the Dogpile lock +LICENSE= modified-bsd + +USE_LANGUAGES= # none + +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-dogpile-cache/PLIST diff -u /dev/null pkgsrc/devel/py-dogpile-cache/PLIST:1.1 --- /dev/null Fri Apr 14 13:53:25 2017 +++ pkgsrc/devel/py-dogpile-cache/PLIST Fri Apr 14 13:53:25 2017 @@ -0,0 +1,73 @@ +@comment $NetBSD: PLIST,v 1.1 2017/04/14 13:53:25 leot Exp $ +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/dogpile/__init__.py +${PYSITELIB}/dogpile/__init__.pyc +${PYSITELIB}/dogpile/__init__.pyo +${PYSITELIB}/dogpile/cache/__init__.py +${PYSITELIB}/dogpile/cache/__init__.pyc +${PYSITELIB}/dogpile/cache/__init__.pyo +${PYSITELIB}/dogpile/cache/api.py +${PYSITELIB}/dogpile/cache/api.pyc +${PYSITELIB}/dogpile/cache/api.pyo +${PYSITELIB}/dogpile/cache/backends/__init__.py +${PYSITELIB}/dogpile/cache/backends/__init__.pyc +${PYSITELIB}/dogpile/cache/backends/__init__.pyo +${PYSITELIB}/dogpile/cache/backends/file.py +${PYSITELIB}/dogpile/cache/backends/file.pyc +${PYSITELIB}/dogpile/cache/backends/file.pyo +${PYSITELIB}/dogpile/cache/backends/memcached.py +${PYSITELIB}/dogpile/cache/backends/memcached.pyc +${PYSITELIB}/dogpile/cache/backends/memcached.pyo +${PYSITELIB}/dogpile/cache/backends/memory.py +${PYSITELIB}/dogpile/cache/backends/memory.pyc +${PYSITELIB}/dogpile/cache/backends/memory.pyo +${PYSITELIB}/dogpile/cache/backends/null.py +${PYSITELIB}/dogpile/cache/backends/null.pyc +${PYSITELIB}/dogpile/cache/backends/null.pyo +${PYSITELIB}/dogpile/cache/backends/redis.py +${PYSITELIB}/dogpile/cache/backends/redis.pyc +${PYSITELIB}/dogpile/cache/backends/redis.pyo +${PYSITELIB}/dogpile/cache/exception.py +${PYSITELIB}/dogpile/cache/exception.pyc +${PYSITELIB}/dogpile/cache/exception.pyo +${PYSITELIB}/dogpile/cache/plugins/__init__.py +${PYSITELIB}/dogpile/cache/plugins/__init__.pyc +${PYSITELIB}/dogpile/cache/plugins/__init__.pyo +${PYSITELIB}/dogpile/cache/plugins/mako_cache.py +${PYSITELIB}/dogpile/cache/plugins/mako_cache.pyc +${PYSITELIB}/dogpile/cache/plugins/mako_cache.pyo +${PYSITELIB}/dogpile/cache/proxy.py +${PYSITELIB}/dogpile/cache/proxy.pyc +${PYSITELIB}/dogpile/cache/proxy.pyo +${PYSITELIB}/dogpile/cache/region.py +${PYSITELIB}/dogpile/cache/region.pyc +${PYSITELIB}/dogpile/cache/region.pyo +${PYSITELIB}/dogpile/cache/util.py +${PYSITELIB}/dogpile/cache/util.pyc +${PYSITELIB}/dogpile/cache/util.pyo +${PYSITELIB}/dogpile/core.py +${PYSITELIB}/dogpile/core.pyc +${PYSITELIB}/dogpile/core.pyo +${PYSITELIB}/dogpile/lock.py +${PYSITELIB}/dogpile/lock.pyc +${PYSITELIB}/dogpile/lock.pyo +${PYSITELIB}/dogpile/util/__init__.py +${PYSITELIB}/dogpile/util/__init__.pyc +${PYSITELIB}/dogpile/util/__init__.pyo +${PYSITELIB}/dogpile/util/compat.py +${PYSITELIB}/dogpile/util/compat.pyc +${PYSITELIB}/dogpile/util/compat.pyo +${PYSITELIB}/dogpile/util/langhelpers.py +${PYSITELIB}/dogpile/util/langhelpers.pyc +${PYSITELIB}/dogpile/util/langhelpers.pyo +${PYSITELIB}/dogpile/util/nameregistry.py +${PYSITELIB}/dogpile/util/nameregistry.pyc +${PYSITELIB}/dogpile/util/nameregistry.pyo +${PYSITELIB}/dogpile/util/readwrite_lock.py +${PYSITELIB}/dogpile/util/readwrite_lock.pyc +${PYSITELIB}/dogpile/util/readwrite_lock.pyo Index: pkgsrc/devel/py-dogpile-cache/distinfo diff -u /dev/null pkgsrc/devel/py-dogpile-cache/distinfo:1.1 --- /dev/null Fri Apr 14 13:53:25 2017 +++ pkgsrc/devel/py-dogpile-cache/distinfo Fri Apr 14 13:53:25 2017 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2017/04/14 13:53:25 leot Exp $ + +SHA1 (dogpile.cache-0.6.2.tar.gz) = dc4340534e8400d2911400b1901a45c0cfb7c70d +RMD160 (dogpile.cache-0.6.2.tar.gz) = 933f8d80e4613e15f43c09b11eaf2b20060bd217 +SHA512 (dogpile.cache-0.6.2.tar.gz) = 5882e0a355db0bec9c1a0836034481d39008051ff42f48c85679ac70a42c6366d1bcbd01ecd3ca868d7ad725197e626e52b004d62269827e2605a4ecd491ce99 +Size (dogpile.cache-0.6.2.tar.gz) = 329762 bytes --_----------=_1492178005181710--