commit: 2df67ca296c95ad8496dd05413221d28ad3911af
Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 11 21:00:43 2020 +0000
Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Sun Oct 11 21:01:10 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2df67ca2
dev-python/pygobject: don't skip tests on disabled py2
It's py3-only now, so no need for the code from commit
a07e2a8c90a4307ef9eccd6c7605568eb692a0f1 anymore.
Package-Manager: Portage-2.3.103, Repoman-2.3.20
Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
dev-python/pygobject/pygobject-3.36.1-r1.ebuild | 17 +++++------------
1 file changed, 5 insertions(+), 12 deletions(-)
diff --git a/dev-python/pygobject/pygobject-3.36.1-r1.ebuild
b/dev-python/pygobject/pygobject-3.36.1-r1.ebuild
index e07d82e9ea8..774991e0a08 100644
--- a/dev-python/pygobject/pygobject-3.36.1-r1.ebuild
+++ b/dev-python/pygobject/pygobject-3.36.1-r1.ebuild
@@ -27,13 +27,11 @@ RDEPEND="${PYTHON_DEPS}
"
DEPEND="${RDEPEND}
test? (
- $(python_gen_cond_dep '
- dev-libs/atk[introspection]
- dev-python/pytest[${PYTHON_USEDEP}]
- x11-libs/gdk-pixbuf:2[introspection,jpeg]
- x11-libs/gtk+:3[introspection]
- x11-libs/pango[introspection]
- ' -3)
+ dev-libs/atk[introspection]
+ dev-python/pytest[${PYTHON_USEDEP}]
+ x11-libs/gdk-pixbuf:2[introspection,jpeg]
+ x11-libs/gtk+:3[introspection]
+ x11-libs/pango[introspection]
)
"
BDEPEND="
@@ -62,11 +60,6 @@ src_test() {
local -x GIO_USE_VOLUME_MONITOR="unix" # prevent udisks-related
failures in chroots, bug #449484
testing() {
- if ! python_is_python3; then
- einfo "Skipping tests on Python 2 to unblock deps"
- return
- fi
-
local -x XDG_CACHE_HOME="${T}/${EPYTHON}"
meson_src_test || die "test failed for ${EPYTHON}"
}