summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2020-10-22 21:52:22 +0200
committerMichał Górny <mgorny@gentoo.org>2020-10-22 23:05:59 +0200
commit0b4f2832fa4775d87732936c312db2a256ec8175 (patch)
treeb85cc209e22eb7b7a7f078b10ace20aa542dfeca /dev-python/pycountry
parentsys-apps/usbutils: Bump to version 013 (diff)
downloadgentoo-0b4f2832fa4775d87732936c312db2a256ec8175.tar.gz
gentoo-0b4f2832fa4775d87732936c312db2a256ec8175.tar.bz2
gentoo-0b4f2832fa4775d87732936c312db2a256ec8175.zip
dev-python/pycountry: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/pycountry')
-rw-r--r--dev-python/pycountry/Manifest1
-rw-r--r--dev-python/pycountry/pycountry-19.8.18.ebuild31
2 files changed, 0 insertions, 32 deletions
diff --git a/dev-python/pycountry/Manifest b/dev-python/pycountry/Manifest
index 77a686674cb2..9d5f70307bdd 100644
--- a/dev-python/pycountry/Manifest
+++ b/dev-python/pycountry/Manifest
@@ -1,2 +1 @@
-DIST pycountry-19.8.18.tar.gz 10003160 BLAKE2B ac7894e9fc1ed4e8f386cc6e07c1fc2abefee63c39c7c851c100519418606b52bc18be8da672930ceefdc7ca7b51571e4b3884ea0c20e547e5b596e249ebf407 SHA512 39ba06629eeea55460424d06992ca5f1e5bf6168b219dc4880ec326f6aa0c92a4fdc54d4143a8b8bb1490149af793e760e291c6d704104a57ba91e88228ab669
DIST pycountry-20.7.3.tar.gz 10137217 BLAKE2B 2b32d450a1d16eab95e0c1ab6cae3bf89c07742d48cf6f8473854119ac0483b5490523e03e823c9b314231983f39d1c8bf595aac201756fee9897a8d15a84c08 SHA512 df88a34307a4275267a7f3af282b73ca5e762c49ad158bfcd39b97c5d852bf045bcfe72351fc6f232c55003a7c4b0a04801eb562ba65ed5d599bd45b2bd3bc58
diff --git a/dev-python/pycountry/pycountry-19.8.18.ebuild b/dev-python/pycountry/pycountry-19.8.18.ebuild
deleted file mode 100644
index e57b6a53ee05..000000000000
--- a/dev-python/pycountry/pycountry-19.8.18.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7,8} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Database of countries, subdivisions, languages, currencies and script"
-HOMEPAGE="https://github.com/flyingcircusio/pycountry"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~ia64 ppc ~sparc x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
- test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
-
-python_test() {
- # https://bitbucket.org/techtonik/pycountry/issue/8/test_locales-pycountry-015-pypy
- pushd "${BUILD_DIR}"/lib > /dev/null || die
- if [[ ${EPYTHON} == pypy* ]]; then
- sed -e 's:test_locales:_&:' -i pycountry/tests/test_general.py || die
- fi
- pytest -o cache_dir="${T}" -vv || die
- popd > /dev/null || die
-}