commit:     e32e40f19f2417601c8c881780429aeade00c59f
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 17 15:29:29 2025 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Feb 21 09:08:24 2026 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e32e40f1

crossdev.eclass: Support EAPI 9

Acked-by: Sam James <sam <AT> gentoo.org>
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 eclass/crossdev.eclass | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/eclass/crossdev.eclass b/eclass/crossdev.eclass
index d6c99e4f32b7..bf9eab279bc6 100644
--- a/eclass/crossdev.eclass
+++ b/eclass/crossdev.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 # @ECLASS: crossdev.eclass
@@ -6,19 +6,19 @@
 # [email protected]
 # @AUTHOR:
 # Alfred Persson Forsberg <[email protected]> (21 Jul 2023)
-# @SUPPORTED_EAPIS: 7 8
+# @SUPPORTED_EAPIS: 7 8 9
 # @BLURB: Convenience wrappers for packages used by the Crossdev tool.
 
 inherit toolchain-funcs
 
+if [[ -z ${_CROSSDEV_ECLASS} ]]; then
+_CROSSDEV_ECLASS=1
+
 case ${EAPI} in
-       7|8) ;;
+       7|8|9) ;;
        *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
 esac
 
-if [[ -z ${_CROSSDEV_ECLASS} ]]; then
-_CROSSDEV_ECLASS=1
-
 # @ECLASS_VARIABLE: _CROSS_CATEGORY_PREFIX
 # @INTERNAL
 # @DESCRIPTION:

Reply via email to