From 8deb9e96df95372d72b6f682864c887ef39a4dba Mon Sep 17 00:00:00 2001 From: Andreas Müller Date: Tue, 17 Aug 2021 16:39:15 +0200 Subject: catch2: upgrade 2.13.6 -> 2.13.7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes * Added missing include in benchmarking. (#2231) * Fixed noexcept build with benchmarking enabled (#2235) * Fixed build for compilers with C++17 support but without C++17 library support (#2195) * JUnit only uses 3 decimal places when reporting durations (#2221) * !mayfail tagged tests are now marked as skipped in JUnit reporter output (#2116) Signed-off-by: Andreas Müller Signed-off-by: Khem Raj --- meta-oe/recipes-test/catch2/catch2_2.13.6.bb | 22 ---------------------- meta-oe/recipes-test/catch2/catch2_2.13.7.bb | 22 ++++++++++++++++++++++ 2 files changed, 22 insertions(+), 22 deletions(-) delete mode 100644 meta-oe/recipes-test/catch2/catch2_2.13.6.bb create mode 100644 meta-oe/recipes-test/catch2/catch2_2.13.7.bb (limited to 'meta-oe') diff --git a/meta-oe/recipes-test/catch2/catch2_2.13.6.bb b/meta-oe/recipes-test/catch2/catch2_2.13.6.bb deleted file mode 100644 index adfc03a16e..0000000000 --- a/meta-oe/recipes-test/catch2/catch2_2.13.6.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" -SRCREV = "5c88067bd339465513af4aec606bd2292f1b594a" - -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 new file mode 100644 index 0000000000..3eda96c731 --- /dev/null +++ b/meta-oe/recipes-test/catch2/catch2_2.13.7.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" +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 1.2.3-korg