Index: head/devel/py-dogpile.cache/Makefile =================================================================== --- head/devel/py-dogpile.cache/Makefile (revision 494623) +++ head/devel/py-dogpile.cache/Makefile (revision 494624) @@ -1,20 +1,24 @@ # Created by: William Grzybowski # $FreeBSD$ PORTNAME= dogpile.cache -PORTVERSION= 0.6.2 +PORTVERSION= 0.7.1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= wg@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Caching front-end based on the Dogpile lock LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gdbm>0:databases/py-gdbm@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}decorator>=0:devel/py-decorator@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}gdbm>=0:databases/py-gdbm@${PY_FLAVOR} USES= python -USE_PYTHON= distutils autoplist +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes .include Index: head/devel/py-dogpile.cache/distinfo =================================================================== --- head/devel/py-dogpile.cache/distinfo (revision 494623) +++ head/devel/py-dogpile.cache/distinfo (revision 494624) @@ -1,3 +1,3 @@ -TIMESTAMP = 1476729031 -SHA256 (dogpile.cache-0.6.2.tar.gz) = 73793471af07af6dc5b3ee015abfaca4220caaa34c615537f5ab007ed150726d -SIZE (dogpile.cache-0.6.2.tar.gz) = 329762 +TIMESTAMP = 1548508622 +SHA256 (dogpile.cache-0.7.1.tar.gz) = 691b7f199561c4bd6e7e96f164a43cc3781b0c87bea29b7d59d859f873fd4a31 +SIZE (dogpile.cache-0.7.1.tar.gz) = 326127 Index: head/devel/py-dogpile.cache/pkg-descr =================================================================== --- head/devel/py-dogpile.cache/pkg-descr (revision 494623) +++ head/devel/py-dogpile.cache/pkg-descr (revision 494624) @@ -1,10 +1,10 @@ A caching API built around the concept of a "dogpile lock", which allows continued access to an expiring data value while a single thread generates a new value. dogpile.cache builds on the dogpile.core locking system, which implements the idea of "allow one creator to write while others read" in the abstract. Overall, dogpile.cache is intended as a replacement to the Beaker caching system, the internals of which are written by the same author. -WWW: https://bitbucket.org/zzzeek/dogpile.cache +WWW: https://github.com/sqlalchemy/dogpile.cache