commit:     4c5963673a3033979a57c10215257ed4a35751ab
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 30 09:18:54 2025 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Oct 30 10:17:44 2025 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=4c596367

cmake.eclass: add global-scope ewarn for deprecated < EAPI 7

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 eclass/cmake.eclass | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/eclass/cmake.eclass b/eclass/cmake.eclass
index faf9f805ba..d187fc0649 100644
--- a/eclass/cmake.eclass
+++ b/eclass/cmake.eclass
@@ -19,7 +19,11 @@
 # out-of-source builds (default) and in-source builds.
 
 case ${EAPI} in
-       7|8) ;;
+       7)
+               ewarn "${CATEGORY}/${PF}: ebuild uses ${ECLASS} with deprecated 
EAPI ${EAPI}!"
+               ewarn "${CATEGORY}/${PF}: Support will be removed on 
2025-11-14. Please port to newer EAPI."
+               ;;
+       8) ;;
        *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
 esac
 
@@ -549,7 +553,6 @@ cmake_src_prepare() {
                        chmod -R a-w "${S}"
                fi
                _CMAKE_PREPARE_HAS_RUN=1
-               eqawarn "QA Notice: cmake.eclass will throw unsupported EAPI=7 
error after 2025-11-01."
        else
                default_src_prepare
                cmake_prepare

Reply via email to