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: Fri, 27 May 2022 19:55:49
Message-Id: 1653681246.e7f6266f2e7010a235cbcc4feb593d78967742b0.mgorny@gentoo
1 commit: e7f6266f2e7010a235cbcc4feb593d78967742b0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 27 19:54:06 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri May 27 19:54:06 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7f6266f
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-2022.3.15.ebuild | 32 --------------------------------
14 2 files changed, 33 deletions(-)
15
16 diff --git a/dev-python/regex/Manifest b/dev-python/regex/Manifest
17 index 0a3babe37032..3b66fac67416 100644
18 --- a/dev-python/regex/Manifest
19 +++ b/dev-python/regex/Manifest
20 @@ -1,2 +1 @@
21 -DIST regex-2022.3.15.tar.gz 383001 BLAKE2B 459fed91a8996d6191ccd220869cf0c0e793f774552702c9aaec00882f71adae1e7378233811f6885d95b10db963d098a1d4c45aa0887c26d304df85fa9fb124 SHA512 99ef24b28dc5b1ec6a5d670698a98025aff14d082f6c24a3122157d28879f71c3ced2f5d2a3c8c6091609d93b7a500b2882b92b29a8fe1527532dd9f280cd51b
22 DIST regex-2022.4.24.tar.gz 383365 BLAKE2B 743a27afa1d504e9653b56d868b076479a476108213137ae7157772d29824204eeb781f5d939debfa8da122e22acbfbea6d8c356b14ad9c1eafca2be5970fdd2 SHA512 2b9e83c7164986eceed5ae0e33aca9075afa022398684bb688064394cfa43f06b0ce72c15fb7ceee55b7793072c7b1d7709513faedce4719f0c406164e9e0593
23
24 diff --git a/dev-python/regex/regex-2022.3.15.ebuild b/dev-python/regex/regex-2022.3.15.ebuild
25 deleted file mode 100644
26 index dc19a169b0db..000000000000
27 --- a/dev-python/regex/regex-2022.3.15.ebuild
28 +++ /dev/null
29 @@ -1,32 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -DISTUTILS_USE_PEP517=setuptools
36 -PYTHON_COMPAT=( python3_{8..10} pypy3 )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Alternative regular expression module to replace re"
41 -HOMEPAGE="https://bitbucket.org/mrabarnett/mrab-regex"
42 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 -
44 -LICENSE="Apache-2.0"
45 -SLOT="0"
46 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
47 -IUSE="doc"
48 -
49 -PATCHES=(
50 - "${FILESDIR}/${PN}-2021.4.4-pypy3-fix-test_empty_array.patch"
51 - "${FILESDIR}/${PN}-2021.4.4-pypy3-fix-test_issue_18468.patch"
52 -)
53 -
54 -distutils_enable_tests unittest
55 -
56 -python_install_all() {
57 - use doc && local HTML_DOCS=( docs/Features.html )
58 - local DOCS=( README.rst docs/*.rst )
59 -
60 - distutils-r1_python_install_all
61 -}