Openembedded Core Discussions
 help / color / mirror / Atom feed
* [OE-core] [PATCH 01/19] debugedit: upgrade 5.1 -> 5.2
@ 2025-07-15  8:08 Wang Mingyu
  2025-07-15  8:08 ` [OE-core] [PATCH 02/19] gi-docgen: upgrade 2025.3 -> 2025.4 Wang Mingyu
                   ` (17 more replies)
  0 siblings, 18 replies; 24+ messages in thread
From: Wang Mingyu @ 2025-07-15  8:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

0001-Add-option-to-allow-disabling-inlined-xxhash.patch
removed since it's included in 5.2

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../{debugedit_5.1.bb => debugedit_5.2.bb}    |  3 +-
 ...on-to-allow-disabling-inlined-xxhash.patch | 81 -------------------
 2 files changed, 1 insertion(+), 83 deletions(-)
 rename meta/recipes-devtools/debugedit/{debugedit_5.1.bb => debugedit_5.2.bb} (87%)
 delete mode 100644 meta/recipes-devtools/debugedit/files/0001-Add-option-to-allow-disabling-inlined-xxhash.patch

diff --git a/meta/recipes-devtools/debugedit/debugedit_5.1.bb b/meta/recipes-devtools/debugedit/debugedit_5.2.bb
similarity index 87%
rename from meta/recipes-devtools/debugedit/debugedit_5.1.bb
rename to meta/recipes-devtools/debugedit/debugedit_5.2.bb
index 384909a36f..76c54ba63d 100644
--- a/meta/recipes-devtools/debugedit/debugedit_5.1.bb
+++ b/meta/recipes-devtools/debugedit/debugedit_5.2.bb
@@ -10,11 +10,10 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \
                     file://COPYING3;md5=d32239bcb673463ab874e80d47fae504"
 
 SRC_URI = "https://sourceware.org/ftp/debugedit/${PV}/debugedit-${PV}.tar.xz \
-           file://0001-Add-option-to-allow-disabling-inlined-xxhash.patch \
            file://0003-Makefile.am-do-not-update-manual.patch \
            "
 
-SRC_URI[sha256sum] = "ee9b688b2ed8fa62551c54cb5dc31aaa05853e7dedbd9e1237c77894ea5e3626"
+SRC_URI[sha256sum] = "705296803cc4403f38764e891b4ed38f8d8d4f8a9164bd4f86c9d4bedcac68dd"
 
 DEPENDS = "elfutils xxhash"
 DEPENDS:append:libc-musl = " musl-legacy-error"
