From owner-svn-ports-all@FreeBSD.ORG Sat Nov 16 05:06:39 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 764DB97A; Sat, 16 Nov 2013 05:06:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4C6062C7C; Sat, 16 Nov 2013 05:06:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rAG56dXO046611; Sat, 16 Nov 2013 05:06:39 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rAG56cLX046607; Sat, 16 Nov 2013 05:06:38 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201311160506.rAG56cLX046607@svn.freebsd.org> From: Kubilay Kocak Date: Sat, 16 Nov 2013 05:06:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r333982 - in head/devel: . py-futures X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Nov 2013 05:06:39 -0000 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 +# $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 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/