diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-07-18 09:42:53 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-07-18 13:28:15 +0200 |
commit | dbe2a59b69cd406e7840c2dba5146ec60596f59d (patch) | |
tree | 840b405fb7720d4fb6f850d2fe5aab97d2e9a35b /eclass/llvm.org.eclass | |
parent | llvm.org.eclass: remove pre-10.0.1 condition (diff) | |
download | gentoo-dbe2a59b69cd406e7840c2dba5146ec60596f59d.tar.gz gentoo-dbe2a59b69cd406e7840c2dba5146ec60596f59d.tar.bz2 gentoo-dbe2a59b69cd406e7840c2dba5146ec60596f59d.zip |
llvm.org.eclass: Enable EAPI 8
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass/llvm.org.eclass')
-rw-r--r-- | eclass/llvm.org.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/llvm.org.eclass b/eclass/llvm.org.eclass index 9d415a7224ab..d0b172e4fed4 100644 --- a/eclass/llvm.org.eclass +++ b/eclass/llvm.org.eclass @@ -6,7 +6,7 @@ # Michał Górny <mgorny@gentoo.org> # @AUTHOR: # Michał Górny <mgorny@gentoo.org> -# @SUPPORTED_EAPIS: 7 +# @SUPPORTED_EAPIS: 7 8 # @BLURB: Common bits for fetching & unpacking llvm.org projects # @DESCRIPTION: # The llvm.org eclass provides common code to fetch and unpack parts @@ -30,7 +30,7 @@ # @CODE case "${EAPI:-0}" in - 7) + 7|8) ;; *) die "Unsupported EAPI=${EAPI} for ${ECLASS}" |