diff --git a/meta/recipes-devtools/debugedit/files/0001-Add-option-to-allow-disabling-inlined-xxhash.patch b/meta/recipes-devtools/debugedit/files/0001-Add-option-to-allow-disabling-inlined-xxhash.patch
deleted file mode 100644
index 3aac43628b..0000000000
--- a/meta/recipes-devtools/debugedit/files/0001-Add-option-to-allow-disabling-inlined-xxhash.patch
+++ /dev/null
@@ -1,81 +0,0 @@
-From 820498e881401a6f4b1715dc6831da965f6e1d69 Mon Sep 17 00:00:00 2001
-From: Chen Qi <Qi.Chen@windriver.com>
-Date: Tue, 18 Feb 2025 18:50:46 -0800
-Subject: [PATCH] Add option to allow disabling inlined xxhash
-
-xxhash cannot always inline. For example, when using gcc14 and
-'-Og' option, xxhash cannot inline. See links below:
-https://github.com/Cyan4973/xxHash/commit/574aabad87b2ab9440403e92e1075ef48554eb87
-https://github.com/Cyan4973/xxHash/issues/943#issuecomment-2563205130
-
-To allow users successfully build debugedit with gcc14 and "-Og" option,
-add an option to allow disabling inlined xxhash.
-
-This patch refers to a similar patch for libabigail:
-https://sourceware.org/cgit/libabigail/commit/?id=50497911e2590c21270e0763d277457cf7752c3f
-
-Note that the default remains using inlined xxhash.
-
-Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
-
-Upstream-Status: Backport [https://sourceware.org/cgit/debugedit/commit/?id=820498e881401a6f4b1715dc6831da965f6e1d69]
-
-Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
----
- Makefile.am       |  4 ++--
- configure.ac      | 11 +++++++++++
- tools/debugedit.c |  1 -
- 3 files changed, 13 insertions(+), 3 deletions(-)
-
-diff --git a/Makefile.am b/Makefile.am
-index c590edf..35fd947 100644
---- a/Makefile.am
-+++ b/Makefile.am
-@@ -42,8 +42,8 @@ find-debuginfo: $(top_srcdir)/scripts/find-debuginfo.in Makefile
- 
- debugedit_SOURCES = tools/debugedit.c \
- 		    tools/hashtab.c 
--debugedit_CFLAGS = @LIBELF_CFLAGS@ @LIBDW_CFLAGS@ $(AM_CFLAGS)
--debugedit_LDADD = @LIBELF_LIBS@ @LIBDW_LIBS@
-+debugedit_CFLAGS = @LIBELF_CFLAGS@ @LIBDW_CFLAGS@ @XXHASH_CFLAGS@ $(AM_CFLAGS)
-+debugedit_LDADD = @LIBELF_LIBS@ @LIBDW_LIBS@ @XXHASH_LIBS@
- 
- sepdebugcrcfix_SOURCES = tools/sepdebugcrcfix.c
- sepdebugcrcfix_CFLAGS = @LIBELF_CFLAGS@ $(AM_CFLAGS)
-diff --git a/configure.ac b/configure.ac
-index a5a6e28..32dd27d 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -181,6 +181,17 @@ else
- fi
- AC_SUBST([READELF_VERSION_OK])
- 
-+ENABLE_INLINED_XXHASH=yes
-+AC_ARG_ENABLE(inlined-xxhash,
-+	AS_HELP_STRING([--disable-inlined-xxhash], [disable the inlined-only version of xxhash library]),
-+	ENABLE_INLINED_XXHASH=$enableval,
-+	ENABLE_INLINED_XXHASH=yes)
-+
-+if test x$ENABLE_INLINED_XXHASH = xyes; then
-+	XXHASH_CFLAGS="$XXHASH_CFLAGS -DXXH_INLINE_ALL"
-+	XXHASH_LIBS=""
-+fi
-+
- # And generate the output files.
- AC_CONFIG_FILES([Makefile])
- AC_OUTPUT
-diff --git a/tools/debugedit.c b/tools/debugedit.c
-index beefd65..43f9cee 100644
---- a/tools/debugedit.c
-+++ b/tools/debugedit.c
-@@ -82,7 +82,6 @@ typedef struct Ebl_Strtab	Strtab;
- 
- #include "tools/hashtab.h"
- 
--#define XXH_INLINE_ALL
- #include "xxhash.h"
- 
- #define DW_TAG_partial_unit 0x3c
--- 
-2.25.1
-
-- 
2.43.0



^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [OE-core] [PATCH 02/19] gi-docgen: upgrade 2025.3 -> 2025.4
  2025-07-15  8:08 [OE-core] [PATCH 01/19] debugedit: upgrade 5.1 -> 5.2 Wang Mingyu
@ 2025-07-15  8:08 ` Wang Mingyu
  2025-07-15  8:08 ` [OE-core] [PATCH 03/19] git: upgrade 2.50.0 -> 2.50.1 Wang Mingyu
                   ` (16 subsequent siblings)
  17 siblings, 0 replies; 24+ messages in thread
From: Wang Mingyu @ 2025-07-15  8:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
===========
Added:
- Add online attribute for devhelp index
- Include type data in the field template

Fixed:
- Use normal font size for enumeration values description

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../gi-docgen/{gi-docgen_2025.3.bb => gi-docgen_2025.4.bb}      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-gnome/gi-docgen/{gi-docgen_2025.3.bb => gi-docgen_2025.4.bb} (94%)

diff --git a/meta/recipes-gnome/gi-docgen/gi-docgen_2025.3.bb b/meta/recipes-gnome/gi-docgen/gi-docgen_2025.4.bb
similarity index 94%
rename from meta/recipes-gnome/gi-docgen/gi-docgen_2025.3.bb
rename to meta/recipes-gnome/gi-docgen/gi-docgen_2025.4.bb
index 8651ab8167..19aacb765e 100644
--- a/meta/recipes-gnome/gi-docgen/gi-docgen_2025.3.bb
+++ b/meta/recipes-gnome/gi-docgen/gi-docgen_2025.4.bb
@@ -10,7 +10,7 @@ LIC_FILES_CHKSUM = "file://gi-docgen.py;beginline=1;endline=5;md5=2dc0f1f0120247
 
 SRC_URI = "git://gitlab.gnome.org/GNOME/gi-docgen.git;protocol=https;branch=main"
 
-SRCREV = "9ab2ab8fa3f4a04f5d2cc24b0c8e91e73bc57b51"
+SRCREV = "0517026e0bf51b3776efa4689da44ea0c99e343e"
 
 inherit python_setuptools_build_meta
 
-- 
2.43.0



^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [OE-core] [PATCH 03/19] git: upgrade 2.50.0 -> 2.50.1
  2025-07-15  8:08 [OE-core] [PATCH 01/19] debugedit: upgrade 5.1 -> 5.2 Wang Mingyu
  2025-07-15  8:08 ` [OE-core] [PATCH 02/19] gi-docgen: upgrade 2025.3 -> 2025.4 Wang Mingyu
@ 2025-07-15  8:08 ` Wang Mingyu
  2025-07-15  8:08 ` [OE-core] [PATCH 04/19] gnutls: upgrade 3.8.9 -> 3.8.10 Wang Mingyu
                   ` (15 subsequent siblings)
  17 siblings, 0 replies; 24+ messages in thread
From: Wang Mingyu @ 2025-07-15  8:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 meta/recipes-devtools/git/{git_2.50.0.bb => git_2.50.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/git/{git_2.50.0.bb => git_2.50.1.bb} (98%)

diff --git a/meta/recipes-devtools/git/git_2.50.0.bb b/meta/recipes-devtools/git/git_2.50.1.bb
similarity index 98%
rename from meta/recipes-devtools/git/git_2.50.0.bb
rename to meta/recipes-devtools/git/git_2.50.1.bb
index 2d28fd05fc..36401c58f1 100644
--- a/meta/recipes-devtools/git/git_2.50.0.bb
+++ b/meta/recipes-devtools/git/git_2.50.1.bb
@@ -170,4 +170,4 @@ EXTRA_OECONF += "ac_cv_snprintf_returns_bogus=no \
                  "
 EXTRA_OEMAKE += "NO_GETTEXT=1"
 
-SRC_URI[tarball.sha256sum] = "920f8ca563d16a7d4fdecb44349cbffbc5cb814a8b36c96028463478197050da"
+SRC_URI[tarball.sha256sum] = "522d1635f8b62b484b0ce24993818aad3cab8e11ebb57e196bda38a3140ea915"
-- 
2.43.0



^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [OE-core] [PATCH 04/19] gnutls: upgrade 3.8.9 -> 3.8.10
  2025-07-15  8:08 [OE-core] [PATCH 01/19] debugedit: upgrade 5.1 -> 5.2 Wang Mingyu
  2025-07-15  8:08 ` [OE-core] [PATCH 02/19] gi-docgen: upgrade 2025.3 -> 2025.4 Wang Mingyu
  2025-07-15  8:08 ` [OE-core] [PATCH 03/19] git: upgrade 2.50.0 -> 2.50.1 Wang Mingyu
@ 2025-07-15  8:08 ` Wang Mingyu
  2025-07-15 13:10   ` Mathieu Dubois-Briand
  2025-07-15  8:08 ` [OE-core] [PATCH 05/19] hwdata: upgrade 0.396 -> 0.397 Wang Mingyu
                   ` (14 subsequent siblings)
  17 siblings, 1 reply; 24+ messages in thread
From: Wang Mingyu @ 2025-07-15  8:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../gnutls/{gnutls_3.8.9.bb => gnutls_3.8.10.bb}                | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-support/gnutls/{gnutls_3.8.9.bb => gnutls_3.8.10.bb} (97%)

diff --git a/meta/recipes-support/gnutls/gnutls_3.8.9.bb b/meta/recipes-support/gnutls/gnutls_3.8.10.bb
similarity index 97%
rename from meta/recipes-support/gnutls/gnutls_3.8.9.bb
rename to meta/recipes-support/gnutls/gnutls_3.8.10.bb
index f2b7ac7bb8..600f23683e 100644
--- a/meta/recipes-support/gnutls/gnutls_3.8.9.bb
+++ b/meta/recipes-support/gnutls/gnutls_3.8.10.bb
@@ -25,7 +25,7 @@ SRC_URI = "https://www.gnupg.org/ftp/gcrypt/gnutls/v${SHRT_VER}/gnutls-${PV}.tar
            file://Add-ptest-support.patch \
            "
 
-SRC_URI[sha256sum] = "69e113d802d1670c4d5ac1b99040b1f2d5c7c05daec5003813c049b5184820ed"
+SRC_URI[sha256sum] = "db7fab7cce791e7727ebbef2334301c821d79a550ec55c9ef096b610b03eb6b7"
 
 inherit autotools texinfo pkgconfig gettext lib_package gtk-doc ptest
 
-- 
2.43.0



^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [OE-core] [PATCH 05/19] hwdata: upgrade 0.396 -> 0.397
  2025-07-15  8:08 [OE-core] [PATCH 01/19] debugedit: upgrade 5.1 -> 5.2 Wang Mingyu
                   ` (2 preceding siblings ...)
  2025-07-15  8:08 ` [OE-core] [PATCH 04/19] gnutls: upgrade 3.8.9 -> 3.8.10 Wang Mingyu
@ 2025-07-15  8:08 ` Wang Mingyu
  2025-07-15  8:08 ` [OE-core] [PATCH 06/19] hwlatdetect: upgrade 2.8 -> 2.9 Wang Mingyu
                   ` (13 subsequent siblings)
  17 siblings, 0 replies; 24+ messages in thread
From: Wang Mingyu @ 2025-07-15  8:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
 Update pci and vendor ids

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../recipes-support/hwdata/{hwdata_0.396.bb => hwdata_0.397.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-support/hwdata/{hwdata_0.396.bb => hwdata_0.397.bb} (93%)

diff --git a/meta/recipes-support/hwdata/hwdata_0.396.bb b/meta/recipes-support/hwdata/hwdata_0.397.bb
similarity index 93%
rename from meta/recipes-support/hwdata/hwdata_0.396.bb
rename to meta/recipes-support/hwdata/hwdata_0.397.bb
index bf6dd9889e..bd985c2a14 100644
--- a/meta/recipes-support/hwdata/hwdata_0.396.bb
+++ b/meta/recipes-support/hwdata/hwdata_0.397.bb
@@ -8,7 +8,7 @@ LICENSE = "GPL-2.0-or-later | X11"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=1556547711e8246992b999edd9445a57"
 
 SRC_URI = "git://github.com/vcrhonek/${BPN}.git;branch=master;protocol=https;tag=v${PV}"
-SRCREV = "736513dfc1d44c5fb48bead62af7e91c4e1d1dd2"
+SRCREV = "e4423c783ca7db5c9d6d4881985272849f4892cf"
 
 inherit allarch
 
-- 
2.43.0



^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [OE-core] [PATCH 06/19] hwlatdetect: upgrade 2.8 -> 2.9
  2025-07-15  8:08 [OE-core] [PATCH 01/19] debugedit: upgrade 5.1 -> 5.2 Wang Mingyu
                   ` (3 preceding siblings ...)
  2025-07-15  8:08 ` [OE-core] [PATCH 05/19] hwdata: upgrade 0.396 -> 0.397 Wang Mingyu
@ 2025-07-15  8:08 ` Wang Mingyu
  2025-07-15 14:14   ` Mathieu Dubois-Briand
  2025-07-15  8:08 ` [OE-core] [PATCH 07/19] libinput: upgrade 1.28.1 -> 1.28.901 Wang Mingyu
                   ` (12 subsequent siblings)
  17 siblings, 1 reply; 24+ messages in thread
From: Wang Mingyu @ 2025-07-15  8:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 meta/recipes-rt/rt-tests/rt-tests.inc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-rt/rt-tests/rt-tests.inc b/meta/recipes-rt/rt-tests/rt-tests.inc
index a2e8558c4c..2042768d5a 100644
--- a/meta/recipes-rt/rt-tests/rt-tests.inc
+++ b/meta/recipes-rt/rt-tests/rt-tests.inc
@@ -1,6 +1,6 @@
-SRCREV = "f5b910a90b6f5ab0ef6df392e009ffe1429d53af"
-PV = "2.8"
+SRCREV = "9166c3f0bb9c5d3e31dc80aff165a5073b5ac5be"
+PV = "2.9"
 PE = "1"
 
-SRC_URI = "git://git.kernel.org/pub/scm/utils/rt-tests/rt-tests.git;branch=main;protocol=https"
+SRC_URI = "git://git.kernel.org/pub/scm/utils/rt-tests/rt-tests.git;branch=main;protocol=https;tag=v${PV}"
 
-- 
2.43.0



^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [OE-core] [PATCH 07/19] libinput: upgrade 1.28.1 -> 1.28.901
  2025-07-15  8:08 [OE-core] [PATCH 01/19] debugedit: upgrade 5.1 -> 5.2 Wang Mingyu
                   ` (4 preceding siblings ...)
  2025-07-15  8:08 ` [OE-core] [PATCH 06/19] hwlatdetect: upgrade 2.8 -> 2.9 Wang Mingyu
@ 2025-07-15  8:08 ` Wang Mingyu
  2025-07-15 15:31   ` Alexander Kanavin
  2025-07-15  8:08 ` [OE-core] [PATCH 08/19] libsolv: upgrade 0.7.33 -> 0.7.34 Wang Mingyu
                   ` (11 subsequent siblings)
  17 siblings, 1 reply; 24+ messages in thread
From: Wang Mingyu @ 2025-07-15  8:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../wayland/{libinput_1.28.1.bb => libinput_1.28.901.bb}        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-graphics/wayland/{libinput_1.28.1.bb => libinput_1.28.901.bb} (97%)

diff --git a/meta/recipes-graphics/wayland/libinput_1.28.1.bb b/meta/recipes-graphics/wayland/libinput_1.28.901.bb
similarity index 97%
rename from meta/recipes-graphics/wayland/libinput_1.28.1.bb
rename to meta/recipes-graphics/wayland/libinput_1.28.901.bb
index 521a7f9a09..ec2eccd26d 100644
--- a/meta/recipes-graphics/wayland/libinput_1.28.1.bb
+++ b/meta/recipes-graphics/wayland/libinput_1.28.901.bb
@@ -15,7 +15,7 @@ DEPENDS = "libevdev udev mtdev"
 SRC_URI = "git://gitlab.freedesktop.org/libinput/libinput.git;protocol=https;branch=main;tag=${PV} \
            file://run-ptest \
            "
-SRCREV = "4f7b4ef0e4eb5d569df36be387579858eba349bb"
+SRCREV = "7716954365a3fa2cc2b3948f21548a98085f16e4"
 
 UPSTREAM_CHECK_REGEX = "libinput-(?P<pver>\d+\.\d+\.(?!9\d+)\d+)"
 
-- 
2.43.0



^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [OE-core] [PATCH 08/19] libsolv: upgrade 0.7.33 -> 0.7.34
  2025-07-15  8:08 [OE-core] [PATCH 01/19] debugedit: upgrade 5.1 -> 5.2 Wang Mingyu
                   ` (5 preceding siblings ...)
  2025-07-15  8:08 ` [OE-core] [PATCH 07/19] libinput: upgrade 1.28.1 -> 1.28.901 Wang Mingyu
@ 2025-07-15  8:08 ` Wang Mingyu
  2025-07-15  8:08 ` [OE-core] [PATCH 09/19] libwebp: upgrade 1.5.0 -> 1.6.0 Wang Mingyu
                   ` (10 subsequent siblings)
  17 siblings, 0 replies; 24+ messages in thread
From: Wang Mingyu @ 2025-07-15  8:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

- new features:
  * support product-obsoletes() provides in the product autopackage
    generation code

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../libsolv/{libsolv_0.7.33.bb => libsolv_0.7.34.bb}          | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-extended/libsolv/{libsolv_0.7.33.bb => libsolv_0.7.34.bb} (93%)

diff --git a/meta/recipes-extended/libsolv/libsolv_0.7.33.bb b/meta/recipes-extended/libsolv/libsolv_0.7.34.bb
similarity index 93%
rename from meta/recipes-extended/libsolv/libsolv_0.7.33.bb
rename to meta/recipes-extended/libsolv/libsolv_0.7.34.bb
index 13a6df2290..7e2bd686d4 100644
--- a/meta/recipes-extended/libsolv/libsolv_0.7.33.bb
+++ b/meta/recipes-extended/libsolv/libsolv_0.7.34.bb
@@ -8,11 +8,11 @@ LIC_FILES_CHKSUM = "file://LICENSE.BSD;md5=62272bd11c97396d4aaf1c41bc11f7d8"
 
 DEPENDS = "expat zlib zstd"
 
-SRC_URI = "git://github.com/openSUSE/libsolv.git;branch=master;protocol=https \
+SRC_URI = "git://github.com/openSUSE/libsolv.git;branch=master;protocol=https;tag=${PV} \
            file://0001-utils-Conside-musl-when-wrapping-qsort_r.patch \
 "
 
-SRCREV = "9fb855d872139fb1ebebec4c892b338fccda69ba"
+SRCREV = "262e8efa0239a78770910fde1579158725cc6ffa"
 
 UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(\.\d+)+)"
 
-- 
2.43.0



^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [OE-core] [PATCH 09/19] libwebp: upgrade 1.5.0 -> 1.6.0
  2025-07-15  8:08 [OE-core] [PATCH 01/19] debugedit: upgrade 5.1 -> 5.2 Wang Mingyu
                   ` (6 preceding siblings ...)
  2025-07-15  8:08 ` [OE-core] [PATCH 08/19] libsolv: upgrade 0.7.33 -> 0.7.34 Wang Mingyu
@ 2025-07-15  8:08 ` Wang Mingyu
  2025-07-15  8:08 ` [OE-core] [PATCH 10/19] lsof: upgrade 4.99.4 -> 4.99.5 Wang Mingyu
                   ` (9 subsequent siblings)
  17 siblings, 0 replies; 24+ messages in thread
From: Wang Mingyu @ 2025-07-15  8:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../webp/{libwebp_1.5.0.bb => libwebp_1.6.0.bb}                 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-multimedia/webp/{libwebp_1.5.0.bb => libwebp_1.6.0.bb} (96%)

diff --git a/meta/recipes-multimedia/webp/libwebp_1.5.0.bb b/meta/recipes-multimedia/webp/libwebp_1.6.0.bb
similarity index 96%
rename from meta/recipes-multimedia/webp/libwebp_1.5.0.bb
rename to meta/recipes-multimedia/webp/libwebp_1.6.0.bb
index 39fe947eea..0ba90c406a 100644
--- a/meta/recipes-multimedia/webp/libwebp_1.5.0.bb
+++ b/meta/recipes-multimedia/webp/libwebp_1.6.0.bb
@@ -14,7 +14,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=6e8dee932c26f2dab503abf70c96d8bb \
                     file://PATENTS;md5=c6926d0cb07d296f886ab6e0cc5a85b7"
 
 SRC_URI = "https://storage.googleapis.com/downloads.webmproject.org/releases/webp/${BP}.tar.gz"
-SRC_URI[sha256sum] = "7d6fab70cf844bf6769077bd5d7a74893f8ffd4dfb42861745750c63c2a5c92c"
+SRC_URI[sha256sum] = "e4ab7009bf0629fd11982d4c2aa83964cf244cffba7347ecd39019a9e38c4564"
 
 UPSTREAM_CHECK_URI = "http://downloads.webmproject.org/releases/webp/index.html"
 
-- 
2.43.0



^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [OE-core] [PATCH 10/19] lsof: upgrade 4.99.4 -> 4.99.5
  2025-07-15  8:08 [OE-core] [PATCH 01/19] debugedit: upgrade 5.1 -> 5.2 Wang Mingyu
                   ` (7 preceding siblings ...)
  2025-07-15  8:08 ` [OE-core] [PATCH 09/19] libwebp: upgrade 1.5.0 -> 1.6.0 Wang Mingyu
@ 2025-07-15  8:08 ` Wang Mingyu
  2025-07-15  8:08 ` [OE-core] [PATCH 11/19] mesa: upgrade 25.1.4 -> 25.1.5 Wang Mingyu
                   ` (8 subsequent siblings)
  17 siblings, 0 replies; 24+ messages in thread
From: Wang Mingyu @ 2025-07-15  8:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
===========
- fix legacy linux kernel compatibility due to missing /proc/self/ns
- fix potential null pointer deference

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 meta/recipes-extended/lsof/{lsof_4.99.4.bb => lsof_4.99.5.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-extended/lsof/{lsof_4.99.4.bb => lsof_4.99.5.bb} (90%)

diff --git a/meta/recipes-extended/lsof/lsof_4.99.4.bb b/meta/recipes-extended/lsof/lsof_4.99.5.bb
similarity index 90%
rename from meta/recipes-extended/lsof/lsof_4.99.4.bb
rename to meta/recipes-extended/lsof/lsof_4.99.5.bb
index b977fc4897..292db224af 100644
--- a/meta/recipes-extended/lsof/lsof_4.99.4.bb
+++ b/meta/recipes-extended/lsof/lsof_4.99.5.bb
@@ -6,9 +6,9 @@ SECTION = "devel"
 LICENSE = "Spencer-94"
 LIC_FILES_CHKSUM = "file://COPYING;md5=a48ac97a8550eff12395a2c0d6151510"
 
-SRC_URI = "git://github.com/lsof-org/lsof;branch=master;protocol=https \
+SRC_URI = "git://github.com/lsof-org/lsof;branch=master;protocol=https;tag=${PV} \
            file://remove-host-information.patch"
-SRCREV = "bbf320ce586a848f880bca7b758d50ae4c712624"
+SRCREV = "ed0fef9a134b64c9398075185534a76714c91179"
 
 inherit update-alternatives autotools pkgconfig manpages
 PACKAGECONFIG[manpages] = ""
-- 
2.43.0



^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [OE-core] [PATCH 11/19] mesa: upgrade 25.1.4 -> 25.1.5
  2025-07-15  8:08 [OE-core] [PATCH 01/19] debugedit: upgrade 5.1 -> 5.2 Wang Mingyu
                   ` (8 preceding siblings ...)
  2025-07-15  8:08 ` [OE-core] [PATCH 10/19] lsof: upgrade 4.99.4 -> 4.99.5 Wang Mingyu
@ 2025-07-15  8:08 ` Wang Mingyu
  2025-07-15  8:08 ` [OE-core] [PATCH 12/19] ninja: upgrade 1.13.0 -> 1.13.1 Wang Mingyu
                   ` (7 subsequent siblings)
  17 siblings, 0 replies; 24+ messages in thread
From: Wang Mingyu @ 2025-07-15  8:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 meta/recipes-graphics/mesa/mesa.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-graphics/mesa/mesa.inc b/meta/recipes-graphics/mesa/mesa.inc
index 3d9e9ec91f..47b95728e0 100644
--- a/meta/recipes-graphics/mesa/mesa.inc
+++ b/meta/recipes-graphics/mesa/mesa.inc
@@ -20,8 +20,8 @@ SRC_URI = "https://archive.mesa3d.org/mesa-${PV}.tar.xz \
            file://0001-dont-build-clover-frontend.patch \
 "
 
-SRC_URI[sha256sum] = "164872a5e792408aa72fecd52b7be6409724c4ad81700798675a7d801d976704"
-PV = "25.1.4"
+SRC_URI[sha256sum] = "3c4f6b10ff6ee950d0ec6ea733cc6e6d34c569454e3d39a9b276de9115a3b363"
+PV = "25.1.5"
 
 UPSTREAM_CHECK_GITTAGREGEX = "mesa-(?P<pver>\d+(\.\d+)+)"
 
-- 
2.43.0



^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [OE-core] [PATCH 12/19] ninja: upgrade 1.13.0 -> 1.13.1
  2025-07-15  8:08 [OE-core] [PATCH 01/19] debugedit: upgrade 5.1 -> 5.2 Wang Mingyu
                   ` (9 preceding siblings ...)
  2025-07-15  8:08 ` [OE-core] [PATCH 11/19] mesa: upgrade 25.1.4 -> 25.1.5 Wang Mingyu
@ 2025-07-15  8:08 ` Wang Mingyu
  2025-07-15  8:08 ` [OE-core] [PATCH 13/19] python3-certifi: upgrade 2025.6.15 -> 2025.7.9 Wang Mingyu
                   ` (6 subsequent siblings)
  17 siblings, 0 replies; 24+ messages in thread
From: Wang Mingyu @ 2025-07-15  8:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../recipes-devtools/ninja/{ninja_1.13.0.bb => ninja_1.13.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/ninja/{ninja_1.13.0.bb => ninja_1.13.1.bb} (94%)

diff --git a/meta/recipes-devtools/ninja/ninja_1.13.0.bb b/meta/recipes-devtools/ninja/ninja_1.13.1.bb
similarity index 94%
rename from meta/recipes-devtools/ninja/ninja_1.13.0.bb
rename to meta/recipes-devtools/ninja/ninja_1.13.1.bb
index a5fa8f1c9e..dcaa889c04 100644
--- a/meta/recipes-devtools/ninja/ninja_1.13.0.bb
+++ b/meta/recipes-devtools/ninja/ninja_1.13.1.bb
@@ -10,7 +10,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=a81586a64ad4e476c791cda7e2f2c52e"
 
 DEPENDS = "re2c-native ninja-native"
 
-SRCREV = "b4d51f6ed5bed09dd2b70324df0d9cb4ecad2638"
+SRCREV = "79feac0f3e3bc9da9effc586cd5fea41e7550051"
 
 SRC_URI = "git://github.com/ninja-build/ninja.git;branch=release;protocol=https;tag=v${PV}"
 UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>.*)"
-- 
2.43.0



^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [OE-core] [PATCH 13/19] python3-certifi: upgrade 2025.6.15 -> 2025.7.9
  2025-07-15  8:08 [OE-core] [PATCH 01/19] debugedit: upgrade 5.1 -> 5.2 Wang Mingyu
                   ` (10 preceding siblings ...)
  2025-07-15  8:08 ` [OE-core] [PATCH 12/19] ninja: upgrade 1.13.0 -> 1.13.1 Wang Mingyu
@ 2025-07-15  8:08 ` Wang Mingyu
  2025-07-15  8:08 ` [OE-core] [PATCH 14/19] python3-hypothesis: upgrade 6.135.16 -> 6.135.29 Wang Mingyu
                   ` (5 subsequent siblings)
  17 siblings, 0 replies; 24+ messages in thread
From: Wang Mingyu @ 2025-07-15  8:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...python3-certifi_2025.6.15.bb => python3-certifi_2025.7.9.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-certifi_2025.6.15.bb => python3-certifi_2025.7.9.bb} (87%)

diff --git a/meta/recipes-devtools/python/python3-certifi_2025.6.15.bb b/meta/recipes-devtools/python/python3-certifi_2025.7.9.bb
similarity index 87%
rename from meta/recipes-devtools/python/python3-certifi_2025.6.15.bb
rename to meta/recipes-devtools/python/python3-certifi_2025.7.9.bb
index e8ad8da486..709346486a 100644
--- a/meta/recipes-devtools/python/python3-certifi_2025.6.15.bb
+++ b/meta/recipes-devtools/python/python3-certifi_2025.7.9.bb
@@ -7,7 +7,7 @@ HOMEPAGE = " http://certifi.io/"
 LICENSE = "ISC"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=11618cb6a975948679286b1211bd573c"
 
-SRC_URI[sha256sum] = "d747aa5a8b9bbbb1bb8c22bb13e22bd1f18e9796defa16bab421f7f7a317323b"
+SRC_URI[sha256sum] = "c1d2ec05395148ee10cf672ffc28cd37ea0ab0d99f9cc74c43e588cbd111b079"
 
 inherit pypi python_setuptools_build_meta
 
-- 
2.43.0



^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [OE-core] [PATCH 14/19] python3-hypothesis: upgrade 6.135.16 -> 6.135.29
  2025-07-15  8:08 [OE-core] [PATCH 01/19] debugedit: upgrade 5.1 -> 5.2 Wang Mingyu
                   ` (11 preceding siblings ...)
  2025-07-15  8:08 ` [OE-core] [PATCH 13/19] python3-certifi: upgrade 2025.6.15 -> 2025.7.9 Wang Mingyu
@ 2025-07-15  8:08 ` Wang Mingyu
  2025-07-15  8:08 ` [OE-core] [PATCH 15/19] python3-pdm-backend: upgrade 2.4.4 -> 2.4.5 Wang Mingyu
                   ` (4 subsequent siblings)
  17 siblings, 0 replies; 24+ messages in thread
From: Wang Mingyu @ 2025-07-15  8:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...n3-hypothesis_6.135.16.bb => python3-hypothesis_6.135.29.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-hypothesis_6.135.16.bb => python3-hypothesis_6.135.29.bb} (91%)

diff --git a/meta/recipes-devtools/python/python3-hypothesis_6.135.16.bb b/meta/recipes-devtools/python/python3-hypothesis_6.135.29.bb
similarity index 91%
rename from meta/recipes-devtools/python/python3-hypothesis_6.135.16.bb
rename to meta/recipes-devtools/python/python3-hypothesis_6.135.29.bb
index c0241b63e4..0795e8a507 100644
--- a/meta/recipes-devtools/python/python3-hypothesis_6.135.16.bb
+++ b/meta/recipes-devtools/python/python3-hypothesis_6.135.29.bb
@@ -13,7 +13,7 @@ SRC_URI += " \
     file://test_rle.py \
     "
 
-SRC_URI[sha256sum] = "6131ea0b698e69bad62aae915988b8d00a6ac974351d0830db74c5fffc68c418"
+SRC_URI[sha256sum] = "871acb38ff61346a420267f81f4ba05ad9a85d08965211edf9b29bc0c1ad9d7b"
 
 RDEPENDS:${PN} += " \
     python3-attrs \
-- 
2.43.0



^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [OE-core] [PATCH 15/19] python3-pdm-backend: upgrade 2.4.4 -> 2.4.5
  2025-07-15  8:08 [OE-core] [PATCH 01/19] debugedit: upgrade 5.1 -> 5.2 Wang Mingyu
                   ` (12 preceding siblings ...)
  2025-07-15  8:08 ` [OE-core] [PATCH 14/19] python3-hypothesis: upgrade 6.135.16 -> 6.135.29 Wang Mingyu
@ 2025-07-15  8:08 ` Wang Mingyu
  2025-07-15  8:08 ` [OE-core] [PATCH 16/19] taglib: upgrade 2.1 -> 2.1.1 Wang Mingyu
                   ` (3 subsequent siblings)
  17 siblings, 0 replies; 24+ messages in thread
From: Wang Mingyu @ 2025-07-15  8:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...ython3-pdm-backend_2.4.4.bb => python3-pdm-backend_2.4.5.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-pdm-backend_2.4.4.bb => python3-pdm-backend_2.4.5.bb} (82%)

