1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-28 01:06:17 +00:00

[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
This commit is contained in:
Ben Woods 2017-06-07 15:21:19 +00:00
parent b442f334cc
commit 2a0c988bf3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=442846
3 changed files with 15 additions and 3 deletions

View File

@ -898,6 +898,7 @@
SUBDIR += py-uptime
SUBDIR += py-zdaemon
SUBDIR += py-zfs
SUBDIR += py3-execnet
SUBDIR += py3-iocage
SUBDIR += py3-pkginfo
SUBDIR += pydf

View File

@ -13,11 +13,11 @@ COMMENT= Distributed Python deployment and communication
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>

View File

@ -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"