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 2025-05-03 22:15:04 +02:00
parent 9b94d85972
commit 99238b7328
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 13 additions and 7 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 651 BLAKE2B 1e717061aada471608c80068602b063281f3f0c223851de4a852e979246c4870d873842d03dedb8dae5a76ab7d81bf2b3d065e54ba73086b05f42548a8454d79 SHA512 cfbfe0c83dd7ac2ba9a7c8780abaab24657d95c109fea7260e0e2febc7b243546b60a0ba8db73c68b653989e23240333f752b5d1cc6df53353443303fbb4d72a
DIST pytest-runner-6.0.0.tar.gz 15741 BLAKE2B b0967b3fd55f6cf46f2d693647354d2784cb1873e18721270445f6dbe0de8fffd308a5eed55639470496b5bc475572b524a71f882f63e6c97c3ec94e03a0bee1 SHA512 a3393cc283ba13fa53c76f501d7b8e27735c45ebcd09c263c277472d89e488cf94b704affae9b810e696e8d8fdf6b5acb39193c37fca6dab16cd24a3839e0389
EBUILD pytest-runner-6.0.0.ebuild 740 BLAKE2B e0cb6ebae28e365e60c20a51049dd63bc9ef2fbf9aef5c137cac7296538dd0671dcb6b8833c1653d448531b67ffb1067d9b8591c5b4348d0b766e64001be9e54 SHA512 2c02e0df073786ea95f92e6e38c77e4814e79c5b02fef267c96e8fa1abcf142dae7b6c035ced33e2578d1bb6072f1993fb9b3e118e9bf954464028e0645487d1
MISC metadata.xml 524 BLAKE2B 268c1352296cacc45aff446591f7c1e3db6e8e54dc055b1846b431735148a74394d95408e7ce84865f49605c00e651c38d1fcc4cf4a9e4f9da8d36f91fb067d9 SHA512 ed113c33013eef393eeefb1ab05b029494391ce5da58b711d64dc038ff2560aeacc7275fbcf75a3ca2234e37883550e6f944428c9a471b788077d85c684853e9

View File

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