From 70e5584a4d936a244049d418ddc9c0c57c3852f6 Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Tue, 6 Feb 2024 15:26:51 +0800 Subject: nanomsg: upgrade 1.2 -> 1.2.1 Changelog: =========== -Fixed #1105 which caused a SIGBUS on some some platforms due misaligned accesses. -Fixed a problem when using absolute CMake target directories. Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- .../recipes-connectivity/nanomsg/nanomsg_1.2.1.bb | 28 ++++++++++++++++++++++ .../recipes-connectivity/nanomsg/nanomsg_1.2.bb | 28 ---------------------- 2 files changed, 28 insertions(+), 28 deletions(-) create mode 100644 meta-networking/recipes-connectivity/nanomsg/nanomsg_1.2.1.bb delete mode 100644 meta-networking/recipes-connectivity/nanomsg/nanomsg_1.2.bb (limited to 'meta-networking/recipes-connectivity') diff --git a/meta-networking/recipes-connectivity/nanomsg/nanomsg_1.2.1.bb b/meta-networking/recipes-connectivity/nanomsg/nanomsg_1.2.1.bb new file mode 100644 index 0000000000..c250ea8779 --- /dev/null +++ b/meta-networking/recipes-connectivity/nanomsg/nanomsg_1.2.1.bb @@ -0,0 +1,28 @@ +SUMMARY = "nanomsg socket library" +DESCRIPTION = "nanomsg is a socket library that provides several common \ +communication patterns. It aims to make the networking layer fast, scalable, \ +and easy to use. Implemented in C, it works on a wide range of operating \ +systems with no further dependencies." +HOMEPAGE = "https://nanomsg.org/" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://COPYING;md5=587b3fd7fd291e418ff4d2b8f3904755" + +SECTION = "libs/networking" + +SRC_URI = "git://github.com/nanomsg/nanomsg.git;protocol=https;branch=master" +SRCREV = "fc3f684a80151a3319446fc96083a9ff384ee4fe" + +S = "${WORKDIR}/git" + +inherit cmake pkgconfig + +# nanomsg documentation generation requires asciidoctor, +# not asciidoc, and currently there's no asciidoctor-native +# recipe anywhere in openembedded-core or meta-openembedded +EXTRA_OECMAKE = " -DNN_ENABLE_DOC=OFF " + +# we don't want nanomsg-tools to be renamed to libnanomsg-tools +DEBIAN_NOAUTONAME:${PN}-tools = "1" + +PACKAGES =+ "${PN}-tools" +FILES:${PN}-tools = "${bindir}/*" diff --git a/meta-networking/recipes-connectivity/nanomsg/nanomsg_1.2.bb b/meta-networking/recipes-connectivity/nanomsg/nanomsg_1.2.bb deleted file mode 100644 index fdb781180a..0000000000 --- a/meta-networking/recipes-connectivity/nanomsg/nanomsg_1.2.bb +++ /dev/null @@ -1,28 +0,0 @@ -SUMMARY = "nanomsg socket library" -DESCRIPTION = "nanomsg is a socket library that provides several common \ -communication patterns. It aims to make the networking layer fast, scalable, \ -and easy to use. Implemented in C, it works on a wide range of operating \ -systems with no further dependencies." -HOMEPAGE = "https://nanomsg.org/" -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://COPYING;md5=587b3fd7fd291e418ff4d2b8f3904755" - -SECTION = "libs/networking" - -SRC_URI = "git://github.com/nanomsg/nanomsg.git;protocol=https;branch=master" -SRCREV = "a081f1720f576d3e72ddce14e159ba90384e5b92" - -S = "${WORKDIR}/git" - -inherit cmake pkgconfig - -# nanomsg documentation generation requires asciidoctor, -# not asciidoc, and currently there's no asciidoctor-native -# recipe anywhere in openembedded-core or meta-openembedded -EXTRA_OECMAKE = " -DNN_ENABLE_DOC=OFF " - -# we don't want nanomsg-tools to be renamed to libnanomsg-tools -DEBIAN_NOAUTONAME:${PN}-tools = "1" - -PACKAGES =+ "${PN}-tools" -FILES:${PN}-tools = "${bindir}/*" -- cgit v1.2.3-54-g00ecf