From: Michał Górny Date: Sat, 6 Jan 2018 10:07:52 +0000 (+0100) Subject: dev-python/zope-testrunner: Clean old up X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ad03690e460250a1f11c41e628c8d5188c9a3e57;p=gentoo.git dev-python/zope-testrunner: Clean old up --- diff --git a/dev-python/zope-testrunner/Manifest b/dev-python/zope-testrunner/Manifest index 54a1d8724232..eac35f42bde1 100644 --- a/dev-python/zope-testrunner/Manifest +++ b/dev-python/zope-testrunner/Manifest @@ -1,2 +1 @@ -DIST zope.testrunner-4.6.0.zip 278215 BLAKE2B af643dfb6ea624d83bd9591f41d40c375b72e0e4b8c53cf702057559f74216c46f3d30ff0ed97f5b677bed0de5bf28016d177f23f909692ae9da5e7cfc87e325 SHA512 4f90f7111f36cfca95b062cacc947a6f547871e5fb182e56190009217c517566199e79c768fa4a451c945c8916ed596f54b4ff06552bde3a160a7a7e03b22ff5 DIST zope.testrunner-4.7.0.zip 260508 BLAKE2B 5ff63debf8119aff46a8c3ee72a4431815b37de80922cb5b8e4a318cb99200acf7dd6181b15a8233ed879f312997aab68a3439dab3dbc737093cde1ae48d619e SHA512 edda96e6871d954bb1f46ca18e2de9d1726d68cb3787f080b3b858c4dbdc2ceeb809962d178350a354e16c04711a89b2c6d1f663f256e1f72c15a7c494e51d32 diff --git a/dev-python/zope-testrunner/zope-testrunner-4.6.0.ebuild b/dev-python/zope-testrunner/zope-testrunner-4.6.0.ebuild deleted file mode 100644 index 99f2b933baa6..000000000000 --- a/dev-python/zope-testrunner/zope-testrunner-4.6.0.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy{,3} ) -inherit distutils-r1 - -MY_PN=${PN/-/.} -MY_P=${MY_PN}-${PV} - -DESCRIPTION="Zope testrunner script" -HOMEPAGE="https://pypi.python.org/pypi/zope.testrunner https://github.com/zopefoundation/zope.testrunner" -SRC_URI="mirror://pypi/${MY_PN::1}/${MY_PN}/${MY_P}.zip" - -LICENSE="ZPL" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" - -# TODO: extras? -RDEPEND="dev-python/namespace-zope[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}] - dev-python/zope-exceptions[${PYTHON_USEDEP}] - dev-python/zope-interface[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - app-arch/unzip - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( dev-python/zope-testing[${PYTHON_USEDEP}] )" - -S=${WORKDIR}/${MY_P} - -python_test() { - # some tests rely on .pyc files being present - local -x PYTHONDONTWRITEBYTECODE= - esetup.py test -} - -python_install_all() { - distutils-r1_python_install_all - - # remove .pth files since dev-python/namespace-zope handles the ns - find "${D}" -name '*.pth' -delete || die -}