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/rich/
Date: Fri, 24 Sep 2021 20:05:17
Message-Id: 1632513904.ccb43d174a5590cb014aa98bbc2d0f3bfe926a3b.mgorny@gentoo
1 commit: ccb43d174a5590cb014aa98bbc2d0f3bfe926a3b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 24 19:32:49 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 24 20:05:04 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccb43d17
7
8 dev-python/rich: Bump to 10.11.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/rich/Manifest | 1 +
13 dev-python/rich/rich-10.11.0.ebuild | 27 +++++++++++++++++++++++++++
14 2 files changed, 28 insertions(+)
15
16 diff --git a/dev-python/rich/Manifest b/dev-python/rich/Manifest
17 index 8e43578a3e0..0fc9352eaec 100644
18 --- a/dev-python/rich/Manifest
19 +++ b/dev-python/rich/Manifest
20 @@ -1 +1,2 @@
21 DIST rich-10.10.0.tar.gz 16264680 BLAKE2B 5f57b7ea7a091b3478ddc17dfe29309f558f36e8795a66ea918141f42f2a9e5a655667a1db8420193f3f44ba070413ebb512601751a6a5663a87db775576ce65 SHA512 8b9f1348b0f55db90c17042a83e8317d4f00b5446a77334a12379676ef1fe526f40dc92425e4bafce22ee5f65bcb2fae2422b903c6f958feb5734c254813826e
22 +DIST rich-10.11.0.tar.gz 16266050 BLAKE2B 34081a127eacbc875fb5af1b00a195df4718eacb4e0371ac1367950fc8e102bc2a611d970364a1b02cb400137cb838aa30d9bcd757a4d4644ed976c49c9603c8 SHA512 34cdcad401dbda0763dfaa6f46e19e498b2da96ed9423a00a957d55f9e2833fabc6b2e6d65e411dcb5814c869a8670b5242e1a891835d6b6675d4da86b28f33d
23
24 diff --git a/dev-python/rich/rich-10.11.0.ebuild b/dev-python/rich/rich-10.11.0.ebuild
25 new file mode 100644
26 index 00000000000..a18af32f8dc
27 --- /dev/null
28 +++ b/dev-python/rich/rich-10.11.0.ebuild
29 @@ -0,0 +1,27 @@
30 +# Copyright 2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..9} )
36 +DISTUTILS_USE_SETUPTOOLS=pyproject.toml
37 +inherit distutils-r1 optfeature
38 +
39 +DESCRIPTION="Python library for renrering rich text, tables, etc. to the terminal"
40 +HOMEPAGE="https://github.com/willmcgugan/rich"
41 +SRC_URI="https://github.com/willmcgugan/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="MIT"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~riscv ~x86"
46 +
47 +RDEPEND="
48 + dev-python/colorama[${PYTHON_USEDEP}]
49 + dev-python/commonmark[${PYTHON_USEDEP}]
50 + dev-python/pygments[${PYTHON_USEDEP}]"
51 +
52 +distutils_enable_tests pytest
53 +
54 +pkg_postinst() {
55 + optfeature "integration with HTML widgets for Jupyter" dev-python/ipywidgets
56 +}