diff options
author | Stephan Hartmann <sultan@gentoo.org> | 2022-02-14 09:42:35 +0100 |
---|---|---|
committer | Stephan Hartmann <sultan@gentoo.org> | 2022-02-14 09:44:00 +0100 |
commit | 0b179593e7beb7c600e0c43e56c7d47dbb13a67d (patch) | |
tree | 6960bb7dc80f45dadbba84a153e64ac528e34e88 /eclass | |
parent | net-misc/nextcloud-client: fix tests execution, run them with virtx (diff) | |
download | gentoo-0b179593e7beb7c600e0c43e56c7d47dbb13a67d.tar.gz gentoo-0b179593e7beb7c600e0c43e56c7d47dbb13a67d.tar.bz2 gentoo-0b179593e7beb7c600e0c43e56c7d47dbb13a67d.zip |
llvm.eclass: enable EAPI 8
Signed-off-by: Stephan Hartmann <sultan@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/llvm.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/llvm.eclass b/eclass/llvm.eclass index 4461046128b4..9a6f0c8b6b85 100644 --- a/eclass/llvm.eclass +++ b/eclass/llvm.eclass @@ -6,7 +6,7 @@ # Michał Górny <mgorny@gentoo.org> # @AUTHOR: # Michał Górny <mgorny@gentoo.org> -# @SUPPORTED_EAPIS: 6 7 +# @SUPPORTED_EAPIS: 6 7 8 # @BLURB: Utility functions to build against slotted LLVM # @DESCRIPTION: # The llvm.eclass provides utility functions that can be used to build @@ -60,7 +60,7 @@ case "${EAPI:-0}" in 0|1|2|3|4|5) die "Unsupported EAPI=${EAPI:-0} (too old) for ${ECLASS}" ;; - 6|7) + 6|7|8) ;; *) die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}" |