diff options
author | V3n3RiX <venerix@koprulu.sector> | 2025-03-06 01:47:32 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2025-03-06 01:47:32 +0000 |
commit | d0283dc748c38f55706c7e4c04f4848afeef54a9 (patch) | |
tree | ef21380422805615f7e775efb5eab147749c15bf /dev-python/jaraco-vcs | |
parent | 77d1bb6f8d47023aa21aaee830bf3229837233d1 (diff) |
gentoo auto-resync : 06:03:2025 - 01:47:31
Diffstat (limited to 'dev-python/jaraco-vcs')
-rw-r--r-- | dev-python/jaraco-vcs/Manifest | 2 | ||||
-rw-r--r-- | dev-python/jaraco-vcs/jaraco-vcs-2.4.1.ebuild | 48 |
2 files changed, 50 insertions, 0 deletions
diff --git a/dev-python/jaraco-vcs/Manifest b/dev-python/jaraco-vcs/Manifest index 68e8483450e2..a69929c294d8 100644 --- a/dev-python/jaraco-vcs/Manifest +++ b/dev-python/jaraco-vcs/Manifest @@ -1,3 +1,5 @@ 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 EBUILD jaraco-vcs-2.4.0.ebuild 1130 BLAKE2B f17535cb06386d590eb0c41395eb7e7946282a6cad055aa610fa5d8781cda0384d8ef984884e2359b4605bf2bf68f3053b65528eaa66e7d4071fbbd89160750a SHA512 9c0a75fccea19f1a856a8498eabab8f034c67dba00c19c7292b3bca13a54f333647f33f823a93f35763d8641bd3177b1cc6ea81c5a79fef1b5f157436610e255 +EBUILD jaraco-vcs-2.4.1.ebuild 1138 BLAKE2B 887691e167b42a5eecc6a23863f8c28a6bf63150940d1ece338bf1eb0badadf306ab5ff86c5c8ab657640bd4139e72a2853c8aa9f40f16c3ce56e6f05fcd4b08 SHA512 001e99c423165dbdf8b425d41cb9c14e24dbf16c970114a127dc2a07a9cc622605df5ecc95f932812c82cd4e942294bff91253fcb5678701b72bc5d8cbd53c9f MISC metadata.xml 373 BLAKE2B 19541f09d8e907f217862f2f355342807e56aef7dd2be1ee1539f8dc784ec58612425a76e1793d3ffd8e5e7da02d9e860dbb8321c78d500d38a930401911005f SHA512 06bcc51993cddf2a0c427491e08438ca8db90c643ad9cfbd9abbdff5b9301c19d60025a6bb3e8f00d3556938a9c3f40107842d6fbe88c75a9c171412de18345e diff --git a/dev-python/jaraco-vcs/jaraco-vcs-2.4.1.ebuild b/dev-python/jaraco-vcs/jaraco-vcs-2.4.1.ebuild new file mode 100644 index 000000000000..7e97bc1a273f --- /dev/null +++ b/dev-python/jaraco-vcs/jaraco-vcs-2.4.1.ebuild @@ -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 +} |