diff options
author | Zamarin Arthur <arthurzam@gmail.com> | 2019-11-13 12:42:47 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-11-30 09:28:04 +0100 |
commit | 6afd93e38843fed0a30ddf8c501e188fb8d74a4f (patch) | |
tree | 96aa79c5038bd55437a750e9c08f31f5f1e4003e /dev-python/zope-i18nmessageid | |
parent | dev-python/zope-testrunner: Fix MissingTestRestrict (diff) | |
download | gentoo-6afd93e38843fed0a30ddf8c501e188fb8d74a4f.tar.gz gentoo-6afd93e38843fed0a30ddf8c501e188fb8d74a4f.tar.bz2 gentoo-6afd93e38843fed0a30ddf8c501e188fb8d74a4f.zip |
dev-python/zope-i18nmessageid: bump v5.0.0, EAPI=7
add python3_7, python3_8
add tests
use distutils_enable_tests for tests
Closes: https://bugs.gentoo.org/691538
Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Zamarin Arthur <arthurzam@gmail.com>
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/zope-i18nmessageid')
-rw-r--r-- | dev-python/zope-i18nmessageid/Manifest | 1 | ||||
-rw-r--r-- | dev-python/zope-i18nmessageid/zope-i18nmessageid-5.0.0.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/dev-python/zope-i18nmessageid/Manifest b/dev-python/zope-i18nmessageid/Manifest index 97d4b0dae647..9a1a949ac460 100644 --- a/dev-python/zope-i18nmessageid/Manifest +++ b/dev-python/zope-i18nmessageid/Manifest @@ -1 +1,2 @@ DIST zope.i18nmessageid-4.1.0.tar.gz 24166 BLAKE2B 378095bed1407c0025a6bddadc57be779f938ac914a5067aeeef28adc22217b2ec2a3ff41487ca9578a88b2fd27fb07d35996b71d2e82a698831d15e4bd6e630 SHA512 c787417ee67f951a7c72a4501d17cb75fa60aab26768f4dd31d2cc3915b162a148f08bd2f00270d55fb8ec3804bcca62d07cbdee952ab1647a75681daf291627 +DIST zope.i18nmessageid-5.0.0.tar.gz 28220 BLAKE2B 84727f56ce8dd069915b5b31a2f9824ee83b334d82e3b2a958e35e43842cee044ec47879809fe6256b51631a5baf9dfb4432f7e5e494faceca2f7ade479d38ff SHA512 76cf129e266f649ab379d1abea143b34e42f0ce66fdfcbebd1dbbca639a55c11a9d41687a7bb4dd04359fa1465e235035849786d142bafaa68d783c1f7aee2d6 diff --git a/dev-python/zope-i18nmessageid/zope-i18nmessageid-5.0.0.ebuild b/dev-python/zope-i18nmessageid/zope-i18nmessageid-5.0.0.ebuild new file mode 100644 index 000000000000..03fd892549b4 --- /dev/null +++ b/dev-python/zope-i18nmessageid/zope-i18nmessageid-5.0.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python2_7 python3_{5,6,7,8} pypy{,3} ) + +inherit distutils-r1 + +MY_PN=${PN/-/.} +MY_P=${MY_PN}-${PV} + +DESCRIPTION="Zope i18nmessageid Architecture" +HOMEPAGE="https://github.com/zopefoundation/zope.i18nmessageid http://docs.zope.org/zope.i18nmessageid/" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="ZPL" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + +RDEPEND="dev-python/six[${PYTHON_USEDEP}]" +BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" + +S="${WORKDIR}/${MY_P}" + +distutils_enable_tests setup.py + +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 +} |