diff options
author | Sam James <sam@gentoo.org> | 2022-08-11 11:13:55 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-08-11 11:20:50 +0100 |
commit | 967f2decb95f1b79292f67287eff47fe2576e59f (patch) | |
tree | eaefbd8b41d9d0e383097be49aabe239d22984ec /x11-wm | |
parent | app-shells/fish: fix PythonAnyMismatchedDepHasVersionCheck (diff) | |
download | gentoo-967f2decb95f1b79292f67287eff47fe2576e59f.tar.gz gentoo-967f2decb95f1b79292f67287eff47fe2576e59f.tar.bz2 gentoo-967f2decb95f1b79292f67287eff47fe2576e59f.zip |
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 <sam@gentoo.org>
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/mutter/mutter-42.2.ebuild | 2 | ||||
-rw-r--r-- | 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 3edf61ef69c1..f99221169c0b 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 26438fb0f09a..94496717159e 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 } |