From owner-svn-ports-head@freebsd.org Thu Nov 12 13:14:49 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6D793A2BAB6; Thu, 12 Nov 2015 13:14:49 +0000 (UTC) (envelope-from wg@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 mx1.freebsd.org (Postfix) with ESMTPS id 1A7B2153A; Thu, 12 Nov 2015 13:14:49 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tACDEmqo029830; Thu, 12 Nov 2015 13:14:48 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tACDElls029826; Thu, 12 Nov 2015 13:14:47 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201511121314.tACDElls029826@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Thu, 12 Nov 2015 13:14:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r401344 - in head/devel: . py-functools32 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Nov 2015 13:14:49 -0000 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 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