diff --git a/meta/recipes-devtools/python/python3-pdm-backend_2.4.4.bb b/meta/recipes-devtools/python/python3-pdm-backend_2.4.5.bb
similarity index 82%
rename from meta/recipes-devtools/python/python3-pdm-backend_2.4.4.bb
rename to meta/recipes-devtools/python/python3-pdm-backend_2.4.5.bb
index 71275f3ee8..e0fe16bd71 100644
--- a/meta/recipes-devtools/python/python3-pdm-backend_2.4.4.bb
+++ b/meta/recipes-devtools/python/python3-pdm-backend_2.4.5.bb
@@ -4,7 +4,7 @@ LICENSE = "MIT"
 SECTION = "devel/python"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=4a564297b3c5b629a528b92fd8ff61ea"
 
-SRC_URI[sha256sum] = "f72551eeb319f74ca25856c24fb4026684eeb0dddd9df68482901ab0dc481258"
+SRC_URI[sha256sum] = "56c019c440308adad5d057c08cbb777e65f43b991a3b0920749781258972fe5b"
 
 inherit pypi python_setuptools_build_meta
 
-- 
2.43.0



^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [OE-core] [PATCH 16/19] taglib: upgrade 2.1 -> 2.1.1
  2025-07-15  8:08 [OE-core] [PATCH 01/19] debugedit: upgrade 5.1 -> 5.2 Wang Mingyu
                   ` (13 preceding siblings ...)
  2025-07-15  8:08 ` [OE-core] [PATCH 15/19] python3-pdm-backend: upgrade 2.4.4 -> 2.4.5 Wang Mingyu
