diff options
author | Patrick Lauer <patrick@gentoo.org> | 2013-11-26 06:55:05 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2013-11-26 06:55:05 +0000 |
commit | 820212010eca17a48603b2bd2339cf3c607c31a7 (patch) | |
tree | bf5c152f815afc6b7c0c20c5b441b405b321a4dc /dev-python/tox | |
parent | Bump (diff) | |
download | gentoo-2-820212010eca17a48603b2bd2339cf3c607c31a7.tar.gz gentoo-2-820212010eca17a48603b2bd2339cf3c607c31a7.tar.bz2 gentoo-2-820212010eca17a48603b2bd2339cf3c607c31a7.zip |
Bump
(Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-python/tox')
-rw-r--r-- | dev-python/tox/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/tox/tox-1.6.1.ebuild | 48 |
2 files changed, 54 insertions, 1 deletions
diff --git a/dev-python/tox/ChangeLog b/dev-python/tox/ChangeLog index 6d51428c530d..94c9574249a3 100644 --- a/dev-python/tox/ChangeLog +++ b/dev-python/tox/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/tox # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/tox/ChangeLog,v 1.13 2013/06/17 09:04:16 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/tox/ChangeLog,v 1.14 2013/11/26 06:55:05 patrick Exp $ + +*tox-1.6.1 (26 Nov 2013) + + 26 Nov 2013; Patrick Lauer <patrick@gentoo.org> +tox-1.6.1.ebuild: + Bump *tox-1.4.3-r1 (17 Jun 2013) diff --git a/dev-python/tox/tox-1.6.1.ebuild b/dev-python/tox/tox-1.6.1.ebuild new file mode 100644 index 000000000000..e009b43cfdac --- /dev/null +++ b/dev-python/tox/tox-1.6.1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/tox/tox-1.6.1.ebuild,v 1.1 2013/11/26 06:55:05 patrick Exp $ + +EAPI=4 + +PYTHON_DEPEND="*:2.6" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="2.7-pypy-*" +inherit distutils eutils + +DESCRIPTION="virtualenv-based automation of test activities" +HOMEPAGE="http://tox.testrun.org http://pypi.python.org/pypi/tox" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +DEPEND="dev-python/setuptools + >=dev-python/virtualenv-1.8.4 + dev-python/pip + dev-python/pytest + >=dev-python/py-1.4.9 + virtual/python-argparse + doc? ( dev-python/sphinx )" +RDEPEND="${DEPEND}" + +src_compile() { + distutils_src_compile + use doc && emake -C doc html +} + +src_test() { + testing() { + "$(PYTHON)" setup.py build -b build-${PYTHON_ABI} \ + install --root "${T}/test-${PYTHON_ABI}" + PATH="${T}/test-${PYTHON_ABI}/usr/bin:${PATH}" \ + PYTHONPATH="${T}/test-${PYTHON_ABI}/$(python_get_sitedir -b)" py.test -x + } + python_execute_function testing +} + +src_install() { + distutils_src_install + use doc && dohtml -r doc/_build/html/ +} |