Gentoo Archives: gentoo-commits

From: Alessandro Barbieri <lssndrbarbieri@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/recordclass/
Date: Fri, 11 Jun 2021 15:23:22
Message-Id: 1623424990.9d3cb776a45f70af4d8dcac8d1e2ff67756a46bd.Alessandro-Barbieri@gentoo
1 commit: 9d3cb776a45f70af4d8dcac8d1e2ff67756a46bd
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Sun Jun 6 02:31:17 2021 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Fri Jun 11 15:23:10 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9d3cb776
7
8 dev-python/recordclass: drop unmaintained live
9
10 Package-Manager: Portage-3.0.19, Repoman-3.0.3
11 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
12
13 dev-python/recordclass/recordclass-9999.ebuild | 30 --------------------------
14 1 file changed, 30 deletions(-)
15
16 diff --git a/dev-python/recordclass/recordclass-9999.ebuild b/dev-python/recordclass/recordclass-9999.ebuild
17 deleted file mode 100644
18 index efeeaf544..000000000
19 --- a/dev-python/recordclass/recordclass-9999.ebuild
20 +++ /dev/null
21 @@ -1,30 +0,0 @@
22 -# Copyright 2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -PYTHON_COMPAT=( python3_{6..8} )
28 -
29 -inherit distutils-r1
30 -
31 -DESCRIPTION="Mutable variants of tupe and collections.namedtuple"
32 -HOMEPAGE="https://pypi.org/project/recordclass/"
33 -if [[ ${PV} == "9999" ]]
34 -then
35 - inherit git-r3
36 - EGIT_REPO_URI="https://bitbucket.org/intellimath/recordclass.git"
37 -else
38 - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
39 - KEYWORDS="~amd64 ~x86"
40 -fi
41 -
42 -LICENSE="MIT"
43 -SLOT="0"
44 -
45 -DEPEND="dev-python/cython"
46 -RDEPEND="${DEPEND}"
47 -
48 -python_test() {
49 - [[ -n ${EPYTHON} ]] || die "EPYTHON unset, invalid call context"
50 - ${EPYTHON} ./test_all.py
51 -}