@ 2025-07-15  8:08 ` Wang Mingyu
  2025-07-15  8:08 ` [OE-core] [PATCH 17/19] tcl: upgrade 9.0.1 -> 9.0.2 Wang Mingyu
                   ` (2 subsequent siblings)
  17 siblings, 0 replies; 24+ messages in thread
From: Wang Mingyu @ 2025-07-15  8:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 meta/recipes-support/taglib/{taglib_2.1.bb => taglib_2.1.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-support/taglib/{taglib_2.1.bb => taglib_2.1.1.bb} (95%)

diff --git a/meta/recipes-support/taglib/taglib_2.1.bb b/meta/recipes-support/taglib/taglib_2.1.1.bb
similarity index 95%
rename from meta/recipes-support/taglib/taglib_2.1.bb
rename to meta/recipes-support/taglib/taglib_2.1.1.bb
index a337af74d0..6b700578b8 100644
--- a/meta/recipes-support/taglib/taglib_2.1.bb
+++ b/meta/recipes-support/taglib/taglib_2.1.1.bb
@@ -11,7 +11,7 @@ DEPENDS = "zlib utfcpp"
 
 SRC_URI = "http://taglib.github.io/releases/${BP}.tar.gz"
 
-SRC_URI[sha256sum] = "95b788b39eaebab41f7e6d1c1d05ceee01a5d1225e4b6d11ed8976e96ba90b0c"
+SRC_URI[sha256sum] = "3716d31f7c83cbf17b67c8cf44dd82b2a2f17e6780472287a16823e70305ddba"
 
 UPSTREAM_CHECK_URI = "https://taglib.org/"
 UPSTREAM_CHECK_REGEX = "taglib-(?P<pver>\d+(\.\d+)+)\.tar"
-- 
2.43.0



^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [OE-core] [PATCH 17/19] tcl: upgrade 9.0.1 -> 9.0.2
  2025-07-15  8:08 [OE-core] [PATCH 01/19] debugedit: upgrade 5.1 -> 5.2 Wang Mingyu
                   ` (14 preceding siblings ...)
  2025-07-15  8:08 ` [OE-core] [PATCH 16/19] taglib: upgrade 2.1 -> 2.1.1 Wang Mingyu
@ 2025-07-15  8:08 ` Wang Mingyu
  2025-07-15  8:08 ` [OE-core] [PATCH 18/19] u-boot: upgrade 2025.04 -> 2025.07 Wang Mingyu
  2025-07-15  8:08 ` [OE-core] [PATCH 19/19] wayland: upgrade 1.23.1 -> 1.24.0 Wang Mingyu
  17 siblings, 0 replies; 24+ messages in thread
