From a2d885c08af751ac544b24df4e40b2f2dc304875 Mon Sep 17 00:00:00 2001 From: alperak Date: Sat, 11 Nov 2023 22:34:58 +0300 Subject: catch2: upgrade 2.13.7 -> 2.13.10 v2.13.10: Fixes: -Fixed issue with catch_discover_tests when there is multiple of 256 tests (#2401, #2503) -Catch2-provided main and wmain are explicitly marked as __cdecl when compiled with MSVC (#2486, #2487) -Improved break-into-debugger behaviour for ARM Macs. It should now be possible to step execution after the break (#2422) -Replaced deprecated std::aligned_storage (#2419, #2420) v2.13.9: Fixes: -Fixed issue with -# (filename-as-tag) flag when __FILE__ expands into filename without directories (#2328, #2393) -Fixed CAPTURE macro not being variadic when disabled through CATCH_CONFIG_DISABLE (#2316, #2378) v2.13.8: Fixes: -Made Approx::operator() const (#2288) -Improved pkg-config files (#2284) -Fixed warning suppression leaking out of Catch2 when compiled with clang.exe (#2280) -The macro-generated names for things like TEST_CASE no longer create reserved identifiers (#2336) Improvements: -Clang-tidy should no longer warn about missing virtual dispatch in FilterGenerator's constructor (#2314) Signed-off-by: alperak Signed-off-by: Khem Raj (cherry picked from commit 1bdab916b1fd70ce9196aedac319df5dd8b6dd15) Signed-off-by: Gyorgy Sarvari --- meta-oe/recipes-test/catch2/catch2_2.13.10.bb | 22 ++++++++++++++++++++++ meta-oe/recipes-test/catch2/catch2_2.13.7.bb | 22 ---------------------- 2 files changed, 22 insertions(+), 22 deletions(-) create mode 100644 meta-oe/recipes-test/catch2/catch2_2.13.10.bb delete mode 100644 meta-oe/recipes-test/catch2/catch2_2.13.7.bb diff --git a/meta-oe/recipes-test/catch2/catch2_2.13.10.bb b/meta-oe/recipes-test/catch2/catch2_2.13.10.bb new file mode 100644 index 0000000000..85403e3686 --- /dev/null +++ b/meta-oe/recipes-test/catch2/catch2_2.13.10.bb @@ -0,0 +1,22 @@ +DESCRIPTION = "A modern, C++-native, header-only, test framework for unit-tests, \ +TDD and BDD - using C++11, C++14, C++17 and later." +AUTHOR = "Phil Nash, Martin Horenovsky and others" +HOMEPAGE = "https://github.com/catchorg/Catch2" +LICENSE = "BSL-1.0" +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e4224ccaecb14d942c71d31bef20d78c" + +SRC_URI = "git://github.com/catchorg/Catch2.git;branch=v2.x;protocol=https" +SRCREV = "182c910b4b63ff587a3440e08f84f70497e49a81" + +S = "${WORKDIR}/git" + +inherit cmake python3native + +do_install:append() { + rm ${D}${datadir}/Catch2/lldbinit + rm ${D}${datadir}/Catch2/gdbinit + rmdir ${D}${datadir}/Catch2/ +} +# Header-only library +RDEPENDS:${PN}-dev = "" +RRECOMMENDS:${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})" diff --git a/meta-oe/recipes-test/catch2/catch2_2.13.7.bb b/meta-oe/recipes-test/catch2/catch2_2.13.7.bb deleted file mode 100644 index ed50f659d3..0000000000 --- a/meta-oe/recipes-test/catch2/catch2_2.13.7.bb +++ /dev/null @@ -1,22 +0,0 @@ -DESCRIPTION = "A modern, C++-native, header-only, test framework for unit-tests, \ -TDD and BDD - using C++11, C++14, C++17 and later." -AUTHOR = "Phil Nash, Martin Horenovsky and others" -HOMEPAGE = "https://github.com/catchorg/Catch2" -LICENSE = "BSL-1.0" -LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e4224ccaecb14d942c71d31bef20d78c" - -SRC_URI = "git://github.com/catchorg/Catch2.git;branch=v2.x;protocol=https" -SRCREV = "c4e3767e265808590986d5db6ca1b5532a7f3d13" - -S = "${WORKDIR}/git" - -inherit cmake python3native - -do_install:append() { - rm ${D}${datadir}/Catch2/lldbinit - rm ${D}${datadir}/Catch2/gdbinit - rmdir ${D}${datadir}/Catch2/ -} -# Header-only library -RDEPENDS:${PN}-dev = "" -RRECOMMENDS:${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})" -- cgit v1.2.3-54-g00ecf