Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/regex/
Date: Mon, 11 May 2020 17:49:06
Message-Id: 1589218890.0b500df94fd61c328b0877c6ee00f2fe8bc9c095.mgorny@gentoo
1 commit: 0b500df94fd61c328b0877c6ee00f2fe8bc9c095
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 11 17:41:30 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 11 17:41:30 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b500df9
7
8 dev-python/regex: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/regex/Manifest | 1 -
13 dev-python/regex/regex-2019.11.1.ebuild | 37 ---------------------------------
14 2 files changed, 38 deletions(-)
15
16 diff --git a/dev-python/regex/Manifest b/dev-python/regex/Manifest
17 index 1a9db46efae..990eb7fc64e 100644
18 --- a/dev-python/regex/Manifest
19 +++ b/dev-python/regex/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST regex-2019.11.1.tar.gz 669331 BLAKE2B b0b51051f88b6a171e78b281332fadf4d7e8588a76b367a86bb2754815614625738e882ffac66cb243d480b8d6920210423725ff4c1331cc199a3df7ed8b59a5 SHA512 fcb7d37f77937815428909ec3cf86785779ee80389a859f082c0f4b3c955779de6674490857737bc595f5f3a1c430cf237ba384ed54c37d254a8f0ffa1577148
22 DIST regex-2020.2.20.tar.gz 681215 BLAKE2B cc23ec03dc83068320155e4e660ee27e00935d179566d007e21879506f80dd67b2c1abdd6a4dac789a239474a8b3358f1fcbcee53af91b3d2b7ef71ce19c7ab1 SHA512 0a35b9512048bd36bcbf8a03905cc77f007d204f9ed9a0aaa3d5fcd72392bf37285c35ec0f04b1520e486b651028063c799ec265782c52ca4ecf7eeb0581727a
23 DIST regex-2020.4.4.tar.gz 695848 BLAKE2B 0dc41e1f1464014bcdc10b7209f7ac0506aeb6a3e09c16b4ca302619aaa8271cb06138627e8ed7f64ff80cf661eb83f07b4514828cf7fa94f21211fc42ae9f7c SHA512 95eadaaffaf87a19b31024ad3cff670d34a31de8b9be430fc276a533a584203842d1634b66a346c4aaecf2407b973bb1ae9c8ee8b48785d03bd5e45a67a271a9
24
25 diff --git a/dev-python/regex/regex-2019.11.1.ebuild b/dev-python/regex/regex-2019.11.1.ebuild
26 deleted file mode 100644
27 index 62c889f0fbb..00000000000
28 --- a/dev-python/regex/regex-2019.11.1.ebuild
29 +++ /dev/null
30 @@ -1,37 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -DISTUTILS_USE_SETUPTOOLS=no
37 -PYTHON_COMPAT=( python{2_7,3_{6,7,8}} pypy3 )
38 -
39 -inherit distutils-r1 flag-o-matic
40 -
41 -DESCRIPTION="Alternative regular expression module to replace re"
42 -HOMEPAGE="https://bitbucket.org/mrabarnett/mrab-regex"
43 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 -
45 -LICENSE="Apache-2.0"
46 -SLOT="0"
47 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86"
48 -IUSE="doc"
49 -
50 -PATCHES=(
51 - "${FILESDIR}/regex-2019.11.1-pypy.patch"
52 -)
53 -
54 -python_test() {
55 - distutils_install_for_testing
56 -
57 - pushd "${TEST_DIR}/lib" > /dev/null || die
58 - "${EPYTHON}" -m unittest discover -v || die "Tests fail with ${EPYTHON}"
59 - popd > /dev/null || die
60 -}
61 -
62 -python_install_all() {
63 - use doc && local HTML_DOCS=( docs/Features.html )
64 - local DOCS=( README docs/*.rst )
65 -
66 - distutils-r1_python_install_all
67 -}