Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 30 Oct 2013 00:00:50 +0000 (UTC)
From:      William Grzybowski <wg@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r332025 - in head/devel: . py-dogpile.cache
Message-ID:  <201310300000.r9U00oUL095121@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: wg
Date: Wed Oct 30 00:00:50 2013
New Revision: 332025
URL: http://svnweb.freebsd.org/changeset/ports/332025

Log:
  devel/py-dogpile.cache: Caching front-end based on the Dogpile lock
  
  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

Added:
  head/devel/py-dogpile.cache/
  head/devel/py-dogpile.cache/Makefile   (contents, props changed)
  head/devel/py-dogpile.cache/distinfo   (contents, props changed)
  head/devel/py-dogpile.cache/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue Oct 29 23:56:50 2013	(r332024)
+++ head/devel/Makefile	Wed Oct 30 00:00:50 2013	(r332025)
@@ -3514,6 +3514,7 @@
     SUBDIR += py-distribute
     SUBDIR += py-distutils-extra
     SUBDIR += py-docopt
+    SUBDIR += py-dogpile.cache
     SUBDIR += py-dogpile.core
     SUBDIR += py-durus
     SUBDIR += py-dynrules

Added: head/devel/py-dogpile.cache/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-dogpile.cache/Makefile	Wed Oct 30 00:00:50 2013	(r332025)
@@ -0,0 +1,20 @@
+# Created by: William Grzybowski <william88@gmail.com>
+# $FreeBSD$
+
+PORTNAME=	dogpile.cache
+PORTVERSION=	0.5.1
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	wg@FreeBSD.org
+COMMENT=	Caching front-end based on the Dogpile lock
+
+LICENSE=	BSD
+
+USE_PYTHON=	yes
+USE_PYDISTUTILS=easy_install
+PYDISTUTILS_AUTOPLIST=	yes
+NO_STAGE=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-dogpile.cache/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-dogpile.cache/distinfo	Wed Oct 30 00:00:50 2013	(r332025)
@@ -0,0 +1,2 @@
+SHA256 (dogpile.cache-0.5.1.tar.gz) = 1f3165222bc23418cb9d3f1a2c9d554a091f412e5bc871ea0c48a19b576d06c0
+SIZE (dogpile.cache-0.5.1.tar.gz) = 169450

Added: head/devel/py-dogpile.cache/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-dogpile.cache/pkg-descr	Wed Oct 30 00:00:50 2013	(r332025)
@@ -0,0 +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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310300000.r9U00oUL095121>