From 967f2decb95f1b79292f67287eff47fe2576e59f Mon Sep 17 00:00:00 2001 From: Sam James Date: Thu, 11 Aug 2022 11:13:55 +0100 Subject: [PATCH] x11-wm/mutter: fix PythonAnyMismatchedDepHasVersionCheck has_version was checking DEPEND, not BDEPEND, so change to python_has_version for better defaults (defaults to BDEPEND) but also nicer output. Signed-off-by: Sam James --- x11-wm/mutter/mutter-42.2.ebuild | 2 +- x11-wm/mutter/mutter-42.3.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/x11-wm/mutter/mutter-42.2.ebuild b/x11-wm/mutter/mutter-42.2.ebuild index 3edf61ef69c1a..f99221169c0bc 100644 --- a/x11-wm/mutter/mutter-42.2.ebuild +++ b/x11-wm/mutter/mutter-42.2.ebuild @@ -114,7 +114,7 @@ PATCHES=( python_check_deps() { if use test; then - has_version "dev-python/python-dbusmock[${PYTHON_USEDEP}]" + python_has_version "dev-python/python-dbusmock[${PYTHON_USEDEP}]" fi } diff --git a/x11-wm/mutter/mutter-42.3.ebuild b/x11-wm/mutter/mutter-42.3.ebuild index 26438fb0f09a4..94496717159e4 100644 --- a/x11-wm/mutter/mutter-42.3.ebuild +++ b/x11-wm/mutter/mutter-42.3.ebuild @@ -115,7 +115,7 @@ PATCHES=( python_check_deps() { if use test; then - has_version "dev-python/python-dbusmock[${PYTHON_USEDEP}]" + python_has_version "dev-python/python-dbusmock[${PYTHON_USEDEP}]" fi }