Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 7 Jun 2017 15:21:19 +0000 (UTC)
From:      Ben Woods <woodsb02@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r442846 - in head/sysutils: . py-execnet py3-execnet
Message-ID:  <201706071521.v57FLJex051621@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: woodsb02
Date: Wed Jun  7 15:21:19 2017
New Revision: 442846
URL: https://svnweb.freebsd.org/changeset/ports/442846

Log:
  [NEW] sysutils/py3-execnet: Create Python 3.x version of port
  
  The latest www/py-requests update [1] unbundled its dependencies, now
  requiring chardet, idna, urllib3 and certifi from ports.
  
  www/py3-requests port was not tested during QA, which would have highlighted
  the need for many new py3-* ports (and their dependencies).
  
  This change creates one of those ports.
  
  [1] https://svnweb.freebsd.org/changeset/ports/442565
  
  PR:		219833

Added:
  head/sysutils/py3-execnet/
  head/sysutils/py3-execnet/Makefile   (contents, props changed)
Modified:
  head/sysutils/Makefile
  head/sysutils/py-execnet/Makefile

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Wed Jun  7 15:14:00 2017	(r442845)
+++ head/sysutils/Makefile	Wed Jun  7 15:21:19 2017	(r442846)
@@ -898,6 +898,7 @@
     SUBDIR += py-uptime
     SUBDIR += py-zdaemon
     SUBDIR += py-zfs
+    SUBDIR += py3-execnet
     SUBDIR += py3-iocage
     SUBDIR += py3-pkginfo
     SUBDIR += pydf

Modified: head/sysutils/py-execnet/Makefile
==============================================================================
--- head/sysutils/py-execnet/Makefile	Wed Jun  7 15:14:00 2017	(r442845)
+++ head/sysutils/py-execnet/Makefile	Wed Jun  7 15:21:19 2017	(r442846)
@@ -13,11 +13,11 @@ COMMENT=	Distributed Python deployment and communicati
 LICENSE=	MIT
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}setuptools_scm>=0:devel/py-setuptools_scm
-RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}apipkg>=1.4:devel/py-apipkg
+BUILD_DEPENDS?=	${PYTHON_PKGNAMEPREFIX}setuptools_scm>=0:devel/py-setuptools_scm
+RUN_DEPENDS?=	${PYTHON_PKGNAMEPREFIX}apipkg>=1.4:devel/py-apipkg
 
 NO_ARCH=	yes
-USES=		python
+USES?=		python
 USE_PYTHON=	autoplist concurrent distutils
 
 .include <bsd.port.mk>

Added: head/sysutils/py3-execnet/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/py3-execnet/Makefile	Wed Jun  7 15:21:19 2017	(r442846)
@@ -0,0 +1,11 @@
+# Created by: Ben Woods <woodsb02@FreeBSD.org>
+# $FreeBSD$
+
+MASTERDIR=	${.CURDIR}/../py-execnet
+
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}setuptools_scm>=0:devel/py3-setuptools_scm
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}apipkg>=1.4:devel/py3-apipkg
+
+USES=		python:3.2+
+
+.include "${MASTERDIR}/Makefile"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201706071521.v57FLJex051621>