Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pycountry/
Date: Sun, 19 Jan 2020 18:37:13
Message-Id: 1579458762.be457fd895af46d6e5235eae6534d1c661734f21.asturm@gentoo
1 commit: be457fd895af46d6e5235eae6534d1c661734f21
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 2 19:04:40 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 19 18:32:42 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be457fd8
7
8 dev-python/pycountry: Drop 16.11.8
9
10 Package-Manager: Portage-2.3.80, Repoman-2.3.19
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 dev-python/pycountry/Manifest | 1 -
14 dev-python/pycountry/pycountry-16.11.8.ebuild | 31 ---------------------------
15 2 files changed, 32 deletions(-)
16
17 diff --git a/dev-python/pycountry/Manifest b/dev-python/pycountry/Manifest
18 index c7fa8d79873..6dfcf9279b5 100644
19 --- a/dev-python/pycountry/Manifest
20 +++ b/dev-python/pycountry/Manifest
21 @@ -1,2 +1 @@
22 -DIST pycountry-16.11.8.tar.gz 9042735 BLAKE2B 66f5dcb0b9b55be692e398c998babeb49542cb5383a706bb74091088eaa3703f41da33f59e2267046c53f8f025f85945096d1e8d251ad5af57c5d39a27896cf2 SHA512 eb0a91f1efae6aeace0b49cd44b0770efa0b57add208c4247e7f58a3c46774f9f8007c51ee88a0e108c90ced3ad69204b4322c9c23f51df0b2202aa98c314a37
23 DIST pycountry-19.8.18.tar.gz 10003160 BLAKE2B ac7894e9fc1ed4e8f386cc6e07c1fc2abefee63c39c7c851c100519418606b52bc18be8da672930ceefdc7ca7b51571e4b3884ea0c20e547e5b596e249ebf407 SHA512 39ba06629eeea55460424d06992ca5f1e5bf6168b219dc4880ec326f6aa0c92a4fdc54d4143a8b8bb1490149af793e760e291c6d704104a57ba91e88228ab669
24
25 diff --git a/dev-python/pycountry/pycountry-16.11.8.ebuild b/dev-python/pycountry/pycountry-16.11.8.ebuild
26 deleted file mode 100644
27 index 25106dc525c..00000000000
28 --- a/dev-python/pycountry/pycountry-16.11.8.ebuild
29 +++ /dev/null
30 @@ -1,31 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -PYTHON_COMPAT=( python{2_7,3_6} pypy3 )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Database of countries, subdivisions, languages, currencies and script"
41 -HOMEPAGE="https://bitbucket.org/flyingcircus/pycountry"
42 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 -
44 -LICENSE="GPL-2"
45 -SLOT="0"
46 -KEYWORDS="amd64 ~ia64 ppc ~sparc x86"
47 -IUSE="test"
48 -RESTRICT="!test? ( test )"
49 -
50 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
51 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
52 -
53 -python_test() {
54 - # https://bitbucket.org/techtonik/pycountry/issue/8/test_locales-pycountry-015-pypy
55 - pushd "${BUILD_DIR}"/lib > /dev/null
56 - if [[ "${EPYTHON}" == pypy || "${EPYTHON}" == pypy3 ]]; then
57 - sed -e 's:test_locales:_&:' -i pycountry/tests/test_general.py || die
58 - fi
59 - py.test ${PN}/tests/test_general.py || die
60 - popd > /dev/null
61 -}