Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Mon, 10 Dec 2018 22:13:17
Message-Id: 1544479890.6578698969f017ff5eb0439de4344fe6d73ca51b.asturm@gentoo
1 commit: 6578698969f017ff5eb0439de4344fe6d73ca51b
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Mar 6 21:28:50 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 10 22:11:30 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65786989
7
8 kde5-functions.eclass: Enable EAPI-7
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 eclass/kde5-functions.eclass | 3 ++-
13 1 file changed, 2 insertions(+), 1 deletion(-)
14
15 diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass
16 index 2c3c7bdf5ee..c6cdc4ba9d0 100644
17 --- a/eclass/kde5-functions.eclass
18 +++ b/eclass/kde5-functions.eclass
19 @@ -4,7 +4,7 @@
20 # @ECLASS: kde5-functions.eclass
21 # @MAINTAINER:
22 # kde@g.o
23 -# @SUPPORTED_EAPIS: 6
24 +# @SUPPORTED_EAPIS: 6 7
25 # @BLURB: Common ebuild functions for packages based on KDE Frameworks 5.
26 # @DESCRIPTION:
27 # This eclass contains functions shared by the other KDE eclasses and forms
28 @@ -18,6 +18,7 @@ _KDE5_FUNCTIONS_ECLASS=1
29 inherit toolchain-funcs
30
31 case ${EAPI} in
32 + 7) ;;
33 6) inherit eapi7-ver ;;
34 *) die "EAPI=${EAPI:-0} is not supported" ;;
35 esac