dev-python/rich-click: new package, add 1.8.3

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
This commit is contained in:
Anna (cybertailor) Vyalkova
2024-10-29 06:02:17 +05:00
parent 0f2b27b5f1
commit 539dc04c5e
3 changed files with 57 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST rich-click-1.8.3.gh.tar.gz 325306 BLAKE2B a98f5a7a6c6a43a53b4366afe335509b57632299935c8e47431b16e11984317059dea6e75df6b571efdd6e793575c7c9004bfa087c2a1dd386e30b70635daefa SHA512 714d5d3c4b32529323f2944964e5a08479a19d6b54071750f5ccaab6ceadc5035e1d9fde4c4bc0756baef0f3e5f974a78a514fe7a35ccb621d231d5e96ec0290

View File

@@ -0,0 +1,22 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>cyber+gentoo@sysrq.in</email>
<name>Anna</name>
</maintainer>
<stabilize-allarches/>
<upstream>
<remote-id type="github">ewels/rich-click</remote-id>
<remote-id type="pypi">rich-click</remote-id>
<bugs-to>https://github.com/ewels/rich-click/issues</bugs-to>
<maintainer>
<name>Phil Ewels</name>
<email>phil@ewels.co.uk</email>
</maintainer>
<maintainer>
<name>Daniel Reeves</name>
<email>xdanielreeves@gmail.com</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,34 @@
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11..12} )
inherit distutils-r1
DESCRIPTION="Format click help output nicely with rich"
HOMEPAGE="
https://pypi.org/project/rich-click/
https://github.com/ewels/rich-click
"
SRC_URI="https://github.com/ewels/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
>=dev-python/click-7[${PYTHON_USEDEP}]
>=dev-python/rich-10.7[${PYTHON_USEDEP}]
dev-python/typing-extensions[${PYTHON_USEDEP}]
"
distutils_enable_tests pytest
src_prepare() {
distutils-r1_src_prepare
touch tests/fixtures/__init__.py || die
}