pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/py-dogpile-cache



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.

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@localhost
+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



Home | Main Index | Thread Index | Old Index