From: Wang Mingyu @ 2025-07-15  8:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 meta/recipes-devtools/tcltk/{tcl_9.0.1.bb => tcl_9.0.2.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/tcltk/{tcl_9.0.1.bb => tcl_9.0.2.bb} (97%)

diff --git a/meta/recipes-devtools/tcltk/tcl_9.0.1.bb b/meta/recipes-devtools/tcltk/tcl_9.0.2.bb
similarity index 97%
rename from meta/recipes-devtools/tcltk/tcl_9.0.1.bb
rename to meta/recipes-devtools/tcltk/tcl_9.0.2.bb
index 765dc64e4d..87773c7717 100644
--- a/meta/recipes-devtools/tcltk/tcl_9.0.1.bb
+++ b/meta/recipes-devtools/tcltk/tcl_9.0.2.bb
@@ -23,7 +23,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/tcl/tcl-core${PV}-src.tar.gz \
            file://0004-tcl-update-the-header-location.patch \
            file://0005-tcl-fix-race-in-interp.test.patch \
            "
-SRC_URI[sha256sum] = "488fcb6c875a1762e9e8478319b20fbad9a31de475f056aeed94cc54b44cf221"
+SRC_URI[sha256sum] = "b563649181dfe12f970673c427c59208074fd7c91a20132d6cadf5d82d3371be"
 
 UPSTREAM_CHECK_URI = "https://www.tcl.tk/software/tcltk/download.html"
 UPSTREAM_CHECK_REGEX = "tcl(?P<pver>\d+(\.\d+)+)-src"
-- 
2.43.0



^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [OE-core] [PATCH 18/19] u-boot: upgrade 2025.04 -> 2025.07
  2025-07-15  8:08 [OE-core] [PATCH 01/19] debugedit: upgrade 5.1 -> 5.2 Wang Mingyu
                   ` (15 preceding siblings ...)
  2025-07-15  8:08 ` [OE-core] [PATCH 17/19] tcl: upgrade 9.0.1 -> 9.0.2 Wang Mingyu
@ 2025-07-15  8:08 ` Wang Mingyu
  2025-07-15  9:08   ` Gyorgy Sarvari
  2025-07-15  8:08 ` [OE-core] [PATCH 19/19] wayland: upgrade 1.23.1 -> 1.24.0 Wang Mingyu
  17 siblings, 1 reply; 24+ messages in thread
From: Wang Mingyu @ 2025-07-15  8:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 meta/recipes-bsp/u-boot/u-boot-common.inc                       | 2 +-
 .../u-boot/{u-boot-tools_2025.04.bb => u-boot-tools_2025.07.bb} | 0
 .../recipes-bsp/u-boot/{u-boot_2025.04.bb => u-boot_2025.07.bb} | 0
 3 files changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-bsp/u-boot/{u-boot-tools_2025.04.bb => u-boot-tools_2025.07.bb} (100%)
 rename meta/recipes-bsp/u-boot/{u-boot_2025.04.bb => u-boot_2025.07.bb} (100%)

diff --git a/meta/recipes-bsp/u-boot/u-boot-common.inc b/meta/recipes-bsp/u-boot/u-boot-common.inc
index 8600d4bab6..2734b318d7 100644
--- a/meta/recipes-bsp/u-boot/u-boot-common.inc
+++ b/meta/recipes-bsp/u-boot/u-boot-common.inc
@@ -12,7 +12,7 @@ PE = "1"
 
 # We use the revision in order to avoid having to fetch it from the
 # repo during parse
-SRCREV = "34820924edbc4ec7803eb89d9852f4b870fa760a"
+SRCREV = "e37de002fac3895e8d0b60ae2015e17bb33e2b5b"
 
 SRC_URI = "git://source.denx.de/u-boot/u-boot.git;protocol=https;branch=master;tag=v${PV}"
 
diff --git a/meta/recipes-bsp/u-boot/u-boot-tools_2025.04.bb b/meta/recipes-bsp/u-boot/u-boot-tools_2025.07.bb
similarity index 100%
rename from meta/recipes-bsp/u-boot/u-boot-tools_2025.04.bb
rename to meta/recipes-bsp/u-boot/u-boot-tools_2025.07.bb
diff --git a/meta/recipes-bsp/u-boot/u-boot_2025.04.bb b/meta/recipes-bsp/u-boot/u-boot_2025.07.bb
similarity index 100%
rename from meta/recipes-bsp/u-boot/u-boot_2025.04.bb
rename to meta/recipes-bsp/u-boot/u-boot_2025.07.bb
-- 
2.43.0



^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [OE-core] [PATCH 19/19] wayland: upgrade 1.23.1 -> 1.24.0
  2025-07-15  8:08 [OE-core] [PATCH 01/19] debugedit: upgrade 5.1 -> 5.2 Wang Mingyu
                   ` (16 preceding siblings ...)
  2025-07-15  8:08 ` [OE-core] [PATCH 18/19] u-boot: upgrade 2025.04 -> 2025.07 Wang Mingyu
@ 2025-07-15  8:08 ` Wang Mingyu
  17 siblings, 0 replies; 24+ messages in thread
From: Wang Mingyu @ 2025-07-15  8:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../wayland/{wayland_1.23.1.bb => wayland_1.24.0.bb}            | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-graphics/wayland/{wayland_1.23.1.bb => wayland_1.24.0.bb} (96%)

diff --git a/meta/recipes-graphics/wayland/wayland_1.23.1.bb b/meta/recipes-graphics/wayland/wayland_1.24.0.bb
similarity index 96%
rename from meta/recipes-graphics/wayland/wayland_1.23.1.bb
rename to meta/recipes-graphics/wayland/wayland_1.24.0.bb
index 3a5d91be04..5fb7951781 100644
--- a/meta/recipes-graphics/wayland/wayland_1.23.1.bb
+++ b/meta/recipes-graphics/wayland/wayland_1.24.0.bb
@@ -16,7 +16,7 @@ SRC_URI = "https://gitlab.freedesktop.org/wayland/wayland/-/releases/${PV}/downl
            file://run-ptest \
            file://0001-build-Fix-strndup-detection-on-MinGW.patch \
            "
-SRC_URI[sha256sum] = "864fb2a8399e2d0ec39d56e9d9b753c093775beadc6022ce81f441929a81e5ed"
+SRC_URI[sha256sum] = "82892487a01ad67b334eca83b54317a7c86a03a89cfadacfef5211f11a5d0536"
 
 UPSTREAM_CHECK_URI = "https://gitlab.freedesktop.org/wayland/wayland/-/tags"
 UPSTREAM_CHECK_REGEX = "releases/(?P<pver>\d+\.\d+\.(?!9\d+)\d+)"
-- 
2.43.0



^ permalink raw reply related	[flat|nested] 24+ messages in thread

* Re: [OE-core] [PATCH 18/19] u-boot: upgrade 2025.04 -> 2025.07
  2025-07-15  8:08 ` [OE-core] [PATCH 18/19] u-boot: upgrade 2025.04 -> 2025.07 Wang Mingyu
@ 2025-07-15  9:08   ` Gyorgy Sarvari
  2025-07-15 14:10     ` Mathieu Dubois-Briand
  0 siblings, 1 reply; 24+ messages in thread
From: Gyorgy Sarvari @ 2025-07-15  9:08 UTC (permalink / raw)
  To: wangmy, openembedded-core

This patch looks identical to
https://lists.openembedded.org/g/openembedded-core/message/220004 -
however there are some build failures (see same thread)

On 7/15/25 10:08, wangmy via lists.openembedded.org wrote:
> From: Wang Mingyu <wangmy@fujitsu.com>
>
> Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
> ---
>  meta/recipes-bsp/u-boot/u-boot-common.inc                       | 2 +-
>  .../u-boot/{u-boot-tools_2025.04.bb => u-boot-tools_2025.07.bb} | 0
>  .../recipes-bsp/u-boot/{u-boot_2025.04.bb => u-boot_2025.07.bb} | 0
>  3 files changed, 1 insertion(+), 1 deletion(-)
>  rename meta/recipes-bsp/u-boot/{u-boot-tools_2025.04.bb => u-boot-tools_2025.07.bb} (100%)
>  rename meta/recipes-bsp/u-boot/{u-boot_2025.04.bb => u-boot_2025.07.bb} (100%)
>
> diff --git a/meta/recipes-bsp/u-boot/u-boot-common.inc b/meta/recipes-bsp/u-boot/u-boot-common.inc
> index 8600d4bab6..2734b318d7 100644
> --- a/meta/recipes-bsp/u-boot/u-boot-common.inc
> +++ b/meta/recipes-bsp/u-boot/u-boot-common.inc
> @@ -12,7 +12,7 @@ PE = "1"
>  
>  # We use the revision in order to avoid having to fetch it from the
>  # repo during parse
> -SRCREV = "34820924edbc4ec7803eb89d9852f4b870fa760a"
> +SRCREV = "e37de002fac3895e8d0b60ae2015e17bb33e2b5b"
>  
>  SRC_URI = "git://source.denx.de/u-boot/u-boot.git;protocol=https;branch=master;tag=v${PV}"
>  
> diff --git a/meta/recipes-bsp/u-boot/u-boot-tools_2025.04.bb b/meta/recipes-bsp/u-boot/u-boot-tools_2025.07.bb
> similarity index 100%
> rename from meta/recipes-bsp/u-boot/u-boot-tools_2025.04.bb
> rename to meta/recipes-bsp/u-boot/u-boot-tools_2025.07.bb
> diff --git a/meta/recipes-bsp/u-boot/u-boot_2025.04.bb b/meta/recipes-bsp/u-boot/u-boot_2025.07.bb
> similarity index 100%
> rename from meta/recipes-bsp/u-boot/u-boot_2025.04.bb
> rename to meta/recipes-bsp/u-boot/u-boot_2025.07.bb
>


^ permalink raw reply	[flat|nested] 24+ messages in thread

* Re: [OE-core] [PATCH 04/19] gnutls: upgrade 3.8.9 -> 3.8.10
  2025-07-15  8:08 ` [OE-core] [PATCH 04/19] gnutls: upgrade 3.8.9 -> 3.8.10 Wang Mingyu
@ 2025-07-15 13:10   ` Mathieu Dubois-Briand
  0 siblings, 0 replies; 24+ messages in thread
From: Mathieu Dubois-Briand @ 2025-07-15 13:10 UTC (permalink / raw)
  To: wangmy, openembedded-core

On Tue Jul 15, 2025 at 10:08 AM CEST, wangmy via lists.openembedded.org wrote:
> From: Wang Mingyu <wangmy@fujitsu.com>
>
> Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
> ---

Hi Wang,

Thanks for the recipe update.

It looks like this is breaking some ptests:

https://autobuilder.yoctoproject.org/valkyrie/#/builders/61/builds/1893
https://autobuilder.yoctoproject.org/valkyrie/#/builders/73/builds/1896

Failed ptests:
{'gnutls': ['compress-cert-conf']}

Ptest logs can be found here:

https://valkyrie.yocto.io/pub/non-release/20250715-107/testresults/qemux86-64-ptest/core-image-ptest-gnutls/
https://valkyrie.yocto.io/pub/non-release/20250715-107/testresults/qemuarm64-ptest/core-image-ptest-gnutls/

Can you have a look at what went wrong here?

-- 
Mathieu Dubois-Briand, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com



^ permalink raw reply	[flat|nested] 24+ messages in thread

* Re: [OE-core] [PATCH 18/19] u-boot: upgrade 2025.04 -> 2025.07
  2025-07-15  9:08   ` Gyorgy Sarvari
@ 2025-07-15 14:10     ` Mathieu Dubois-Briand
  0 siblings, 0 replies; 24+ messages in thread
From: Mathieu Dubois-Briand @ 2025-07-15 14:10 UTC (permalink / raw)
  To: skandigraun, wangmy, openembedded-core

On Tue Jul 15, 2025 at 11:08 AM CEST, Gyorgy Sarvari via lists.openembedded.org wrote:
> This patch looks identical to
> https://lists.openembedded.org/g/openembedded-core/message/220004 -
> however there are some build failures (see same thread)
>

Yes, I confirm build issues are still present:

https://autobuilder.yoctoproject.org/valkyrie/#/builders/2/builds/2048



-- 
Mathieu Dubois-Briand, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com



^ permalink raw reply	[flat|nested] 24+ messages in thread

* Re: [OE-core] [PATCH 06/19] hwlatdetect: upgrade 2.8 -> 2.9
  2025-07-15  8:08 ` [OE-core] [PATCH 06/19] hwlatdetect: upgrade 2.8 -> 2.9 Wang Mingyu
@ 2025-07-15 14:14   ` Mathieu Dubois-Briand
  0 siblings, 0 replies; 24+ messages in thread
From: Mathieu Dubois-Briand @ 2025-07-15 14:14 UTC (permalink / raw)
  To: wangmy, openembedded-core

On Tue Jul 15, 2025 at 10:08 AM CEST, wangmy via lists.openembedded.org wrote:
> From: Wang Mingyu <wangmy@fujitsu.com>
>
> Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
> ---
>  meta/recipes-rt/rt-tests/rt-tests.inc | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/meta/recipes-rt/rt-tests/rt-tests.inc b/meta/recipes-rt/rt-tests/rt-tests.inc
> index a2e8558c4c..2042768d5a 100644
> --- a/meta/recipes-rt/rt-tests/rt-tests.inc
> +++ b/meta/recipes-rt/rt-tests/rt-tests.inc
> @@ -1,6 +1,6 @@
> -SRCREV = "f5b910a90b6f5ab0ef6df392e009ffe1429d53af"
> -PV = "2.8"
> +SRCREV = "9166c3f0bb9c5d3e31dc80aff165a5073b5ac5be"
> +PV = "2.9"
>  PE = "1"
>  
> -SRC_URI = "git://git.kernel.org/pub/scm/utils/rt-tests/rt-tests.git;branch=main;protocol=https"
> +SRC_URI = "git://git.kernel.org/pub/scm/utils/rt-tests/rt-tests.git;branch=main;protocol=https;tag=v${PV}"
>  

Hi Wang,

Thanks for the recipe update.

It looks like there is some issue when applying the
0001-sched_attr-Do-not-define-for-glibc-2.41.patch patch after this
update:

ERROR: lib32-rt-tests-1_2.9-r0 do_patch: Applying patch '0001-sched_attr-Do-not-define-for-glibc-2.41.patch' on target directory '/srv/pokybuild/yocto-worker/qemux86-world/build/build/tmp/work/x86-pokymllib32-linux/lib32-rt-tests/2.9/sources/rt-tests-2.9'
...
Hunk #1 FAILED at 42.
Hunk #2 succeeded at 72 with fuzz 2 (offset 4 lines).
1 out of 2 hunks FAILED -- rejects in file src/include/rt-sched.h

https://autobuilder.yoctoproject.org/valkyrie/#/builders/59/builds/2025

Can you fix this build issue please?

-- 
Mathieu Dubois-Briand, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com



^ permalink raw reply	[flat|nested] 24+ messages in thread

* Re: [OE-core] [PATCH 07/19] libinput: upgrade 1.28.1 -> 1.28.901
  2025-07-15  8:08 ` [OE-core] [PATCH 07/19] libinput: upgrade 1.28.1 -> 1.28.901 Wang Mingyu
@ 2025-07-15 15:31   ` Alexander Kanavin
  0 siblings, 0 replies; 24+ messages in thread
From: Alexander Kanavin @ 2025-07-15 15:31 UTC (permalink / raw)
  To: wangmy; +Cc: openembedded-core

On Tue, 15 Jul 2025 at 10:08, wangmy via lists.openembedded.org
<wangmy=fujitsu.com@lists.openembedded.org> wrote:
> --- a/meta/recipes-graphics/wayland/libinput_1.28.1.bb
> +++ b/meta/recipes-graphics/wayland/libinput_1.28.901.bb
> @@ -15,7 +15,7 @@ DEPENDS = "libevdev udev mtdev"
>  SRC_URI = "git://gitlab.freedesktop.org/libinput/libinput.git;protocol=https;branch=main;tag=${PV} \
>             file://run-ptest \
>             "
> -SRCREV = "4f7b4ef0e4eb5d569df36be387579858eba349bb"
> +SRCREV = "7716954365a3fa2cc2b3948f21548a98085f16e4"
>
>  UPSTREAM_CHECK_REGEX = "libinput-(?P<pver>\d+\.\d+\.(?!9\d+)\d+)"

1.28.901 is a pre-release, we cannot take that. The regex that guards
against such versions is meant for tarballs, and should be converted
to UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+\.\d+\.(?!9\d+)\d+)"


Alex


^ permalink raw reply	[flat|nested] 24+ messages in thread

end of thread, other threads:[~2025-07-15 15:32 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-15  8:08 [OE-core] [PATCH 01/19] debugedit: upgrade 5.1 -> 5.2 Wang Mingyu
2025-07-15  8:08 ` [OE-core] [PATCH 02/19] gi-docgen: upgrade 2025.3 -> 2025.4 Wang Mingyu
2025-07-15  8:08 ` [OE-core] [PATCH 03/19] git: upgrade 2.50.0 -> 2.50.1 Wang Mingyu
2025-07-15  8:08 ` [OE-core] [PATCH 04/19] gnutls: upgrade 3.8.9 -> 3.8.10 Wang Mingyu
2025-07-15 13:10   ` Mathieu Dubois-Briand
2025-07-15  8:08 ` [OE-core] [PATCH 05/19] hwdata: upgrade 0.396 -> 0.397 Wang Mingyu
2025-07-15  8:08 ` [OE-core] [PATCH 06/19] hwlatdetect: upgrade 2.8 -> 2.9 Wang Mingyu
2025-07-15 14:14   ` Mathieu Dubois-Briand
2025-07-15  8:08 ` [OE-core] [PATCH 07/19] libinput: upgrade 1.28.1 -> 1.28.901 Wang Mingyu
2025-07-15 15:31   ` Alexander Kanavin
2025-07-15  8:08 ` [OE-core] [PATCH 08/19] libsolv: upgrade 0.7.33 -> 0.7.34 Wang Mingyu
2025-07-15  8:08 ` [OE-core] [PATCH 09/19] libwebp: upgrade 1.5.0 -> 1.6.0 Wang Mingyu
2025-07-15  8:08 ` [OE-core] [PATCH 10/19] lsof: upgrade 4.99.4 -> 4.99.5 Wang Mingyu
2025-07-15  8:08 ` [OE-core] [PATCH 11/19] mesa: upgrade 25.1.4 -> 25.1.5 Wang Mingyu
2025-07-15  8:08 ` [OE-core] [PATCH 12/19] ninja: upgrade 1.13.0 -> 1.13.1 Wang Mingyu
2025-07-15  8:08 ` [OE-core] [PATCH 13/19] python3-certifi: upgrade 2025.6.15 -> 2025.7.9 Wang Mingyu
2025-07-15  8:08 ` [OE-core] [PATCH 14/19] python3-hypothesis: upgrade 6.135.16 -> 6.135.29 Wang Mingyu
2025-07-15  8:08 ` [OE-core] [PATCH 15/19] python3-pdm-backend: upgrade 2.4.4 -> 2.4.5 Wang Mingyu
2025-07-15  8:08 ` [OE-core] [PATCH 16/19] taglib: upgrade 2.1 -> 2.1.1 Wang Mingyu
2025-07-15  8:08 ` [OE-core] [PATCH 17/19] tcl: upgrade 9.0.1 -> 9.0.2 Wang Mingyu
2025-07-15  8:08 ` [OE-core] [PATCH 18/19] u-boot: upgrade 2025.04 -> 2025.07 Wang Mingyu
2025-07-15  9:08   ` Gyorgy Sarvari
2025-07-15 14:10     ` Mathieu Dubois-Briand
2025-07-15  8:08 ` [OE-core] [PATCH 19/19] wayland: upgrade 1.23.1 -> 1.24.0 Wang Mingyu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox