From owner-svn-ports-all@freebsd.org Wed Jun 7 15:43:30 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A2505C78503; Wed, 7 Jun 2017 15:43:30 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6FE06787B7; Wed, 7 Jun 2017 15:43:30 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v57FhTGY060933; Wed, 7 Jun 2017 15:43:29 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v57FhTep060930; Wed, 7 Jun 2017 15:43:29 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201706071543.v57FhTep060930@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Wed, 7 Jun 2017 15:43:29 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2017 15:43:30 -0000 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 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 +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-pexpect + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ptyprocess>=0:sysutils/py3-ptyprocess + +USES= python:3.3+ + +.include "${MASTERDIR}/Makefile"