commit: 16adb631958f0786e084763f5a920a43e0f26f27 Author: Oz Tiram <oz.tiram <AT> gmail <DOT> com> AuthorDate: Mon Mar 25 11:54:00 2024 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Mon Mar 25 14:30:23 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16adb631
app-admin/pwman3: remove 'distutils_enable_tests setup.py' Closes: https://bugs.gentoo.org/927511 Signed-off-by: Oz Tiram <oz.tiram <AT> gmail.com> Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> app-admin/pwman3/pwman3-0.12.2.ebuild | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/app-admin/pwman3/pwman3-0.12.2.ebuild b/app-admin/pwman3/pwman3-0.12.2.ebuild index 5fb9d641fba2..9420b070c500 100644 --- a/app-admin/pwman3/pwman3-0.12.2.ebuild +++ b/app-admin/pwman3/pwman3-0.12.2.ebuild @@ -1,9 +1,9 @@ -# 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_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) PYTHON_REQ_USE="sqlite" DISTUTILS_USE_PEP517=setuptools @@ -16,15 +16,22 @@ SRC_URI="https://github.com/pwman3/pwman3/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3+" SLOT="0" KEYWORDS="~amd64" +IUSE="test" RESTRICT="!test? ( test )" RDEPEND=" >=dev-python/cryptography-2.3[${PYTHON_USEDEP}] >=dev-python/colorama-0.4.0[${PYTHON_USEDEP}] " -BDEPEND="test? ( dev-python/pexpect[${PYTHON_USEDEP}] )" +BDEPEND=" + test? ( + dev-python/pexpect[${PYTHON_USEDEP}] + ) +" -distutils_enable_tests setup.py +python_test() { + "${EPYTHON}" -m tests.test_pwman || die "Tests fail with ${EPYTHON}" +} pkg_postinst() { optfeature "Support for mongodb" dev-python/pymongo
