svn commit: r443049 - in head/devel: . py-virtualenv py3-virtualenv

Ben Woods woodsb02 at FreeBSD.org
Sat Jun 10 01:50:07 UTC 2017


Author: woodsb02
Date: Sat Jun 10 01:50:05 2017
New Revision: 443049
URL: https://svnweb.freebsd.org/changeset/ports/443049

Log:
  [NEW] devel/py3-virtualenv: Create Python 3.x version of this port
  
  PR:		219833

Added:
  head/devel/py3-virtualenv/
  head/devel/py3-virtualenv/Makefile   (contents, props changed)
Modified:
  head/devel/Makefile
  head/devel/py-virtualenv/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Jun 10 01:25:30 2017	(r443048)
+++ head/devel/Makefile	Sat Jun 10 01:50:05 2017	(r443049)
@@ -4995,6 +4995,7 @@
     SUBDIR += py3-threema-msgapi
     SUBDIR += py3-urwid
     SUBDIR += py3-vcversioner
+    SUBDIR += py3-virtualenv
     SUBDIR += py3-wcwidth
     SUBDIR += py3-xdg
     SUBDIR += py3-yaml

Modified: head/devel/py-virtualenv/Makefile
==============================================================================
--- head/devel/py-virtualenv/Makefile	Sat Jun 10 01:25:30 2017	(r443048)
+++ head/devel/py-virtualenv/Makefile	Sat Jun 10 01:50:05 2017	(r443049)
@@ -10,14 +10,14 @@ COMMENT=	Tool for creating isolated Python environment
 
 LICENSE=	MIT
 
-TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest \
+TEST_DEPENDS?=	${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest \
 		${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock
 
 OPTIONS_DEFINE=	DOCS
 
-DOCS_BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx
+DOCS_BUILD_DEPENDS?=	${PYTHON_PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx
 
-USES=		python
+USES?=		python
 USE_GITHUB=	yes
 USE_PYTHON=	autoplist concurrent distutils
 

Added: head/devel/py3-virtualenv/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py3-virtualenv/Makefile	Sat Jun 10 01:50:05 2017	(r443049)
@@ -0,0 +1,13 @@
+# Created by: Ben Woods <woodsb02 at FreeBSD.org>
+# $FreeBSD$
+
+MASTERDIR=	${.CURDIR}/../py-virtualenv
+
+TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py3-pytest \
+		${PYTHON_PKGNAMEPREFIX}mock>0:devel/py3-mock
+
+DOCS_BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py3-sphinx
+
+USES=		python:3.3+
+
+.include "${MASTERDIR}/Makefile"


More information about the svn-ports-all mailing list