pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/devel/py-dogpile-cache Import py-dogpile-cache-0.6.2 a...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/936c1548bdcc
branches:  trunk
changeset: 361077:936c1548bdcc
user:      leot <leot%pkgsrc.org@localhost>
date:      Fri Apr 14 13:53:25 2017 +0000

description:
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.

diffstat:

 devel/py-dogpile-cache/DESCR    |  17 +++++++++
 devel/py-dogpile-cache/Makefile |  16 ++++++++
 devel/py-dogpile-cache/PLIST    |  73 +++++++++++++++++++++++++++++++++++++++++
 devel/py-dogpile-cache/distinfo |   6 +++
 4 files changed, 112 insertions(+), 0 deletions(-)

diffs (128 lines):

diff -r de55478e5568 -r 936c1548bdcc devel/py-dogpile-cache/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-dogpile-cache/DESCR      Fri Apr 14 13:53:25 2017 +0000
@@ -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.
diff -r de55478e5568 -r 936c1548bdcc devel/py-dogpile-cache/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-dogpile-cache/Makefile   Fri Apr 14 13:53:25 2017 +0000
@@ -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"
diff -r de55478e5568 -r 936c1548bdcc devel/py-dogpile-cache/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-dogpile-cache/PLIST      Fri Apr 14 13:53:25 2017 +0000
@@ -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
diff -r de55478e5568 -r 936c1548bdcc devel/py-dogpile-cache/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-dogpile-cache/distinfo   Fri Apr 14 13:53:25 2017 +0000
@@ -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