From owner-svn-ports-all@FreeBSD.ORG Mon Dec 22 10:59:50 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7817F23A; Mon, 22 Dec 2014 10:59:50 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 592CE1116; Mon, 22 Dec 2014 10:59:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBMAxoSQ067531; Mon, 22 Dec 2014 10:59:50 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBMAxncZ067525; Mon, 22 Dec 2014 10:59:49 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201412221059.sBMAxncZ067525@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Mon, 22 Dec 2014 10:59:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r375228 - in head/devel: . py-future 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.18-1 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: Mon, 22 Dec 2014 10:59:50 -0000 Author: koobs Date: Mon Dec 22 10:59:48 2014 New Revision: 375228 URL: https://svnweb.freebsd.org/changeset/ports/375228 QAT: https://qat.redports.org/buildarchive/r375228/ Log: [NEW] devel/py-future: Clean single-source support for Python 3 and 2 future is the missing compatibility layer between Python 2 and Python 3. It allows you to use a single, clean Python 3.x-compatible codebase to support both Python 2 and Python 3 with minimal overhead. WWW: https://python-future.org/ PR: 193094 Submitted by: Muhammad Moinur Rahman <5u623l20 at gmail com> (with changes) Added: head/devel/py-future/ head/devel/py-future/Makefile (contents, props changed) head/devel/py-future/distinfo (contents, props changed) head/devel/py-future/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Dec 22 10:45:20 2014 (r375227) +++ head/devel/Makefile Mon Dec 22 10:59:48 2014 (r375228) @@ -3742,6 +3742,7 @@ SUBDIR += py-fudge SUBDIR += py-funcparserlib SUBDIR += py-fusefs + SUBDIR += py-future SUBDIR += py-futures SUBDIR += py-game SUBDIR += py-gamin Added: head/devel/py-future/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-future/Makefile Mon Dec 22 10:59:48 2014 (r375228) @@ -0,0 +1,22 @@ +# Created by: Muhammad Moinur Rahman<5u623l20@gmail.com> +# $FreeBSD$ + +PORTNAME= future +PORTVERSION= 0.14.3 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= 5u623l20@gmail.com +COMMENT= Clean single-source support for Python 3 and 2 + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +USES= python +USE_PYTHON= autoplist distutils + +regression-test: build + @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test + +.include Added: head/devel/py-future/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-future/distinfo Mon Dec 22 10:59:48 2014 (r375228) @@ -0,0 +1,2 @@ +SHA256 (future-0.14.3.tar.gz) = 62857d51881d97dd5492b9295b9f51d92108a52a4c88e2c40054c1d3e5995be9 +SIZE (future-0.14.3.tar.gz) = 1485390 Added: head/devel/py-future/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-future/pkg-descr Mon Dec 22 10:59:48 2014 (r375228) @@ -0,0 +1,6 @@ +future is the missing compatibility layer between Python 2 and Python 3. + +It allows you to use a single, clean Python 3.x-compatible codebase to +support both Python 2 and Python 3 with minimal overhead. + +WWW: https://python-future.org/