commit:     4f34aae91853d8e2db8b67225964ab1f154f684b
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 16 07:59:33 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Mar 16 07:59:33 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f34aae9

dev-python/rich: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/rich/Manifest               |  2 --
 dev-python/rich/rich-10.16.2-r1.ebuild | 37 ----------------------------
 dev-python/rich/rich-10.16.2.ebuild    | 37 ----------------------------
 dev-python/rich/rich-11.1.0.ebuild     | 44 ----------------------------------
 4 files changed, 120 deletions(-)

diff --git a/dev-python/rich/Manifest b/dev-python/rich/Manifest
index 2851c3184cf2..242056873273 100644
--- a/dev-python/rich/Manifest
+++ b/dev-python/rich/Manifest
@@ -1,4 +1,2 @@
-DIST rich-10.16.2.tar.gz 16282443 BLAKE2B 
ccc7292e265770880539d6a1a6b2e819b45e2e3d4d152f1a16c56f2da74c9a472ae49ea0a4a677ad71c4dd087fade2c415484073b4b2cd86869ad7c43c32b162
 SHA512 
9cb8b0c8105589db22d7efdc47cbfa20531cd184f07855db4bfafb667299c7d3e520b19e3b33e7818affb7a5674805849ee9f2e770927e285ccd7f4f838982c3
-DIST rich-11.1.0.gh.tar.gz 16295117 BLAKE2B 
1d326edea18b1eaad633665c2e50aa789f9eba19ee9b4cb50b94a160a69d12604fdf87d57ffbc903835b6e1e745fe17e0c521801b515ae73c8a44bf9ef17b6c2
 SHA512 
9da2015a66e0924bdd04deebd8fe8e963151d0a912f78320f8de8e61d656a693595c4feb0ce2436610602308d690ed96c8d10b5c81a9fc12a350b2e40907dbcb
 DIST rich-11.2.0.gh.tar.gz 16300346 BLAKE2B 
520f512a7e26613a4cc881834f8c150963b84a6dc3a43029dde6d64d1e405d82422b9c6f0098293b6f9bdb55749c7929426dad14840c9a287889c1a6a70f6bf2
 SHA512 
ec1178a6a320a48f589ead5163e974725f79ae63ddf9a2deb66400e43619ade8d366dbef6b524e66e603647a957b8e26266845a0bcb85912fd9ad2a81dd92f5e
 DIST rich-12.0.0.gh.tar.gz 14727980 BLAKE2B 
b9f7761ab1084765f804fd22f9fb18e659f91b917bb452217752683f6d61320d2703eee28de3be3bd70009fc06d04165528393c4c0ec32a49b1dc7e94989a224
 SHA512 
4e47e48709180ef844bcf1cd516b22de8a4f22c5121ca0582a2cff7297d97afe63232926d518cd2bf4d6d1a7cea362ab12e71eedacce6b6d378ef1a1528d9e4c

diff --git a/dev-python/rich/rich-10.16.2-r1.ebuild 
b/dev-python/rich/rich-10.16.2-r1.ebuild
deleted file mode 100644
index bd629c2ce249..000000000000
--- a/dev-python/rich/rich-10.16.2-r1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=poetry
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1 optfeature
-
-DESCRIPTION="Python library for renrering rich text, tables, etc. to the 
terminal"
-HOMEPAGE="https://github.com/willmcgugan/rich";
-SRC_URI="https://github.com/willmcgugan/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
-
-RDEPEND="
-       dev-python/colorama[${PYTHON_USEDEP}]
-       dev-python/commonmark[${PYTHON_USEDEP}]
-       dev-python/pygments[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest
-
-python_test() {
-       local EPYTEST_DESELECT=(
-               # check for exact color render string, which changes across 
pygments bumps
-               tests/test_syntax.py::test_python_render
-               tests/test_syntax.py::test_python_render_simple
-               tests/test_syntax.py::test_python_render_indent_guides
-       )
-       epytest -p no:pytest-qt
-}
-
-pkg_postinst() {
-       optfeature "integration with HTML widgets for Jupyter" 
dev-python/ipywidgets
-}

diff --git a/dev-python/rich/rich-10.16.2.ebuild 
b/dev-python/rich/rich-10.16.2.ebuild
deleted file mode 100644
index 5de214aa8a7a..000000000000
--- a/dev-python/rich/rich-10.16.2.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-inherit distutils-r1 optfeature
-
-DESCRIPTION="Python library for renrering rich text, tables, etc. to the 
terminal"
-HOMEPAGE="https://github.com/willmcgugan/rich";
-SRC_URI="https://github.com/willmcgugan/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ppc ppc64 ~riscv sparc x86"
-
-RDEPEND="
-       dev-python/colorama[${PYTHON_USEDEP}]
-       dev-python/commonmark[${PYTHON_USEDEP}]
-       dev-python/pygments[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest
-
-python_test() {
-       local EPYTEST_DESELECT=(
-               # check for exact color render string, which changes across 
pygments bumps
-               tests/test_syntax.py::test_python_render
-               tests/test_syntax.py::test_python_render_simple
-               tests/test_syntax.py::test_python_render_indent_guides
-       )
-       epytest -p no:pytest-qt
-}
-
-pkg_postinst() {
-       optfeature "integration with HTML widgets for Jupyter" 
dev-python/ipywidgets
-}

diff --git a/dev-python/rich/rich-11.1.0.ebuild 
b/dev-python/rich/rich-11.1.0.ebuild
deleted file mode 100644
index e34168eb8658..000000000000
--- a/dev-python/rich/rich-11.1.0.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=poetry
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-inherit distutils-r1 optfeature
-
-DESCRIPTION="Python library for renrering rich text, tables, etc. to the 
terminal"
-HOMEPAGE="https://github.com/Textualize/rich";
-SRC_URI="
-       https://github.com/Textualize/${PN}/archive/v${PV}.tar.gz
-               -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ppc ppc64 ~riscv sparc x86"
-
-RDEPEND="
-       dev-python/colorama[${PYTHON_USEDEP}]
-       dev-python/commonmark[${PYTHON_USEDEP}]
-       dev-python/pygments[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest
-
-PATCHES=(
-       "${FILESDIR}"/${P}-pypy3.patch
-)
-
-python_test() {
-       local EPYTEST_DESELECT=(
-               # check for exact color render string, which changes across 
pygments bumps
-               tests/test_syntax.py::test_python_render
-               tests/test_syntax.py::test_python_render_simple
-               tests/test_syntax.py::test_python_render_indent_guides
-       )
-       epytest -p no:pytest-qt
-}
-
-pkg_postinst() {
-       optfeature "integration with HTML widgets for Jupyter" 
dev-python/ipywidgets
-}

Reply via email to