From owner-svn-ports-all@freebsd.org Sun Apr 1 00:32:18 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2F751F6C19C; Sun, 1 Apr 2018 00:32:18 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D699B7F408; Sun, 1 Apr 2018 00:32:17 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D172C1F38F; Sun, 1 Apr 2018 00:32:17 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w310WH0a029948; Sun, 1 Apr 2018 00:32:17 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w310WHK7029944; Sun, 1 Apr 2018 00:32:17 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201804010032.w310WHK7029944@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 1 Apr 2018 00:32:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466112 - in head/devel: . py-fastcache X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . py-fastcache X-SVN-Commit-Revision: 466112 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Apr 2018 00:32:18 -0000 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 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