Openembedded Core Discussions
 help / color / mirror / Atom feed
* [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37
@ 2024-10-09  5:48 wangmy
  2024-10-09  5:48 ` [OE-core] [PATCH 02/26] dhcpcd: upgrade 10.0.10 -> 10.1.0 wangmy
                   ` (25 more replies)
  0 siblings, 26 replies; 27+ messages in thread
From: wangmy @ 2024-10-09  5:48 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

0001-fix-c99.patch
refreshed for 5.2.37

Changelog:
===========
- fix issue where comparing quoted and unquoted words to be completed results
  in readline not displaying possible matches
- fix for reading partial invalid multibyte characters
- fix compilation on systems that provide select or pselect but not both
- fix for parsing compound assignment while expanding alias
- fix autoconf test for broken strtold

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../bash/bash/0001-fix-c99.patch              | 20 +++----------------
 .../bash/{bash_5.2.32.bb => bash_5.2.37.bb}   |  2 +-
 2 files changed, 4 insertions(+), 18 deletions(-)
 rename meta/recipes-extended/bash/{bash_5.2.32.bb => bash_5.2.37.bb} (90%)

diff --git a/meta/recipes-extended/bash/bash/0001-fix-c99.patch b/meta/recipes-extended/bash/bash/0001-fix-c99.patch
index abd83d09af..e0f1a51433 100644
--- a/meta/recipes-extended/bash/bash/0001-fix-c99.patch
+++ b/meta/recipes-extended/bash/bash/0001-fix-c99.patch
@@ -1,4 +1,4 @@
-From e8ec2d75a52bdc93c83a679a71a68f4033033b8b Mon Sep 17 00:00:00 2001
+From 60a075c6e3258df9799d067e360e4c63e24e229b Mon Sep 17 00:00:00 2001
 From: Ross Burton <ross.burton@arm.com>
 Date: Wed, 19 Jun 2024 12:57:39 +0000
 Subject: [PATCH] Fix C99 problems
@@ -8,9 +8,8 @@ Backport some fixes from upstream to fix configure checks that fail with GCC 14.
 Upstream-Status: Backport [devel branch]
 Signed-off-by: Ross Burton <ross.burton@arm.com>
 ---
- aclocal.m4   | 3 +++
- configure.ac | 2 +-
- 2 files changed, 4 insertions(+), 1 deletion(-)
+ aclocal.m4 | 3 +++
+ 1 file changed, 3 insertions(+)
 
 diff --git a/aclocal.m4 b/aclocal.m4
 index cc97bd4..7423b99 100644
@@ -26,16 +25,3 @@ index cc97bd4..7423b99 100644
  int
  main()
  {
-diff --git a/configure.ac b/configure.ac
-index a3b5bd7..2a38c6b 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -842,7 +842,7 @@ AC_CHECK_DECLS([strtold], [
- 	[AC_COMPILE_IFELSE(
- 		[AC_LANG_PROGRAM(
- 		[[#include <stdlib.h>]],
--		[[long double r; char *foo, bar; r = strtold(foo, &bar);]]
-+		[[long double r; char *foo, *bar; r = strtold(foo, &bar);]]
- 	)],
- 	[bash_cv_strtold_broken=no],[bash_cv_strtold_broken=yes])
-         ]
diff --git a/meta/recipes-extended/bash/bash_5.2.32.bb b/meta/recipes-extended/bash/bash_5.2.37.bb
similarity index 90%
rename from meta/recipes-extended/bash/bash_5.2.32.bb
rename to meta/recipes-extended/bash/bash_5.2.37.bb
index b159c0232f..87e0aa24ec 100644
--- a/meta/recipes-extended/bash/bash_5.2.32.bb
+++ b/meta/recipes-extended/bash/bash_5.2.37.bb
@@ -17,7 +17,7 @@ SRC_URI = "${GNU_MIRROR}/bash/${BP}.tar.gz;name=tarball \
            file://0001-fix-c99.patch \
            "
 
-SRC_URI[tarball.sha256sum] = "d3ef80d2b67d8cbbe4d3265c63a72c46f9b278ead6e0e06d61801b58f23f50b5"
+SRC_URI[tarball.sha256sum] = "9599b22ecd1d5787ad7d3b7bf0c59f312b3396d1e281175dd1f8a4014da621ff"
 
 DEBUG_OPTIMIZATION:append:armv4 = " ${@bb.utils.contains('TUNE_CCARGS', '-mthumb', '-fomit-frame-pointer', '', d)}"
 DEBUG_OPTIMIZATION:append:armv5 = " ${@bb.utils.contains('TUNE_CCARGS', '-mthumb', '-fomit-frame-pointer', '', d)}"
-- 
2.34.1



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

* [OE-core] [PATCH 02/26] dhcpcd: upgrade 10.0.10 -> 10.1.0
  2024-10-09  5:48 [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 wangmy
@ 2024-10-09  5:48 ` wangmy
  2024-10-09  5:48 ` [OE-core] [PATCH 03/26] erofs-utils: upgrade 1.8.1 -> 1.8.2 wangmy
                   ` (24 subsequent siblings)
  25 siblings, 0 replies; 27+ messages in thread
From: wangmy @ 2024-10-09  5:48 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../dhcpcd/{dhcpcd_10.0.10.bb => dhcpcd_10.1.0.bb}              | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-connectivity/dhcpcd/{dhcpcd_10.0.10.bb => dhcpcd_10.1.0.bb} (97%)

diff --git a/meta/recipes-connectivity/dhcpcd/dhcpcd_10.0.10.bb b/meta/recipes-connectivity/dhcpcd/dhcpcd_10.1.0.bb
similarity index 97%
rename from meta/recipes-connectivity/dhcpcd/dhcpcd_10.0.10.bb
rename to meta/recipes-connectivity/dhcpcd/dhcpcd_10.1.0.bb
index 0ae9db911c..3f806bb187 100644
--- a/meta/recipes-connectivity/dhcpcd/dhcpcd_10.0.10.bb
+++ b/meta/recipes-connectivity/dhcpcd/dhcpcd_10.1.0.bb
@@ -17,7 +17,7 @@ SRC_URI = "git://github.com/NetworkConfiguration/dhcpcd;protocol=https;branch=ma
            file://0001-dhcpcd.8-Fix-conflict-error-when-enable-multilib.patch \
            "
 
-SRCREV = "ab5ec18e755c1bb450c74d3a4657ea48d0f7f314"
+SRCREV = "57c3506a5622e199cf0e3fc1ef26a71cdedc9521"
 S = "${WORKDIR}/git"
 
 inherit pkgconfig autotools-brokensep systemd useradd
-- 
2.34.1



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

* [OE-core] [PATCH 03/26] erofs-utils: upgrade 1.8.1 -> 1.8.2
  2024-10-09  5:48 [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 wangmy
  2024-10-09  5:48 ` [OE-core] [PATCH 02/26] dhcpcd: upgrade 10.0.10 -> 10.1.0 wangmy
@ 2024-10-09  5:48 ` wangmy
  2024-10-09  5:48 ` [OE-core] [PATCH 04/26] fribidi: upgrade 1.0.15 -> 1.0.16 wangmy
                   ` (23 subsequent siblings)
  25 siblings, 0 replies; 27+ messages in thread
From: wangmy @ 2024-10-09  5:48 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
==========
- Fix build on GNU/Hurd
- Fix maximum volume label length
- Correctly skip unidentified xattrs
- Support exporting xattrs optionally
- Correctly sort shared xattrs
- Allow pax headers with empty names;
- Add '--sort=none' option for tarballs;
- Fix broken compressed packed inodes
- Several minor random fixes.

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

diff --git a/meta/recipes-devtools/erofs-utils/erofs-utils_1.8.1.bb b/meta/recipes-devtools/erofs-utils/erofs-utils_1.8.2.bb
similarity index 94%
rename from meta/recipes-devtools/erofs-utils/erofs-utils_1.8.1.bb
rename to meta/recipes-devtools/erofs-utils/erofs-utils_1.8.2.bb
index 50d6e3b38e..4d8689f87c 100644
--- a/meta/recipes-devtools/erofs-utils/erofs-utils_1.8.1.bb
+++ b/meta/recipes-devtools/erofs-utils/erofs-utils_1.8.2.bb
@@ -5,7 +5,7 @@ SECTION = "base"
 LIC_FILES_CHKSUM = "file://COPYING;md5=73001d804ea1e3d84365f652242cca20"
 HOMEPAGE = "https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/tree/README"
 
-SRCREV = "ddbed14463fb798eff71fd4d4395357eb598e175"
+SRCREV = "8bedd862edfbb9a5e54dd37abede29020dd8fdfb"
 SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git;branch=master;protocol=https"
 
 UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>(\d+(\.\d+)+))"
-- 
2.34.1



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

* [OE-core] [PATCH 04/26] fribidi: upgrade 1.0.15 -> 1.0.16
  2024-10-09  5:48 [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 wangmy
  2024-10-09  5:48 ` [OE-core] [PATCH 02/26] dhcpcd: upgrade 10.0.10 -> 10.1.0 wangmy
  2024-10-09  5:48 ` [OE-core] [PATCH 03/26] erofs-utils: upgrade 1.8.1 -> 1.8.2 wangmy
@ 2024-10-09  5:48 ` wangmy
  2024-10-09  5:48 ` [OE-core] [PATCH 05/26] git: upgrade 2.46.1 -> 2.47.0 wangmy
                   ` (22 subsequent siblings)
  25 siblings, 0 replies; 27+ messages in thread
From: wangmy @ 2024-10-09  5:48 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
 Update Unicode character databases to v16.0.0

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../fribidi/{fribidi_1.0.15.bb => fribidi_1.0.16.bb}            | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-support/fribidi/{fribidi_1.0.15.bb => fribidi_1.0.16.bb} (89%)

diff --git a/meta/recipes-support/fribidi/fribidi_1.0.15.bb b/meta/recipes-support/fribidi/fribidi_1.0.16.bb
similarity index 89%
rename from meta/recipes-support/fribidi/fribidi_1.0.15.bb
rename to meta/recipes-support/fribidi/fribidi_1.0.16.bb
index 14d901a530..9f75446da2 100644
--- a/meta/recipes-support/fribidi/fribidi_1.0.15.bb
+++ b/meta/recipes-support/fribidi/fribidi_1.0.16.bb
@@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7"
 
 SRC_URI = "${GITHUB_BASE_URI}/download/v${PV}/${BP}.tar.xz \
            "
-SRC_URI[sha256sum] = "0bbc7ff633bfa208ae32d7e369cf5a7d20d5d2557a0b067c9aa98bcbf9967587"
+SRC_URI[sha256sum] = "1b1cde5b235d40479e91be2f0e88a309e3214c8ab470ec8a2744d82a5a9ea05c"
 
 inherit meson lib_package pkgconfig github-releases
 
-- 
2.34.1



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

* [OE-core] [PATCH 05/26] git: upgrade 2.46.1 -> 2.47.0
  2024-10-09  5:48 [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 wangmy
                   ` (2 preceding siblings ...)
  2024-10-09  5:48 ` [OE-core] [PATCH 04/26] fribidi: upgrade 1.0.15 -> 1.0.16 wangmy
@ 2024-10-09  5:48 ` wangmy
  2024-10-09  5:48 ` [OE-core] [PATCH 06/26] gtk4: upgrade 4.16.1 -> 4.16.3 wangmy
                   ` (21 subsequent siblings)
  25 siblings, 0 replies; 27+ messages in thread
From: wangmy @ 2024-10-09  5:48 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

0001-config.mak.uname-do-not-force-RHEL-7-specific-build-.patch
refreshed for 2.47.0

Changelog:
 https://raw.githubusercontent.com/git/git/master/Documentation/RelNotes/2.47.0.txt

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...nfig.mak.uname-do-not-force-RHEL-7-specific-build-.patch | 6 +++---
 meta/recipes-devtools/git/{git_2.46.1.bb => git_2.47.0.bb}  | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)
 rename meta/recipes-devtools/git/{git_2.46.1.bb => git_2.47.0.bb} (98%)

diff --git a/meta/recipes-devtools/git/git/0001-config.mak.uname-do-not-force-RHEL-7-specific-build-.patch b/meta/recipes-devtools/git/git/0001-config.mak.uname-do-not-force-RHEL-7-specific-build-.patch
index 3f0bc4aaa1..e5135928f0 100644
--- a/meta/recipes-devtools/git/git/0001-config.mak.uname-do-not-force-RHEL-7-specific-build-.patch
+++ b/meta/recipes-devtools/git/git/0001-config.mak.uname-do-not-force-RHEL-7-specific-build-.patch
@@ -1,4 +1,4 @@
-From be83596773e42b88ba1104f044a139f35d90a7f5 Mon Sep 17 00:00:00 2001
+From 348811a6f818408a31551d0830dcfe31c55d06a8 Mon Sep 17 00:00:00 2001
 From: Alexander Kanavin <alex@linutronix.de>
 Date: Mon, 7 Feb 2022 10:13:15 +0100
 Subject: [PATCH] config.mak.uname: do not force RHEL-7 specific build settings
@@ -17,10 +17,10 @@ Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
  1 file changed, 4 deletions(-)
 
 diff --git a/config.mak.uname b/config.mak.uname
-index 85d6382..bdf06ca 100644
+index d511216..3144228 100644
 --- a/config.mak.uname
 +++ b/config.mak.uname
-@@ -64,10 +64,6 @@ ifeq ($(uname_S),Linux)
+@@ -63,10 +63,6 @@ ifeq ($(uname_S),Linux)
  	PROCFS_EXECUTABLE_PATH = /proc/self/exe
  	HAVE_PLATFORM_PROCINFO = YesPlease
  	COMPAT_OBJS += compat/linux/procinfo.o
diff --git a/meta/recipes-devtools/git/git_2.46.1.bb b/meta/recipes-devtools/git/git_2.47.0.bb
similarity index 98%
rename from meta/recipes-devtools/git/git_2.46.1.bb
rename to meta/recipes-devtools/git/git_2.47.0.bb
index d301c474f2..67356874b5 100644
--- a/meta/recipes-devtools/git/git_2.46.1.bb
+++ b/meta/recipes-devtools/git/git_2.47.0.bb
@@ -164,4 +164,4 @@ EXTRA_OECONF += "ac_cv_snprintf_returns_bogus=no \
                  "
 EXTRA_OEMAKE += "NO_GETTEXT=1"
 
-SRC_URI[tarball.sha256sum] = "b0a4d1ad50e820edd84c0d1b609c29349d4ae2681ed458914ea759aafcd4bf21"
+SRC_URI[tarball.sha256sum] = "a84a7917e0ab608312834413f01fc01edc7844f9f9002ba69f3b4f4bcb8d937a"
-- 
2.34.1



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

* [OE-core] [PATCH 06/26] gtk4: upgrade 4.16.1 -> 4.16.3
  2024-10-09  5:48 [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 wangmy
                   ` (3 preceding siblings ...)
  2024-10-09  5:48 ` [OE-core] [PATCH 05/26] git: upgrade 2.46.1 -> 2.47.0 wangmy
@ 2024-10-09  5:48 ` wangmy
  2024-10-09  5:48 ` [OE-core] [PATCH 07/26] harfbuzz: upgrade 9.0.0 -> 10.0.1 wangmy
                   ` (20 subsequent siblings)
  25 siblings, 0 replies; 27+ messages in thread
From: wangmy @ 2024-10-09  5:48 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
=============
* GtkScrolledWindow
- Fix criticals in size allocation code
* GtkFileChooser
- Fix a crash in the portal code
* GtkPicture
 - Avoid unnecessary resizes
* GtkVideo
 - Make dmabufs work without GL
* Accessibility:
 - Always realized non-widget accessibles
* Wayland:
 - Improve settings portal handling
 - Improve fallback for cursor themes
 - Sync default values for settings with schema defaults
 - Be more careful with mimetypes during DND or copy-paste
* GtkLabel:
 - Fix centered text in RTL
* Gsk:
 - Speed up some Vulkan operations
 - Improve startup speed by avoiding initialization
   of GL and Vulkan in most cases
 - Reduce critials at startup to warnings
 - Fix a crash on startup with some Vulkan drivers
 - Fix a big texture leak in NGL
* Gdk:
 - Speed up memory format conversions
* Tools:
- builder-tool: Improve conversion of boxes
* Translation updates:
 Brazilian Portuguese
 Galician
 Swedish
 Bulgarian
 Catalan
 Chinese (China)
 Georgian
 German
 Hebrew
 Indonesian
 Persian
 Polish
 Portuguese
 Slovenian
 Spanish
 Turkish
 Ukrainian

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 meta/recipes-gnome/gtk+/{gtk4_4.16.1.bb => gtk4_4.16.3.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-gnome/gtk+/{gtk4_4.16.1.bb => gtk4_4.16.3.bb} (98%)

diff --git a/meta/recipes-gnome/gtk+/gtk4_4.16.1.bb b/meta/recipes-gnome/gtk+/gtk4_4.16.3.bb
similarity index 98%
rename from meta/recipes-gnome/gtk+/gtk4_4.16.1.bb
rename to meta/recipes-gnome/gtk+/gtk4_4.16.3.bb
index 30b2b16a6f..b8dce36c0d 100644
--- a/meta/recipes-gnome/gtk+/gtk4_4.16.1.bb
+++ b/meta/recipes-gnome/gtk+/gtk4_4.16.3.bb
@@ -38,7 +38,7 @@ MAJ_VER = "${@oe.utils.trim_version("${PV}", 2)}"
 UPSTREAM_CHECK_REGEX = "gtk-(?P<pver>\d+\.(\d*[02468])+(\.\d+)+)\.tar.xz"
 
 SRC_URI = "http://ftp.gnome.org/pub/gnome/sources/gtk/${MAJ_VER}/gtk-${PV}.tar.xz"
-SRC_URI[sha256sum] = "926a1eabd481f9bfa25538f95016fdfcfaf963b2f90b40ae69e90def5499215c"
+SRC_URI[sha256sum] = "2ec53e07d18c9f003b39e4a6a838054d9259e048b6c4c05d80c0d05aa721d944"
 
 S = "${WORKDIR}/gtk-${PV}"
 
-- 
2.34.1



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

* [OE-core] [PATCH 07/26] harfbuzz: upgrade 9.0.0 -> 10.0.1
  2024-10-09  5:48 [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 wangmy
                   ` (4 preceding siblings ...)
  2024-10-09  5:48 ` [OE-core] [PATCH 06/26] gtk4: upgrade 4.16.1 -> 4.16.3 wangmy
@ 2024-10-09  5:48 ` wangmy
  2024-10-09  5:48 ` [OE-core] [PATCH 08/26] libproxy: upgrade 0.5.8 -> 0.5.9 wangmy
                   ` (19 subsequent siblings)
  25 siblings, 0 replies; 27+ messages in thread
From: wangmy @ 2024-10-09  5:48 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
============
- Relax sanitization checks for "morx"subtables to fix broken AAT shaping of
macOS 15.0 version of GeezaPro.
- Unicode 16.0.0 support.
- Various documentation fixes.
- Various build fixes.
- Add API to allow HarfBuzz client to set what glyph to use when a Unicode
  Variation Selector is not supported by the font, which would allow the client
  to customize what happens in this case, by using a different font for example.
- Add a callback to for "hb_face_t"for getting the list of table tags. This is
  now used to make calling "hb_face_get_table_tags()"work on a faces created by
  "hb_face_create_for_tables()"(e.g. faces returned by "hb_subset_or_fail()").
- CGJ and Mongolian Variation Selectors are now ignored during glyph
  positioning, previously they would block both glyph substitution and
  positioning across them.
- Support cairo script as an output format for "hb-view"command line tool.
- Drop an optimization that would cause HarfBuzz not apply pair positioning
  lookup subtables under certain circumstances, for compatibility with other
  implementations that do apply these subtables.
- Subsetting will now fail if source font has no glyphs, so feeding the subsetter
  invalid data will not silently return an empty face.
- If after partially instancing a font no variation data is left (the instance
  is fully static), don't consider this a failure.
- Workaround a Firefox bug in displaying SVGs generated be "hb-view"command
  line tool under certain circumstances.
- Fix bug in macroman mapping for "cmap"table.
- Fix difference shaping output when HarfBuzz is built with with
  "HB_NO_OT_RULESETS_FAST_PATH"enabled.
- Various subsetting and instancing fixes.
- Various fuzzing fixes.
- Add "with_libstdcxx"meson build option.
- New API:
  HB_SCRIPT_GARAY
  HB_SCRIPT_GURUNG_KHEMA
  HB_SCRIPT_KIRAT_RAI
  HB_SCRIPT_OL_ONAL
  HB_SCRIPT_SUNUWAR
  HB_SCRIPT_TODHRI
  HB_SCRIPT_TULU_TIGALARI
  hb_buffer_set_not_found_variation_selector_glyph()
  hb_buffer_get_not_found_variation_selector_glyph()
  hb_get_table_tags_func_t
  hb_face_set_get_table_tags_func()

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../harfbuzz/{harfbuzz_9.0.0.bb => harfbuzz_10.0.1.bb}          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-graphics/harfbuzz/{harfbuzz_9.0.0.bb => harfbuzz_10.0.1.bb} (95%)

diff --git a/meta/recipes-graphics/harfbuzz/harfbuzz_9.0.0.bb b/meta/recipes-graphics/harfbuzz/harfbuzz_10.0.1.bb
similarity index 95%
rename from meta/recipes-graphics/harfbuzz/harfbuzz_9.0.0.bb
rename to meta/recipes-graphics/harfbuzz/harfbuzz_10.0.1.bb
index 01ea6ca86d..3b211251af 100644
--- a/meta/recipes-graphics/harfbuzz/harfbuzz_9.0.0.bb
+++ b/meta/recipes-graphics/harfbuzz/harfbuzz_10.0.1.bb
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b98429b8e8e3c2a67cfef01e99e4893d \
                     "
 
 SRC_URI = "${GITHUB_BASE_URI}/download/${PV}/${BPN}-${PV}.tar.xz"
-SRC_URI[sha256sum] = "a41b272ceeb920c57263ec851604542d9ec85ee3030506d94662067c7b6ab89e"
+SRC_URI[sha256sum] = "b2cb13bd351904cb9038f907dc0dee0ae07127061242fe3556b2795c4e9748fc"
 
 DEPENDS += "glib-2.0-native"
 
-- 
2.34.1



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

* [OE-core] [PATCH 08/26] libproxy: upgrade 0.5.8 -> 0.5.9
  2024-10-09  5:48 [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 wangmy
                   ` (5 preceding siblings ...)
  2024-10-09  5:48 ` [OE-core] [PATCH 07/26] harfbuzz: upgrade 9.0.0 -> 10.0.1 wangmy
@ 2024-10-09  5:48 ` wangmy
  2024-10-09  5:48 ` [OE-core] [PATCH 09/26] libsdl2: upgrade 2.30.7 -> 2.30.8 wangmy
                   ` (18 subsequent siblings)
  25 siblings, 0 replies; 27+ messages in thread
From: wangmy @ 2024-10-09  5:48 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
==========
- Ignore invalid proxy URL
- Memleak fixes
- kde: Add ReversedException support
- Fix memory leak using PX_FORCE_CONFIG
- Update msys2 build steps
- Remove white space in key value

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

diff --git a/meta/recipes-support/libproxy/libproxy_0.5.8.bb b/meta/recipes-support/libproxy/libproxy_0.5.9.bb
similarity index 95%
rename from meta/recipes-support/libproxy/libproxy_0.5.8.bb
rename to meta/recipes-support/libproxy/libproxy_0.5.9.bb
index 5dcd7d019b..e6192a6960 100644
--- a/meta/recipes-support/libproxy/libproxy_0.5.8.bb
+++ b/meta/recipes-support/libproxy/libproxy_0.5.9.bb
@@ -14,7 +14,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c \
 DEPENDS = "glib-2.0"
 
 SRC_URI = "git://github.com/libproxy/libproxy;protocol=https;branch=main"
-SRCREV = "04c5185729e164dcc2d010177f83b6209769d9e7"
+SRCREV = "77e2a2b88a319974cf099c8eaaaa03030bc4c0d4"
 S = "${WORKDIR}/git"
 
 inherit meson pkgconfig gobject-introspection vala gi-docgen
-- 
2.34.1



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

* [OE-core] [PATCH 09/26] libsdl2: upgrade 2.30.7 -> 2.30.8
  2024-10-09  5:48 [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 wangmy
                   ` (6 preceding siblings ...)
  2024-10-09  5:48 ` [OE-core] [PATCH 08/26] libproxy: upgrade 0.5.8 -> 0.5.9 wangmy
@ 2024-10-09  5:48 ` wangmy
  2024-10-09  5:48 ` [OE-core] [PATCH 10/26] libuv: upgrade 1.48.0 -> 1.49.0 wangmy
                   ` (17 subsequent siblings)
  25 siblings, 0 replies; 27+ messages in thread
From: wangmy @ 2024-10-09  5:48 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
=========
- Fixed a crash in XInput code at startup
- Fixed flooding the OS with I/O when a PS4/PS5 controller is disconnected
- Added SDL_VIDEO_DOUBLE_BUFFER support to the Wayland backend
- SDL_WINDOWEVENT_EXPOSED is sent appropriately when using Wayland
- Fixed hang at startup in audio code when the application has large stack usage on Linux
- Fixed initializing KMSDRM on older Linux systems
- The pre-built SDL2.dll no longer depends on ucrtbase.dll

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

diff --git a/meta/recipes-graphics/libsdl2/libsdl2_2.30.7.bb b/meta/recipes-graphics/libsdl2/libsdl2_2.30.8.bb
similarity index 97%
rename from meta/recipes-graphics/libsdl2/libsdl2_2.30.7.bb
rename to meta/recipes-graphics/libsdl2/libsdl2_2.30.8.bb
index 25bbe2067a..d46f014502 100644
--- a/meta/recipes-graphics/libsdl2/libsdl2_2.30.7.bb
+++ b/meta/recipes-graphics/libsdl2/libsdl2_2.30.8.bb
@@ -25,7 +25,7 @@ SRC_URI = "http://www.libsdl.org/release/SDL2-${PV}.tar.gz"
 
 S = "${WORKDIR}/SDL2-${PV}"
 
-SRC_URI[sha256sum] = "2508c80438cd5ff3bbeb8fe36b8f3ce7805018ff30303010b61b03bb83ab9694"
+SRC_URI[sha256sum] = "380c295ea76b9bd72d90075793971c8bcb232ba0a69a9b14da4ae8f603350058"
 
 inherit cmake lib_package binconfig-disabled pkgconfig upstream-version-is-even
 
-- 
2.34.1



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

* [OE-core] [PATCH 10/26] libuv: upgrade 1.48.0 -> 1.49.0
  2024-10-09  5:48 [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 wangmy
                   ` (7 preceding siblings ...)
  2024-10-09  5:48 ` [OE-core] [PATCH 09/26] libsdl2: upgrade 2.30.7 -> 2.30.8 wangmy
@ 2024-10-09  5:48 ` wangmy
  2024-10-09  5:49 ` [OE-core] [PATCH 11/26] ltp: upgrade 20240524 -> 20240930 wangmy
                   ` (16 subsequent siblings)
  25 siblings, 0 replies; 27+ messages in thread
From: wangmy @ 2024-10-09  5:48 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changes since version 1.48.0:
==============================
* test: fix -Wpointer-to-int-cast on 32 bits systems
* build: add alias for libuv to CMakeLists.txt
* linux: create io_uring sqpoll ring lazily
* misc: run sample CI when code changes
* linux: fix uv_available_parallelism using cgroup
* doc: fix tty example segfault
* udp,unix: fix sendmsg use-after-free
* cygwin: implement uv_resident_set_memory
* win: almost fix race detecting ESRCH in uv_kill
* test: disable env var test under win32+asan
* unix,fs: fix realpath calls that use the system allocator
* linux: fix /proc/self/stat executable name parsing
* test,ci: fix [AM]San, disable ASLR
* win: remove _alloca usage
* unix: reinstate preadv/pwritev fallback code
* linux: don't delay EPOLL_CTL_DEL operations
* doc: fix typos in ChangeLog
* unix,win: error on zero delay tcp keepalive
* win: simplify uv_once implementation
* doc: correct udp socket options documentation
* linux: don't use sendmmsg() for single datagrams
* unix: fix fd leaks in SCM_RIGHTS error path
* win: robustify uv_os_getenv() error checking
* test: use newer ASSERT_MEM_EQ macro
* unix: de-duplicate conditions for using kqueue
* darwin: simplify uv_hrtime
* mailmap: update saghul's main email address
* win: remove no longer needed define
* doc: fix some typos
* linux,darwin: make `uv_fs_copyfile` behaves like `cp -r`
* dragonfly: disable SO_REUSEPORT for UDP socket bindings
* test: remove the obsolete HAVE_KQUEUE macro
* unix: use the presence of SOCK_* instead of OS macros for socketpair
* bsd: support pipe2() on *BSD
* unix: support SO_REUSEPORT with load balancing for TCP
* doc: add entries for extended getpw
* test: fix the flaky test-tcp-reuseport
* aix,ibmi: fix compilation errors in fs_copyfile
* unix: support SO_REUSEPORT with load balancing for UDP
* tcpkeepalive: distinguish OS versions and use proper time units
* win: map ERROR_BAD_EXE_FORMAT to UV_EFTYPE
* doc: add instruction how to install with Conan
* unix,win: remove unused req parameter from macros
* build: fix android ci build
* unix,win: export wtf8 functions properly
* hurd: add includes and macro prerequisites
* hurd: stub uv_thread_setpriority()
* ci: use macOS 12 for macOS and iOS builds
* darwin: fix crash on iOS(arm64)
* Create dependabot.yml for updating github-actions
* doc: correct names of Win32 APIs in fs.rst
* ci: bump upload and download-artifact versions
* ci: bump actions/setup-python from 4 to 5
* ci: bump KyleMayes/install-llvm-action from 1 to 2
* win,error: remap ERROR_NO_DATA to EAGAIN
* test: handle zero-length udp datagram
* misc: remove splay trees macros
* test,openbsd: remove superfluous ifdef guard
* win,fs: use posix delete semantics, if supported
* win: fix env var in uv_os_homedir and uv_os_tmpdir
* fsevents: detect watched directory removal
* ci: bump actions/checkout to 4
* linux: eliminate a read on eventfd per wakeup
* test: pipe_overlong_path handle ENAMETOOLONG
* win,fs: use the new Windows fast stat API
* win,pipe: fix race with concurrent readers
* win,signal: fix data race dispatching SIGWINCH
* build: ubsan fixes
* linux: disable SQPOLL io_uring by default
* win: fix fs.c ubsan failure
* test: rmdir can return `EEXIST` or `ENOTEMPTY`
* test: check for `UV_CHANGE` or `UV_RENAME` event
* unix,fs: silence -Wunused-result warning
* linux: support abstract unix socket autobinding
* kqueue: use EVFILT_USER for async if available
* win: remove deprecated GetVersionExW call
* doc: document uv_loop_option
* doc: fix the `uv_*_set_data` series of functions
* doc: properly label enumerations and types
* doc: document specific macOS fs_event behavior
* win,pipe: restore fallback handling for blocking pipes
* unix,win: remove unused rb-tree macro parameters
* win: compute parallelism from process cpu affinity
* win: use NtQueryInformationProcess in uv_os_getppid
* win,pipe: fix missing assignment to success
* win: fix uv_available_parallelism on win32
* win,pipe: fix another missing assignment to success
* kqueue: disallow ill-suited file descriptor kinds
* unix: restore tty attributes on handle close
* test: delete test with invalid assumption
* dragonflybsd: fix compilation failure
* test: run android tests on ci
* darwin: add udp mmsg support
* unix: work around arm-linux-gnueabihf-gcc bug
* unix: expand uv_available_parallelism() to support more platforms
* doc: add known issue in armv7

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../libuv/{libuv_1.48.0.bb => libuv_1.49.0.bb}                  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-connectivity/libuv/{libuv_1.48.0.bb => libuv_1.49.0.bb} (94%)

diff --git a/meta/recipes-connectivity/libuv/libuv_1.48.0.bb b/meta/recipes-connectivity/libuv/libuv_1.49.0.bb
similarity index 94%
rename from meta/recipes-connectivity/libuv/libuv_1.48.0.bb
rename to meta/recipes-connectivity/libuv/libuv_1.49.0.bb
index 87a2c22a7c..1dd73f2f8c 100644
--- a/meta/recipes-connectivity/libuv/libuv_1.48.0.bb
+++ b/meta/recipes-connectivity/libuv/libuv_1.49.0.bb
@@ -6,7 +6,7 @@ LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=74b6f2f7818a4e3a80d03556f71b129b \
                     file://LICENSE-extra;md5=f9307417749e19bd1d6d68a394b49324"
 
-SRCREV = "e9f29cb984231524e3931aa0ae2c5dae1a32884e"
+SRCREV = "d2e56a5e8d3e39947b78405ca6e4727c70f5568a"
 SRC_URI = "git://github.com/libuv/libuv.git;branch=v1.x;protocol=https"
 UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>\d+(\.\d+)+)"
 
-- 
2.34.1



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

* [OE-core] [PATCH 11/26] ltp: upgrade 20240524 -> 20240930
  2024-10-09  5:48 [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 wangmy
                   ` (8 preceding siblings ...)
  2024-10-09  5:48 ` [OE-core] [PATCH 10/26] libuv: upgrade 1.48.0 -> 1.49.0 wangmy
@ 2024-10-09  5:49 ` wangmy
  2024-10-09  5:49 ` [OE-core] [PATCH 12/26] msmtp: upgrade 1.8.26 -> 1.8.27 wangmy
                   ` (15 subsequent siblings)
  25 siblings, 0 replies; 27+ messages in thread
From: wangmy @ 2024-10-09  5:49 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
 https://github.com/linux-test-project/ltp/releases/tag/20240930

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 meta/recipes-extended/ltp/{ltp_20240524.bb => ltp_20240930.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-extended/ltp/{ltp_20240524.bb => ltp_20240930.bb} (99%)

diff --git a/meta/recipes-extended/ltp/ltp_20240524.bb b/meta/recipes-extended/ltp/ltp_20240930.bb
similarity index 99%
rename from meta/recipes-extended/ltp/ltp_20240524.bb
rename to meta/recipes-extended/ltp/ltp_20240930.bb
index 6b46723478..ac8bea4244 100644
--- a/meta/recipes-extended/ltp/ltp_20240524.bb
+++ b/meta/recipes-extended/ltp/ltp_20240930.bb
@@ -24,7 +24,7 @@ TUNE_CCARGS:remove:x86-64 = "-mfpmath=sse"
 
 CFLAGS:append:powerpc64 = " -D__SANE_USERSPACE_TYPES__"
 CFLAGS:append:mipsarchn64 = " -D__SANE_USERSPACE_TYPES__"
-SRCREV = "8f21ebba42216dbb7e8d44c23b4a977d6823f7a1"
+SRCREV = "60f81419c43f94ec182827ef0b9eb5baeb303419"
 
 SRC_URI = "git://github.com/linux-test-project/ltp.git;branch=master;protocol=https \
            file://0001-Remove-OOM-tests-from-runtest-mm.patch \
-- 
2.34.1



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

* [OE-core] [PATCH 12/26] msmtp: upgrade 1.8.26 -> 1.8.27
  2024-10-09  5:48 [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 wangmy
                   ` (9 preceding siblings ...)
  2024-10-09  5:49 ` [OE-core] [PATCH 11/26] ltp: upgrade 20240524 -> 20240930 wangmy
@ 2024-10-09  5:49 ` wangmy
  2024-10-09  5:49 ` [OE-core] [PATCH 13/26] mtools: upgrade 4.0.44 -> 4.0.45 wangmy
                   ` (14 subsequent siblings)
  25 siblings, 0 replies; 27+ messages in thread
From: wangmy @ 2024-10-09  5:49 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
=============
- Add a testing infrastructure ('make check')
- Many improvements in the msmtpq script
- Many improvements to the vim scripts

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../recipes-extended/msmtp/{msmtp_1.8.26.bb => msmtp_1.8.27.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-extended/msmtp/{msmtp_1.8.26.bb => msmtp_1.8.27.bb} (91%)

diff --git a/meta/recipes-extended/msmtp/msmtp_1.8.26.bb b/meta/recipes-extended/msmtp/msmtp_1.8.27.bb
similarity index 91%
rename from meta/recipes-extended/msmtp/msmtp_1.8.26.bb
rename to meta/recipes-extended/msmtp/msmtp_1.8.27.bb
index 13820fe930..3f10be9f5e 100644
--- a/meta/recipes-extended/msmtp/msmtp_1.8.26.bb
+++ b/meta/recipes-extended/msmtp/msmtp_1.8.27.bb
@@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
 UPSTREAM_CHECK_URI = "https://marlam.de/msmtp/download/"
 
 SRC_URI = "https://marlam.de/${BPN}/releases/${BP}.tar.xz"
-SRC_URI[sha256sum] = "6cfc488344cef189267e60aea481f00d4c7e2a59b53c6c659c520a4d121f66d8"
+SRC_URI[sha256sum] = "94030580a63a747faa0a3b9b1b264ae355aad33a4d94b832bfeb5b21633c965e"
 
 inherit gettext autotools update-alternatives pkgconfig
 
-- 
2.34.1



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

* [OE-core] [PATCH 13/26] mtools: upgrade 4.0.44 -> 4.0.45
  2024-10-09  5:48 [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 wangmy
                   ` (10 preceding siblings ...)
  2024-10-09  5:49 ` [OE-core] [PATCH 12/26] msmtp: upgrade 1.8.26 -> 1.8.27 wangmy
@ 2024-10-09  5:49 ` wangmy
  2024-10-09  5:49 ` [OE-core] [PATCH 14/26] python3-dbusmock: upgrade 0.32.1 -> 0.32.2 wangmy
                   ` (13 subsequent siblings)
  25 siblings, 0 replies; 27+ messages in thread
From: wangmy @ 2024-10-09  5:49 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
============
- Fixed iconv descriptor leak
- Fixed size of error message buffer

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../mtools/{mtools_4.0.44.bb => mtools_4.0.45.bb}               | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/mtools/{mtools_4.0.44.bb => mtools_4.0.45.bb} (93%)

diff --git a/meta/recipes-devtools/mtools/mtools_4.0.44.bb b/meta/recipes-devtools/mtools/mtools_4.0.45.bb
similarity index 93%
rename from meta/recipes-devtools/mtools/mtools_4.0.44.bb
rename to meta/recipes-devtools/mtools/mtools_4.0.45.bb
index d8dd671be2..34040d7a0d 100644
--- a/meta/recipes-devtools/mtools/mtools_4.0.44.bb
+++ b/meta/recipes-devtools/mtools/mtools_4.0.45.bb
@@ -24,7 +24,7 @@ RRECOMMENDS:${PN}:libc-glibc = "\
 	glibc-gconv-ibm866 \
 	glibc-gconv-ibm869 \
 	"
-SRC_URI[sha256sum] = "37dc4df022533c3d4b2ec1c78973c27c7e8b585374c2d46ab64c6a3db31eddb8"
+SRC_URI[sha256sum] = "0b008a96bd0efe0e542fa4383d469af66bc4a93394990b103730a8160a67d618"
 
 SRC_URI = "${GNU_MIRROR}/mtools/mtools-${PV}.tar.bz2 \
            file://mtools-makeinfo.patch \
-- 
2.34.1



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

* [OE-core] [PATCH 14/26] python3-dbusmock: upgrade 0.32.1 -> 0.32.2
  2024-10-09  5:48 [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 wangmy
                   ` (11 preceding siblings ...)
  2024-10-09  5:49 ` [OE-core] [PATCH 13/26] mtools: upgrade 4.0.44 -> 4.0.45 wangmy
@ 2024-10-09  5:49 ` wangmy
  2024-10-09  5:49 ` [OE-core] [PATCH 15/26] python3-hypothesis: upgrade 6.112.1 -> 6.112.4 wangmy
                   ` (12 subsequent siblings)
  25 siblings, 0 replies; 27+ messages in thread
From: wangmy @ 2024-10-09  5:49 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
==============
- all templates: Drop wrong variant wrapping from all properties
- tests: Skip TestNetworkManager::test_one_wifi_with_accesspoints with NM >= 1.49.3

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

diff --git a/meta/recipes-devtools/python/python3-dbusmock_0.32.1.bb b/meta/recipes-devtools/python/python3-dbusmock_0.32.2.bb
similarity index 87%
rename from meta/recipes-devtools/python/python3-dbusmock_0.32.1.bb
rename to meta/recipes-devtools/python/python3-dbusmock_0.32.2.bb
index db7011831b..436b82d1a0 100644
--- a/meta/recipes-devtools/python/python3-dbusmock_0.32.1.bb
+++ b/meta/recipes-devtools/python/python3-dbusmock_0.32.2.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "https://pypi.org/project/python-dbusmock/"
 LICENSE = "GPL-3.0-only"
 LIC_FILES_CHKSUM = "file://COPYING;md5=e6a600fd5e1d9cbde2d983680233ad02"
 
-SRC_URI[sha256sum] = "f02c34493d420b3cf2d8d341b79a60841593b7b7615adc3ece17ff86f8275924"
+SRC_URI[sha256sum] = "357c269d53a5bb3f87983bec7ff700a0c4d071481f7cf7221ec8376224fc4316"
 
 PYPI_PACKAGE = "python-dbusmock"
 
-- 
2.34.1



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

* [OE-core] [PATCH 15/26] python3-hypothesis: upgrade 6.112.1 -> 6.112.4
  2024-10-09  5:48 [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 wangmy
                   ` (12 preceding siblings ...)
  2024-10-09  5:49 ` [OE-core] [PATCH 14/26] python3-dbusmock: upgrade 0.32.1 -> 0.32.2 wangmy
@ 2024-10-09  5:49 ` wangmy
  2024-10-09  5:49 ` [OE-core] [PATCH 16/26] python3-pefile: upgrade 2023.2.7 -> 2024.8.26 wangmy
                   ` (11 subsequent siblings)
  25 siblings, 0 replies; 27+ messages in thread
From: wangmy @ 2024-10-09  5:49 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
===========
- tweak the paths in @example(...) patches, so that both git apply and patch will work by default.
- refactor internals of hypothesis.stateful.Bundle to have a more consistent representation internally.
- fixe an internal error when the __context__ attribute of a raised exception leads to a cycle

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

diff --git a/meta/recipes-devtools/python/python3-hypothesis_6.112.1.bb b/meta/recipes-devtools/python/python3-hypothesis_6.112.4.bb
similarity index 91%
rename from meta/recipes-devtools/python/python3-hypothesis_6.112.1.bb
rename to meta/recipes-devtools/python/python3-hypothesis_6.112.4.bb
index e4b7b53579..1010348e38 100644
--- a/meta/recipes-devtools/python/python3-hypothesis_6.112.1.bb
+++ b/meta/recipes-devtools/python/python3-hypothesis_6.112.4.bb
@@ -13,7 +13,7 @@ SRC_URI += " \
     file://test_rle.py \
     "
 
-SRC_URI[sha256sum] = "b070d7a1bb9bd84706c31885c9aeddc138e2b36a9c112a91984f49501c567856"
+SRC_URI[sha256sum] = "8fe64e4a6d0862e209e3c36b42037aee9665cb839d619d9281be45345ab7d856"
 
 RDEPENDS:${PN} += " \
     python3-attrs \
-- 
2.34.1



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

* [OE-core] [PATCH 16/26] python3-pefile: upgrade 2023.2.7 -> 2024.8.26
  2024-10-09  5:48 [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 wangmy
                   ` (13 preceding siblings ...)
  2024-10-09  5:49 ` [OE-core] [PATCH 15/26] python3-hypothesis: upgrade 6.112.1 -> 6.112.4 wangmy
@ 2024-10-09  5:49 ` wangmy
  2024-10-09  5:49 ` [OE-core] [PATCH 17/26] python3-pycryptodome(x): upgrade 3.20.0 -> 3.21.0 wangmy
                   ` (10 subsequent siblings)
  25 siblings, 0 replies; 27+ messages in thread
From: wangmy @ 2024-10-09  5:49 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

License-Update: Copyright year updated to 2024

Changelog:
===========
- Close the data attribute before reassigning it
- Floor division (//) does mathematical division with the floor function applied to the result.
- Update new dvrt type and Load Config filed adapt to Windows11
- fix PE.get_data
- Fix ambiguous string syntax for PEid parsing regexp
- fixed a memory leak that caused the pe file to be access locked.
- Exphash from sha256 to md5 to match imphash
- More readable calls to superclass
- Fix cache_adjust_FileAlignment to work with files not aligned to 0x200
- [StepSecurity] Apply security best practices
- Create sets using curly brackets
- Change IOError to OSError
- Apply isort to sort all imports
- Remove "OC Patch" comments
- Update tox.ini Python versions
- Use with statement to write to file
- Remove distutils use
- Use chaining comparison operators
- Replace list comprehension with set comprehension
- Use not in operator
- Replace base class name with super()
- Increase readability and consistency
- Tiny comment improvements
- Update oleaut32.py from oleaut32.dll
- Improve parse_rich_header
- Include ordinals for wsock32.dll
- Update ws2_32.py from ws2_32.dll
- Update pefile.py for typo
- Add parsing for IMAGE_DEBUG_TYPE_EX_DLLCHARACTERISTICS

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...python3-pefile_2023.2.7.bb => python3-pefile_2024.8.26.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-devtools/python/{python3-pefile_2023.2.7.bb => python3-pefile_2024.8.26.bb} (84%)

diff --git a/meta/recipes-devtools/python/python3-pefile_2023.2.7.bb b/meta/recipes-devtools/python/python3-pefile_2024.8.26.bb
similarity index 84%
rename from meta/recipes-devtools/python/python3-pefile_2023.2.7.bb
rename to meta/recipes-devtools/python/python3-pefile_2024.8.26.bb
index e30b362323..87e651d9d5 100644
--- a/meta/recipes-devtools/python/python3-pefile_2023.2.7.bb
+++ b/meta/recipes-devtools/python/python3-pefile_2024.8.26.bb
@@ -2,10 +2,10 @@ SUMMARY = "Python PE parsing module"
 DESCRIPTION = "A multi-platform Python module to parse and work with Portable Executable (PE) files."
 HOMEPAGE = "https://github.com/erocarrera/pefile"
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=38066667888b01d8118ff9cc23da1873"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=e34c75178086aca0a17551ffbacaca53"
 
 inherit setuptools3 ptest
-SRCREV = "1ab2807c4eec16041e791d7a6acc68cc23fd5266"
+SRCREV = "4b3b1e2e568a88d4f1897d694d684f23d9e270c4"
 SRC_URI = "git://github.com/erocarrera/pefile;branch=master;protocol=https \
            file://run-ptest"
 S = "${WORKDIR}/git"
-- 
2.34.1



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

* [OE-core] [PATCH 17/26] python3-pycryptodome(x): upgrade 3.20.0 -> 3.21.0
  2024-10-09  5:48 [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 wangmy
                   ` (14 preceding siblings ...)
  2024-10-09  5:49 ` [OE-core] [PATCH 16/26] python3-pefile: upgrade 2023.2.7 -> 2024.8.26 wangmy
@ 2024-10-09  5:49 ` wangmy
  2024-10-09  5:49 ` [OE-core] [PATCH 18/26] python3-setuptools-rust: upgrade 1.10.1 -> 1.10.2 wangmy
                   ` (9 subsequent siblings)
  25 siblings, 0 replies; 27+ messages in thread
From: wangmy @ 2024-10-09  5:49 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/python/python3-pycryptodome_3.20.0.bb  | 5 -----
 meta/recipes-devtools/python/python3-pycryptodome_3.21.0.bb  | 5 +++++
 ...cryptodomex_3.20.0.bb => python3-pycryptodomex_3.21.0.bb} | 2 +-
 3 files changed, 6 insertions(+), 6 deletions(-)
 delete mode 100644 meta/recipes-devtools/python/python3-pycryptodome_3.20.0.bb
 create mode 100644 meta/recipes-devtools/python/python3-pycryptodome_3.21.0.bb
 rename meta/recipes-devtools/python/{python3-pycryptodomex_3.20.0.bb => python3-pycryptodomex_3.21.0.bb} (71%)

diff --git a/meta/recipes-devtools/python/python3-pycryptodome_3.20.0.bb b/meta/recipes-devtools/python/python3-pycryptodome_3.20.0.bb
deleted file mode 100644
index 6c93c205ac..0000000000
--- a/meta/recipes-devtools/python/python3-pycryptodome_3.20.0.bb
+++ /dev/null
@@ -1,5 +0,0 @@
-require python-pycryptodome.inc
-inherit python_setuptools_build_meta
-
-SRC_URI[sha256sum] = "09609209ed7de61c2b560cc5c8c4fbf892f8b15b1faf7e4cbffac97db1fffda7"
-
diff --git a/meta/recipes-devtools/python/python3-pycryptodome_3.21.0.bb b/meta/recipes-devtools/python/python3-pycryptodome_3.21.0.bb
new file mode 100644
index 0000000000..77664b22a5
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-pycryptodome_3.21.0.bb
@@ -0,0 +1,5 @@
+require python-pycryptodome.inc
+inherit python_setuptools_build_meta
+
+SRC_URI[sha256sum] = "f7787e0d469bdae763b876174cf2e6c0f7be79808af26b1da96f1a64bcf47297"
+
diff --git a/meta/recipes-devtools/python/python3-pycryptodomex_3.20.0.bb b/meta/recipes-devtools/python/python3-pycryptodomex_3.21.0.bb
similarity index 71%
rename from meta/recipes-devtools/python/python3-pycryptodomex_3.20.0.bb
rename to meta/recipes-devtools/python/python3-pycryptodomex_3.21.0.bb
index 54578d2850..e5fb000d9b 100644
--- a/meta/recipes-devtools/python/python3-pycryptodomex_3.20.0.bb
+++ b/meta/recipes-devtools/python/python3-pycryptodomex_3.21.0.bb
@@ -1,7 +1,7 @@
 require python-pycryptodome.inc
 inherit python_setuptools_build_meta
 
-SRC_URI[sha256sum] = "7a710b79baddd65b806402e14766c721aee8fb83381769c27920f26476276c1e"
+SRC_URI[sha256sum] = "222d0bd05381dd25c32dd6065c071ebf084212ab79bab4599ba9e6a3e0009e6c"
 
 FILES:${PN}-tests = " \
     ${PYTHON_SITEPACKAGES_DIR}/Cryptodome/SelfTest/ \
-- 
2.34.1



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

* [OE-core] [PATCH 18/26] python3-setuptools-rust: upgrade 1.10.1 -> 1.10.2
  2024-10-09  5:48 [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 wangmy
                   ` (15 preceding siblings ...)
  2024-10-09  5:49 ` [OE-core] [PATCH 17/26] python3-pycryptodome(x): upgrade 3.20.0 -> 3.21.0 wangmy
@ 2024-10-09  5:49 ` wangmy
  2024-10-09  5:49 ` [OE-core] [PATCH 19/26] python3-spdx-tools: upgrade 0.8.2 -> 0.8.3 wangmy
                   ` (8 subsequent siblings)
  25 siblings, 0 replies; 27+ messages in thread
From: wangmy @ 2024-10-09  5:49 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
 Fix deprecation warning from use of wheel.bdist_wheel.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...uptools-rust_1.10.1.bb => python3-setuptools-rust_1.10.2.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-setuptools-rust_1.10.1.bb => python3-setuptools-rust_1.10.2.bb} (90%)

diff --git a/meta/recipes-devtools/python/python3-setuptools-rust_1.10.1.bb b/meta/recipes-devtools/python/python3-setuptools-rust_1.10.2.bb
similarity index 90%
rename from meta/recipes-devtools/python/python3-setuptools-rust_1.10.1.bb
rename to meta/recipes-devtools/python/python3-setuptools-rust_1.10.2.bb
index d2881e9101..a58d57ac70 100644
--- a/meta/recipes-devtools/python/python3-setuptools-rust_1.10.1.bb
+++ b/meta/recipes-devtools/python/python3-setuptools-rust_1.10.2.bb
@@ -9,7 +9,7 @@ BUGTRACKER = "https://github.com/PyO3/setuptools-rust/issues"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=011cd92e702dd9e6b1a26157b6fd53f5"
 
-SRC_URI[sha256sum] = "d79035fc54cdf9342e9edf4b009491ecab06c3a652b37c3c137c7ba85547d3e6"
+SRC_URI[sha256sum] = "5d73e7eee5f87a6417285b617c97088a7c20d1a70fcea60e3bdc94ff567c29dc"
 
 PYPI_PACKAGE = "setuptools_rust"
 
-- 
2.34.1



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

* [OE-core] [PATCH 19/26] python3-spdx-tools: upgrade 0.8.2 -> 0.8.3
  2024-10-09  5:48 [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 wangmy
                   ` (16 preceding siblings ...)
  2024-10-09  5:49 ` [OE-core] [PATCH 18/26] python3-setuptools-rust: upgrade 1.10.1 -> 1.10.2 wangmy
@ 2024-10-09  5:49 ` wangmy
  2024-10-09  5:49 ` [OE-core] [PATCH 20/26] python3-sphinx-rtd-theme: upgrade 2.0.0 -> 3.0.0 wangmy
                   ` (7 subsequent siblings)
  25 siblings, 0 replies; 27+ messages in thread
From: wangmy @ 2024-10-09  5:49 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
==============
- fix license expression error handling in tag-value parser
- spdx3: software_purpose: add REQUIREMENT type
- fix tag-value parser: parse Tool or Organization as annotator
- shorten output of FileNotFoundError when called via the CLI
- fix tag-value output when related_spdx_element_id is "NONE" or "NOASSERTION"
- catch decoding errors while parsing using the cli tool
- replace Licensing() with spdx_licensing
- spdx3: element_writer: switch from tab characters to two spaces
- fix tag-value parser to allow NONE and NOASSERTION for package source info as they are valid strings
- update changelog for 0.8.3 release

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

diff --git a/meta/recipes-devtools/python/python3-spdx-tools_0.8.2.bb b/meta/recipes-devtools/python/python3-spdx-tools_0.8.3.bb
similarity index 89%
rename from meta/recipes-devtools/python/python3-spdx-tools_0.8.2.bb
rename to meta/recipes-devtools/python/python3-spdx-tools_0.8.3.bb
index 6573ae9eee..0f05679322 100644
--- a/meta/recipes-devtools/python/python3-spdx-tools_0.8.2.bb
+++ b/meta/recipes-devtools/python/python3-spdx-tools_0.8.3.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "https://github.com/spdx/tools-python"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=dc7f21ccff0f672f2a7cd6f412ae627d"
 
-SRC_URI[sha256sum] = "aea4ac9c2c375e7f439b1cef5ff32ef34914c083de0f61e08ed67cd3d9deb2a9"
+SRC_URI[sha256sum] = "68b8f9ce2893b5216bd90b2e63f1c821c2884e4ebc4fd295ebbf1fa8b8a94b93"
 
 BBCLASSEXTEND = "native nativesdk"
 
-- 
2.34.1



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

* [OE-core] [PATCH 20/26] python3-sphinx-rtd-theme: upgrade 2.0.0 -> 3.0.0
  2024-10-09  5:48 [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 wangmy
                   ` (17 preceding siblings ...)
  2024-10-09  5:49 ` [OE-core] [PATCH 19/26] python3-spdx-tools: upgrade 0.8.2 -> 0.8.3 wangmy
@ 2024-10-09  5:49 ` wangmy
  2024-10-09  5:49 ` [OE-core] [PATCH 21/26] shaderc: upgrade 2024.2 -> 2024.3 wangmy
                   ` (6 subsequent siblings)
  25 siblings, 0 replies; 27+ messages in thread
From: wangmy @ 2024-10-09  5:49 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
===========
- Trigger search modal on "Search docs" input focus
- Show hidden version in selector if it's the current active version
- Show version/language selectors below the title
- Docs: do not sign Git tag
- Docs: update the installation note
- Theme option flyout to enable/disable theme's flyout
- Populate html_context with READTHEDOCS_* environment variables
- Tests: sphinxdev tox environment installs Sphinx from master
- Docs: update releasing
- Adjust the expected test_basic output to match Sphinx 7.3+
- Addons: integrate with new beta addons flyout
- Remove html5shiv
- Remove Sphinx<5 compatibility leftovers
- Remove pytest warnings

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...inx-rtd-theme_2.0.0.bb => python3-sphinx-rtd-theme_3.0.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-sphinx-rtd-theme_2.0.0.bb => python3-sphinx-rtd-theme_3.0.0.bb} (89%)

diff --git a/meta/recipes-devtools/python/python3-sphinx-rtd-theme_2.0.0.bb b/meta/recipes-devtools/python/python3-sphinx-rtd-theme_3.0.0.bb
similarity index 89%
rename from meta/recipes-devtools/python/python3-sphinx-rtd-theme_2.0.0.bb
rename to meta/recipes-devtools/python/python3-sphinx-rtd-theme_3.0.0.bb
index 22b4d96444..f02f1fe42d 100644
--- a/meta/recipes-devtools/python/python3-sphinx-rtd-theme_2.0.0.bb
+++ b/meta/recipes-devtools/python/python3-sphinx-rtd-theme_3.0.0.bb
@@ -14,7 +14,7 @@ RDEPENDS:${PN} += " \
 
 PYPI_PACKAGE = "sphinx_rtd_theme"
 
-SRC_URI[sha256sum] = "bd5d7b80622406762073a04ef8fadc5f9151261563d47027de09910ce03afe6b"
+SRC_URI[sha256sum] = "905d67de03217fd3d76fbbdd992034ac8e77044ef8063a544dda1af74d409e08"
 UPSTREAM_CHECK_REGEX ?= "/sphinx-rtd-theme/(?P<pver>(\d+[\.\-_]*)+)/"
 
 inherit setuptools3 pypi
-- 
2.34.1



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

* [OE-core] [PATCH 21/26] shaderc: upgrade 2024.2 -> 2024.3
  2024-10-09  5:48 [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 wangmy
                   ` (18 preceding siblings ...)
  2024-10-09  5:49 ` [OE-core] [PATCH 20/26] python3-sphinx-rtd-theme: upgrade 2.0.0 -> 3.0.0 wangmy
@ 2024-10-09  5:49 ` wangmy
  2024-10-09  5:49 ` [OE-core] [PATCH 22/26] ttyrun: upgrade 2.34.0 -> 2.35.0 wangmy
                   ` (5 subsequent siblings)
  25 siblings, 0 replies; 27+ messages in thread
From: wangmy @ 2024-10-09  5:49 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
===========
- Update dependencies: Glslang, SPRIV-Tools, SPIRV-Headers
   - SPIRV-Tools is at v2024.4.rc1
   - This incorporates a SPIRV-Tools fix which was limiting parallelism.
     Validator friendly name generation was serializing on a mutex
     protecting the locale object.
- During HLSL compilation or any optimizing compile, don't tell the
  validator to use "friendly names".  This should save time spent in the
  initial validation step of the optimization recipe.
- Adapt test golden results to Glslang changes which reorder
  decorations by object enum value.
- Fix ndk-build library dependencies: libshaderc_util depends on glslang
- Use Python 3.12 on Linux CI bots
- Fix Python 3.12 warnings for string escapes

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

diff --git a/meta/recipes-graphics/shaderc/shaderc_2024.2.bb b/meta/recipes-graphics/shaderc/shaderc_2024.3.bb
similarity index 95%
rename from meta/recipes-graphics/shaderc/shaderc_2024.2.bb
rename to meta/recipes-graphics/shaderc/shaderc_2024.3.bb
index c658e7df05..0948ba28d6 100644
--- a/meta/recipes-graphics/shaderc/shaderc_2024.2.bb
+++ b/meta/recipes-graphics/shaderc/shaderc_2024.3.bb
@@ -6,7 +6,7 @@ HOMEPAGE = "https://github.com/google/shaderc"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
 
-SRCREV = "5dad9194c038702ef20ccabbe4e3c188f2b13cec"
+SRCREV = "7223dc3d5e34bbcc44f3150546dbfa8a5da58c4c"
 SRC_URI = "git://github.com/google/shaderc.git;protocol=https;branch=main \
            file://0001-cmake-disable-building-external-dependencies.patch \
            file://0002-libshaderc_util-fix-glslang-header-file-location.patch \
-- 
2.34.1



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

* [OE-core] [PATCH 22/26] ttyrun: upgrade 2.34.0 -> 2.35.0
  2024-10-09  5:48 [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 wangmy
                   ` (19 preceding siblings ...)
  2024-10-09  5:49 ` [OE-core] [PATCH 21/26] shaderc: upgrade 2024.2 -> 2024.3 wangmy
@ 2024-10-09  5:49 ` wangmy
  2024-10-09  5:49 ` [OE-core] [PATCH 23/26] wireless-regdb: upgrade 2024.07.04 -> 2024.10.07 wangmy
                   ` (4 subsequent siblings)
  25 siblings, 0 replies; 27+ messages in thread
From: wangmy @ 2024-10-09  5:49 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
=============
  Changes of existing tools:
  - cpacfstats: Add support for FULL XTS (MSA 10) and HMAC (MSA 11) PAI counter
  - cpuplugd: Make cpuplugd compatible with hiperdispatch
  - dbginfo.sh: Add network sockstat info
  - pvapconfig: s390x exclusive build
  - zdev: Add option to select IPL device
  - zdump/dfo_s390: Support s390 DFO for vr-kernel dumps
  - zipl: Add support of mirror devices

  Bug Fixes:
  - (genprotimg|zipl)/boot: discard .note.package ELF section to save memory
  - netboot/mk-s390image: Fix size when argument is a symlink
  - ziorep_config: Fix warning message when multipath device is not there.
  - zipl: Fix problems when target parameters are specified by user
  - zipl: Fix segfault when creating device-based dumps with '--dry-run'

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 meta/recipes-core/ttyrun/{ttyrun_2.34.0.bb => ttyrun_2.35.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-core/ttyrun/{ttyrun_2.34.0.bb => ttyrun_2.35.0.bb} (94%)

diff --git a/meta/recipes-core/ttyrun/ttyrun_2.34.0.bb b/meta/recipes-core/ttyrun/ttyrun_2.35.0.bb
similarity index 94%
rename from meta/recipes-core/ttyrun/ttyrun_2.34.0.bb
rename to meta/recipes-core/ttyrun/ttyrun_2.35.0.bb
index 7fbd48c83a..c505bd7160 100644
--- a/meta/recipes-core/ttyrun/ttyrun_2.34.0.bb
+++ b/meta/recipes-core/ttyrun/ttyrun_2.35.0.bb
@@ -7,7 +7,7 @@ LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=f5118f167b055bfd7c3450803f1847af"
 
 SRC_URI = "git://github.com/ibm-s390-linux/s390-tools;protocol=https;branch=master"
-SRCREV = "4c922b105b4ccb85c51e7e48153d073742b88510"
+SRCREV = "c2db7ce05fdc3ebd63cccbcb1edc2b606709e21f"
 
 CVE_PRODUCT = "s390-tools"
 
-- 
2.34.1



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

* [OE-core] [PATCH 23/26] wireless-regdb: upgrade 2024.07.04 -> 2024.10.07
  2024-10-09  5:48 [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 wangmy
                   ` (20 preceding siblings ...)
  2024-10-09  5:49 ` [OE-core] [PATCH 22/26] ttyrun: upgrade 2.34.0 -> 2.35.0 wangmy
@ 2024-10-09  5:49 ` wangmy
  2024-10-09  5:49 ` [OE-core] [PATCH 24/26] xkeyboard-config: upgrade 2.42 -> 2.43 wangmy
                   ` (3 subsequent siblings)
  25 siblings, 0 replies; 27+ messages in thread
From: wangmy @ 2024-10-09  5:49 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...ireless-regdb_2024.07.04.bb => wireless-regdb_2024.10.07.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-kernel/wireless-regdb/{wireless-regdb_2024.07.04.bb => wireless-regdb_2024.10.07.bb} (94%)

diff --git a/meta/recipes-kernel/wireless-regdb/wireless-regdb_2024.07.04.bb b/meta/recipes-kernel/wireless-regdb/wireless-regdb_2024.10.07.bb
similarity index 94%
rename from meta/recipes-kernel/wireless-regdb/wireless-regdb_2024.07.04.bb
rename to meta/recipes-kernel/wireless-regdb/wireless-regdb_2024.10.07.bb
index daf5e6dfcd..0e4100fba7 100644
--- a/meta/recipes-kernel/wireless-regdb/wireless-regdb_2024.07.04.bb
+++ b/meta/recipes-kernel/wireless-regdb/wireless-regdb_2024.10.07.bb
@@ -5,7 +5,7 @@ LICENSE = "ISC"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=07c4f6dea3845b02a18dc00c8c87699c"
 
 SRC_URI = "https://www.kernel.org/pub/software/network/${BPN}/${BP}.tar.xz"
-SRC_URI[sha256sum] = "9832a14e1be24abff7be30dee3c9a1afb5fdfcf475a0d91aafef039f8d85f5eb"
+SRC_URI[sha256sum] = "f76f2bd79a653e9f9dd50548d99d03a4a4eb157da056dfd5892f403ec28fb3d5"
 
 inherit bin_package allarch
 
-- 
2.34.1



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

* [OE-core] [PATCH 24/26] xkeyboard-config: upgrade 2.42 -> 2.43
  2024-10-09  5:48 [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 wangmy
                   ` (21 preceding siblings ...)
  2024-10-09  5:49 ` [OE-core] [PATCH 23/26] wireless-regdb: upgrade 2024.07.04 -> 2024.10.07 wangmy
@ 2024-10-09  5:49 ` wangmy
  2024-10-09  5:49 ` [OE-core] [PATCH 25/26] xwayland: upgrade 24.1.2 -> 24.1.3 wangmy
                   ` (2 subsequent siblings)
  25 siblings, 0 replies; 27+ messages in thread
From: wangmy @ 2024-10-09  5:49 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../{xkeyboard-config_2.42.bb => xkeyboard-config_2.43.bb}      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-graphics/xorg-lib/{xkeyboard-config_2.42.bb => xkeyboard-config_2.43.bb} (92%)

diff --git a/meta/recipes-graphics/xorg-lib/xkeyboard-config_2.42.bb b/meta/recipes-graphics/xorg-lib/xkeyboard-config_2.43.bb
similarity index 92%
rename from meta/recipes-graphics/xorg-lib/xkeyboard-config_2.42.bb
rename to meta/recipes-graphics/xorg-lib/xkeyboard-config_2.43.bb
index cdc6422d46..7378cf475e 100644
--- a/meta/recipes-graphics/xorg-lib/xkeyboard-config_2.42.bb
+++ b/meta/recipes-graphics/xorg-lib/xkeyboard-config_2.43.bb
@@ -13,7 +13,7 @@ LICENSE = "MIT & MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=8fc8ae699974c360e2e2e883a63ce264"
 
 SRC_URI = "${XORG_MIRROR}/individual/data/xkeyboard-config/${BPN}-${PV}.tar.xz"
-SRC_URI[sha256sum] = "a6b06ebfc1f01fc505f2f05f265f95f67cc8873a54dd247e3c2d754b8f7e0807"
+SRC_URI[sha256sum] = "c810f362c82a834ee89da81e34cd1452c99789339f46f6037f4b9e227dd06c01"
 
 SECTION = "x11/libs"
 DEPENDS = "util-macros libxslt-native"
-- 
2.34.1



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

* [OE-core] [PATCH 25/26] xwayland: upgrade 24.1.2 -> 24.1.3
  2024-10-09  5:48 [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 wangmy
                   ` (22 preceding siblings ...)
  2024-10-09  5:49 ` [OE-core] [PATCH 24/26] xkeyboard-config: upgrade 2.42 -> 2.43 wangmy
@ 2024-10-09  5:49 ` wangmy
  2024-10-09  5:49 ` [OE-core] [PATCH 26/26] xz: upgrade 5.6.2 -> 5.6.3 wangmy
  2024-10-09  9:57 ` [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 Alexander Kanavin
  25 siblings, 0 replies; 27+ messages in thread
From: wangmy @ 2024-10-09  5:49 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

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

diff --git a/meta/recipes-graphics/xwayland/xwayland_24.1.2.bb b/meta/recipes-graphics/xwayland/xwayland_24.1.3.bb
similarity index 96%
rename from meta/recipes-graphics/xwayland/xwayland_24.1.2.bb
rename to meta/recipes-graphics/xwayland/xwayland_24.1.3.bb
index a3ece64348..7e817a7241 100644
--- a/meta/recipes-graphics/xwayland/xwayland_24.1.2.bb
+++ b/meta/recipes-graphics/xwayland/xwayland_24.1.3.bb
@@ -10,7 +10,7 @@ LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=5df87950af51ac2c5822094553ea1880"
 
 SRC_URI = "https://www.x.org/archive/individual/xserver/xwayland-${PV}.tar.xz"
-SRC_URI[sha256sum] = "141eb76e7e422a3661c08782c70be40931084755042c04506e0d97dd463ef7d2"
+SRC_URI[sha256sum] = "dcdb57a66cc9b124c8f936760592628ac4e744a7d7b3179aa86189ad7ea4cb10"
 
 UPSTREAM_CHECK_REGEX = "xwayland-(?P<pver>\d+(\.(?!90\d)\d+)+)\.tar"
 
-- 
2.34.1



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

* [OE-core] [PATCH 26/26] xz: upgrade 5.6.2 -> 5.6.3
  2024-10-09  5:48 [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 wangmy
                   ` (23 preceding siblings ...)
  2024-10-09  5:49 ` [OE-core] [PATCH 25/26] xwayland: upgrade 24.1.2 -> 24.1.3 wangmy
@ 2024-10-09  5:49 ` wangmy
  2024-10-09  9:57 ` [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 Alexander Kanavin
  25 siblings, 0 replies; 27+ messages in thread
From: wangmy @ 2024-10-09  5:49 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
 https://github.com/tukaani-project/xz/releases/tag/v5.6.3

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 meta/recipes-extended/xz/{xz_5.6.2.bb => xz_5.6.3.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-extended/xz/{xz_5.6.2.bb => xz_5.6.3.bb} (97%)

diff --git a/meta/recipes-extended/xz/xz_5.6.2.bb b/meta/recipes-extended/xz/xz_5.6.3.bb
similarity index 97%
rename from meta/recipes-extended/xz/xz_5.6.2.bb
rename to meta/recipes-extended/xz/xz_5.6.3.bb
index 96fc691ef7..67070850ab 100644
--- a/meta/recipes-extended/xz/xz_5.6.2.bb
+++ b/meta/recipes-extended/xz/xz_5.6.3.bb
@@ -28,7 +28,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=c02de712b028a5cc7e22472e8f2b3db1 \
 SRC_URI = "https://github.com/tukaani-project/xz/releases/download/v${PV}/xz-${PV}.tar.gz \
            file://run-ptest \
           "
-SRC_URI[sha256sum] = "8bfd20c0e1d86f0402f2497cfa71c6ab62d4cd35fd704276e3140bfb71414519"
+SRC_URI[sha256sum] = "b1d45295d3f71f25a4c9101bd7c8d16cb56348bbef3bbc738da0351e17c73317"
 UPSTREAM_CHECK_REGEX = "releases/tag/v(?P<pver>\d+(\.\d+)+)"
 UPSTREAM_CHECK_URI = "https://github.com/tukaani-project/xz/releases/"
 
-- 
2.34.1



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

* Re: [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37
  2024-10-09  5:48 [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 wangmy
                   ` (24 preceding siblings ...)
  2024-10-09  5:49 ` [OE-core] [PATCH 26/26] xz: upgrade 5.6.2 -> 5.6.3 wangmy
@ 2024-10-09  9:57 ` Alexander Kanavin
  25 siblings, 0 replies; 27+ messages in thread
From: Alexander Kanavin @ 2024-10-09  9:57 UTC (permalink / raw)
  To: wangmy; +Cc: openembedded-core

Changes to 0001-fix-c99.patch seem to indicate it's a backport that's
been already included and can be dropped altogether? Can you check
please?

Alex

On Wed, 9 Oct 2024 at 07:49, wangmy via lists.openembedded.org
<wangmy=fujitsu.com@lists.openembedded.org> wrote:
>
> From: Wang Mingyu <wangmy@fujitsu.com>
>
> 0001-fix-c99.patch
> refreshed for 5.2.37
>
> Changelog:
> ===========
> - fix issue where comparing quoted and unquoted words to be completed results
>   in readline not displaying possible matches
> - fix for reading partial invalid multibyte characters
> - fix compilation on systems that provide select or pselect but not both
> - fix for parsing compound assignment while expanding alias
> - fix autoconf test for broken strtold
>
> Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
> ---
>  .../bash/bash/0001-fix-c99.patch              | 20 +++----------------
>  .../bash/{bash_5.2.32.bb => bash_5.2.37.bb}   |  2 +-
>  2 files changed, 4 insertions(+), 18 deletions(-)
>  rename meta/recipes-extended/bash/{bash_5.2.32.bb => bash_5.2.37.bb} (90%)
>
> diff --git a/meta/recipes-extended/bash/bash/0001-fix-c99.patch b/meta/recipes-extended/bash/bash/0001-fix-c99.patch
> index abd83d09af..e0f1a51433 100644
> --- a/meta/recipes-extended/bash/bash/0001-fix-c99.patch
> +++ b/meta/recipes-extended/bash/bash/0001-fix-c99.patch
> @@ -1,4 +1,4 @@
> -From e8ec2d75a52bdc93c83a679a71a68f4033033b8b Mon Sep 17 00:00:00 2001
> +From 60a075c6e3258df9799d067e360e4c63e24e229b Mon Sep 17 00:00:00 2001
>  From: Ross Burton <ross.burton@arm.com>
>  Date: Wed, 19 Jun 2024 12:57:39 +0000
>  Subject: [PATCH] Fix C99 problems
> @@ -8,9 +8,8 @@ Backport some fixes from upstream to fix configure checks that fail with GCC 14.
>  Upstream-Status: Backport [devel branch]
>  Signed-off-by: Ross Burton <ross.burton@arm.com>
>  ---
> - aclocal.m4   | 3 +++
> - configure.ac | 2 +-
> - 2 files changed, 4 insertions(+), 1 deletion(-)
> + aclocal.m4 | 3 +++
> + 1 file changed, 3 insertions(+)
>
>  diff --git a/aclocal.m4 b/aclocal.m4
>  index cc97bd4..7423b99 100644
> @@ -26,16 +25,3 @@ index cc97bd4..7423b99 100644
>   int
>   main()
>   {
> -diff --git a/configure.ac b/configure.ac
> -index a3b5bd7..2a38c6b 100644
> ---- a/configure.ac
> -+++ b/configure.ac
> -@@ -842,7 +842,7 @@ AC_CHECK_DECLS([strtold], [
> -       [AC_COMPILE_IFELSE(
> -               [AC_LANG_PROGRAM(
> -               [[#include <stdlib.h>]],
> --              [[long double r; char *foo, bar; r = strtold(foo, &bar);]]
> -+              [[long double r; char *foo, *bar; r = strtold(foo, &bar);]]
> -       )],
> -       [bash_cv_strtold_broken=no],[bash_cv_strtold_broken=yes])
> -         ]
> diff --git a/meta/recipes-extended/bash/bash_5.2.32.bb b/meta/recipes-extended/bash/bash_5.2.37.bb
> similarity index 90%
> rename from meta/recipes-extended/bash/bash_5.2.32.bb
> rename to meta/recipes-extended/bash/bash_5.2.37.bb
> index b159c0232f..87e0aa24ec 100644
> --- a/meta/recipes-extended/bash/bash_5.2.32.bb
> +++ b/meta/recipes-extended/bash/bash_5.2.37.bb
> @@ -17,7 +17,7 @@ SRC_URI = "${GNU_MIRROR}/bash/${BP}.tar.gz;name=tarball \
>             file://0001-fix-c99.patch \
>             "
>
> -SRC_URI[tarball.sha256sum] = "d3ef80d2b67d8cbbe4d3265c63a72c46f9b278ead6e0e06d61801b58f23f50b5"
> +SRC_URI[tarball.sha256sum] = "9599b22ecd1d5787ad7d3b7bf0c59f312b3396d1e281175dd1f8a4014da621ff"
>
>  DEBUG_OPTIMIZATION:append:armv4 = " ${@bb.utils.contains('TUNE_CCARGS', '-mthumb', '-fomit-frame-pointer', '', d)}"
>  DEBUG_OPTIMIZATION:append:armv5 = " ${@bb.utils.contains('TUNE_CCARGS', '-mthumb', '-fomit-frame-pointer', '', d)}"
> --
> 2.34.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#205312): https://lists.openembedded.org/g/openembedded-core/message/205312
> Mute This Topic: https://lists.openembedded.org/mt/108904270/1686489
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [alex.kanavin@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


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

end of thread, other threads:[~2024-10-09  9:58 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-09  5:48 [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 wangmy
2024-10-09  5:48 ` [OE-core] [PATCH 02/26] dhcpcd: upgrade 10.0.10 -> 10.1.0 wangmy
2024-10-09  5:48 ` [OE-core] [PATCH 03/26] erofs-utils: upgrade 1.8.1 -> 1.8.2 wangmy
2024-10-09  5:48 ` [OE-core] [PATCH 04/26] fribidi: upgrade 1.0.15 -> 1.0.16 wangmy
2024-10-09  5:48 ` [OE-core] [PATCH 05/26] git: upgrade 2.46.1 -> 2.47.0 wangmy
2024-10-09  5:48 ` [OE-core] [PATCH 06/26] gtk4: upgrade 4.16.1 -> 4.16.3 wangmy
2024-10-09  5:48 ` [OE-core] [PATCH 07/26] harfbuzz: upgrade 9.0.0 -> 10.0.1 wangmy
2024-10-09  5:48 ` [OE-core] [PATCH 08/26] libproxy: upgrade 0.5.8 -> 0.5.9 wangmy
2024-10-09  5:48 ` [OE-core] [PATCH 09/26] libsdl2: upgrade 2.30.7 -> 2.30.8 wangmy
2024-10-09  5:48 ` [OE-core] [PATCH 10/26] libuv: upgrade 1.48.0 -> 1.49.0 wangmy
2024-10-09  5:49 ` [OE-core] [PATCH 11/26] ltp: upgrade 20240524 -> 20240930 wangmy
2024-10-09  5:49 ` [OE-core] [PATCH 12/26] msmtp: upgrade 1.8.26 -> 1.8.27 wangmy
2024-10-09  5:49 ` [OE-core] [PATCH 13/26] mtools: upgrade 4.0.44 -> 4.0.45 wangmy
2024-10-09  5:49 ` [OE-core] [PATCH 14/26] python3-dbusmock: upgrade 0.32.1 -> 0.32.2 wangmy
2024-10-09  5:49 ` [OE-core] [PATCH 15/26] python3-hypothesis: upgrade 6.112.1 -> 6.112.4 wangmy
2024-10-09  5:49 ` [OE-core] [PATCH 16/26] python3-pefile: upgrade 2023.2.7 -> 2024.8.26 wangmy
2024-10-09  5:49 ` [OE-core] [PATCH 17/26] python3-pycryptodome(x): upgrade 3.20.0 -> 3.21.0 wangmy
2024-10-09  5:49 ` [OE-core] [PATCH 18/26] python3-setuptools-rust: upgrade 1.10.1 -> 1.10.2 wangmy
2024-10-09  5:49 ` [OE-core] [PATCH 19/26] python3-spdx-tools: upgrade 0.8.2 -> 0.8.3 wangmy
2024-10-09  5:49 ` [OE-core] [PATCH 20/26] python3-sphinx-rtd-theme: upgrade 2.0.0 -> 3.0.0 wangmy
2024-10-09  5:49 ` [OE-core] [PATCH 21/26] shaderc: upgrade 2024.2 -> 2024.3 wangmy
2024-10-09  5:49 ` [OE-core] [PATCH 22/26] ttyrun: upgrade 2.34.0 -> 2.35.0 wangmy
2024-10-09  5:49 ` [OE-core] [PATCH 23/26] wireless-regdb: upgrade 2024.07.04 -> 2024.10.07 wangmy
2024-10-09  5:49 ` [OE-core] [PATCH 24/26] xkeyboard-config: upgrade 2.42 -> 2.43 wangmy
2024-10-09  5:49 ` [OE-core] [PATCH 25/26] xwayland: upgrade 24.1.2 -> 24.1.3 wangmy
2024-10-09  5:49 ` [OE-core] [PATCH 26/26] xz: upgrade 5.6.2 -> 5.6.3 wangmy
2024-10-09  9:57 ` [OE-core] [PATCH 01/26] bash: upgrade 5.2.32 -> 5.2.37 Alexander Kanavin

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