From bbad57ecc64d566d27a03545f0b9a2e02cb902f5 Mon Sep 17 00:00:00 2001 From: wangmy Date: Mon, 22 Nov 2021 23:03:48 +0800 Subject: libqb: upgrade 2.0.3 -> 2.0.4 The most important fix in this release is that we no longer log errors inside the signal handler in loop_poll.c This could cause an application hang in some circumstances. Changelog is as follows: doxygen2man: print structure descriptions (https://github.com/ClusterLabs/libqb/pull/443) Fix pthread returns (https://github.com/ClusterLabs/libqb/pull/444) poll: Don't log in a signal handler (https://github.com/ClusterLabs/libqb/pull/447) Bump library version for v2.0.4 Implement heap based timer list (https://github.com/ClusterLabs/libqb/pull/439) build: Fix undefined pthread reference. (https://github.com/ClusterLabs/libqb/pull/440) Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- meta-oe/recipes-extended/libqb/libqb_2.0.3.bb | 26 -------------------------- meta-oe/recipes-extended/libqb/libqb_2.0.4.bb | 26 ++++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 26 deletions(-) delete mode 100644 meta-oe/recipes-extended/libqb/libqb_2.0.3.bb create mode 100644 meta-oe/recipes-extended/libqb/libqb_2.0.4.bb diff --git a/meta-oe/recipes-extended/libqb/libqb_2.0.3.bb b/meta-oe/recipes-extended/libqb/libqb_2.0.3.bb deleted file mode 100644 index 23c3e92dfa..0000000000 --- a/meta-oe/recipes-extended/libqb/libqb_2.0.3.bb +++ /dev/null @@ -1,26 +0,0 @@ -SUMMARY = "An IPC library for high performance servers" -DESCRIPTION = "libqb is a library with the primary purpose of providing high performance client server reusable features. \ -It provides high performance logging, tracing, ipc, and poll." - -HOMEPAGE = "https://github.com/clusterlabs/libqb/wiki" -SECTION = "libs" -LICENSE = "LGPL-2.1" -LIC_FILES_CHKSUM = "file://COPYING;md5=321bf41f280cf805086dd5a720b37785" - -inherit autotools pkgconfig - -SRCREV = "404adbcd998ec83643e47d92b3ea8d9c3970e68b" -SRC_URI = "git://github.com/ClusterLabs/${BPN}.git;branch=master;protocol=https \ - " -S = "${WORKDIR}/git" - -DEPENDS += "libxml2" - -CFLAGS += "-pthread -D_REENTRANT" - -do_configure:prepend() { - ( cd ${S} - ${S}/autogen.sh ) -} - -BBCLASSEXTEND = "native" diff --git a/meta-oe/recipes-extended/libqb/libqb_2.0.4.bb b/meta-oe/recipes-extended/libqb/libqb_2.0.4.bb new file mode 100644 index 0000000000..f3472b481a --- /dev/null +++ b/meta-oe/recipes-extended/libqb/libqb_2.0.4.bb @@ -0,0 +1,26 @@ +SUMMARY = "An IPC library for high performance servers" +DESCRIPTION = "libqb is a library with the primary purpose of providing high performance client server reusable features. \ +It provides high performance logging, tracing, ipc, and poll." + +HOMEPAGE = "https://github.com/clusterlabs/libqb/wiki" +SECTION = "libs" +LICENSE = "LGPL-2.1" +LIC_FILES_CHKSUM = "file://COPYING;md5=321bf41f280cf805086dd5a720b37785" + +inherit autotools pkgconfig + +SRCREV = "a2691b96188033b5ad5c08871982048ae1f4f4e8" +SRC_URI = "git://github.com/ClusterLabs/${BPN}.git;branch=master;protocol=https \ + " +S = "${WORKDIR}/git" + +DEPENDS += "libxml2" + +CFLAGS += "-pthread -D_REENTRANT" + +do_configure:prepend() { + ( cd ${S} + ${S}/autogen.sh ) +} + +BBCLASSEXTEND = "native" -- cgit v1.2.3-54-g00ecf