dev-python/jaraco-vcs: Bump to 2.4.1

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2025-03-05 07:22:16 +01:00
parent 0c28e9262e
commit 682bdfc669
2 changed files with 49 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST jaraco_vcs-2.4.0.tar.gz 17233 BLAKE2B 5e97b2fb83fa19936c1fd04dcf50b5ca3cb8d91424c65094c61e30491ff72920482aa51edf6402998284b2df1cc7804db90c35b80c83d12f8be80f69e1a4661c SHA512 8be749129a4c40882ac82ea017f1e616dd7995a1185e858229650c38d13833c75b2c60f854ad004797934b2f49a4264096f7eb2580630b2b6f3b2f7a9706070a
DIST jaraco_vcs-2.4.1.tar.gz 18528 BLAKE2B 81fd683849d76affd6e57b8b4727cea47b7dbaba307e44b2b06e986145a9482098c9584283983e5c3f40d0b3aaa5d3133596393d7c85b9ccd448e05f51ea60ab SHA512 f859758b612c1523b20c208f4bc58eee551170768a9280a9cc827359d7cd72cb533a2fbcbc63af177c9891a98bf8f1c5527ebf0392060c596206897e8672f82b

View File

@@ -0,0 +1,48 @@
# Copyright 2024-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYPI_PN=${PN/-/.}
PYTHON_COMPAT=( pypy3 pypy3_11 python3_{10..13} )
inherit distutils-r1 pypi
DESCRIPTION="Facilities for working with VCS repositories"
HOMEPAGE="
https://github.com/jaraco/jaraco.vcs/
https://pypi.org/project/jaraco.vcs/
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
RDEPEND="
dev-python/jaraco-classes[${PYTHON_USEDEP}]
dev-python/jaraco-path[${PYTHON_USEDEP}]
dev-python/jaraco-versioning[${PYTHON_USEDEP}]
dev-python/more-itertools[${PYTHON_USEDEP}]
dev-python/packaging[${PYTHON_USEDEP}]
dev-python/python-dateutil[${PYTHON_USEDEP}]
dev-python/tempora[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
dev-python/pytest-home[${PYTHON_USEDEP}]
dev-vcs/git
)
"
distutils_enable_tests pytest
python_test() {
local EPYTEST_DESELECT=(
# assumes running inside the git repo
jaraco/vcs/__init__.py::jaraco.vcs
)
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
epytest -p home -p jaraco.vcs.fixtures
}