summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2020-08-22 09:08:30 +0200
committerMichał Górny <mgorny@gentoo.org>2020-08-22 09:08:30 +0200
commitc4aeb39e9e2cf62f1d3b6528d239f7785869d929 (patch)
treec27dec0cb9d6cb7a6a36bad5d93267e129f6d183
parentdev-python/readthedocs-sphinx-ext: Remove redundant versions (diff)
downloadgentoo-c4aeb39e9e2cf62f1d3b6528d239f7785869d929.tar.gz
gentoo-c4aeb39e9e2cf62f1d3b6528d239f7785869d929.tar.bz2
gentoo-c4aeb39e9e2cf62f1d3b6528d239f7785869d929.zip
dev-python/regex: Remove redundant versions
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r--dev-python/regex/Manifest1
-rw-r--r--dev-python/regex/regex-2020.2.20.ebuild36
2 files changed, 0 insertions, 37 deletions
diff --git a/dev-python/regex/Manifest b/dev-python/regex/Manifest
index 990eb7fc64ef..edebcaa73570 100644
--- a/dev-python/regex/Manifest
+++ b/dev-python/regex/Manifest
@@ -1,2 +1 @@
-DIST regex-2020.2.20.tar.gz 681215 BLAKE2B cc23ec03dc83068320155e4e660ee27e00935d179566d007e21879506f80dd67b2c1abdd6a4dac789a239474a8b3358f1fcbcee53af91b3d2b7ef71ce19c7ab1 SHA512 0a35b9512048bd36bcbf8a03905cc77f007d204f9ed9a0aaa3d5fcd72392bf37285c35ec0f04b1520e486b651028063c799ec265782c52ca4ecf7eeb0581727a
DIST regex-2020.4.4.tar.gz 695848 BLAKE2B 0dc41e1f1464014bcdc10b7209f7ac0506aeb6a3e09c16b4ca302619aaa8271cb06138627e8ed7f64ff80cf661eb83f07b4514828cf7fa94f21211fc42ae9f7c SHA512 95eadaaffaf87a19b31024ad3cff670d34a31de8b9be430fc276a533a584203842d1634b66a346c4aaecf2407b973bb1ae9c8ee8b48785d03bd5e45a67a271a9
diff --git a/dev-python/regex/regex-2020.2.20.ebuild b/dev-python/regex/regex-2020.2.20.ebuild
deleted file mode 100644
index f0eb090195cd..000000000000
--- a/dev-python/regex/regex-2020.2.20.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python{2_7,3_{6,7,8}} pypy3 )
-
-inherit distutils-r1 flag-o-matic
-
-DESCRIPTION="Alternative regular expression module to replace re"
-HOMEPAGE="https://bitbucket.org/mrabarnett/mrab-regex"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86"
-IUSE="doc"
-
-PATCHES=(
- "${FILESDIR}/regex-2019.11.1-pypy.patch"
-)
-
-python_test() {
- distutils_install_for_testing
-
- pushd "${BUILD_DIR}/lib" > /dev/null || die
- "${EPYTHON}" -m unittest discover -v || die "Tests fail with ${EPYTHON}"
- popd > /dev/null || die
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/Features.html )
- local DOCS=( README.rst docs/*.rst )
-
- distutils-r1_python_install_all
-}