Gentoo Archives: gentoo-commits

From: "Hanno Böck" <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/precis-i18n/
Date: Thu, 03 Sep 2020 08:24:47
Message-Id: 1599121474.19b88534226208742ab9b0b30db7ee96359166f8.hanno@gentoo
1 commit: 19b88534226208742ab9b0b30db7ee96359166f8
2 Author: Hanno Böck <hanno <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 3 08:23:57 2020 +0000
4 Commit: Hanno Böck <hanno <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 3 08:24:34 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19b88534
7
8 dev-python/precis-i18n: Version bump.
9
10 Support Python 3.9.
11 Bump EAPI to 7.
12 Disable test that requires additional files from upstream.
13
14 Signed-off-by: Hanno Böck <hanno <AT> gentoo.org>
15 Package-Manager: Portage-3.0.5, Repoman-3.0.1
16
17 dev-python/precis-i18n/Manifest | 1 +
18 dev-python/precis-i18n/precis-i18n-1.0.2.ebuild | 30 +++++++++++++++++++++++++
19 2 files changed, 31 insertions(+)
20
21 diff --git a/dev-python/precis-i18n/Manifest b/dev-python/precis-i18n/Manifest
22 index e568bbcd341..fd602620d6c 100644
23 --- a/dev-python/precis-i18n/Manifest
24 +++ b/dev-python/precis-i18n/Manifest
25 @@ -1 +1,2 @@
26 DIST precis_i18n-1.0.1.tar.gz 63941 BLAKE2B ee429304f41fd225b306d6df342e1ab62a9dcc3daa40ae08c88a02809230d7e356090c3414136799b176b74debfd901863cb673b577b336784411ca5baf3e92c SHA512 d8aaf99bbf3bde148f173ac8ffa5cab5051ec873d53e19336171dcd29f995e706746e5969d37aef05b6c9db064ca5e7b3944ae049b0a41e605e71a854248251b
27 +DIST precis_i18n-1.0.2.tar.gz 65375 BLAKE2B 0ba2a23838306502448c4bc4bba5fec5228e4b819e7223cb5319ca3428cd558b5fdbd389327af7a8e718a5b8369b3d13de0f739456df9bae026acbbaba62e8dc SHA512 bef972f44e068954297429a22452d08c0e3fca983eb38dd22e3f90b3265bba1096343d34f7c9a226b24f92a823fdabf09af8eafba6bfbfdc8ddda8f0f4a28bdf
28
29 diff --git a/dev-python/precis-i18n/precis-i18n-1.0.2.ebuild b/dev-python/precis-i18n/precis-i18n-1.0.2.ebuild
30 new file mode 100644
31 index 00000000000..9d8dd6bebc5
32 --- /dev/null
33 +++ b/dev-python/precis-i18n/precis-i18n-1.0.2.ebuild
34 @@ -0,0 +1,30 @@
35 +# Copyright 1999-2020 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +
40 +PYTHON_COMPAT=( python3_{6,7,8,9} )
41 +
42 +inherit distutils-r1
43 +
44 +MY_PN="${PN/-/_}"
45 +MY_P="${MY_PN}-${PV}"
46 +
47 +DESCRIPTION="Internationalized Usernames and Passwords"
48 +HOMEPAGE="https://pypi.python.org/pypi/precis-i18n"
49 +SRC_URI="mirror://pypi/${PN:0:1}/${PN/-/_}/${P/-/_}.tar.gz"
50 +
51 +LICENSE="MIT"
52 +SLOT="0"
53 +KEYWORDS="~amd64 ~x86"
54 +IUSE=""
55 +
56 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
57 +
58 +S="${WORKDIR}/${MY_P}"
59 +
60 +python_test() {
61 + # requires additional files not in tarball
62 + rm test/test_derived_props_files.py
63 + esetup.py test
64 +}