commit: bc8c602b3332f99c6dfb5ba1972d7d9f7c9033f6 Author: Steven Stallion <sstallion <AT> gmail <DOT> com> AuthorDate: Sun Nov 12 16:36:26 2023 +0000 Commit: Steven Stallion <sstallion <AT> gmail <DOT> com> CommitDate: Sun Nov 12 16:36:26 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bc8c602b
app-admin/dotbot: fix ebuild Closes: https://bugs.gentoo.org/916987 Signed-off-by: Steven Stallion <sstallion <AT> gmail.com> app-admin/dotbot/dotbot-1.20.1.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app-admin/dotbot/dotbot-1.20.1.ebuild b/app-admin/dotbot/dotbot-1.20.1.ebuild index 2c0ce9be8c..38f4dcc5fd 100644 --- a/app-admin/dotbot/dotbot-1.20.1.ebuild +++ b/app-admin/dotbot/dotbot-1.20.1.ebuild @@ -3,6 +3,7 @@ EAPI=8 +DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{10..12} ) inherit distutils-r1 @@ -20,3 +21,8 @@ RDEPEND=" " distutils_enable_tests pytest + +python_test() { + # test_shim fails when executed with superuser privileges: + epytest -k "not test_shim" #916987 +}
