From 9e539aaed608a03b1128a7361426703d8f9ba705 Mon Sep 17 00:00:00 2001 From: Chee Yang Lee Date: Tue, 9 May 2023 11:53:09 +0800 Subject: capnproto: upgrade to 0.9.2 upgrade include fix for CVE-2022-46149 Signed-off-by: Chee Yang Lee Signed-off-by: Armin Kuster --- .../recipes-devtools/capnproto/capnproto_0.9.1.bb | 29 ---------------------- .../recipes-devtools/capnproto/capnproto_0.9.2.bb | 29 ++++++++++++++++++++++ 2 files changed, 29 insertions(+), 29 deletions(-) delete mode 100644 meta-oe/recipes-devtools/capnproto/capnproto_0.9.1.bb create mode 100644 meta-oe/recipes-devtools/capnproto/capnproto_0.9.2.bb diff --git a/meta-oe/recipes-devtools/capnproto/capnproto_0.9.1.bb b/meta-oe/recipes-devtools/capnproto/capnproto_0.9.1.bb deleted file mode 100644 index d14bd843ef..0000000000 --- a/meta-oe/recipes-devtools/capnproto/capnproto_0.9.1.bb +++ /dev/null @@ -1,29 +0,0 @@ -SUMMARY = "Cap'n Proto serialization/RPC system" -DESCRIPTION = "Cap’n Proto is an insanely fast data interchange format and capability-based RPC system. " -HOMEPAGE = "https://github.com/sandstorm-io/capnproto" -SECTION = "console/tools" -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://../LICENSE;md5=a05663ae6cca874123bf667a60dca8c9" - -SRC_URI = "git://github.com/sandstorm-io/capnproto.git;branch=release-${PV};protocol=https \ - " -SRCREV = "b49431c48d40490ef979247d308af63345376cee" - -S = "${WORKDIR}/git/c++" - -inherit cmake - -CXXFLAGS:append:mips = " -latomic" -CXXFLAGS:append:powerpc = " -latomic" -CXXFLAGS:append:riscv32 = " -latomic" - -EXTRA_OECMAKE += "\ - -DBUILD_TESTING=OFF \ -" - -FILES:${PN}-compiler = "${bindir}" - -PACKAGE_BEFORE_PN = "${PN}-compiler" -RDEPENDS:${PN}-dev += "${PN}-compiler" - -BBCLASSEXTEND = "native nativesdk" diff --git a/meta-oe/recipes-devtools/capnproto/capnproto_0.9.2.bb b/meta-oe/recipes-devtools/capnproto/capnproto_0.9.2.bb new file mode 100644 index 0000000000..d114ad0c63 --- /dev/null +++ b/meta-oe/recipes-devtools/capnproto/capnproto_0.9.2.bb @@ -0,0 +1,29 @@ +SUMMARY = "Cap'n Proto serialization/RPC system" +DESCRIPTION = "Cap’n Proto is an insanely fast data interchange format and capability-based RPC system. " +HOMEPAGE = "https://github.com/sandstorm-io/capnproto" +SECTION = "console/tools" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://../LICENSE;md5=a05663ae6cca874123bf667a60dca8c9" + +SRC_URI = "git://github.com/sandstorm-io/capnproto.git;branch=release-${PV};protocol=https \ + " +SRCREV = "0274bf17374df912ea834687c667bed33bd318db" + +S = "${WORKDIR}/git/c++" + +inherit cmake + +CXXFLAGS:append:mips = " -latomic" +CXXFLAGS:append:powerpc = " -latomic" +CXXFLAGS:append:riscv32 = " -latomic" + +EXTRA_OECMAKE += "\ + -DBUILD_TESTING=OFF \ +" + +FILES:${PN}-compiler = "${bindir}" + +PACKAGE_BEFORE_PN = "${PN}-compiler" +RDEPENDS:${PN}-dev += "${PN}-compiler" + +BBCLASSEXTEND = "native nativesdk" -- cgit 1.2.3-korg