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: Sat, 28 Aug 2021 06:54:07
Message-Id: 1630133623.9dc5e4c22ad44e6d8879508bf2582b6a972a39f4.mgorny@gentoo
1 commit: 9dc5e4c22ad44e6d8879508bf2582b6a972a39f4
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 28 06:20:44 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 28 06:53:43 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dc5e4c2
7
8 dev-python/prettytable: Bump to 2.2.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.2.0.ebuild | 31 +++++++++++++++++++++++++
14 2 files changed, 32 insertions(+)
15
16 diff --git a/dev-python/prettytable/Manifest b/dev-python/prettytable/Manifest
17 index 0a8128470d4..b15e3132566 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.1.0.tar.gz 43306 BLAKE2B e2085003f2720d573e19fb2b03c8aa98262ec9e7a3f7d0a20474cad2fab374a91664bb513d8158cd612e58a47917c3ebe8b43798272f38c182f6cc2472918f55 SHA512 8eaad22c66299ca3f66cc167e1a94aa41e3b2699da4ff48a0e81927ee8cc623d3147ae29a0bef92370d07d6a7fb6b1eac535fca7090562419aed219b9483edd5
23 +DIST prettytable-2.2.0.tar.gz 44939 BLAKE2B eff6eeb98b6accdb5089cfd1ceb09db2e4a0897e9675a07b744a12ab15fb1cb43bd4a411788d8e22662089f68a31c346d79cfaaca44c7f14f452870a7039bdb6 SHA512 df8ae2a1103a4965a351ba16a95ef9659107075bb023090bd9bffd69805ce647dcb26f49164f07f5af0c0b03503373c0353935b32a0fb18edf969dc984aecda7
24
25 diff --git a/dev-python/prettytable/prettytable-2.2.0.ebuild b/dev-python/prettytable/prettytable-2.2.0.ebuild
26 new file mode 100644
27 index 00000000000..0b41d1ad595
28 --- /dev/null
29 +++ b/dev-python/prettytable/prettytable-2.2.0.ebuild
30 @@ -0,0 +1,31 @@
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="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
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 + )"
60 +
61 +distutils_enable_tests --install pytest