Gentoo Archives: gentoo-dev

From: Stephan Hartmann <sultan@g.o>
To: gentoo-dev@l.g.o
Cc: Stephan Hartmann <sultan@g.o>
Subject: [gentoo-dev] [PATCH] llvm.eclass: enable EAPI 8
Date: Sun, 30 Jan 2022 20:04:59
Message-Id: 20220130200430.8757-1-sultan@gentoo.org
1 Signed-off-by: Stephan Hartmann <sultan@g.o>
2 ---
3 eclass/llvm.eclass | 6 +++---
4 1 file changed, 3 insertions(+), 3 deletions(-)
5
6 diff --git a/eclass/llvm.eclass b/eclass/llvm.eclass
7 index 359f3a669d0..fbfd64b88be 100644
8 --- a/eclass/llvm.eclass
9 +++ b/eclass/llvm.eclass
10 @@ -1,4 +1,4 @@
11 -# Copyright 1999-2021 Gentoo Authors
12 +# Copyright 1999-2022 Gentoo Authors
13 # Distributed under the terms of the GNU General Public License v2
14
15 # @ECLASS: llvm.eclass
16 @@ -6,7 +6,7 @@
17 # Michał Górny <mgorny@g.o>
18 # @AUTHOR:
19 # Michał Górny <mgorny@g.o>
20 -# @SUPPORTED_EAPIS: 6 7
21 +# @SUPPORTED_EAPIS: 6 7 8
22 # @BLURB: Utility functions to build against slotted LLVM
23 # @DESCRIPTION:
24 # The llvm.eclass provides utility functions that can be used to build
25 @@ -60,7 +60,7 @@ case "${EAPI:-0}" in
26 0|1|2|3|4|5)
27 die "Unsupported EAPI=${EAPI:-0} (too old) for ${ECLASS}"
28 ;;
29 - 6|7)
30 + 6|7|8)
31 ;;
32 *)
33 die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}"
34 --
35 2.34.1