Date: Tue, 20 Sep 2016 15:25:28 +0000 (UTC) From: Philip Paeps <philip@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422506 - in head/devel: . py-pylru-cache Message-ID: <201609201525.u8KFPStN063398@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: philip Date: Tue Sep 20 15:25:28 2016 New Revision: 422506 URL: https://svnweb.freebsd.org/changeset/ports/422506 Log: Add devel/py-pylru-cache. This is an LRU cache for Python. Provides a dictionary-like object as well as a method decorator. Added: head/devel/py-pylru-cache/ head/devel/py-pylru-cache/Makefile (contents, props changed) head/devel/py-pylru-cache/distinfo (contents, props changed) head/devel/py-pylru-cache/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Sep 20 15:19:52 2016 (r422505) +++ head/devel/Makefile Tue Sep 20 15:25:28 2016 (r422506) @@ -4356,6 +4356,7 @@ SUBDIR += py-pykde4 SUBDIR += py-pykdeuic4 SUBDIR += py-pyke + SUBDIR += py-pylru-cache SUBDIR += py-pymarc SUBDIR += py-pympler SUBDIR += py-pymtbl Added: head/devel/py-pylru-cache/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pylru-cache/Makefile Tue Sep 20 15:25:28 2016 (r422506) @@ -0,0 +1,19 @@ +# Created by: philip@FreeBSD.org +# $FreeBSD$ + +PORTNAME= pylru-cache +PORTVERSION= 0.1.4 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= py_lru_cache-${PORTVERSION} + +MAINTAINER= philip@FreeBSD.org +COMMENT= LRU cache for Python + +LICENSE= BSD + +USES?= python +USE_PYTHON= distutils autoplist + +.include <bsd.port.mk> Added: head/devel/py-pylru-cache/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pylru-cache/distinfo Tue Sep 20 15:25:28 2016 (r422506) @@ -0,0 +1,3 @@ +TIMESTAMP = 1474303987 +SHA256 (py_lru_cache-0.1.4.tar.gz) = 02df33684e13e1a78987bf9f8b0ac90210952857d9d12d1cf83fd0c906456af0 +SIZE (py_lru_cache-0.1.4.tar.gz) = 2969 Added: head/devel/py-pylru-cache/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pylru-cache/pkg-descr Tue Sep 20 15:25:28 2016 (r422506) @@ -0,0 +1,4 @@ +LRU cache for python. Provides a dictionary-like object as well + as a method decorator. + +WWW: https://pypi.python.org/pypi/py_lru_cache/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609201525.u8KFPStN063398>