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/colorclass/
Date: Sun, 27 Feb 2022 18:37:42
Message-Id: 1645986967.233569907d948406ccbfcecbb34b8764e22e6d5b.mgorny@gentoo
1 commit: 233569907d948406ccbfcecbb34b8764e22e6d5b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 27 18:36:07 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 27 18:36:07 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23356990
7
8 dev-python/colorclass: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/colorclass/colorclass-2.2.2.ebuild | 35 ---------------------------
13 1 file changed, 35 deletions(-)
14
15 diff --git a/dev-python/colorclass/colorclass-2.2.2.ebuild b/dev-python/colorclass/colorclass-2.2.2.ebuild
16 deleted file mode 100644
17 index b771b682bbc2..000000000000
18 --- a/dev-python/colorclass/colorclass-2.2.2.ebuild
19 +++ /dev/null
20 @@ -1,35 +0,0 @@
21 -# Copyright 2019-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -DISTUTILS_USE_SETUPTOOLS=pyproject.toml
27 -PYTHON_COMPAT=( python3_{8..10} pypy3 )
28 -
29 -inherit distutils-r1
30 -
31 -DESCRIPTION="Colorful worry-free console applications for multiple platforms"
32 -HOMEPAGE="
33 - https://pypi.org/project/colorclass/
34 - https://github.com/matthewdeanmartin/colorclass"
35 -SRC_URI="
36 - https://github.com/matthewdeanmartin/colorclass/archive/v${PV}.tar.gz
37 - -> ${P}.gh.tar.gz"
38 -
39 -LICENSE="MIT"
40 -SLOT="0"
41 -KEYWORDS="amd64 ~arm64 x86"
42 -
43 -BDEPEND="
44 - test? (
45 - dev-python/docopt[${PYTHON_USEDEP}]
46 - )"
47 -
48 -distutils_enable_tests pytest
49 -
50 -src_prepare() {
51 - # workaround pp2sp complaining about unsupported exclude,
52 - # even though it's empty (fix will be included in pp2sp-22)
53 - sed -i -e 's:^exclude:empty-&:' pyproject.toml || die
54 - distutils-r1_src_prepare
55 -}