Date: Wed, 7 Jun 2017 15:51:07 +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: r442851 - in head/devel: . py-pytest-xdist py3-pytest-xdist Message-ID: <201706071551.v57Fp7qq061506@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: woodsb02 Date: Wed Jun 7 15:51:07 2017 New Revision: 442851 URL: https://svnweb.freebsd.org/changeset/ports/442851 Log: [NEW] devel/py3-pytest-xdist: 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/devel/py3-pytest-xdist/ head/devel/py3-pytest-xdist/Makefile (contents, props changed) Modified: head/devel/Makefile head/devel/py-pytest-xdist/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Jun 7 15:45:09 2017 (r442850) +++ head/devel/Makefile Wed Jun 7 15:51:07 2017 (r442851) @@ -4979,6 +4979,7 @@ SUBDIR += py3-pylru-cache SUBDIR += py3-pytest SUBDIR += py3-pytest-runner + SUBDIR += py3-pytest-xdist SUBDIR += py3-python-magic SUBDIR += py3-pytz SUBDIR += py3-rubymarshal Modified: head/devel/py-pytest-xdist/Makefile ============================================================================== --- head/devel/py-pytest-xdist/Makefile Wed Jun 7 15:45:09 2017 (r442850) +++ head/devel/py-pytest-xdist/Makefile Wed Jun 7 15:51:07 2017 (r442851) @@ -13,14 +13,14 @@ COMMENT= Py.test plugin for distributed testing and lo LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>=0:devel/py-setuptools_scm -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}execnet>=1.1:sysutils/py-execnet \ +BUILD_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>=0:devel/py-setuptools_scm +RUN_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}execnet>=1.1:sysutils/py-execnet \ ${PYTHON_PKGNAMEPREFIX}pytest>=2.4.2:devel/py-pytest \ ${PYTHON_PKGNAMEPREFIX}py>=1.4.22:devel/py-py -TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=2.5.1:devel/py-pytest \ +TEST_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}pytest>=2.5.1:devel/py-pytest \ ${PYTHON_PKGNAMEPREFIX}pexpect>0:misc/py-pexpect -USES= python +USES?= python USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes Added: head/devel/py3-pytest-xdist/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py3-pytest-xdist/Makefile Wed Jun 7 15:51:07 2017 (r442851) @@ -0,0 +1,16 @@ +# Created by: Ben Woods <woodsb02@FreeBSD.org> +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-pytest-xdist + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>=0:devel/py3-setuptools_scm +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}execnet>=1.1:sysutils/py3-execnet \ + ${PYTHON_PKGNAMEPREFIX}pytest>=2.4.2:devel/py3-pytest \ + ${PYTHON_PKGNAMEPREFIX}py>=1.4.22:devel/py3-py +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=2.5.1:devel/py3-pytest \ + ${PYTHON_PKGNAMEPREFIX}pexpect>0:misc/py3-pexpect + +USES= python:3.3+ + +.include "${MASTERDIR}/Makefile" +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201706071551.v57Fp7qq061506>