All consumers are now on EAPI 8. Signed-off-by: James Le Cuirot <[email protected]> --- eclass/gstreamer-meson.eclass | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-)
diff --git a/eclass/gstreamer-meson.eclass b/eclass/gstreamer-meson.eclass index 22626f1b82b8..0779168c5787 100644 --- a/eclass/gstreamer-meson.eclass +++ b/eclass/gstreamer-meson.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: gstreamer-meson.eclass @@ -13,7 +13,7 @@ # foser <[email protected]> # zaheerm <[email protected]> # Steven Newbury -# @SUPPORTED_EAPIS: 7 8 +# @SUPPORTED_EAPIS: 8 # @PROVIDES: meson multilib-minimal # @BLURB: Helps building core & split gstreamer plugins # @DESCRIPTION: @@ -28,18 +28,16 @@ # also list any packages that provide explicitly requested plugins. case "${EAPI:-0}" in - 7|8) + 8) ;; *) die "EAPI=\"${EAPI}\" is not supported" ;; esac -PYTHON_COMPAT=( python3_{10..13} ) -[[ ${EAPI} == 8 ]] && inherit python-any-r1 - # multilib-minimal goes last -inherit meson multilib toolchain-funcs xdg-utils multilib-minimal +PYTHON_COMPAT=( python3_{10..13} ) +inherit python-any-r1 meson multilib toolchain-funcs xdg-utils multilib-minimal # @ECLASS_VARIABLE: GST_PLUGINS_ENABLED # @DESCRIPTION: -- 2.51.2
