commit: 7f6abb01edf5a677c6286d12810b4a7cbccf437e Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Wed Dec 17 15:29:49 2025 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Mon Jan 26 11:33:23 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f6abb01
llvm-utils.eclass: Support EAPI 9 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> eclass/llvm-utils.eclass | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/eclass/llvm-utils.eclass b/eclass/llvm-utils.eclass index 98fc81408415..c6cca05f796d 100644 --- a/eclass/llvm-utils.eclass +++ b/eclass/llvm-utils.eclass @@ -6,21 +6,21 @@ # Michał Górny <[email protected]> # @AUTHOR: # Michał Górny <[email protected]> -# @SUPPORTED_EAPIS: 7 8 +# @SUPPORTED_EAPIS: 7 8 9 # @BLURB: Common utility functions for building against installed LLVM # @DESCRIPTION: # The utility eclass providing shared functions reused between # llvm.eclass and llvm-r1.eclass. It may also be used directly # in ebuilds. +if [[ -z ${_LLVM_UTILS_ECLASS} ]]; then +_LLVM_UTILS_ECLASS=1 + case ${EAPI} in - 7|8) ;; + 7|8|9) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac -if [[ -z ${_LLVM_UTILS_ECLASS} ]]; then -_LLVM_UTILS_ECLASS=1 - # @FUNCTION: llvm_tuple_to_target # @USAGE: [<tuple>] # @DESCRIPTION:
