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: Mon, 08 Nov 2021 08:31:52
Message-Id: 1636359923.41fe8b54533f7ae8c5734ecf6c1dc55a52fbfbd5.mgorny@gentoo
1 commit: 41fe8b54533f7ae8c5734ecf6c1dc55a52fbfbd5
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 8 08:18:52 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 8 08:25:23 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41fe8b54
7
8 dev-python/rich: Bump to 10.13.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.13.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 83214eb1c4e..06223c6c36c 100644
18 --- a/dev-python/rich/Manifest
19 +++ b/dev-python/rich/Manifest
20 @@ -1 +1,2 @@
21 DIST rich-10.12.0.tar.gz 16265099 BLAKE2B c2249be5a5008e3e9fd5c301b10d7bc544e4805d4762e87481aa31716e38eb3cb2b81ce80f201fc0d3961574136f47b7b374d6bc7d18e4f55f1f757a7e17e5a2 SHA512 bb42ff24c9eeeae548a6e222ecc03f8b46d763c4b022964bd8fb11517f1a23a7aaa82a2155d5cd3d29cdd1af5fab6cc4f26840a84ce5e26dd740f8706961ce1f
22 +DIST rich-10.13.0.tar.gz 16277448 BLAKE2B e33bca376e1a5b82d0648c7bdda9ce30930b7c095cd8272b573f52dcb056a21be35fb0ef83c939e7feeb458eb4efb7767bf98706a4c58fc134627a0b0f3aa68d SHA512 23ea811fbaa8002416530975fe79c62b42d3c79806d312c172351f632864356be77063d5dc0fe0243d78479fb31a87433a432b115f5cf570f7c6e44c6f773ff0
23
24 diff --git a/dev-python/rich/rich-10.13.0.ebuild b/dev-python/rich/rich-10.13.0.ebuild
25 new file mode 100644
26 index 00000000000..05ddc3dab2e
27 --- /dev/null
28 +++ b/dev-python/rich/rich-10.13.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..10} )
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 +}