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/tabulate/
Date: Thu, 23 Jun 2022 08:17:32
Message-Id: 1655972243.2d0e4043ca0307866975675b5ea918110b84b86c.mgorny@gentoo
1 commit: 2d0e4043ca0307866975675b5ea918110b84b86c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 23 08:09:31 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 23 08:17:23 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d0e4043
7
8 dev-python/tabulate: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/tabulate/Manifest | 1 -
13 dev-python/tabulate/tabulate-0.8.9.ebuild | 42 -------------------------------
14 2 files changed, 43 deletions(-)
15
16 diff --git a/dev-python/tabulate/Manifest b/dev-python/tabulate/Manifest
17 index ec0c1ba068f6..4b781940403d 100644
18 --- a/dev-python/tabulate/Manifest
19 +++ b/dev-python/tabulate/Manifest
20 @@ -1,3 +1,2 @@
21 DIST python-tabulate-0.8.10.gh.tar.gz 49453 BLAKE2B 9bf5c9e937f8ef051792fc57dcd56f1150636bf29493fabe56d4b706df04add41fdffbe1108cb93aa561edc96245ba85e621d4a8b402ace513b55710e6e5498c SHA512 d216076112c0d0f0879c1eeecf2d2c0c30edc84d7289396f1a8d24bca862ef90fcf221a09812b409547696c3b7d4472d431043e359c3a7f67bb8392ce1e95ddc
22 DIST python-tabulate-0.8.9.gh.tar.gz 42562 BLAKE2B 6e6e1017379d07d5ede0cdfb6a8e3142f60656fd5d5b409c1259239e62637824c3bab0bb0f6b03f8733a24e9e3ac074a80a56d44939a8c6eeab8e9a830ae8277 SHA512 68a4d194068f692b57b2cca0fa42a58ba571b46adaef7f8b1a8cea7e34c78ea0a1c523286c3f1df631897cc60ad39ef6b11bfee61d46c04e2de1fb9ec0b497dd
23 -DIST tabulate-0.8.9.tar.gz 42562 BLAKE2B 6e6e1017379d07d5ede0cdfb6a8e3142f60656fd5d5b409c1259239e62637824c3bab0bb0f6b03f8733a24e9e3ac074a80a56d44939a8c6eeab8e9a830ae8277 SHA512 68a4d194068f692b57b2cca0fa42a58ba571b46adaef7f8b1a8cea7e34c78ea0a1c523286c3f1df631897cc60ad39ef6b11bfee61d46c04e2de1fb9ec0b497dd
24
25 diff --git a/dev-python/tabulate/tabulate-0.8.9.ebuild b/dev-python/tabulate/tabulate-0.8.9.ebuild
26 deleted file mode 100644
27 index fd5ed0277274..000000000000
28 --- a/dev-python/tabulate/tabulate-0.8.9.ebuild
29 +++ /dev/null
30 @@ -1,42 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -PYTHON_COMPAT=( python3_{7..10} pypy3 )
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Pretty-print tabular data"
40 -HOMEPAGE="https://pypi.org/project/tabulate/ https://github.com/astanin/python-tabulate"
41 -SRC_URI="https://github.com/astanin/python-${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 -S="${WORKDIR}/python-${P}"
43 -
44 -SLOT="0"
45 -LICENSE="MIT"
46 -KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
47 -
48 -RDEPEND="
49 - dev-python/wcwidth[${PYTHON_USEDEP}]"
50 -BDEPEND="
51 - test? (
52 - $(python_gen_impl_dep 'sqlite')
53 - dev-python/colorclass[${PYTHON_USEDEP}]
54 - $(python_gen_cond_dep 'dev-python/numpy[${PYTHON_USEDEP}]' 'python3*')
55 - )
56 -"
57 -
58 -distutils_enable_tests pytest
59 -
60 -python_test() {
61 - local deselect=(
62 - # avoid pandas dependency
63 - test/test_input.py::test_pandas
64 - test/test_input.py::test_pandas_firstrow
65 - test/test_input.py::test_pandas_keys
66 - test/test_output.py::test_pandas_with_index
67 - test/test_output.py::test_pandas_without_index
68 - test/test_output.py::test_pandas_rst_with_index
69 - test/test_output.py::test_pandas_rst_with_named_index
70 - )
71 - epytest ${deselect[@]/#/--deselect }
72 -}