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/kconfiglib/
Date: Mon, 16 May 2022 13:20:52
Message-Id: 1652707134.cce44754fe8b9bda14132c384c18511106e3ec89.mgorny@gentoo
1 commit: cce44754fe8b9bda14132c384c18511106e3ec89
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 16 13:18:54 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 16 13:18:54 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cce44754
7
8 dev-python/kconfiglib: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/kconfiglib/kconfiglib-14.1.0.ebuild | 33 --------------------------
13 1 file changed, 33 deletions(-)
14
15 diff --git a/dev-python/kconfiglib/kconfiglib-14.1.0.ebuild b/dev-python/kconfiglib/kconfiglib-14.1.0.ebuild
16 deleted file mode 100644
17 index ef454e60acfa..000000000000
18 --- a/dev-python/kconfiglib/kconfiglib-14.1.0.ebuild
19 +++ /dev/null
20 @@ -1,33 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -PYTHON_COMPAT=( python3_{8..10} pypy3 )
27 -PYTHON_REQ_USE="ncurses"
28 -inherit distutils-r1
29 -
30 -DESCRIPTION="A flexible Python Kconfig implementation"
31 -HOMEPAGE="https://github.com/ulfalizer/Kconfiglib https://pypi.org/project/kconfiglib/"
32 -SRC_URI="https://github.com/ulfalizer/Kconfiglib/archive/v${PV}.tar.gz -> ${P}.tar.gz"
33 -S=${WORKDIR}/${P^}
34 -# pypi tarballs don't include tests
35 -#SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
36 -
37 -LICENSE="ISC"
38 -SLOT="0"
39 -KEYWORDS="~amd64 ~x86"
40 -
41 -python_prepare_all() {
42 - distutils-r1_python_prepare_all
43 -
44 - # hacks to run tests
45 - mkdir Kconfiglib || die
46 - ln -s ../tests Kconfiglib || die
47 - # don't run kernel Kconfig compat tests
48 - sed -e 's/run_compatibility_tests()$/#\0/' -i testsuite.py || die
49 -}
50 -
51 -python_test() {
52 - "${EPYTHON}" testsuite.py || die "tests failed with ${EPYTHON}"
53 -}