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/prettytable/
Date: Mon, 01 Nov 2021 22:16:50
Message-Id: 1635804999.e2edacc7bb44c1a1cbd7d8eeff36e6f72c9bc61e.mgorny@gentoo
1 commit: e2edacc7bb44c1a1cbd7d8eeff36e6f72c9bc61e
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 1 21:46:33 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 1 22:16:39 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2edacc7
7
8 dev-python/prettytable: Bump to 2.3.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/prettytable/Manifest | 1 +
13 dev-python/prettytable/prettytable-2.3.0.ebuild | 32 +++++++++++++++++++++++++
14 2 files changed, 33 insertions(+)
15
16 diff --git a/dev-python/prettytable/Manifest b/dev-python/prettytable/Manifest
17 index 97dff6de950..e2ff2003812 100644
18 --- a/dev-python/prettytable/Manifest
19 +++ b/dev-python/prettytable/Manifest
20 @@ -1,2 +1,3 @@
21 DIST prettytable-0.7.2.tar.bz2 21755 BLAKE2B 385d5bd6d4ab75a8c7ae96abc9d9e98a66a196265853113e7fb59073876e9f5e9c6c4fba9a30d80cc726a5184e78fb6451ff9a553909704fcc5022b6a08413f4 SHA512 f3a3fe6fa29f4ef090ff6cac06549ebd9db8b387e7b25fc64c4e37c8444586f50355c5573f38caabc72360aa68054aa189a67aa37f0bd13b872862ecd9151e71
22 DIST prettytable-2.2.1.tar.gz 45102 BLAKE2B 59fe355603791c8b3a584b1d1f2864559a7e2c7249923d5299c967db74dbd37baef9557d8d5511defe54f64e3f4625ef45635cf2f00a051a599177a3774da1a5 SHA512 5496b1525342b9df4b88cc2cd6079d8c329787b20f7e581465dcdf447b90f78aad764c6505aab8a0e3c4cbb44c943720672373cf754d6f7313b68c28005a707c
23 +DIST prettytable-2.3.0.tar.gz 49386 BLAKE2B 368dd454da9dde3900009ed52c0d55c30ed69315b36fb53eaebc764af419851b858dc648ac5d8ca62592c2aaa68dac91ac03a1a1bf29d10ee5162981f2937c22 SHA512 feeaeeb0a1897c0aaa2bc0ac7f470244529e8c70debb26976494719607840c8b8a80698b7e463402031b250fe152091e947555be2a6f983764e01bdaa1a71a22
24
25 diff --git a/dev-python/prettytable/prettytable-2.3.0.ebuild b/dev-python/prettytable/prettytable-2.3.0.ebuild
26 new file mode 100644
27 index 00000000000..0ea97628ed5
28 --- /dev/null
29 +++ b/dev-python/prettytable/prettytable-2.3.0.ebuild
30 @@ -0,0 +1,32 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +PYTHON_COMPAT=( python3_{8..10} pypy3 )
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Easily displaying tabular data in a visually appealing ASCII table format"
40 +HOMEPAGE="
41 + https://github.com/jazzband/prettytable/
42 + https://pypi.org/project/prettytable/"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="BSD"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +
49 +RDEPEND="
50 + dev-python/wcwidth[${PYTHON_USEDEP}]
51 + $(python_gen_cond_dep '
52 + dev-python/importlib_metadata[${PYTHON_USEDEP}]
53 + ' pypy3)
54 +"
55 +BDEPEND="
56 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
57 + test? (
58 + $(python_gen_impl_dep sqlite)
59 + dev-python/pytest-lazy-fixture[${PYTHON_USEDEP}]
60 + )"
61 +
62 +distutils_enable_tests --install pytest