From 512cc1172e00ad8cfef23e2b25e343cdfe27e342 Mon Sep 17 00:00:00 2001 From: Gyorgy Sarvari Date: Mon, 28 Jul 2025 17:42:47 +0200 Subject: [PATCH] cpputest: update to latest revision The maintainers of cpputest haven't created a release for over 5 years, however the application is still under very active development. The maintainers claim that every commit that goes through their CI is stable just like a tagged release[1] - so update to the latest revision. Also, update the cmake options, and remove the obsolete ones. Drop the patches as well, as they are included in this revision. [1]: https://github.com/cpputest/cpputest/issues/1651 Signed-off-by: Gyorgy Sarvari Signed-off-by: Khem Raj --- ...um_required-before-project-in-CMakeL.patch | 36 ---------------- .../0002-Squelch-deprecation-warning.patch | 43 ------------------- .../{cpputest_4.0.bb => cpputest_git.bb} | 15 +++---- 3 files changed, 5 insertions(+), 89 deletions(-) delete mode 100644 meta-oe/recipes-test/cpputest/cpputest/0001-Call-cmake_minimum_required-before-project-in-CMakeL.patch delete mode 100644 meta-oe/recipes-test/cpputest/cpputest/0002-Squelch-deprecation-warning.patch rename meta-oe/recipes-test/cpputest/{cpputest_4.0.bb => cpputest_git.bb} (50%) diff --git a/meta-oe/recipes-test/cpputest/cpputest/0001-Call-cmake_minimum_required-before-project-in-CMakeL.patch b/meta-oe/recipes-test/cpputest/cpputest/0001-Call-cmake_minimum_required-before-project-in-CMakeL.patch deleted file mode 100644 index a987939ea6..0000000000 --- a/meta-oe/recipes-test/cpputest/cpputest/0001-Call-cmake_minimum_required-before-project-in-CMakeL.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 5351875cde23340c0a98fe46566cde5535c40e21 Mon Sep 17 00:00:00 2001 -From: georgev93 -Date: Fri, 26 Jun 2020 19:07:14 -0400 -Subject: [PATCH 1/2] Call cmake_minimum_required() before project() in - CMakeLists.txt. - -From https://cmake.org/cmake/help/latest/command/cmake_minimum_required.html: -Note: Call the cmake_minimum_required() command at the beginning of the top-level CMakeLists.txt file even before calling the project() command. It is important to establish version and policy settings before invoking other commands whose behavior they may affect. See also policy CMP0000. - -Signed-off-by: Moritz Haase -Upstream-Status: Backport [e0c050d8b614294b2215a62e64628470fab67f20] ---- - CMakeLists.txt | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 88e0cfb5..d36c6491 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -1,12 +1,12 @@ -+# 2.6.3 is needed for ctest support -+# 3.1 is needed for target_sources -+cmake_minimum_required(VERSION 3.1) -+ - project(CppUTest) - - set(CppUTest_version_major 4) - set(CppUTest_version_minor 0) - --# 2.6.3 is needed for ctest support --# 3.1 is needed for target_sources --cmake_minimum_required(VERSION 3.1) -- - ############### - # Conan support - ############### diff --git a/meta-oe/recipes-test/cpputest/cpputest/0002-Squelch-deprecation-warning.patch b/meta-oe/recipes-test/cpputest/cpputest/0002-Squelch-deprecation-warning.patch deleted file mode 100644 index 6f791e4c0e..0000000000 --- a/meta-oe/recipes-test/cpputest/cpputest/0002-Squelch-deprecation-warning.patch +++ /dev/null @@ -1,43 +0,0 @@ -From 46bdc8ceca42fd19cd2b97d9fa845860e537dee9 Mon Sep 17 00:00:00 2001 -From: Chad Condon -Date: Fri, 27 Dec 2024 18:21:21 -0800 -Subject: [PATCH 2/2] Squelch deprecation warning - -Most recent CMake started complaining about the pending end of 3.8 -support. - -> ``` -> CMake Deprecation Warning at CMakeLists.txt:4 (cmake_minimum_required): -> Compatibility with CMake < 3.10 will be removed from a future version of -> CMake. -> -> Update the VERSION argument value. Or, use the ... syntax -> to tell CMake that the project requires at least but has been updated -> to work with policies introduced by or earlier. -> ``` - -We can retain support by adding a max version. This will no -prevent use with newer versions, but indicates forward -compatibility.[^1] - -[^1]: https://cmake.org/cmake/help/latest/command/cmake_minimum_required.html - -Signed-off-by: Moritz Haase -Upstream-Status: Backport [9dda473ded5913d47221e7ae50817dbcd45175ff] ---- - CMakeLists.txt | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/CMakeLists.txt b/CMakeLists.txt -index d36c6491..0cc12cb1 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -1,6 +1,7 @@ - # 2.6.3 is needed for ctest support - # 3.1 is needed for target_sources --cmake_minimum_required(VERSION 3.1) -+# 3.8 is needed for try_compile improvements (CMP0067) -+cmake_minimum_required(VERSION 3.8...3.31) - - project(CppUTest) - diff --git a/meta-oe/recipes-test/cpputest/cpputest_4.0.bb b/meta-oe/recipes-test/cpputest/cpputest_git.bb similarity index 50% rename from meta-oe/recipes-test/cpputest/cpputest_4.0.bb rename to meta-oe/recipes-test/cpputest/cpputest_git.bb index 2b643d0cd5..73681498f2 100644 --- a/meta-oe/recipes-test/cpputest/cpputest_4.0.bb +++ b/meta-oe/recipes-test/cpputest/cpputest_git.bb @@ -5,23 +5,18 @@ SECTION = "devel" LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://COPYING;md5=ce5d5f1fe02bcd1343ced64a06fd4177" -SRC_URI = "git://github.com/cpputest/cpputest.git;protocol=https;branch=master \ - file://0001-Call-cmake_minimum_required-before-project-in-CMakeL.patch \ - file://0002-Squelch-deprecation-warning.patch \ -" -SRCREV = "67d2dfd41e13f09ff218aa08e2d35f1c32f032a1" +SRC_URI = "git://github.com/cpputest/cpputest.git;protocol=https;branch=master" +SRCREV = "aa49f2bfef314715c7c12c806bb44f3b85266d60" +PV = "4.0+git" inherit cmake -EXTRA_OECMAKE = "-DLONGLONG=ON \ - -DC++11=ON \ - -DTESTS=OFF \ - " +EXTRA_OECMAKE = "-DCPPUTEST_USE_LONGLONG=ON" DEV_PKG_DEPENDENCY = "" FILES:${PN}-dev += "${libdir}/CppUTest/cmake/*" PACKAGECONFIG ??= "" -PACKAGECONFIG[extensions] = "-DEXTENSIONS=ON,-DEXTENSIONS=OFF" +PACKAGECONFIG[extensions] = "-DCPPUTEST_EXTENSIONS=ON,-DCPPUTEST_EXTENSIONS=OFF"