summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--devel/Makefile1
-rw-r--r--devel/py-futures/Makefile19
-rw-r--r--devel/py-futures/distinfo2
-rw-r--r--devel/py-futures/pkg-descr8
4 files changed, 30 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile
index 6b731c72aa9b..2dc1f329f05b 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -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
diff --git a/devel/py-futures/Makefile b/devel/py-futures/Makefile
new file mode 100644
index 000000000000..858331eb097b
--- /dev/null
+++ b/devel/py-futures/Makefile
@@ -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>
diff --git a/devel/py-futures/distinfo b/devel/py-futures/distinfo
new file mode 100644
index 000000000000..e31c7e3352e9
--- /dev/null
+++ b/devel/py-futures/distinfo
@@ -0,0 +1,2 @@
+SHA256 (futures-2.1.5.tar.gz) = 8f5a627d3aee94cc1859a942965fdebb714be8cdd2366d819cb8fb9b7cc628a6
+SIZE (futures-2.1.5.tar.gz) = 11954
diff --git a/devel/py-futures/pkg-descr b/devel/py-futures/pkg-descr
new file mode 100644
index 000000000000..d6d89ae688e8
--- /dev/null
+++ b/devel/py-futures/pkg-descr
@@ -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/