diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-03-06 22:28:50 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-12-10 23:11:30 +0100 |
commit | 6578698969f017ff5eb0439de4344fe6d73ca51b (patch) | |
tree | 0f4980bea3abe38288140db543702adbdad7ae66 /eclass | |
parent | cmake-utils.eclass: Turn `eqawarn` into `die` for >= EAPI 7 (diff) | |
download | gentoo-6578698969f017ff5eb0439de4344fe6d73ca51b.tar.gz gentoo-6578698969f017ff5eb0439de4344fe6d73ca51b.tar.bz2 gentoo-6578698969f017ff5eb0439de4344fe6d73ca51b.zip |
kde5-functions.eclass: Enable EAPI-7
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kde5-functions.eclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass index 2c3c7bdf5eeb..c6cdc4ba9d0e 100644 --- a/eclass/kde5-functions.eclass +++ b/eclass/kde5-functions.eclass @@ -4,7 +4,7 @@ # @ECLASS: kde5-functions.eclass # @MAINTAINER: # kde@gentoo.org -# @SUPPORTED_EAPIS: 6 +# @SUPPORTED_EAPIS: 6 7 # @BLURB: Common ebuild functions for packages based on KDE Frameworks 5. # @DESCRIPTION: # This eclass contains functions shared by the other KDE eclasses and forms @@ -18,6 +18,7 @@ _KDE5_FUNCTIONS_ECLASS=1 inherit toolchain-funcs case ${EAPI} in + 7) ;; 6) inherit eapi7-ver ;; *) die "EAPI=${EAPI:-0} is not supported" ;; esac |