commit: dfa1acfc797304d73d4014b0c2df7e849878c075 Author: David Seifert <soap <AT> gentoo <DOT> org> AuthorDate: Fri Mar 17 22:04:31 2023 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Thu Mar 23 19:31:21 2023 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=dfa1acfc
eclass: standardize prologue/epilogue Closes: https://github.com/gentoo/gentoo/pull/30061 Signed-off-by: David Seifert <soap <AT> gentoo.org> Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> eclass/cmake.eclass | 2 +- eclass/ecm.eclass | 2 +- eclass/frameworks.kde.org.eclass | 2 +- eclass/gear.kde.org.eclass | 2 +- eclass/kde.org.eclass | 2 +- eclass/plasma-mobile.kde.org.eclass | 2 +- eclass/plasma.kde.org.eclass | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/eclass/cmake.eclass b/eclass/cmake.eclass index 28114eb76e..b12b8ec8d6 100644 --- a/eclass/cmake.eclass +++ b/eclass/cmake.eclass @@ -20,7 +20,7 @@ case ${EAPI} in 7|8) ;; - *) die "${ECLASS}: EAPI=${EAPI:-0} is not supported" ;; + *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac if [[ -z ${_CMAKE_ECLASS} ]]; then diff --git a/eclass/ecm.eclass b/eclass/ecm.eclass index 25e8493ecc..5d4ec3c7f2 100644 --- a/eclass/ecm.eclass +++ b/eclass/ecm.eclass @@ -23,7 +23,7 @@ case ${EAPI} in 8) ;; - *) die "${ECLASS}: EAPI=${EAPI:-0} is not supported" ;; + *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac if [[ -z ${_ECM_ECLASS} ]]; then diff --git a/eclass/frameworks.kde.org.eclass b/eclass/frameworks.kde.org.eclass index d0a3ce1e99..81ac235d01 100644 --- a/eclass/frameworks.kde.org.eclass +++ b/eclass/frameworks.kde.org.eclass @@ -19,7 +19,7 @@ case ${EAPI} in 8) ;; - *) die "EAPI=${EAPI:-0} is not supported" ;; + *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac if [[ -z ${_FRAMEWORKS_KDE_ORG_ECLASS} ]]; then diff --git a/eclass/gear.kde.org.eclass b/eclass/gear.kde.org.eclass index 0f6ffe67c5..5977c0f72e 100644 --- a/eclass/gear.kde.org.eclass +++ b/eclass/gear.kde.org.eclass @@ -19,7 +19,7 @@ case ${EAPI} in 8) ;; - *) die "EAPI=${EAPI:-0} is not supported" ;; + *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac if [[ -z ${_GEAR_KDE_ORG_ECLASS} ]]; then diff --git a/eclass/kde.org.eclass b/eclass/kde.org.eclass index 0fa9006ba2..629c57d9a0 100644 --- a/eclass/kde.org.eclass +++ b/eclass/kde.org.eclass @@ -17,7 +17,7 @@ case ${EAPI} in 8) ;; - *) die "EAPI=${EAPI:-0} is not supported" ;; + *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac if [[ -z ${_KDE_ORG_ECLASS} ]]; then diff --git a/eclass/plasma-mobile.kde.org.eclass b/eclass/plasma-mobile.kde.org.eclass index a0436dbd97..1e2c5b6eb4 100644 --- a/eclass/plasma-mobile.kde.org.eclass +++ b/eclass/plasma-mobile.kde.org.eclass @@ -19,7 +19,7 @@ case ${EAPI} in 8) ;; - *) die "EAPI=${EAPI:-0} is not supported" ;; + *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac if [[ -z ${_PLASMA_MOBILE_KDE_ORG_ECLASS} ]]; then diff --git a/eclass/plasma.kde.org.eclass b/eclass/plasma.kde.org.eclass index afdb95d694..8fcf087896 100644 --- a/eclass/plasma.kde.org.eclass +++ b/eclass/plasma.kde.org.eclass @@ -19,7 +19,7 @@ case ${EAPI} in 8) ;; - *) die "EAPI=${EAPI:-0} is not supported" ;; + *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac if [[ -z ${_PLASMA_KDE_ORG_ECLASS} ]]; then
