summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-11-09 12:05:26 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2025-11-16 16:39:05 +0100
commit7f971baba135bcc13130926a27209847613c0a5d (patch)
tree19d44fc86c86606a5ef6bcf1c505bbae5b59501a /eclass
parentc1132185191d82a0542293acfef0642c3bc1671f (diff)
downloadkde-7f971baba135bcc13130926a27209847613c0a5d.tar.gz
kde-7f971baba135bcc13130926a27209847613c0a5d.tar.bz2
kde-7f971baba135bcc13130926a27209847613c0a5d.zip
ecm.eclass: Handle ECM_TEST=forceoptional in cmake_prepare-per-cmakelists
- Make ECM_TEST=forceoptional recursive by default - Leave ECM_TEST=forceoptional-recursive for BUILD_TESTING patch creation - Unrelated: Drop obsolete extra-cmake-modules condition, it uses cmake.eclass Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ecm.eclass62
1 files changed, 36 insertions, 26 deletions
diff --git a/eclass/ecm.eclass b/eclass/ecm.eclass
index 298a06bdd2c..85cbdf90275 100644
--- a/eclass/ecm.eclass
+++ b/eclass/ecm.eclass
@@ -526,6 +526,30 @@ ecm_pkg_setup() {
}
fi
+# @FUNCTION: cmake_prepare-per-cmakelists
+# @DESCRIPTION:
+# For proper description see cmake.eclass manpage.
+cmake_prepare-per-cmakelists() {
+ debug-print-function ${FUNCNAME} "$@"
+ local cm="$1"
+
+ # only build unit tests when required - forceoptional, also cover non-kde categories
+ if ! { in_iuse test && use test; } ; then
+ if [[ ${ECM_TEST} == forceoptional ]]; then
+ cmake_comment_add_subdirectory -f "${cm}" appiumtests autotests test tests
+ elif [[ ${ECM_TEST} == forceoptional-recursive ]] ; then
+ local pf="${T}/${P}"-tests-optional.patch
+ touch ${pf} || die "Failed to touch patch file"
+ cp ${cm} ${cm}.old || die "Failed to prepare patch origfile"
+ sed -i ${cm} -e \
+ "/^#/! s/add_subdirectory\s*\(\s*.*\(appium|auto|unit\)\?tests\?\s*)\s*\)/if(BUILD_TESTING)\n&\nendif()/I" \
+ || die
+ diff -Naur ${cm}.old ${cm} 1>>${pf}
+ rm ${cm}.old || die "Failed to clean up"
+ fi
+ fi
+}
+
# @FUNCTION: ecm_src_prepare
# @DESCRIPTION:
# Wrapper for cmake_src_prepare with lots of extra logic for magic
@@ -575,39 +599,25 @@ ecm_src_prepare() {
# only build unit tests when required
if ! { in_iuse test && use test; } ; then
- if [[ ${ECM_TEST} = forceoptional ]] ; then
- [[ ${_KFSLOT} = 5 ]] && ecm_punt_qt_module Test
- # if forceoptional, also cover non-kde categories
- cmake_comment_add_subdirectory appiumtests autotests test tests
- elif [[ ${ECM_TEST} = forceoptional-recursive ]] ; then
- [[ ${_KFSLOT} = 5 ]] && ecm_punt_qt_module Test
- local f pf="${T}/${P}"-tests-optional.patch
- touch ${pf} || die "Failed to touch patch file"
- for f in $(find . -type f -name "CMakeLists.txt" -exec \
- grep -li "^\s*add_subdirectory\s*\(\s*.*\(auto|unit\)\?tests\?\s*)\s*\)" {} \;); do
- cp ${f} ${f}.old || die "Failed to prepare patch origfile"
- pushd ${f%/*} > /dev/null || die
- ecm_punt_qt_module Test
- sed -i CMakeLists.txt -e \
- "/^#/! s/add_subdirectory\s*\(\s*.*\(auto|unit\)\?tests\?\s*)\s*\)/if(BUILD_TESTING)\n&\nendif()/I" \
- || die
- popd > /dev/null || die
- diff -Naur ${f}.old ${f} 1>>${pf}
- rm ${f}.old || die "Failed to clean up"
- done
- eqawarn "QA Notice: Build system modified by ECM_TEST=forceoptional-recursive."
- eqawarn "Unified diff file ready for pickup in:"
- eqawarn " ${pf}"
- eqawarn "Push it upstream to make this message go away."
- elif [[ -n ${_KDE_ORG_ECLASS} ]] ; then
+ if [[ ${ECM_TEST} == forceoptional* && ${_KFSLOT} == 5 ]]; then
+ ecm_punt_qt_module Test
+ fi
+ if [[ -n ${_KDE_ORG_ECLASS} && ${ECM_TEST} != forceoptional ]]; then
cmake_comment_add_subdirectory appiumtests autotests test tests
fi
fi
# in frameworks, tests = manual tests so never build them
- if [[ -n ${_FRAMEWORKS_KDE_ORG_ECLASS} ]] && [[ ${PN} != extra-cmake-modules ]]; then
+ if [[ -n ${_FRAMEWORKS_KDE_ORG_ECLASS} ]]; then
cmake_comment_add_subdirectory tests
fi
+
+ if ! { in_iuse test && use test; } && [[ ${ECM_TEST} == forceoptional-recursive ]]; then
+ eqawarn "QA Notice: Build system modified by ECM_TEST=forceoptional-recursive."
+ eqawarn "Unified diff file ready for pickup in:"
+ eqawarn " ${T}/${P}-tests-optional.patch"
+ eqawarn "Push it upstream to make this message go away."
+ fi
}
# @FUNCTION: ecm_src_configure