Date: Sat, 16 Nov 2013 05:06:38 +0000 (UTC) From: Kubilay Kocak <koobs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r333982 - in head/devel: . py-futures Message-ID: <201311160506.rAG56cLX046607@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: koobs Date: Sat Nov 16 05:06:38 2013 New Revision: 333982 URL: http://svnweb.freebsd.org/changeset/ports/333982 Log: devel/py-futures: [NEW PORT] Backport of Python 3.2 concurrent.futures module The concurrent.futures module provides a high-level interface for asynchronously executing callables. This is described in PEP-3148 and is included in Python 3.2+ WWW: http://code.google.com/p/pythonfutures/ Added: head/devel/py-futures/ head/devel/py-futures/Makefile (contents, props changed) head/devel/py-futures/distinfo (contents, props changed) head/devel/py-futures/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Nov 16 04:35:59 2013 (r333981) +++ head/devel/Makefile Sat Nov 16 05:06:38 2013 (r333982) @@ -3565,6 +3565,7 @@ SUBDIR += py-five.globalrequest SUBDIR += py-five.localsitemanager SUBDIR += py-flake8 + SUBDIR += py-futures SUBDIR += py-paver SUBDIR += py-pyflakes SUBDIR += py-flask-babel Added: head/devel/py-futures/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-futures/Makefile Sat Nov 16 05:06:38 2013 (r333982) @@ -0,0 +1,19 @@ +# Created by: Kubilay Kocak <koobs@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= futures +PORTVERSION= 2.1.5 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= koobs@FreeBSD.org +COMMENT= Backport of the concurrent.futures package from Python 3.2 + +LICENSE= BSD + +USE_PYTHON= -3.1 +USE_PYDISTUTILS= easy_install +PYDISTUTILS_AUTOPLIST= yes + +.include <bsd.port.mk> Added: head/devel/py-futures/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-futures/distinfo Sat Nov 16 05:06:38 2013 (r333982) @@ -0,0 +1,2 @@ +SHA256 (futures-2.1.5.tar.gz) = 8f5a627d3aee94cc1859a942965fdebb714be8cdd2366d819cb8fb9b7cc628a6 +SIZE (futures-2.1.5.tar.gz) = 11954 Added: head/devel/py-futures/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-futures/pkg-descr Sat Nov 16 05:06:38 2013 (r333982) @@ -0,0 +1,8 @@ +Backport of the concurrent.futures package from Python 3.2 + +The concurrent.futures module provides a high-level interface for +asynchronously executing callables. + +This is described in PEP-3148 and is included in Python 3.2+ + +WWW: http://code.google.com/p/pythonfutures/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311160506.rAG56cLX046607>