From 54d23655652cc91f03060db8b49ef3c4bb0241c7 Mon Sep 17 00:00:00 2001 From: Pavel Sobolev Date: Tue, 14 Jul 2026 21:21:34 +0300 Subject: [PATCH] dev-python/ignore-python: copy the `.so` file instead of overriding `pythonpath` Closes: https://bugs.gentoo.org/979206 Signed-off-by: Pavel Sobolev --- dev-python/ignore-python/ignore-python-0.4.1.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-python/ignore-python/ignore-python-0.4.1.ebuild b/dev-python/ignore-python/ignore-python-0.4.1.ebuild index c73ca44190..a05d2e545c 100644 --- a/dev-python/ignore-python/ignore-python-0.4.1.ebuild +++ b/dev-python/ignore-python/ignore-python-0.4.1.ebuild @@ -31,5 +31,6 @@ EPYTEST_PLUGINS=() distutils_enable_tests pytest python_test() { - epytest --override-ini="pythonpath=${BUILD_DIR}/install$(python_get_sitedir)" + cp "${BUILD_DIR}/install$(python_get_sitedir)/ignore/ignore"*.so ignore || die + epytest }