From 76892a7093139ff549107ff271f8c25e4d265d1a Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Wed, 26 Feb 2025 07:23:54 +0800 Subject: double-conversion: upgrade 3.3.0 -> 3.3.1 Changelog: ============= - Hash pin Github workflows - Create dependabot.yml - Add _ITERATOR_DEBUG_LEVEL=2 and _DEBUG defines - Add bzlmod MODULE.bazel file - Add CIFuzz Github Action - Update MODULE.bazel and README.md. - Remove the explicit dependency on rules_cc. - Add missing headers Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- .../recipes-support/dc/double-conversion_3.3.0.bb | 41 ---------------------- .../recipes-support/dc/double-conversion_3.3.1.bb | 41 ++++++++++++++++++++++ 2 files changed, 41 insertions(+), 41 deletions(-) delete mode 100644 meta-oe/recipes-support/dc/double-conversion_3.3.0.bb create mode 100644 meta-oe/recipes-support/dc/double-conversion_3.3.1.bb diff --git a/meta-oe/recipes-support/dc/double-conversion_3.3.0.bb b/meta-oe/recipes-support/dc/double-conversion_3.3.0.bb deleted file mode 100644 index a8fd88a9ad..0000000000 --- a/meta-oe/recipes-support/dc/double-conversion_3.3.0.bb +++ /dev/null @@ -1,41 +0,0 @@ -SUMMARY = "Double conversion libraries" -DESCRIPTION = "This provides binary-decimal and decimal-binary routines for IEEE doubles." -HOMEPAGE = "https://github.com/google/double-conversion.git" - -LICENSE = "BSD-3-Clause" -LIC_FILES_CHKSUM = "file://LICENSE;md5=1ea35644f0ec0d9767897115667e901f" - - -S = "${WORKDIR}/git" - -SRC_URI = " \ - git://github.com/google/double-conversion.git;protocol=https;branch=master \ - file://run-ptest \ -" -SRCREV = "4f7a25d8ced8c7cf6eee6fd09d6788eaa23c9afe" - -inherit cmake ptest - -EXTRA_OECMAKE = "-DBUILD_SHARED_LIBS=ON" - -# These ptest use ctest (provided by cmake) -RDEPENDS:${PN}-ptest += "cmake" -# Build tests only if ptest is enabled -EXTRA_OECMAKE += "${@bb.utils.contains('PTEST_ENABLED', '1', '-DBUILD_TESTING=ON', '', d)}" - -do_install_ptest() { - install -d ${D}${PTEST_PATH}/test - cp -rf ${B}/test ${D}${PTEST_PATH} - install -m 0644 ${B}/CTestTestfile.cmake ${D}${PTEST_PATH}/ - files=" - CTestTestfile.cmake - test/CTestTestfile.cmake - test/cmake_install.cmake - test/cctest/CTestTestfile.cmake - test/cctest/cmake_install.cmake - " - for file in $files; do - sed -i -e "s|${B}|${PTEST_PATH}|g" -e "s|${S}|${PTEST_PATH}|g" -e "s|${WORKDIR}/recipe-sysroot-native||g" "${D}${PTEST_PATH}/${file}" - done - -} diff --git a/meta-oe/recipes-support/dc/double-conversion_3.3.1.bb b/meta-oe/recipes-support/dc/double-conversion_3.3.1.bb new file mode 100644 index 0000000000..50a36a2c27 --- /dev/null +++ b/meta-oe/recipes-support/dc/double-conversion_3.3.1.bb @@ -0,0 +1,41 @@ +SUMMARY = "Double conversion libraries" +DESCRIPTION = "This provides binary-decimal and decimal-binary routines for IEEE doubles." +HOMEPAGE = "https://github.com/google/double-conversion.git" + +LICENSE = "BSD-3-Clause" +LIC_FILES_CHKSUM = "file://LICENSE;md5=1ea35644f0ec0d9767897115667e901f" + + +S = "${WORKDIR}/git" + +SRC_URI = " \ + git://github.com/google/double-conversion.git;protocol=https;branch=master \ + file://run-ptest \ +" +SRCREV = "ae0dbfeb9744efd216c95b30555049d75d47116a" + +inherit cmake ptest + +EXTRA_OECMAKE = "-DBUILD_SHARED_LIBS=ON" + +# These ptest use ctest (provided by cmake) +RDEPENDS:${PN}-ptest += "cmake" +# Build tests only if ptest is enabled +EXTRA_OECMAKE += "${@bb.utils.contains('PTEST_ENABLED', '1', '-DBUILD_TESTING=ON', '', d)}" + +do_install_ptest() { + install -d ${D}${PTEST_PATH}/test + cp -rf ${B}/test ${D}${PTEST_PATH} + install -m 0644 ${B}/CTestTestfile.cmake ${D}${PTEST_PATH}/ + files=" + CTestTestfile.cmake + test/CTestTestfile.cmake + test/cmake_install.cmake + test/cctest/CTestTestfile.cmake + test/cctest/cmake_install.cmake + " + for file in $files; do + sed -i -e "s|${B}|${PTEST_PATH}|g" -e "s|${S}|${PTEST_PATH}|g" -e "s|${WORKDIR}/recipe-sysroot-native||g" "${D}${PTEST_PATH}/${file}" + done + +} -- cgit v1.2.3-54-g00ecf