From: Tim Harder Date: Sat, 30 Sep 2017 00:04:40 +0000 (-0400) Subject: dev-python/zope-testing: version bump to 4.6.2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=fe37a533c3af1660abc1843397a9989e90e77be6;p=gentoo.git dev-python/zope-testing: version bump to 4.6.2 --- diff --git a/dev-python/zope-testing/Manifest b/dev-python/zope-testing/Manifest index a3bfa8c88513..d97354312873 100644 --- a/dev-python/zope-testing/Manifest +++ b/dev-python/zope-testing/Manifest @@ -1 +1,2 @@ DIST zope.testing-4.6.1.tar.gz 59292 SHA256 a65c15b8e35a2dde138bc29deac1116658fedeea41baa942147c1ffaab847def SHA512 13ab0ce01efc42227980e79e97ea91d37d377b83d38e897750cee344e9ab1a82f6d860d7884374da55cd0e102447f56fb69970fbfad2de927c0cee3c18b0ddb9 WHIRLPOOL bdca81b71912af70e89a814f39ffb7dd38db8d1c71413c2ee1b2eae4911b287218b0709e7a01ea79e52559be0f8c48474708abc6b871dad6e89349fb03c15a8c +DIST zope.testing-4.6.2.tar.gz 62710 SHA256 6f60f9847b33f3b63ad42cee67019f2013eb37384c49f7f77d624e2821293846 SHA512 816c87a38c847aad67857c364bb9999f4283484c933be2bcb54066dac4a6f8c6f94dfde61860397003e7f17b8669e7964a7fbe28e7ca7313f5d131f17c0b672d WHIRLPOOL 224553da60857b6a02417a1b493f1312807455223e4e717ca6a3cb7ea52ff7fa047eb59d99ae0aff2232821fad1eb691137a3b9aea72476ae56e0f161f56be7b diff --git a/dev-python/zope-testing/zope-testing-4.6.2.ebuild b/dev-python/zope-testing/zope-testing-4.6.2.ebuild new file mode 100644 index 000000000000..a66cd8e49b12 --- /dev/null +++ b/dev-python/zope-testing/zope-testing-4.6.2.ebuild @@ -0,0 +1,36 @@ +# 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 testing helpers" +HOMEPAGE="https://pypi.python.org/pypi/zope.testing https://github.com/zopefoundation/zope.testing" +SRC_URI="mirror://pypi/${MY_PN::1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="ZPL" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-python/namespace-zope[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" + +S=${WORKDIR}/${MY_P} + +python_test() { + 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 +}