diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-07-06 18:35:18 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-07-06 18:37:50 +0200 |
commit | 40f62ca6b3ababb3f6c62ce0807bcffb63f1c0b6 (patch) | |
tree | 06a5a9e652ebf16192caa174a7ba9a5312d6cb08 /dev-python/unittest-or-fail | |
parent | package.mask: Last rite dev-python/pathlib2 (diff) | |
download | gentoo-40f62ca6b3ababb3f6c62ce0807bcffb63f1c0b6.tar.gz gentoo-40f62ca6b3ababb3f6c62ce0807bcffb63f1c0b6.tar.bz2 gentoo-40f62ca6b3ababb3f6c62ce0807bcffb63f1c0b6.zip |
dev-python/unittest-or-fail: Make py3.12 and py3.13 support fake
Do not install any files for Python 3.12 or 3.13, but keep them
in PYTHON_COMPAT to make dependency graphs happier.
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/unittest-or-fail')
-rw-r--r-- | dev-python/unittest-or-fail/unittest-or-fail-2-r1.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/dev-python/unittest-or-fail/unittest-or-fail-2-r1.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-2-r1.ebuild new file mode 100644 index 000000000000..522d10ee8ad3 --- /dev/null +++ b/dev-python/unittest-or-fail/unittest-or-fail-2-r1.ebuild @@ -0,0 +1,45 @@ +# Copyright 2021-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=flit +# in py3.12+ unittest already fails when no tests are found +# we're adding these impls to PYTHON_COMPAT to clean up upgrade graphs +# but we're not installing anything +PYTHON_USED=( pypy3 python3_{10..11} ) +PYTHON_COMPAT=( "${PYTHON_USED[@]}" python3_{12..13} ) + +inherit distutils-r1 + +DESCRIPTION="Run unittests or fail if no tests were found" +HOMEPAGE="https://github.com/projg2/unittest-or-fail/" +SRC_URI=" + https://github.com/projg2/unittest-or-fail/archive/v${PV}.tar.gz + -> ${P}.tar.gz +" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" + +python_compile() { + if has "${EPYTHON/./_}" "${PYTHON_USED[@]}"; then + distutils-r1_python_compile + fi +} + +# Warning: do not use distutils_enable_tests to avoid a circular +# dependency on itself! +python_test() { + if has "${EPYTHON/./_}" "${PYTHON_USED[@]}"; then + "${EPYTHON}" -m unittest -v test/test_unittest_or_fail.py || + die "Tests failed with ${EPYTHON}" + fi +} + +python_install() { + if has "${EPYTHON/./_}" "${PYTHON_USED[@]}"; then + distutils-r1_python_install + fi +} |