Date: Wed, 7 Jun 2017 15:43:29 +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: r442849 - in head/misc: . py-pexpect py3-pexpect Message-ID: <201706071543.v57FhTep060930@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: woodsb02 Date: Wed Jun 7 15:43:29 2017 New Revision: 442849 URL: https://svnweb.freebsd.org/changeset/ports/442849 Log: [NEW] misc/py3-pexpect: 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/misc/py3-pexpect/ head/misc/py3-pexpect/Makefile (contents, props changed) Modified: head/misc/Makefile head/misc/py-pexpect/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Wed Jun 7 15:39:37 2017 (r442848) +++ head/misc/Makefile Wed Jun 7 15:43:29 2017 (r442849) @@ -393,6 +393,7 @@ SUBDIR += py-spdx-lookup SUBDIR += py-tqdm SUBDIR += py-yolk + SUBDIR += py3-pexpect SUBDIR += py3-tqdm SUBDIR += pylize SUBDIR += qbrew Modified: head/misc/py-pexpect/Makefile ============================================================================== --- head/misc/py-pexpect/Makefile Wed Jun 7 15:39:37 2017 (r442848) +++ head/misc/py-pexpect/Makefile Wed Jun 7 15:43:29 2017 (r442849) @@ -12,9 +12,9 @@ COMMENT= Pure Python Expect-like module LICENSE= ISCL -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ptyprocess>=0:sysutils/py-ptyprocess +RUN_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}ptyprocess>=0:sysutils/py-ptyprocess -USES= python +USES?= python USE_PYTHON= distutils autoplist .include <bsd.port.mk> Added: head/misc/py3-pexpect/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py3-pexpect/Makefile Wed Jun 7 15:43:29 2017 (r442849) @@ -0,0 +1,10 @@ +# Created by: Ben Woods <woodsb02@FreeBSD.org> +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-pexpect + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ptyprocess>=0:sysutils/py3-ptyprocess + +USES= python:3.3+ + +.include "${MASTERDIR}/Makefile"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201706071543.v57FhTep060930>