commit: 5d2ca680299ef75633443e714660793202cf9b51 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Wed Dec 17 15:30:01 2025 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Fri Dec 19 15:20:06 2025 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=5d2ca680
plasma.kde.org.eclass: Support EAPI 9 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> eclass/plasma.kde.org.eclass | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/eclass/plasma.kde.org.eclass b/eclass/plasma.kde.org.eclass index 4b21d4f60b..bbcc677a83 100644 --- a/eclass/plasma.kde.org.eclass +++ b/eclass/plasma.kde.org.eclass @@ -4,7 +4,7 @@ # @ECLASS: plasma.kde.org.eclass # @MAINTAINER: # [email protected] -# @SUPPORTED_EAPIS: 8 +# @SUPPORTED_EAPIS: 8 9 # @PROVIDES: kde.org # @BLURB: Support eclass for KDE Plasma packages. # @DESCRIPTION: @@ -17,14 +17,14 @@ # variables and helper functions (not phase functions) may be considered as # part of this eclass's API. +if [[ -z ${_PLASMA_KDE_ORG_ECLASS} ]]; then +_PLASMA_KDE_ORG_ECLASS=1 + case ${EAPI} in - 8) ;; + 8|9) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac -if [[ -z ${_PLASMA_KDE_ORG_ECLASS} ]]; then -_PLASMA_KDE_ORG_ECLASS=1 - # @ECLASS_VARIABLE: KDE_CATV # @DESCRIPTION: # Holds main Plasma release number (major.minor.micro) for use on same-category
