-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-python/rich-click: version bump 1.8.5 and enable tests
Signed-off-by: Michael Schubert <mschu.dev@gmail.com> Closes: #1313 Signed-off-by: Nowa Ammerlaan <nowa@gentoo.org>
- Loading branch information
1 parent
1b32a97
commit 6a55f95
Showing
2 changed files
with
9 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
DIST rich_click-1.8.3.tar.gz 38209 BLAKE2B c87386d729585a579ce881f83737427a250a0c56cf7eda832be308de121590d7af17f7672a78aa3f3dc8834720b858ee1f9ac65e1ddf031acac16a791f91f0db SHA512 2410b7e4d69fa79e41f2394fecf1f4809e9eceaf2d463c91914bf27603842b8ba9550c6aaa90812dd725ce0a74f61fb69b35b0b1ccd87b5412b7bd727eeed74c | ||
DIST rich-click-1.8.5.gh.tar.gz 8135268 BLAKE2B 84e9fe895d70a4357ea49d383822b6f50d9c89b3788e0ef60200c2a67807ac1e77df2dba8d1fafc9a78f4174d12241c7f3faf53177bfa64d031da673c67ce4e8 SHA512 ccb309f05593c55edc097a199eb07f4c260217751e3bc5a27a6f11cfa5d6f98125086729639f0a5d6b476c17c18ef1b9cc29a26ac24dacb84754feed4291af3d |
15 changes: 8 additions & 7 deletions
15
...python/rich-click/rich-click-1.8.3.ebuild → ...python/rich-click/rich-click-1.8.5.ebuild
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,26 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Copyright 1999-2025 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
DISTUTILS_USE_PEP517=setuptools | ||
PYTHON_COMPAT=( python3_{10..12} ) | ||
|
||
inherit pypi distutils-r1 | ||
inherit distutils-r1 | ||
|
||
DESCRIPTION="Format click help output nicely with rich" | ||
HOMEPAGE="https://pypi.org/project/rich-click/" | ||
SRC_URI="https://github.com/ewels/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~amd64-linux" | ||
|
||
RDEPEND="dev-python/click[${PYTHON_USEDEP}] | ||
RDEPEND=" | ||
dev-python/click[${PYTHON_USEDEP}] | ||
dev-python/importlib-metadata[${PYTHON_USEDEP}] | ||
dev-python/rich[${PYTHON_USEDEP}] | ||
dev-python/typing-extensions[${PYTHON_USEDEP}]" | ||
dev-python/typing-extensions[${PYTHON_USEDEP}] | ||
" | ||
|
||
RESTRICT="test" | ||
# ModuleNotFoundError: No module named 'tests.conftest' | ||
#distutils_enable_tests pytest | ||
distutils_enable_tests pytest |