dev-python/pytest-runner: add 6.0.0, drop 5.2

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-06-09 16:38:35 +02:00 committed by Andreas Billmeier
parent 45c085b58c
commit 298abf2e88
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 12 additions and 10 deletions

View File

@ -1,3 +1,3 @@
DIST pytest-runner-5.2.tar.gz 15534 BLAKE2B 0bcbd5991808aaa4b85b9071ce142e03287683e919687fa76f5b7929ad07dca6ae6edaf7ad30a1bc1ba0163f43505ec18ab2cd5e0462399b8252c8ca761d7b29 SHA512 5fc62a4e681cfa0ef25dc815ccbbfe1a7ca0e9e7783c2ba2db0da7d2539f11c08d6c3fad2ab3dfe7f0d50fe7bfb41127b11ec9af67ef8e32361655bc910c8245
EBUILD pytest-runner-5.2.ebuild 667 BLAKE2B 4ff0d6c6ae3c09ae35e50878d940419a8a34dba9e2754800dd53b1f066bd2180e686a17e18f9ed93e7cd74a75e423fb0907eceb164b82bbaf69a415d8b30372d SHA512 4c1a236ad7e9666bdeae0ba2e2224df244e396c17853483c3717c4bfaad37fbb06223836b7f6aafe5e887f49743a9169e9d0658b231f4dd9fec47c6c1f742266
DIST pytest-runner-6.0.0.tar.gz 15741 BLAKE2B b0967b3fd55f6cf46f2d693647354d2784cb1873e18721270445f6dbe0de8fffd308a5eed55639470496b5bc475572b524a71f882f63e6c97c3ec94e03a0bee1 SHA512 a3393cc283ba13fa53c76f501d7b8e27735c45ebcd09c263c277472d89e488cf94b704affae9b810e696e8d8fdf6b5acb39193c37fca6dab16cd24a3839e0389
EBUILD pytest-runner-6.0.0.ebuild 740 BLAKE2B 8411bade507731e4d41e92d2f3eb3529eb4cee4048c17d9a2e0b8f18476827055f69262f9a342c142d30607fc63783b819d8ba313603e33db6187fa0e43571f4 SHA512 872082d2d35f79b3ae036b93d62f013c11cf7fa3d7f6b73c93b4902c50840fe4143ce0182af2417dda6f9151fe2753de931a9422477f2b293111a8e0d3f31f24
MISC metadata.xml 524 BLAKE2B 268c1352296cacc45aff446591f7c1e3db6e8e54dc055b1846b431735148a74394d95408e7ce84865f49605c00e651c38d1fcc4cf4a9e4f9da8d36f91fb067d9 SHA512 ed113c33013eef393eeefb1ab05b029494391ce5da58b711d64dc038ff2560aeacc7275fbcf75a3ca2234e37883550e6f944428c9a471b788077d85c684853e9

View File

@ -1,15 +1,15 @@
# Copyright 1999-2022 Gentoo Authors
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
PYPI_NO_NORMALIZE=1
inherit distutils-r1 pypi
inherit distutils-r1
DESCRIPTION="Invoke py.test as distutils command with dependency resolution"
HOMEPAGE="https://github.com/pytest-dev/pytest-runner/ https://pypi.org/project/pytest-runner/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
DESCRIPTION="Invoke py.test as distutils command with dependency resolution"
LICENSE="MIT"
SLOT="0"
@ -17,8 +17,10 @@ KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
BDEPEND="
dev-python/setuptools-scm[${PYTHON_USEDEP}]
DOCS="README.rst"
RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
BDEPEND="dev-python/setuptools-scm[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"