summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Szuba <marecki@gentoo.org>2020-06-19 18:10:50 +0200
committerMarek Szuba <marecki@gentoo.org>2020-06-19 18:12:12 +0200
commit099700dfca77d2ba55321e870cfec12aba62f061 (patch)
treec0acb8af1eb12799272f35b54a09dd62daddbfd5 /dev-python/pyicu
parentdev-libs/clhpp: bump to 2.0.12 (diff)
downloadgentoo-099700dfca77d2ba55321e870cfec12aba62f061.tar.gz
gentoo-099700dfca77d2ba55321e870cfec12aba62f061.tar.bz2
gentoo-099700dfca77d2ba55321e870cfec12aba62f061.zip
dev-python/pyicu: remove old
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'dev-python/pyicu')
-rw-r--r--dev-python/pyicu/Manifest1
-rw-r--r--dev-python/pyicu/files/pyicu-2.4.2-testLocaleMatcher_pytest_old_icu.patch17
-rw-r--r--dev-python/pyicu/pyicu-2.4.2.ebuild33
3 files changed, 0 insertions, 51 deletions
diff --git a/dev-python/pyicu/Manifest b/dev-python/pyicu/Manifest
index cd374419579f..1e7659d7cecd 100644
--- a/dev-python/pyicu/Manifest
+++ b/dev-python/pyicu/Manifest
@@ -1,3 +1,2 @@
-DIST PyICU-2.4.2.tar.gz 219356 BLAKE2B dc6ad1e8944e43560314e9dbfcd37e58b52b50874656f7ca66497a317b03bb9bf988515417660be87bb2e73e0484e5870cd3db2c5eab47fda1223e7514935fb0 SHA512 3cd1f632c2551dce3d721c54190a19c2a46e2554ef54915c9e07b133fa4a499b1a8c49f406abe9777721903799eb23a2d55d3b1aadd758870f8bd591f143a05b
DIST PyICU-2.4.3.tar.gz 219819 BLAKE2B 5e4b9ecab9e726aa05ae4a30d3b277dec3a94a2e0393a7cd9a9f247c73f02051649f03079b3b5f6d5a1745f00d2dc367066de8e93cafe3291cce7aa09884d7af SHA512 77b81b0e9a17972696967ebc0421d05c1119a43c7e853f8d939390dddefa4a2a35dd316e08c10c10a283472bb64738016e47c5f45c7c6191d9dba296057740a0
DIST PyICU-2.5.tar.gz 225591 BLAKE2B 0b0f61439cac355ca3ec930eea0624892ac5f158ecfc82a57f526044be486a676ac201231cf34cb2470e33bfbd2f198439462d0814959ddc25526d6408704151 SHA512 b2641c6f9956cd8026150923f0f10031712c426f45ed2b9fe468ce85917b028a6e1988ac73cd74e9eec2569601ece77018aa06863525e24df1944d4a5b762548
diff --git a/dev-python/pyicu/files/pyicu-2.4.2-testLocaleMatcher_pytest_old_icu.patch b/dev-python/pyicu/files/pyicu-2.4.2-testLocaleMatcher_pytest_old_icu.patch
deleted file mode 100644
index ab1fed8dc7f1..000000000000
--- a/dev-python/pyicu/files/pyicu-2.4.2-testLocaleMatcher_pytest_old_icu.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- a/test/test_LocaleMatcher.py
-+++ b/test/test_LocaleMatcher.py
-@@ -21,11 +21,13 @@
- # DEALINGS IN THE SOFTWARE.
- # ====================================================================
-
--import sys, os, six
-+import sys, os, six, pytest
-
- from unittest import TestCase, main
- from icu import *
-
-+@pytest.mark.skipif(ICU_VERSION < '65.0',
-+ reason='ICU too old for LocaleMatcher support')
- class TestLocaleMatcher(TestCase):
-
- def testSetSupportedLocales(self):
diff --git a/dev-python/pyicu/pyicu-2.4.2.ebuild b/dev-python/pyicu/pyicu-2.4.2.ebuild
deleted file mode 100644
index 330fe964470e..000000000000
--- a/dev-python/pyicu/pyicu-2.4.2.ebuild
+++ /dev/null
@@ -1,33 +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} )
-
-inherit distutils-r1
-
-MY_PN="PyICU"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Python bindings for dev-libs/icu"
-HOMEPAGE="https://github.com/ovalhub/pyicu"
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="${PYTHON_DEPS}
- dev-libs/icu:="
-DEPEND="${RDEPEND}"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-2.4.2-testLocaleMatcher_pytest_old_icu.patch
-)
-
-S="${WORKDIR}/${MY_P}"
-
-DOCS=(CHANGES CREDITS README.md)
-
-distutils_enable_tests pytest