svn commit: r375228 - in head/devel: . py-future

Kubilay Kocak koobs at FreeBSD.org
Mon Dec 22 10:59:50 UTC 2014


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 at gmail.com>
+# $FreeBSD$
+
+PORTNAME=	future
+PORTVERSION=	0.14.3
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	5u623l20 at 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 <bsd.port.mk>

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/


More information about the svn-ports-head mailing list