Date: Sun, 1 Apr 2018 00:32:17 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466112 - in head/devel: . py-fastcache Message-ID: <201804010032.w310WHK7029944@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Sun Apr 1 00:32:17 2018 New Revision: 466112 URL: https://svnweb.freebsd.org/changeset/ports/466112 Log: New port: devel/py-fastcache: C implementation of Python 3 functools.lru_cache Added: head/devel/py-fastcache/ head/devel/py-fastcache/Makefile (contents, props changed) head/devel/py-fastcache/distinfo (contents, props changed) head/devel/py-fastcache/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Apr 1 00:10:47 2018 (r466111) +++ head/devel/Makefile Sun Apr 1 00:32:17 2018 (r466112) @@ -4434,6 +4434,7 @@ SUBDIR += py-fabric SUBDIR += py-fabric3 SUBDIR += py-fam + SUBDIR += py-fastcache SUBDIR += py-fasteners SUBDIR += py-fastentrypoints SUBDIR += py-fastimport Added: head/devel/py-fastcache/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-fastcache/Makefile Sun Apr 1 00:32:17 2018 (r466112) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= fastcache +PORTVERSION= 1.0.2 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= C implementation of Python 3 functools.lru_cache + +LICENSE= MIT + +USES= python +USE_PYTHON= distutils autoplist + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/fastcache/_lrucache.so + +.include <bsd.port.mk> Added: head/devel/py-fastcache/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-fastcache/distinfo Sun Apr 1 00:32:17 2018 (r466112) @@ -0,0 +1,3 @@ +TIMESTAMP = 1522542172 +SHA256 (fastcache-1.0.2.tar.gz) = 867005774917f999854ffd303fbe3793c30c2dc9279b78ec315dd4e57e4284e6 +SIZE (fastcache-1.0.2.tar.gz) = 19237 Added: head/devel/py-fastcache/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-fastcache/pkg-descr Sun Apr 1 00:32:17 2018 (r466112) @@ -0,0 +1,4 @@ +C implementation of Python 3 functools.lru_cache. Provides speedup of 10-30x +over standard library. Passes test suite from standard library for lru_cache. + +WWW: https://github.com/pbrady/fastcache
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804010032.w310WHK7029944>