To: ['openembedded-core@lists.openembedded.org'] To: Subject: [AUH] jansson: upgrading to 2.15.1 SUCCEEDED Attachments: /srv/pokybuild/yocto-worker/auh/build/build/upgrade-helper/20260702050059/all/jansson/buildhistory-diff.txt /srv/pokybuild/yocto-worker/auh/build/build/upgrade-helper/20260702050059/all/jansson/0001-jansson-upgrade-2.15.0-2.15.1.patch /srv/pokybuild/yocto-worker/auh/build/build/upgrade-helper/20260702050059/all/jansson/buildhistory-diff-full.txt Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe(s) *jansson* to *2.15.1* has Succeeded. Next steps: - apply the patch: git am 0001-jansson-upgrade-2.15.0-2.15.1.patch - check the changes to upstream patches and summarize them in the commit message, - compile an image that contains the package - perform some basic sanity tests - amend the patch and sign it off: git commit -s --reset-author --amend - send it to the appropriate mailing list Alternatively, if you believe the recipe should not be upgraded at this time, you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that automatic upgrades would no longer be attempted. Please review the attached files for further information and build/update failures. Any problem please file a bug at https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler Regards, The Upgrade Helper -- >8 -- From c4bb2bbb62e66b198e16577c7f4fc9cba9944cac Mon Sep 17 00:00:00 2001 From: Upgrade Helper Date: Thu, 2 Jul 2026 05:25:01 +0000 Subject: [PATCH] jansson: upgrade 2.15.0 -> 2.15.1 --- ...se-default-symver-when-the-linker-su.patch | 45 ------------------- .../{jansson_2.15.0.bb => jansson_2.15.1.bb} | 6 +-- 2 files changed, 2 insertions(+), 49 deletions(-) delete mode 100644 meta/recipes-extended/jansson/jansson/0001-configure-only-use-default-symver-when-the-linker-su.patch rename meta/recipes-extended/jansson/{jansson_2.15.0.bb => jansson_2.15.1.bb} (69%) diff --git a/meta/recipes-extended/jansson/jansson/0001-configure-only-use-default-symver-when-the-linker-su.patch b/meta/recipes-extended/jansson/jansson/0001-configure-only-use-default-symver-when-the-linker-su.patch deleted file mode 100644 index eb0c459f68..0000000000 --- a/meta/recipes-extended/jansson/jansson/0001-configure-only-use-default-symver-when-the-linker-su.patch +++ /dev/null @@ -1,45 +0,0 @@ -From 7c44ab421c725ea6fed358f435c5461c0096f852 Mon Sep 17 00:00:00 2001 -From: Khem Raj -Date: Wed, 24 Jun 2026 14:04:19 -0700 -Subject: [PATCH] configure: only use --default-symver when the linker supports - it - -jansson enables symbol versioning on glibc by passing --Wl,--default-symver to the linker. This is a GNU ld option which is -not understood by every linker, e.g. ld.lld errors out with: - - ld.lld: error: unknown argument '--default-symver' - -Probe the linker with a link test before adding the flag so the build -works with both GNU ld and lld. When the linker does not accept the -option the symbol versioning provided by the explicit version script -is still applied; only the implicit default version is dropped. - -Upstream-Status: Submitted [https://github.com/akheron/jansson/pull/744] -Signed-off-by: Khem Raj ---- - configure.ac | 11 ++++++++++- - 1 file changed, 10 insertions(+), 1 deletion(-) - -diff --git a/configure.ac b/configure.ac -index e5c126a..1bb8b34 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -135,7 +135,16 @@ AC_SUBST(JSON_BSYMBOLIC_LDFLAGS) - - # Enable symbol versioning on GNU libc - JSON_SYMVER_LDFLAGS= --AC_CHECK_DECL([__GLIBC__], [JSON_SYMVER_LDFLAGS=-Wl,--default-symver]) -+AC_CHECK_DECL([__GLIBC__], [ -+ saved_LDFLAGS="$LDFLAGS" -+ LDFLAGS="$LDFLAGS -Wl,--default-symver" -+ AC_MSG_CHECKING([whether the linker accepts -Wl,--default-symver]) -+ AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[]])], -+ [AC_MSG_RESULT([yes]) -+ JSON_SYMVER_LDFLAGS=-Wl,--default-symver], -+ [AC_MSG_RESULT([no])]) -+ LDFLAGS="$saved_LDFLAGS" -+]) - AC_SUBST([JSON_SYMVER_LDFLAGS]) - - AC_ARG_ENABLE([dtoa], diff --git a/meta/recipes-extended/jansson/jansson_2.15.0.bb b/meta/recipes-extended/jansson/jansson_2.15.1.bb similarity index 69% rename from meta/recipes-extended/jansson/jansson_2.15.0.bb rename to meta/recipes-extended/jansson/jansson_2.15.1.bb index 1a0b6f24ac..60bbc5ba6d 100644 --- a/meta/recipes-extended/jansson/jansson_2.15.0.bb +++ b/meta/recipes-extended/jansson/jansson_2.15.1.bb @@ -5,11 +5,9 @@ LICENSE = "MIT & dtoa" LIC_FILES_CHKSUM = "file://LICENSE;md5=d9911525d4128bee234ee2d3ccaa2537" GITHUB_BASE_URI = "https://github.com/akheron/jansson/releases" -SRC_URI = "${GITHUB_BASE_URI}/download/v${PV}/${BP}.tar.gz \ - file://0001-configure-only-use-default-symver-when-the-linker-su.patch \ - " +SRC_URI = "${GITHUB_BASE_URI}/download/v${PV}/${BP}.tar.gz" -SRC_URI[sha256sum] = "070a629590723228dc3b744ae90e965a569efb9c535b3309b52e80e75d8eb3be" +SRC_URI[sha256sum] = "0c7114dc0b2d22a670724a1f95922029d7077c19dbf79a584cb8084d2f267f2f" inherit autotools pkgconfig github-releases -- 2.47.1