diff options
author | Ben Woods <woodsb02@FreeBSD.org> | 2017-06-07 15:14:00 +0000 |
---|---|---|
committer | Ben Woods <woodsb02@FreeBSD.org> | 2017-06-07 15:14:00 +0000 |
commit | b442f334ccc008aed97399593ef376c1d7cdb575 (patch) | |
tree | 40c22bfa6b7ae6dedf34a7d435d2750c4c4587d5 | |
parent | [NEW] net/py3-urllib3: Create Python 3.x version of port (diff) |
[NEW] devel/py3-apipkg: 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
Notes
Notes:
svn path=/head/; revision=442845
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/py-apipkg/Makefile | 2 | ||||
-rw-r--r-- | devel/py3-apipkg/Makefile | 8 |
3 files changed, 10 insertions, 1 deletions
diff --git a/devel/Makefile b/devel/Makefile index f46bedd1ca39..924977b52512 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -4940,6 +4940,7 @@ SUBDIR += py-zope.viewlet SUBDIR += py27-setuptools SUBDIR += py3-Jinja2 + SUBDIR += py3-apipkg SUBDIR += py3-babel SUBDIR += py3-cffi SUBDIR += py3-click diff --git a/devel/py-apipkg/Makefile b/devel/py-apipkg/Makefile index 2ae3cabd7339..90619cfb35ce 100644 --- a/devel/py-apipkg/Makefile +++ b/devel/py-apipkg/Makefile @@ -14,7 +14,7 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USES= python +USES?= python USE_PYTHON= autoplist concurrent distutils .include <bsd.port.mk> diff --git a/devel/py3-apipkg/Makefile b/devel/py3-apipkg/Makefile new file mode 100644 index 000000000000..14526548e67b --- /dev/null +++ b/devel/py3-apipkg/Makefile @@ -0,0 +1,8 @@ +# Created by: Ben Woods <woodsb02@FreeBSD.org> +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-apipkg + +USES= python:3.1+ + +.include "${MASTERDIR}/Makefile" |