dev-python/rich-click: Bump to 1.9.5

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2025-12-22 05:46:28 +01:00
parent 8a2a88101f
commit 4457d66dec
2 changed files with 42 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST rich-click-1.8.9.gh.tar.gz 8142387 BLAKE2B de7aa54989747d47c2d147cec8235c4619a90b5a536266dbf2f499f704c3671bb4697bbcb23b0d0827caaf52d65dd29157f01918d29abc9c469fdd6c84af0c84 SHA512 6655ee3ac54fdae5a1221ef2ceaae35aa2ed8381c29f9808bb852d0790426a90d1fcb1a82faa61a22112946b988f891fc76dc3976ae756702458c547d7014745
DIST rich-click-1.9.4.gh.tar.gz 8523687 BLAKE2B d4e4d192334d511494ffd76ba7a05337deabe820afd80524e010ba58f78862fea7048323acd87a2ef7177366353a96a1575950d3ad0d5676930d48887c1381ef SHA512 c42751ef91c5877c2082b466da1743e9adba5215af7a0f93755d955db18e57276522f10ea4cc3c74e2b25457e0d042edb6533dea6d7f933dd15deb3b74f3b5d3
DIST rich-click-1.9.5.gh.tar.gz 8523814 BLAKE2B fe5649b89694992331ccdcaa703b9391d70d4dd5126f3dd1617071206f978b26196319f0e63d2cec858afd0c2b3dce935c5bf991d1b364606d1ebc64d2c67c04 SHA512 5f7c35d3c6471cd67653b209bcf546d05634574b39b02497188f90e15fc2041f301f20061db9904d764b1aaeab1094f297f88ea1b217cb5dacfdf956b6c036e7

View File

@@ -0,0 +1,41 @@
# Copyright 2024-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11..14} )
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 ~arm ~arm64"
RDEPEND="
>=dev-python/click-8[${PYTHON_USEDEP}]
>=dev-python/rich-12[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
>=dev-python/packaging-25[${PYTHON_USEDEP}]
>=dev-python/typer-0.15[${PYTHON_USEDEP}]
)
"
EPYTEST_PLUGINS=( inline-snapshot )
distutils_enable_tests pytest
python_test() {
epytest -o addopts=
}