Index: head/devel/py-futures/Makefile =================================================================== --- head/devel/py-futures/Makefile (revision 390533) +++ head/devel/py-futures/Makefile (revision 390534) @@ -1,18 +1,22 @@ # Created by: Kubilay Kocak # $FreeBSD$ PORTNAME= futures -PORTVERSION= 2.1.6 +PORTVERSION= 3.0.3 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= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE USES= python:2 -USE_PYTHON= distutils autoplist +USE_PYTHON= autoplist distutils + +regression-test: build + @cd ${WRKSRC} && ${PYTHON_CMD} test_futures.py .include Index: head/devel/py-futures/distinfo =================================================================== --- head/devel/py-futures/distinfo (revision 390533) +++ head/devel/py-futures/distinfo (revision 390534) @@ -1,2 +1,2 @@ -SHA256 (futures-2.1.6.tar.gz) = 33f39102b631fa0a030b24c4341ba1f48558e435946d6735d47fe1f739d757c4 -SIZE (futures-2.1.6.tar.gz) = 26445 +SHA256 (futures-3.0.3.tar.gz) = 2fe2342bb4fe8b8e217f0d21b5921cbe5408bf966d9f92025e707e881b198bed +SIZE (futures-3.0.3.tar.gz) = 24959 Index: head/devel/py-futures/pkg-descr =================================================================== --- head/devel/py-futures/pkg-descr (revision 390533) +++ head/devel/py-futures/pkg-descr (revision 390534) @@ -1,8 +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/ +WWW: https://github.com/agronholm/pythonfutures