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/pypeg2/
Date: Sat, 28 Mar 2020 18:26:08
Message-Id: 1585418807.199f99963f5599a6955300ccd504424042023ed1.mgorny@gentoo
1 commit: 199f99963f5599a6955300ccd504424042023ed1
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 28 18:06:47 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 28 18:06:47 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=199f9996
7
8 dev-python/pypeg2: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pypeg2/pypeg2-2.15.2.ebuild | 31 -------------------------------
13 1 file changed, 31 deletions(-)
14
15 diff --git a/dev-python/pypeg2/pypeg2-2.15.2.ebuild b/dev-python/pypeg2/pypeg2-2.15.2.ebuild
16 deleted file mode 100644
17 index 38c58e7481c..00000000000
18 --- a/dev-python/pypeg2/pypeg2-2.15.2.ebuild
19 +++ /dev/null
20 @@ -1,31 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -PYTHON_COMPAT=( python{3_6,3_7} )
26 -
27 -inherit distutils-r1
28 -
29 -MY_PN=pyPEG2
30 -MY_P=${MY_PN}-${PV}
31 -
32 -DESCRIPTION="An intrinsic PEG Parser-Interpreter for Python"
33 -HOMEPAGE="https://fdik.org/pyPEG/
34 - https://bitbucket.org/fdik/pypeg/
35 - https://pypi.org/project/pyPEG2/"
36 -SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
37 -
38 -LICENSE="GPL-2"
39 -SLOT="0"
40 -KEYWORDS="~amd64 ~x86"
41 -
42 -RDEPEND="dev-python/lxml[${PYTHON_USEDEP}]"
43 -DEPEND="${RDEPEND}"
44 -
45 -S=${WORKDIR}/${MY_P}
46 -
47 -PATCHES=( "${FILESDIR}"/${PN}-2.15.1-test.patch )
48 -
49 -python_test() {
50 - "${PYTHON}" -m unittest discover || die "Tests failed with ${EPYTHON}"
51 -}