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/terminaltables/
Date: Sun, 27 Feb 2022 18:52:56
Message-Id: 1645987647.37b4bac8aead677ed8f59a655be8940b341e7f98.mgorny@gentoo
1 commit: 37b4bac8aead677ed8f59a655be8940b341e7f98
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 27 18:47:27 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 27 18:47:27 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37b4bac8
7
8 dev-python/terminaltables: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../terminaltables/terminaltables-3.1.10.ebuild | 39 ----------------------
13 1 file changed, 39 deletions(-)
14
15 diff --git a/dev-python/terminaltables/terminaltables-3.1.10.ebuild b/dev-python/terminaltables/terminaltables-3.1.10.ebuild
16 deleted file mode 100644
17 index 030c0351a71d..000000000000
18 --- a/dev-python/terminaltables/terminaltables-3.1.10.ebuild
19 +++ /dev/null
20 @@ -1,39 +0,0 @@
21 -# Copyright 1999-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} )
28 -
29 -inherit distutils-r1
30 -
31 -DESCRIPTION="Generate simple tables in terminals from a nested list of strings"
32 -HOMEPAGE="https://robpol86.github.io/terminaltables/"
33 -SRC_URI="
34 - https://github.com/matthewdeanmartin/terminaltables/archive/v${PV}.tar.gz
35 - -> ${P}.tar.gz"
36 -
37 -LICENSE="MIT"
38 -SLOT="0"
39 -KEYWORDS="amd64 x86"
40 -
41 -BDEPEND="
42 - test? (
43 - dev-python/colorama[${PYTHON_USEDEP}]
44 - dev-python/colorclass[${PYTHON_USEDEP}]
45 - dev-python/termcolor[${PYTHON_USEDEP}]
46 - )"
47 -
48 -distutils_enable_tests pytest
49 -
50 -PATCHES=(
51 - "${FILESDIR}"/terminaltables-3.1.0-stdout.patch
52 -)
53 -
54 -src_prepare() {
55 - # workaround pp2sp complaining about unsupported exclude,
56 - # even though it's empty (fix will be included in pp2sp-22)
57 - sed -i -e 's:^exclude:empty-&:' pyproject.toml || die
58 - distutils-r1_src_prepare
59 -}