Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: eclass/
Date: Sun, 18 Jul 2021 16:55:45
Message-Id: 1626596305.67adf37b7294378d0f41c2a215962bbcc5a35469.asturm@gentoo
1 commit: 67adf37b7294378d0f41c2a215962bbcc5a35469
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 18 08:01:59 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 18 08:18:25 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=67adf37b
7
8 kde.org.eclass: Support EAPI-8
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 eclass/kde.org.eclass | 6 +++---
13 1 file changed, 3 insertions(+), 3 deletions(-)
14
15 diff --git a/eclass/kde.org.eclass b/eclass/kde.org.eclass
16 index 0503bcf6a2..31359c3f63 100644
17 --- a/eclass/kde.org.eclass
18 +++ b/eclass/kde.org.eclass
19 @@ -4,7 +4,7 @@
20 # @ECLASS: kde.org.eclass
21 # @MAINTAINER:
22 # kde@g.o
23 -# @SUPPORTED_EAPIS: 7
24 +# @SUPPORTED_EAPIS: 7 8
25 # @BLURB: Support eclass for packages that are hosted on kde.org infrastructure.
26 # @DESCRIPTION:
27 # This eclass is mainly providing facilities for the three upstream release
28 @@ -15,8 +15,8 @@
29 # It also contains default meta variables for settings not specific to any
30 # particular build system.
31
32 -case ${EAPI} in
33 - 7) ;;
34 +case ${EAPI:-0} in
35 + 7|8) ;;
36 *) die "EAPI=${EAPI:-0} is not supported" ;;
37 esac