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/rply/
Date: Sun, 29 Mar 2020 07:31:42
Message-Id: 1585467066.4169d1f0d9d7415339534554f28eea1a28263f40.mgorny@gentoo
1 commit: 4169d1f0d9d7415339534554f28eea1a28263f40
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 29 07:18:15 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 29 07:31:06 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4169d1f0
7
8 dev-python/rply: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/rply/Manifest | 1 -
13 dev-python/rply/rply-0.7.5.ebuild | 37 -------------------------------------
14 2 files changed, 38 deletions(-)
15
16 diff --git a/dev-python/rply/Manifest b/dev-python/rply/Manifest
17 index afeee2a0b36..06143494a09 100644
18 --- a/dev-python/rply/Manifest
19 +++ b/dev-python/rply/Manifest
20 @@ -1,2 +1 @@
21 -DIST rply-0.7.5.tar.gz 27462 BLAKE2B 0f438e6fd786e7436f135da50fe90208970a0950422bb0d8e26b06cc2def964c0ebd7c3e5e3e282a1d56dbb9e804ac267095dc4da16eb57899f455d66fed2d71 SHA512 ccecc451d9e2e0fdf9df7eaaeabface782d9159cc1caf1feae6e46210f6384aa1a78c15ea3c0e9dcc0bd0d2b28e3b1328c8d37e94a8968b07ef7938e5f5ce201
22 DIST rply-0.7.7.tar.gz 26366 BLAKE2B 09e6b93e9581745209b2d1fede6e0e4f08c2a34cc2495ea73aebb27b012353bbdb749ef127128cd5d9df201607f73625e248945038a927d788e324fb632341b4 SHA512 c01166b7df067a6a55d1b43caa7b5a349045e838899daf82e2ba70a2c2525fd68e95f11e5319a1fe36936e696352a37bdc13f132f739cd52759a9a9c91e317ba
23
24 diff --git a/dev-python/rply/rply-0.7.5.ebuild b/dev-python/rply/rply-0.7.5.ebuild
25 deleted file mode 100644
26 index 22475ba280d..00000000000
27 --- a/dev-python/rply/rply-0.7.5.ebuild
28 +++ /dev/null
29 @@ -1,37 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -PYTHON_COMPAT=( python3_6 )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Pure python parser generator that also works with RPython"
40 -HOMEPAGE="https://github.com/alex/rply"
41 -SRC_URI="https://github.com/alex/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="BSD"
44 -SLOT="0"
45 -KEYWORDS="amd64 x86"
46 -IUSE="test"
47 -RESTRICT="!test? ( test )"
48 -
49 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
50 - dev-python/appdirs[${PYTHON_USEDEP}]
51 - test? (
52 - dev-python/py[${PYTHON_USEDEP}]
53 - dev-python/pytest[${PYTHON_USEDEP}] )"
54 -
55 -python_prepare() {
56 - # https://github.com/alex/rply/issues/26; fail under py[3-4]
57 - if python_is_python3; then
58 - sed -e s':test_simple:_&:' -e s':test_empty_production:_&:' \
59 - -i tests/test_parsergenerator.py
60 - fi
61 - distutils-r1_python_prepare
62 -}
63 -
64 -python_test() {
65 - py.test || die "Tests fail with ${EPYTHON}"
66 -}