From owner-svn-ports-head@freebsd.org Sat Jun 10 02:19:06 2017 Return-Path: Delivered-To: svn-ports-head@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 42F80C0AE1E; Sat, 10 Jun 2017 02:19:06 +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 1D029927; Sat, 10 Jun 2017 02:19:06 +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 v5A2J5PM011315; Sat, 10 Jun 2017 02:19:05 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5A2J5j8011312; Sat, 10 Jun 2017 02:19:05 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201706100219.v5A2J5j8011312@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Sat, 10 Jun 2017 02:19:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443059 - in head/devel: . py-pip py3-pip X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Jun 2017 02:19:06 -0000 Author: woodsb02 Date: Sat Jun 10 02:19:04 2017 New Revision: 443059 URL: https://svnweb.freebsd.org/changeset/ports/443059 Log: [NEW] devel/py3-pip: Add Python 3.x version of this port PR: 219833 PR: 212950 Added: head/devel/py3-pip/ head/devel/py3-pip/Makefile (contents, props changed) Modified: head/devel/Makefile head/devel/py-pip/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Jun 10 02:15:33 2017 (r443058) +++ head/devel/Makefile Sat Jun 10 02:19:04 2017 (r443059) @@ -4969,6 +4969,7 @@ SUBDIR += py3-lxml SUBDIR += py3-mccabe SUBDIR += py3-nose + SUBDIR += py3-pip SUBDIR += py3-ply SUBDIR += py3-pretend SUBDIR += py3-prompt_toolkit Modified: head/devel/py-pip/Makefile ============================================================================== --- head/devel/py-pip/Makefile Sat Jun 10 02:15:33 2017 (r443058) +++ head/devel/py-pip/Makefile Sat Jun 10 02:19:04 2017 (r443059) @@ -13,7 +13,7 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt # Tests also need bzr, git, otherwise they fail -TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest \ +TEST_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest \ ${PYTHON_PKGNAMEPREFIX}pytest-capturelog>0:devel/py-pytest-capturelog \ ${PYTHON_PKGNAMEPREFIX}pytest-timeout>0:devel/py-pytest-timeout \ ${PYTHON_PKGNAMEPREFIX}pytest-xdist>0:devel/py-pytest-xdist \ @@ -27,13 +27,13 @@ TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py OPTIONS_DEFINE= DOCS -DOCS_BUILD_DEPENDS= sphinx-build:textproc/py-sphinx +DOCS_BUILD_DEPENDS?= sphinx-build:textproc/py-sphinx DOCS_PORTDOCS= * DOCS_VARS= PYDISTUTILS_BUILD_TARGET=build_sphinx \ PYDISTUTILS_BUILDARGS="-n --all-files --fresh-env" NO_ARCH= yes -USES= python shebangfix +USES?= python shebangfix USE_GITHUB= yes USE_PYTHON= autoplist concurrent distutils Added: head/devel/py3-pip/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py3-pip/Makefile Sat Jun 10 02:19:04 2017 (r443059) @@ -0,0 +1,22 @@ +# Created by: Ben Woods +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-pip + +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py3-pytest \ + ${PYTHON_PKGNAMEPREFIX}pytest-capturelog>0:devel/py3-pytest-capturelog \ + ${PYTHON_PKGNAMEPREFIX}pytest-timeout>0:devel/py3-pytest-timeout \ + ${PYTHON_PKGNAMEPREFIX}pytest-xdist>0:devel/py3-pytest-xdist \ + ${PYTHON_PKGNAMEPREFIX}virtualenv>=1.10:devel/py3-virtualenv \ + ${PYTHON_PKGNAMEPREFIX}scripttest>=1.3:devel/py3-scripttest \ + ${PYTHON_PKGNAMEPREFIX}mock>0:devel/py3-mock \ + ${PYTHON_PKGNAMEPREFIX}pretend>0:devel/py3-pretend \ + ${PYTHON_PKGNAMEPREFIX}freezegun>0:devel/py3-freezegun \ + git>0:devel/git \ + bzr>0:devel/bzr + +DOCS_BUILD_DEPENDS= sphinx-build:textproc/py3-sphinx + +USES= python:3.3+ shebangfix + +.include "${MASTERDIR}/Makefile"