Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-i18nmessageid/
Date: Sat, 30 Nov 2019 08:28:26
Message-Id: 1575102484.6afd93e38843fed0a30ddf8c501e188fb8d74a4f.mgorny@gentoo
1 commit: 6afd93e38843fed0a30ddf8c501e188fb8d74a4f
2 Author: Zamarin Arthur <arthurzam <AT> gmail <DOT> com>
3 AuthorDate: Wed Nov 13 10:42:47 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 30 08:28:04 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6afd93e3
7
8 dev-python/zope-i18nmessageid: bump v5.0.0, EAPI=7
9
10 add python3_7, python3_8
11 add tests
12 use distutils_enable_tests for tests
13
14 Closes: https://bugs.gentoo.org/691538
15
16 Package-Manager: Portage-2.3.79, Repoman-2.3.18
17 Signed-off-by: Zamarin Arthur <arthurzam <AT> gmail.com>
18 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
19
20 dev-python/zope-i18nmessageid/Manifest | 1 +
21 .../zope-i18nmessageid-5.0.0.ebuild | 32 ++++++++++++++++++++++
22 2 files changed, 33 insertions(+)
23
24 diff --git a/dev-python/zope-i18nmessageid/Manifest b/dev-python/zope-i18nmessageid/Manifest
25 index 97d4b0dae64..9a1a949ac46 100644
26 --- a/dev-python/zope-i18nmessageid/Manifest
27 +++ b/dev-python/zope-i18nmessageid/Manifest
28 @@ -1 +1,2 @@
29 DIST zope.i18nmessageid-4.1.0.tar.gz 24166 BLAKE2B 378095bed1407c0025a6bddadc57be779f938ac914a5067aeeef28adc22217b2ec2a3ff41487ca9578a88b2fd27fb07d35996b71d2e82a698831d15e4bd6e630 SHA512 c787417ee67f951a7c72a4501d17cb75fa60aab26768f4dd31d2cc3915b162a148f08bd2f00270d55fb8ec3804bcca62d07cbdee952ab1647a75681daf291627
30 +DIST zope.i18nmessageid-5.0.0.tar.gz 28220 BLAKE2B 84727f56ce8dd069915b5b31a2f9824ee83b334d82e3b2a958e35e43842cee044ec47879809fe6256b51631a5baf9dfb4432f7e5e494faceca2f7ade479d38ff SHA512 76cf129e266f649ab379d1abea143b34e42f0ce66fdfcbebd1dbbca639a55c11a9d41687a7bb4dd04359fa1465e235035849786d142bafaa68d783c1f7aee2d6
31
32 diff --git a/dev-python/zope-i18nmessageid/zope-i18nmessageid-5.0.0.ebuild b/dev-python/zope-i18nmessageid/zope-i18nmessageid-5.0.0.ebuild
33 new file mode 100644
34 index 00000000000..03fd892549b
35 --- /dev/null
36 +++ b/dev-python/zope-i18nmessageid/zope-i18nmessageid-5.0.0.ebuild
37 @@ -0,0 +1,32 @@
38 +# Copyright 1999-2019 Gentoo Authors
39 +# Distributed under the terms of the GNU General Public License v2
40 +
41 +EAPI=7
42 +PYTHON_COMPAT=( python2_7 python3_{5,6,7,8} pypy{,3} )
43 +
44 +inherit distutils-r1
45 +
46 +MY_PN=${PN/-/.}
47 +MY_P=${MY_PN}-${PV}
48 +
49 +DESCRIPTION="Zope i18nmessageid Architecture"
50 +HOMEPAGE="https://github.com/zopefoundation/zope.i18nmessageid http://docs.zope.org/zope.i18nmessageid/"
51 +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
52 +
53 +LICENSE="ZPL"
54 +SLOT="0"
55 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
56 +
57 +RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
58 +BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
59 +
60 +S="${WORKDIR}/${MY_P}"
61 +
62 +distutils_enable_tests setup.py
63 +
64 +python_install_all() {
65 + distutils-r1_python_install_all
66 +
67 + # remove .pth files since dev-python/namespace-zope handles the ns
68 + find "${D}" -name '*.pth' -delete || die
69 +}