Date: Thu, 12 Nov 2015 13:14:47 +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: r401344 - in head/devel: . py-functools32 Message-ID: <201511121314.tACDElls029826@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wg Date: Thu Nov 12 13:14:47 2015 New Revision: 401344 URL: https://svnweb.freebsd.org/changeset/ports/401344 Log: devel/py-functools32: Backport of the functools module from Python 3 for use on 2.7 This is a backport of the Python 3.2 functools module for use on Python versions 2.7 and PyPy. It includes new features lru_cache (Least-recently-used cache decorator). WWW: https://github.com/MiCHiLU/python-functools32 Added: head/devel/py-functools32/ head/devel/py-functools32/Makefile (contents, props changed) head/devel/py-functools32/distinfo (contents, props changed) head/devel/py-functools32/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Nov 12 13:13:00 2015 (r401343) +++ head/devel/Makefile Thu Nov 12 13:14:47 2015 (r401344) @@ -4025,6 +4025,7 @@ SUBDIR += py-fsm SUBDIR += py-fudge SUBDIR += py-funcparserlib + SUBDIR += py-functools32 SUBDIR += py-fusefs SUBDIR += py-future SUBDIR += py-futures Added: head/devel/py-functools32/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-functools32/Makefile Thu Nov 12 13:14:47 2015 (r401344) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= functools32 +PORTVERSION= 3.2.3 +CATEGORIES= devel python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wg@FreeBSD.org +COMMENT= Backport of the functools module from Python 3.2.3 for use on 2.7 + +LICENSE= PSFL + +USE_GITHUB= yes +GH_ACCOUNT= MiCHiLU +GH_PROJECT= python-functools32 +GH_TAGNAME= ad90fa8 + +USES= python:2 +USE_PYTHON= autoplist distutils + +.include <bsd.port.mk> Added: head/devel/py-functools32/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-functools32/distinfo Thu Nov 12 13:14:47 2015 (r401344) @@ -0,0 +1,2 @@ +SHA256 (MiCHiLU-python-functools32-3.2.3-ad90fa8_GH0.tar.gz) = 93cb95e0bf53b84b36857d7d65192f1fab8e632500035203f116301352e12b95 +SIZE (MiCHiLU-python-functools32-3.2.3-ad90fa8_GH0.tar.gz) = 31582 Added: head/devel/py-functools32/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-functools32/pkg-descr Thu Nov 12 13:14:47 2015 (r401344) @@ -0,0 +1,5 @@ +This is a backport of the Python 3.2 functools module for use on Python +versions 2.7 and PyPy. It includes new features lru_cache (Least-recently-used +cache decorator). + +WWW: https://github.com/MiCHiLU/python-functools32
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511121314.tACDElls029826>