commit: 44a24e0b65ef49ef13a70db502d4a5bab080b975
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 2 04:12:17 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Nov 2 04:20:29 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44a24e0b
dev-python/rich-argparse: Bump to 1.7.2
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/rich-argparse/Manifest | 1 +
.../rich-argparse/rich-argparse-1.7.2.ebuild | 31 ++++++++++++++++++++++
2 files changed, 32 insertions(+)
diff --git a/dev-python/rich-argparse/Manifest
b/dev-python/rich-argparse/Manifest
index 80d0a4669e01..875ded76ab3b 100644
--- a/dev-python/rich-argparse/Manifest
+++ b/dev-python/rich-argparse/Manifest
@@ -1 +1,2 @@
DIST rich_argparse-1.7.1.tar.gz 38094 BLAKE2B
26c8d961c814b44907d63ce4a0f9d66995223d492f2f1d9f756d1e88c1873f0c93d3605dad4583205ff0e8bd4756c09d15b4a87e3b0374099f273a5dbac8c7ea
SHA512
f4245bfa7eb4f44b97a6cf44bd5c81599c5136afbe73f74893b115dc409df9d3bcadf6db3fe723d767ad7a6def3bf96d3689c83b3f1372fce1e273ea9379104a
+DIST rich_argparse-1.7.2.tar.gz 38500 BLAKE2B
36c432a79d1ef514dc96a4d2205c018a51c0773030f5ffd5634bdf9dca10796bd3f6835996d31189bfb9529745163ab7421939d3ef33af2f707cc2ab5fef34e8
SHA512
8ae4d1374980d571991b1501ebbd50facdbae345bf9e9102881964a168d7b62ac955633043590a89fdae8988734945c879d7777239229a61ac3e39358b0a2b7a
diff --git a/dev-python/rich-argparse/rich-argparse-1.7.2.ebuild
b/dev-python/rich-argparse/rich-argparse-1.7.2.ebuild
new file mode 100644
index 000000000000..662350554e97
--- /dev/null
+++ b/dev-python/rich-argparse/rich-argparse-1.7.2.ebuild
@@ -0,0 +1,31 @@
+# Copyright 2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( python3_{11..14} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Rich help formatters for argparse and optparse"
+HOMEPAGE="
+ https://github.com/hamdanal/rich-argparse/
+ https://pypi.org/project/rich-argparse/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~mips ~ppc64 ~riscv ~s390 ~x86"
+
+RDEPEND="
+ >=dev-python/rich-11.0.0[${PYTHON_USEDEP}]
+"
+
+EPYTEST_PLUGINS=()
+distutils_enable_tests pytest
+
+python_test() {
+ local -x COLUMNS=80
+ epytest
+}