From owner-svn-ports-head@FreeBSD.ORG Mon Feb 10 09:55:20 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E6ABFC0E; Mon, 10 Feb 2014 09:55:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D1EC91926; Mon, 10 Feb 2014 09:55:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1A9tJvI039246; Mon, 10 Feb 2014 09:55:19 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1A9tJY2039241; Mon, 10 Feb 2014 09:55:19 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201402100955.s1A9tJY2039241@svn.freebsd.org> From: Kubilay Kocak Date: Mon, 10 Feb 2014 09:55:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r343613 - in head/devel/py-tox: . files 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.17 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: Mon, 10 Feb 2014 09:55:20 -0000 Author: koobs Date: Mon Feb 10 09:55:18 2014 New Revision: 343613 URL: http://svnweb.freebsd.org/changeset/ports/343613 QAT: https://qat.redports.org/buildarchive/r343613/ Log: devel/py-tox: Update to 1.7.0 & modernise - Update to 1.7.0 - Align RUN_DEPENDS min versions to upstream - Deprecate easy_install target - Use OPTIONS helpers - Remove now unecessary setup.py patch - Reformat pkg-descr Changes: http://tox.readthedocs.org/en/latest/changelog.html Deleted: head/devel/py-tox/files/ Modified: head/devel/py-tox/Makefile head/devel/py-tox/distinfo head/devel/py-tox/pkg-descr Modified: head/devel/py-tox/Makefile ============================================================================== --- head/devel/py-tox/Makefile Mon Feb 10 09:47:49 2014 (r343612) +++ head/devel/py-tox/Makefile Mon Feb 10 09:55:18 2014 (r343613) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tox -PORTVERSION= 1.6.1 +PORTVERSION= 1.7.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,22 +12,18 @@ COMMENT= Python virtualenv-based automat LICENSE= MIT -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}virtualenv>=1.9.1:${PORTSDIR}/devel/py-virtualenv \ - ${PYTHON_PKGNAMEPREFIX}pylib>=1.4.15:${PORTSDIR}/devel/py-pylib +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}virtualenv>=1.11.2:${PORTSDIR}/devel/py-virtualenv \ + ${PYTHON_PKGNAMEPREFIX}pylib>=1.4.17:${PORTSDIR}/devel/py-pylib USE_PYTHON= yes -USE_PYDISTUTILS= easy_install +USE_PYDISTUTILS= yes PYDISTUTILS_AUTOPLIST= yes OPTIONS_DEFINE= PYTEST PYTEST_DESC= Include the pytest test runner OPTIONSFILE?= ${PORT_DBDIR}/py-${PORTNAME}/options -.include - -.if ${PORT_OPTIONS:MPYTEST} -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}pytest>0:${PORTSDIR}/devel/py-pytest -.endif +PYTEST_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:${PORTSDIR}/devel/py-pytest .include Modified: head/devel/py-tox/distinfo ============================================================================== --- head/devel/py-tox/distinfo Mon Feb 10 09:47:49 2014 (r343612) +++ head/devel/py-tox/distinfo Mon Feb 10 09:55:18 2014 (r343613) @@ -1,2 +1,2 @@ -SHA256 (tox-1.6.1.tar.gz) = 05c72b3b7481b47f48f63436c7355783dc8be77ffd7c2bc948b0b7aa2dd4d0de -SIZE (tox-1.6.1.tar.gz) = 131654 +SHA256 (tox-1.7.0.tar.gz) = 4cac3410af8b62f50a6496962af3884bdb1f99d30439511489e8a807e89379f8 +SIZE (tox-1.7.0.tar.gz) = 84492 Modified: head/devel/py-tox/pkg-descr ============================================================================== --- head/devel/py-tox/pkg-descr Mon Feb 10 09:47:49 2014 (r343612) +++ head/devel/py-tox/pkg-descr Mon Feb 10 09:55:18 2014 (r343613) @@ -1,14 +1,13 @@ Tox as is a generic virtualenv management and test command line tool you can use for: -* checking your package installs correctly with different - Python versions and interpreters +* checking your package installs correctly with different Python + versions and interpreters -* running your tests in each of the - environments, configuring your test tool of choice +* running your tests in each of the environments, configuring + your test tool of choice -* acting as a frontend to Continuous Integration - servers, greatly reducing boilerplate and merging - CI and shell-based testing. +* acting as a frontend to Continuous Integration servers, greatly + reducing boilerplate and merging CI and shell-based testing. WWW: http://tox.testrun.org/