All of lore.kernel.org
 help / color / mirror / Atom feed
* [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1
@ 2025-03-25  9:01 wangmy
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 02/45] adw-gtk3: upgrade 5.6 -> 5.7 wangmy
                   ` (43 more replies)
  0 siblings, 44 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

0001-Actually-use-the-hint-space-instruction-to-strip-PAC.patch
removed since it's inclued in 20250127.1

abseil-cpp/0004-abseil-ppc-fixes.patch
refreshed for 20250127.1

Changelog:
=============
- Added support for Bazel 8.0
- Added support for Bazel Platforms for better portability
- Added ABSL_ATTRIBUTE_VIEW and ABSL_ATTRIBUTE_OWNER for diagnosing certain lifetime issues
- Many performance improvements
- A security issue in hash container create/resize has been fixed. Note that the latest patch releases for previous LTS versions also address this issue.
- Bazel BUILD files now reference repositories by their canonical names from the Bazel Central Registry.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...-hint-space-instruction-to-strip-PAC.patch | 32 -------------------
 .../abseil-cpp/0004-abseil-ppc-fixes.patch    | 11 +++----
 ...20250127.0.bb => abseil-cpp_20250127.1.bb} |  7 ++--
 3 files changed, 7 insertions(+), 43 deletions(-)
 delete mode 100644 meta-oe/recipes-devtools/abseil-cpp/abseil-cpp/0001-Actually-use-the-hint-space-instruction-to-strip-PAC.patch
 rename meta-oe/recipes-devtools/abseil-cpp/{abseil-cpp_20250127.0.bb => abseil-cpp_20250127.1.bb} (87%)

diff --git a/meta-oe/recipes-devtools/abseil-cpp/abseil-cpp/0001-Actually-use-the-hint-space-instruction-to-strip-PAC.patch b/meta-oe/recipes-devtools/abseil-cpp/abseil-cpp/0001-Actually-use-the-hint-space-instruction-to-strip-PAC.patch
deleted file mode 100644
index a235797de9..0000000000
--- a/meta-oe/recipes-devtools/abseil-cpp/abseil-cpp/0001-Actually-use-the-hint-space-instruction-to-strip-PAC.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From 5852b47a81e5334a667d1e12dbfa55c0f8111100 Mon Sep 17 00:00:00 2001
-From: Derek Mauro <dmauro@google.com>
-Date: Fri, 7 Feb 2025 08:49:06 -0800
-Subject: [PATCH] Actually use the hint space instruction to strip PAC bits for
- return addresses in stack traces as the comment says
-
-https://android.googlesource.com/platform/libcore/+/71f2c75111e87091616f0f3b86bea6c4d345dad1/src/hotspot/os_cpu/linux_aarch64/pauth_linux_aarch64.inline.hpp
-
-PiperOrigin-RevId: 724360415
-Change-Id: I691160e43354131a04919765ce283e07c3c933a9
-Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
-Signed-off-by: Alex Kiernan <alexk@a-squared-projects.uk>
-Upstream-Status: Backport [https://github.com/abseil/abseil-cpp/commit/5852b47a81e5334a667d1e12dbfa55c0f8111100]
----
- absl/debugging/internal/stacktrace_aarch64-inl.inc | 4 +++-
- 1 file changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/absl/debugging/internal/stacktrace_aarch64-inl.inc b/absl/debugging/internal/stacktrace_aarch64-inl.inc
-index 4490c4e13cae..dccadaeb7c24 100644
---- a/absl/debugging/internal/stacktrace_aarch64-inl.inc
-+++ b/absl/debugging/internal/stacktrace_aarch64-inl.inc
-@@ -188,7 +188,9 @@ inline void* ClearPacBits(void* ptr) {
-   // compatibility with ARM platforms that do not support pointer
-   // authentication, we use the hint space instruction XPACLRI instead. Hint
-   // space instructions behave as NOPs on unsupported platforms.
--  asm("xpaclri" : "+r"(x30));
-+#define ABSL_XPACLRI_HINT "hint #0x7;"
-+  asm(ABSL_XPACLRI_HINT : "+r"(x30));  // asm("xpaclri" : "+r"(x30));
-+#undef ABSL_XPACLRI_HINT
-   return x30;
- }
- 
diff --git a/meta-oe/recipes-devtools/abseil-cpp/abseil-cpp/0004-abseil-ppc-fixes.patch b/meta-oe/recipes-devtools/abseil-cpp/abseil-cpp/0004-abseil-ppc-fixes.patch
index ba0cd66920..a0b99dd206 100644
--- a/meta-oe/recipes-devtools/abseil-cpp/abseil-cpp/0004-abseil-ppc-fixes.patch
+++ b/meta-oe/recipes-devtools/abseil-cpp/abseil-cpp/0004-abseil-ppc-fixes.patch
@@ -1,4 +1,4 @@
-From f9607924225ca59fb6c60222e6424b84e6f70029 Mon Sep 17 00:00:00 2001
+From 5891332fecd3bf707b58dda56b4b3f80583b5ef9 Mon Sep 17 00:00:00 2001
 From: Khem Raj <raj.khem@gmail.com>
 Date: Sat, 21 Sep 2024 20:53:06 +0800
 Subject: [PATCH] abseil: ppc fixes
@@ -23,7 +23,7 @@ Signed-off-by: Khem Raj <raj.khem@gmail.com>
  4 files changed, 12 insertions(+), 5 deletions(-)
 
 diff --git a/absl/base/internal/unscaledcycleclock.cc b/absl/base/internal/unscaledcycleclock.cc
-index a0bf3a65..103b4f6a 100644
+index 68f92730..5dbfaab6 100644
 --- a/absl/base/internal/unscaledcycleclock.cc
 +++ b/absl/base/internal/unscaledcycleclock.cc
 @@ -20,7 +20,7 @@
@@ -86,10 +86,10 @@ index 3dd6ba1a..f923b055 100644
      return reinterpret_cast<void*>(context->uc_mcontext.__gregs[REG_PC]);
  #elif defined(__s390__) && !defined(__s390x__)
 diff --git a/absl/debugging/internal/stacktrace_config.h b/absl/debugging/internal/stacktrace_config.h
-index 3929b1b7..23d5e504 100644
+index 88949fe9..4e26a6b7 100644
 --- a/absl/debugging/internal/stacktrace_config.h
 +++ b/absl/debugging/internal/stacktrace_config.h
-@@ -60,7 +60,7 @@
+@@ -67,7 +67,7 @@
  #elif defined(__i386__) || defined(__x86_64__)
  #define ABSL_STACKTRACE_INL_HEADER \
    "absl/debugging/internal/stacktrace_x86-inl.inc"
@@ -98,6 +98,3 @@ index 3929b1b7..23d5e504 100644
  #define ABSL_STACKTRACE_INL_HEADER \
    "absl/debugging/internal/stacktrace_powerpc-inl.inc"
  #elif defined(__aarch64__)
--- 
-2.25.1
-
diff --git a/meta-oe/recipes-devtools/abseil-cpp/abseil-cpp_20250127.0.bb b/meta-oe/recipes-devtools/abseil-cpp/abseil-cpp_20250127.1.bb
similarity index 87%
rename from meta-oe/recipes-devtools/abseil-cpp/abseil-cpp_20250127.0.bb
rename to meta-oe/recipes-devtools/abseil-cpp/abseil-cpp_20250127.1.bb
index f217d4daf8..5368dfaada 100644
--- a/meta-oe/recipes-devtools/abseil-cpp/abseil-cpp_20250127.0.bb
+++ b/meta-oe/recipes-devtools/abseil-cpp/abseil-cpp_20250127.1.bb
@@ -7,15 +7,14 @@ SECTION = "libs"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=df52c6edb7adc22e533b2bacc3bd3915"
 
-SRCREV = "9ac7062b1860d895fb5a8cbf58c3e9ef8f674b5f"
+SRCREV = "d9e4955c65cd4367dd6bf46f4ccb8cd3d100540b"
 BRANCH = "lts_2025_01_27"
 SRC_URI = "git://github.com/abseil/abseil-cpp;branch=${BRANCH};protocol=https \
-           file://0001-absl-always-use-asm-sgidefs.h.patch             \
+           file://0001-absl-always-use-asm-sgidefs.h.patch \
            file://0002-Remove-maes-option-from-cross-compilation.patch \
            file://0003-Remove-neon-option-from-cross-compilation.patch \
            file://0004-abseil-ppc-fixes.patch \
-           file://0001-Actually-use-the-hint-space-instruction-to-strip-PAC.patch \
-          "
+           "
 
 S = "${WORKDIR}/git"
 
-- 
2.43.0



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

* [oe] [meta-oe] [PATCH 02/45] adw-gtk3: upgrade 5.6 -> 5.7
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 03/45] ddrescue: upgrade 1.29 -> 1.29.1 wangmy
                   ` (42 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../gnome-themes/{adw-gtk3_5.6.bb => adw-gtk3_5.7.bb}           | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-gnome/gnome-themes/{adw-gtk3_5.6.bb => adw-gtk3_5.7.bb} (88%)

diff --git a/meta-oe/recipes-gnome/gnome-themes/adw-gtk3_5.6.bb b/meta-oe/recipes-gnome/gnome-themes/adw-gtk3_5.7.bb
similarity index 88%
rename from meta-oe/recipes-gnome/gnome-themes/adw-gtk3_5.6.bb
rename to meta-oe/recipes-gnome/gnome-themes/adw-gtk3_5.7.bb
index c128e41561..7d7f8a0b6f 100644
--- a/meta-oe/recipes-gnome/gnome-themes/adw-gtk3_5.6.bb
+++ b/meta-oe/recipes-gnome/gnome-themes/adw-gtk3_5.7.bb
@@ -11,6 +11,6 @@ inherit meson
 SRC_URI = "git://github.com/lassekongo83/adw-gtk3.git;protocol=https;branch=main"
 
 S = "${WORKDIR}/git"
-SRCREV = "a88950d8d66308606a6cbb0cfece91376213ad2d"
+SRCREV = "88577252bb7a18f445a108d9a4d2dd046e7abb27"
 
 FILES:${PN} = "${datadir}/themes"
-- 
2.43.0



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

* [oe] [meta-oe] [PATCH 03/45] ddrescue: upgrade 1.29 -> 1.29.1
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 02/45] adw-gtk3: upgrade 5.6 -> 5.7 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 04/45] flashrom: upgrade 1.4.0 -> 1.5.1 wangmy
                   ` (41 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
============
- New option '--bad-sector-data'.
- main_common.cc (format_num3): New function.
- mapbook.cc (input_pos_error): Print pos and size aligned.
- ddrescue.texi: Document use of -p and -x with --domain-mapfile.
- block.h: Rename to mapfile.h.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../ddrescue/{ddrescue_1.29.bb => ddrescue_1.29.1.bb}           | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-extended/ddrescue/{ddrescue_1.29.bb => ddrescue_1.29.1.bb} (93%)

diff --git a/meta-oe/recipes-extended/ddrescue/ddrescue_1.29.bb b/meta-oe/recipes-extended/ddrescue/ddrescue_1.29.1.bb
similarity index 93%
rename from meta-oe/recipes-extended/ddrescue/ddrescue_1.29.bb
rename to meta-oe/recipes-extended/ddrescue/ddrescue_1.29.1.bb
index 2b11982d5c..99c7d06706 100644
--- a/meta-oe/recipes-extended/ddrescue/ddrescue_1.29.bb
+++ b/meta-oe/recipes-extended/ddrescue/ddrescue_1.29.1.bb
@@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=cca7f74ec83b7a9ce7ccd195aad471bd \
                     "
 
 SRC_URI = "${GNU_MIRROR}/${BPN}/${BP}.tar.lz"
-SRC_URI[sha256sum] = "01a414327853b39fba2fd0ece30f7bee2e9d8c8e8eb314318524adf5a60039a3"
+SRC_URI[sha256sum] = "ddd7d45df026807835a2ec6ab9c365df2ef19e8de1a50ffe6886cd391e04dd75"
 
 # This isn't already added by base.bbclass
 do_unpack[depends] += "lzip-native:do_populate_sysroot"
-- 
2.43.0



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

* [oe] [meta-oe] [PATCH 04/45] flashrom: upgrade 1.4.0 -> 1.5.1
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 02/45] adw-gtk3: upgrade 5.6 -> 5.7 wangmy
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 03/45] ddrescue: upgrade 1.29 -> 1.29.1 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-gnome] [PATCH 05/45] gnome-font-viewer: upgrade 47.0 -> 48.0 wangmy
                   ` (40 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

0001-flashrom-Mark-RISCV-as-non-memory-mapped-I-O-archite.patch
0001-linux_mtd-fix-build-with-clang-19.patch
removed since they're included in 1.5.1

0002-meson-Add-options-pciutils-ftdi-usb.patch
refreshed for 1.5.1

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...SCV-as-non-memory-mapped-I-O-archite.patch | 30 --------------
 ...01-linux_mtd-fix-build-with-clang-19.patch | 39 -------------------
 ...-meson-Add-options-pciutils-ftdi-usb.patch | 13 ++++---
 .../{flashrom_1.4.0.bb => flashrom_1.5.1.bb}  |  4 +-
 4 files changed, 8 insertions(+), 78 deletions(-)
 delete mode 100644 meta-oe/recipes-bsp/flashrom/flashrom/0001-flashrom-Mark-RISCV-as-non-memory-mapped-I-O-archite.patch
 delete mode 100644 meta-oe/recipes-bsp/flashrom/flashrom/0001-linux_mtd-fix-build-with-clang-19.patch
 rename meta-oe/recipes-bsp/flashrom/{flashrom_1.4.0.bb => flashrom_1.5.1.bb} (75%)

diff --git a/meta-oe/recipes-bsp/flashrom/flashrom/0001-flashrom-Mark-RISCV-as-non-memory-mapped-I-O-archite.patch b/meta-oe/recipes-bsp/flashrom/flashrom/0001-flashrom-Mark-RISCV-as-non-memory-mapped-I-O-archite.patch
deleted file mode 100644
index 58f1aa4d43..0000000000
--- a/meta-oe/recipes-bsp/flashrom/flashrom/0001-flashrom-Mark-RISCV-as-non-memory-mapped-I-O-archite.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From bf5a30ef30818973eb2cfac792b80c642df8a721 Mon Sep 17 00:00:00 2001
-From: Patrick Rudolph <patrick.rudolph@9elements.com>
-Date: Mon, 14 Oct 2024 11:01:37 +0200
-Subject: [PATCH 1/2] flashrom: Mark RISCV as non memory-mapped I/O
- architecture
-
-Upstream-Status: Inactive-Upstream
-
-Change-Id: I46d7ede7af61e7fca631e1d465100e65c6ddeee9
-Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com>
----
- Makefile | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/Makefile b/Makefile
-index 97f56b83..08e4c595 100644
---- a/Makefile
-+++ b/Makefile
-@@ -372,7 +372,7 @@ endif
- # Additionally disable all drivers needing raw access (memory, PCI, port I/O)
- # on architectures with unknown raw access properties.
- # Right now those architectures are alpha hppa m68k sh s390
--ifneq ($(ARCH), $(filter $(ARCH), x86 mips ppc arm sparc arc e2k))
-+ifneq ($(ARCH), $(filter $(ARCH), x86 mips ppc arm sparc arc e2k riscv))
- $(call mark_unsupported,$(DEPENDS_ON_RAW_MEM_ACCESS))
- endif
- 
--- 
-2.46.2
-
diff --git a/meta-oe/recipes-bsp/flashrom/flashrom/0001-linux_mtd-fix-build-with-clang-19.patch b/meta-oe/recipes-bsp/flashrom/flashrom/0001-linux_mtd-fix-build-with-clang-19.patch
deleted file mode 100644
index 46bd0bba44..0000000000
--- a/meta-oe/recipes-bsp/flashrom/flashrom/0001-linux_mtd-fix-build-with-clang-19.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From 615fae91dafdb89f0f8418129918dbb7ff879cf6 Mon Sep 17 00:00:00 2001
-From: Arnaud Ferraris <arnaud.ferraris@collabora.com>
-Date: Thu, 24 Oct 2024 17:51:29 +0200
-Subject: [PATCH] linux_mtd: fix build with clang >= 19
-
-Starting with version 19, clang issues a warning when using `strlen()`
-for initializing a static array's size. This causes the build to fail as
-the project also sets `-Werror`.
-
-This is fixed by using `sizeof()` instead, which is guaranteed to be
-evaluated at compilation time and therefore not triggering the
-problematic warning.
-
-Upstream-Status: Backport [https://github.com/flashrom/flashrom/commit/34b1a6aa57e910c0b5a518e8a0cab6841c7efaee]
-
-Change-Id: If470a65702e9ae08e4303123a0014e53a1fee56e
-Signed-off-by: Arnaud Ferraris <arnaud.ferraris@collabora.com>
-Reviewed-on: https://review.coreboot.org/c/flashrom/+/84856
-Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-Reviewed-by: Maximilian Brune <maximilian.brune@9elements.com>
-Reviewed-by: Anastasia Klimchuk <aklm@chromium.org>
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- linux_mtd.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/linux_mtd.c b/linux_mtd.c
-index eea0cf2..0cb2330 100644
---- a/linux_mtd.c
-+++ b/linux_mtd.c
-@@ -49,7 +49,7 @@ static int read_sysfs_string(const char *sysfs_path, const char *filename, char
- 	int i;
- 	size_t bytes_read;
- 	FILE *fp;
--	char path[strlen(LINUX_MTD_SYSFS_ROOT) + 32];
-+	char path[sizeof(LINUX_MTD_SYSFS_ROOT) + 31];
- 
- 	snprintf(path, sizeof(path), "%s/%s", sysfs_path, filename);
- 
diff --git a/meta-oe/recipes-bsp/flashrom/flashrom/0002-meson-Add-options-pciutils-ftdi-usb.patch b/meta-oe/recipes-bsp/flashrom/flashrom/0002-meson-Add-options-pciutils-ftdi-usb.patch
index bc43f17e9a..8dfed855b4 100644
--- a/meta-oe/recipes-bsp/flashrom/flashrom/0002-meson-Add-options-pciutils-ftdi-usb.patch
+++ b/meta-oe/recipes-bsp/flashrom/flashrom/0002-meson-Add-options-pciutils-ftdi-usb.patch
@@ -16,10 +16,10 @@ Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com>
  2 files changed, 6 insertions(+), 3 deletions(-)
 
 diff --git a/meson.build b/meson.build
-index ae56b26c..21093a7f 100644
+index 6c8d3d3..61b794d 100644
 --- a/meson.build
 +++ b/meson.build
-@@ -151,9 +151,9 @@ systems_serial     = [ 'linux', 'openbsd', 'freebsd', 'dragonfly', 'netbsd', 'da
+@@ -150,9 +150,9 @@ systems_serial     = [ 'linux', 'openbsd', 'freebsd', 'dragonfly', 'netbsd', 'da
  
  cpus_port_io = [ 'x86', 'x86_64' ]
  
@@ -33,16 +33,17 @@ index ae56b26c..21093a7f 100644
  group_serial = get_option('programmer').contains('group_serial')
  group_jlink  = get_option('programmer').contains('group_jlink')
 diff --git a/meson_options.txt b/meson_options.txt
-index 8a04114d..ae722509 100644
+index 87456a9..570b152 100644
 --- a/meson_options.txt
 +++ b/meson_options.txt
-@@ -25,3 +25,6 @@ option('ni845x_search_path', type : 'string', value : 'C:\Program Files (x86)\Na
- option('delay_minimum_sleep_us', type : 'integer', min : 0, value : 100000,
+@@ -24,4 +24,7 @@ option('ni845x_search_path', type : 'string', value : 'C:\Program Files (x86)\Na
+ option('delay_minimum_sleep_us', type : 'integer', min : 0, value : 100,
         description : 'Minimum time in microseconds to suspend execution for (rather than polling) when a delay is required.'
                     + ' Larger values may perform better on machines with low timer resolution, at the cost of increased power.')
 +option('pciutils', type : 'boolean', value : false, description : 'Select programmer group pci')
 +option('usb', type : 'boolean', value : false, description : 'Select programmer group usb')
 +option('ftdi', type : 'boolean', value : false, description : 'Select programmer group ftdi')
+ option('rpmc', type : 'feature', value : 'auto', description : 'Support for Replay Protected Monotonic Counter (RPMC) commands as specified by JESD260')
 -- 
-2.46.2
+2.43.0
 
diff --git a/meta-oe/recipes-bsp/flashrom/flashrom_1.4.0.bb b/meta-oe/recipes-bsp/flashrom/flashrom_1.5.1.bb
similarity index 75%
rename from meta-oe/recipes-bsp/flashrom/flashrom_1.4.0.bb
rename to meta-oe/recipes-bsp/flashrom/flashrom_1.5.1.bb
index 6c5d05f2d0..9a8e81bae3 100644
--- a/meta-oe/recipes-bsp/flashrom/flashrom_1.4.0.bb
+++ b/meta-oe/recipes-bsp/flashrom/flashrom_1.5.1.bb
@@ -4,12 +4,10 @@ HOMEPAGE = "http://flashrom.org"
 
 LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
 SRC_URI = "https://download.flashrom.org/releases/flashrom-v${PV}.tar.xz \
-           file://0001-flashrom-Mark-RISCV-as-non-memory-mapped-I-O-archite.patch \
            file://0002-meson-Add-options-pciutils-ftdi-usb.patch \
-           file://0001-linux_mtd-fix-build-with-clang-19.patch \
            "
 
-SRC_URI[sha256sum] = "eb0eb3e61a57fd1926c66f08664cf04a96f92cee23b600cf563087c2178d70d8"
+SRC_URI[sha256sum] = "1f934b076ed49eace203655ec249fc7861a6b8e87fe4aef732e47b6e485b6293"
 
 S = "${WORKDIR}/flashrom-v${PV}"
 
-- 
2.43.0



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

* [oe] [meta-gnome] [PATCH 05/45] gnome-font-viewer: upgrade 47.0 -> 48.0
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (2 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 04/45] flashrom: upgrade 1.4.0 -> 1.5.1 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 06/45] icewm: upgrade 3.7.1 -> 3.7.2 wangmy
                   ` (39 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../{gnome-font-viewer_47.0.bb => gnome-font-viewer_48.0.bb}    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-gnome/recipes-gnome/gnome-font-viewer/{gnome-font-viewer_47.0.bb => gnome-font-viewer_48.0.bb} (81%)

diff --git a/meta-gnome/recipes-gnome/gnome-font-viewer/gnome-font-viewer_47.0.bb b/meta-gnome/recipes-gnome/gnome-font-viewer/gnome-font-viewer_48.0.bb
similarity index 81%
rename from meta-gnome/recipes-gnome/gnome-font-viewer/gnome-font-viewer_47.0.bb
rename to meta-gnome/recipes-gnome/gnome-font-viewer/gnome-font-viewer_48.0.bb
index 4763d1717d..e8d51a12df 100644
--- a/meta-gnome/recipes-gnome/gnome-font-viewer/gnome-font-viewer_47.0.bb
+++ b/meta-gnome/recipes-gnome/gnome-font-viewer/gnome-font-viewer_48.0.bb
@@ -15,7 +15,7 @@ inherit gnomebase gtk-icon-cache gettext features_check mime-xdg
 
 REQUIRED_DISTRO_FEATURES = "x11 opengl"
 
-SRC_URI[archive.sha256sum] = "b8e5a042e0b241b0c7cae43f74da0d5f88e6423017a91feb86e7617edb4080ed"
+SRC_URI[archive.sha256sum] = "732624231b624ff5c7ac03a8ce71be12393daa53551d11550b20d7b0a3a872a7"
 
 FILES:${PN} += " \
     ${datadir}/dbus-1 \
-- 
2.43.0



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

* [oe] [meta-oe] [PATCH 06/45] icewm: upgrade 3.7.1 -> 3.7.2
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (3 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-gnome] [PATCH 05/45] gnome-font-viewer: upgrade 47.0 -> 48.0 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 07/45] imlib2: upgrade 1.12.3 -> 1.12.4 wangmy
                   ` (38 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
===========
- Always print icons double-quoted
- Also support SVG icons when the image library supports it natively.
- Mark the WindowList as a toplevel and redirect its input to the listbox.
- Fix compiling without internationalization for icewm-menu-fdo.
- Also update the server time before setting focus to the topWindow.
- Try not to go backwards in our notion of the X server time.
- Only save event time when it is non-zero.
- Add updateServerTime to class declaration in header.
- Use the window handle when retrieving the user time.
- Fix off-by-one errors in the QuickSwitch bottom right border
- Log the keycode as a decimal.
- Improve readability in SwitchWindow::resize.
- Ignore key releases and modifier presses in the top window key handler.
- Remove the incompatible cmake_path from the po CMakefile.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../recipes-extended/icewm/{icewm_3.7.1.bb => icewm_3.7.2.bb}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-extended/icewm/{icewm_3.7.1.bb => icewm_3.7.2.bb} (94%)

diff --git a/meta-oe/recipes-extended/icewm/icewm_3.7.1.bb b/meta-oe/recipes-extended/icewm/icewm_3.7.2.bb
similarity index 94%
rename from meta-oe/recipes-extended/icewm/icewm_3.7.1.bb
rename to meta-oe/recipes-extended/icewm/icewm_3.7.2.bb
index a0acffae52..747a0c23ce 100644
--- a/meta-oe/recipes-extended/icewm/icewm_3.7.1.bb
+++ b/meta-oe/recipes-extended/icewm/icewm_3.7.2.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=4a26952467ef79a7efca4a9cf52d417b"
 SRC_URI = "https://github.com/ice-wm/${BPN}/releases/download/${PV}/${BPN}-${PV}.tar.lz \
            file://0001-configure.ac-skip-running-test-program-when-cross-co.patch \
            "
-SRC_URI[sha256sum] = "0d86e542c5d56aa0f443d67549e150c419d497ae869f561edae06b293571add8"
+SRC_URI[sha256sum] = "b4ed8a357352f761f0d2d547235e35e97051f7e5db55d32f689d2c5262f202d8"
 
 UPSTREAM_CHECK_URI = "https://github.com/ice-wm/${BPN}/releases"
 UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)"
-- 
2.43.0



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

* [oe] [meta-oe] [PATCH 07/45] imlib2: upgrade 1.12.3 -> 1.12.4
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (4 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 06/45] icewm: upgrade 3.7.1 -> 3.7.2 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 08/45] jwt-cpp: upgrade 0.7.0 -> 0.7.1 wangmy
                   ` (37 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
=============
- imlib2_view: Toggle anti-alias flag on 'a'
- test_load_2: Add another y4m test image
- scaling: Fix potential crash when scaling large images
- test_grab: Work around linewidth=0 bug
- test: Enable skipping tests for specific files
- test: By default skip CRC checks on jxl images
- test: Colorize Skip message
- SVG loader: Suppress warning
- test: Enable skipping loader flushing
- test: Correct CFLAGS when building with alternative library packages
- test_load_2: Adjustment for libheif-1.19.x
- imlib2_load/view: Show image alpha status too
- imlib2_load/view: Add -h option for help
- imlib2_conv: Optionally produce scaled image
- imlib2_conv: Optionally render image on background before saving
- test: Change test images
- savers: Add common save parameter handler
- HEIF saver: Add one
- scale: Rearrange some variable declarations
- scale/blend: Add some missing consts
- blend: Some mostly cosmetic changes
- blend: Rename some variables for clarity
- loaders: Fix gcc15 warnings
- test: Make top-level clean clean test too
- SVG loader: Handle .svgz too
- test: Fix top-level distclean
- PNG loader: Debug printout tweaks
- image: Trivial simplification
- image: Add optional alpha check requested by loaders
- SVG loader: Check alpha in pixel data
- imlib2_view: Optionally show crc32 of image data
- test: Some trivial ouput tweaks
- test: Change many no-alpha test images to not have alpha data
- test: Corrections after no-alpha update
- GIF loader: Fix minor issue when loading transparent gifs
- test: Add transparent gif check
- Y4M Loader: Trivial simplification
- autofoo: Make building demo programs optional (default enabled)
- autofoo: No longer link modules with libImlib2.la
- test_save: Add qoi
- specs: Optionally build split rpms
- XBM loader: Debug printout tweaks
- AVIF loader: Indent
- AVIF saver: Add one
- HEIF loader: Demote avif support if regular avif loader is built
- test: Add basic avif test
- test: test_grab needs -lX11
- test: Avoid warnings from _FORTIFY_SOURCE
- AVIF loader: add new loader based on libavif
- Y4M Loader: replace fps_{den,num} with frametime_us
- Y4M Loader: provide the pixel aspect ratio directly
- autofoo: don't hardcode zlib flags
- QOI Loader: sync with upstream
- QOI Saver: add one

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

diff --git a/meta-oe/recipes-graphics/imlib2/imlib2_git.bb b/meta-oe/recipes-graphics/imlib2/imlib2_git.bb
index 8e5febd7a1..3bfd701d96 100644
--- a/meta-oe/recipes-graphics/imlib2/imlib2_git.bb
+++ b/meta-oe/recipes-graphics/imlib2/imlib2_git.bb
@@ -7,8 +7,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=344895f253c32f38e182dcaf30fe8a35"
 
 DEPENDS = "freetype "
 PROVIDES = "virtual/imlib2"
-PV = "1.12.3"
-SRCREV = "143c60194c0948aac484d37bb23c59edea2ccf19"
+PV = "1.12.4"
+SRCREV = "fd4310864f820ca4db56fd663a504cdc4f840ffe"
 
 inherit autotools pkgconfig lib_package
 
-- 
2.43.0



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

* [oe] [meta-oe] [PATCH 08/45] jwt-cpp: upgrade 0.7.0 -> 0.7.1
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (5 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 07/45] imlib2: upgrade 1.12.3 -> 1.12.4 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 09/45] libcbor: upgrade 0.11.0 -> 0.12.0 wangmy
                   ` (36 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../jwt-cpp/{jwt-cpp_0.7.0.bb => jwt-cpp_0.7.1.bb}              | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-devtools/jwt-cpp/{jwt-cpp_0.7.0.bb => jwt-cpp_0.7.1.bb} (90%)

diff --git a/meta-oe/recipes-devtools/jwt-cpp/jwt-cpp_0.7.0.bb b/meta-oe/recipes-devtools/jwt-cpp/jwt-cpp_0.7.1.bb
similarity index 90%
rename from meta-oe/recipes-devtools/jwt-cpp/jwt-cpp_0.7.0.bb
rename to meta-oe/recipes-devtools/jwt-cpp/jwt-cpp_0.7.1.bb
index 19424337f7..57a9cbade1 100644
--- a/meta-oe/recipes-devtools/jwt-cpp/jwt-cpp_0.7.0.bb
+++ b/meta-oe/recipes-devtools/jwt-cpp/jwt-cpp_0.7.1.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=8325a5ce4414c65ffdda392e0d96a9ff"
 SRC_URI = "git://github.com/Thalhammer/jwt-cpp.git;branch=master;protocol=https \
             "
 
-SRCREV = "08bcf77a687fb06e34138e9e9fa12a4ecbe12332"
+SRCREV = "e71e0c2d584baff06925bbb3aad683f677e4d498"
 
 S = "${WORKDIR}/git"
 
-- 
2.43.0



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

* [oe] [meta-oe] [PATCH 09/45] libcbor: upgrade 0.11.0 -> 0.12.0
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (6 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 08/45] jwt-cpp: upgrade 0.7.0 -> 0.7.1 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-networking] [PATCH 10/45] libdaq: upgrade 3.0.18 -> 3.0.19 wangmy
                   ` (35 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../libcbor/{libcbor_0.11.0.bb => libcbor_0.12.0.bb}            | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-extended/libcbor/{libcbor_0.11.0.bb => libcbor_0.12.0.bb} (88%)

diff --git a/meta-oe/recipes-extended/libcbor/libcbor_0.11.0.bb b/meta-oe/recipes-extended/libcbor/libcbor_0.12.0.bb
similarity index 88%
rename from meta-oe/recipes-extended/libcbor/libcbor_0.11.0.bb
rename to meta-oe/recipes-extended/libcbor/libcbor_0.12.0.bb
index 0e15393dd5..4c5eb8a640 100755
--- a/meta-oe/recipes-extended/libcbor/libcbor_0.11.0.bb
+++ b/meta-oe/recipes-extended/libcbor/libcbor_0.12.0.bb
@@ -5,7 +5,7 @@ LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE.md;md5=6f3b3881df62ca763a02d359a6e94071"
 
 SRC_URI = "git://github.com/PJK/libcbor.git;protocol=https;branch=master"
-SRCREV = "170bee2b82cdb7b2ed25af301f62cb6efdd40ec1"
+SRCREV = "ae000f44e8d2a69e1f72a738f7c0b6b4b7cc4fbf"
 
 S = "${WORKDIR}/git"
 
-- 
2.43.0



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

* [oe] [meta-networking] [PATCH 10/45] libdaq: upgrade 3.0.18 -> 3.0.19
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (7 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 09/45] libcbor: upgrade 0.11.0 -> 0.12.0 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-gnome] [PATCH 11/45] libdex: upgrade 0.8.1 -> 0.10.0 wangmy
                   ` (34 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../daq/{libdaq_3.0.18.bb => libdaq_3.0.19.bb}                  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-networking/recipes-connectivity/daq/{libdaq_3.0.18.bb => libdaq_3.0.19.bb} (92%)

diff --git a/meta-networking/recipes-connectivity/daq/libdaq_3.0.18.bb b/meta-networking/recipes-connectivity/daq/libdaq_3.0.19.bb
similarity index 92%
rename from meta-networking/recipes-connectivity/daq/libdaq_3.0.18.bb
rename to meta-networking/recipes-connectivity/daq/libdaq_3.0.19.bb
index 3823098f83..a8436ea84d 100644
--- a/meta-networking/recipes-connectivity/daq/libdaq_3.0.18.bb
+++ b/meta-networking/recipes-connectivity/daq/libdaq_3.0.19.bb
@@ -12,7 +12,7 @@ inherit autotools pkgconfig
 SRC_URI = "git://github.com/snort3/libdaq.git;protocol=https;branch=master \
            file://0001-example-Use-lm-for-the-fst-module.patch"
 
-SRCREV = "fc6f7d729b5ab65081abd3811dcd79a91c463b37"
+SRCREV = "434f205cbd45de0961cc42e541b5bf54569e912a"
 
 S = "${WORKDIR}/git"
 
-- 
2.43.0



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

* [oe] [meta-gnome] [PATCH 11/45] libdex: upgrade 0.8.1 -> 0.10.0
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (8 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-networking] [PATCH 10/45] libdaq: upgrade 3.0.18 -> 3.0.19 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 12/45] libharu: upgrade 2.4.4 -> 2.4.5 wangmy
                   ` (33 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
============
- Discard dependent futures if fiber was cancelled during await.
- Discard dependent futures when finalizing DexBlock.
- Build fix for macOS
- Improve build checks for libatommic
- Add dex_promise_resolve_boxed()
- Improve cancellation of fibers
- Use libucontext when necessary
- Support for OpenBSD
- Raise default mmap stack size to 128kb for fibers
- Add await/resolve API for file-descriptors
- New dex_return_error_if_fail() precondition macro similar to
  g_return_val_if_fail()
- Additional GIO wrapper functions including dex_file_delete() and
  dex_file_replace_contents_bytes()
- Build system improvements

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../recipes-gnome/libdex/{libdex_0.8.1.bb => libdex_0.10.0.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-gnome/recipes-gnome/libdex/{libdex_0.8.1.bb => libdex_0.10.0.bb} (82%)

diff --git a/meta-gnome/recipes-gnome/libdex/libdex_0.8.1.bb b/meta-gnome/recipes-gnome/libdex/libdex_0.10.0.bb
similarity index 82%
rename from meta-gnome/recipes-gnome/libdex/libdex_0.8.1.bb
rename to meta-gnome/recipes-gnome/libdex/libdex_0.10.0.bb
index 3ed2f6ccb3..17471a3b5c 100644
--- a/meta-gnome/recipes-gnome/libdex/libdex_0.8.1.bb
+++ b/meta-gnome/recipes-gnome/libdex/libdex_0.10.0.bb
@@ -11,7 +11,7 @@ DEPENDS:append:libc-musl = " libucontext"
 
 LDFLAGS:append:libc-musl = " -lucontext"
 
-SRC_URI[archive.sha256sum] = "955475ad3e43aabd6f6f70435264b5ee77bd265bd95545211fee026b08d378a0"
+SRC_URI[archive.sha256sum] = "98a69626aa7646ad455bea7a7f92d2a1ffa47e4559a154a1bfe98c16fa711ee1"
 
 PACKAGECONFIG ?= ""
 EXTRA_OEMESON += "-Dintrospection=enabled -Dvapi=false"
-- 
2.43.0



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

* [oe] [meta-oe] [PATCH 12/45] libharu: upgrade 2.4.4 -> 2.4.5
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (9 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-gnome] [PATCH 11/45] libdex: upgrade 0.8.1 -> 0.10.0 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 13/45] libnewt: upgrade 0.52.24 -> 0.52.25 wangmy
                   ` (32 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

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

diff --git a/meta-oe/recipes-support/libharu/libharu_2.4.4.bb b/meta-oe/recipes-support/libharu/libharu_2.4.5.bb
similarity index 89%
rename from meta-oe/recipes-support/libharu/libharu_2.4.4.bb
rename to meta-oe/recipes-support/libharu/libharu_2.4.5.bb
index 02dc499e03..db8acd4532 100644
--- a/meta-oe/recipes-support/libharu/libharu_2.4.4.bb
+++ b/meta-oe/recipes-support/libharu/libharu_2.4.5.bb
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=924546dab2bef90e370d7c0c090ddcf0"
 DEPENDS += "libpng zlib"
 
 SRC_URI = "git://github.com/libharu/libharu.git;branch=master;protocol=https"
-SRCREV = "0c598becaadaef8e3d12b883f9fc2864a118c12d"
+SRCREV = "8fe5a738541a04642885fb7a75b2b5b9c5b416fa"
 
 S = "${WORKDIR}/git"
 
-- 
2.43.0



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

* [oe] [meta-oe] [PATCH 13/45] libnewt: upgrade 0.52.24 -> 0.52.25
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (10 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 12/45] libharu: upgrade 2.4.4 -> 2.4.5 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-gnome] [PATCH 14/45] libpanel: upgrade 1.8.1 -> 1.10.0 wangmy
                   ` (31 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

cross_ar.patch
refreshed for 0.52.25

Changelog:
===========
- improve Makefile
- fix "yes" in Spanish translation

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../newt/files/cross_ar.patch                 | 25 +++++++++++--------
 ...{libnewt_0.52.24.bb => libnewt_0.52.25.bb} |  2 +-
 2 files changed, 15 insertions(+), 12 deletions(-)
 rename meta-oe/recipes-extended/newt/{libnewt_0.52.24.bb => libnewt_0.52.25.bb} (94%)

diff --git a/meta-oe/recipes-extended/newt/files/cross_ar.patch b/meta-oe/recipes-extended/newt/files/cross_ar.patch
index 86cc0be1d3..eb8c4134b2 100644
--- a/meta-oe/recipes-extended/newt/files/cross_ar.patch
+++ b/meta-oe/recipes-extended/newt/files/cross_ar.patch
@@ -1,4 +1,7 @@
-Fix cross link using autoconf detected AR
+From 0f33421000006f5991d1cddcb9dbc68b64141e44 Mon Sep 17 00:00:00 2001
+From: Jason Wessel <jason.wessel@windriver.com>
+Date: Wed, 19 Jun 2024 11:22:48 +0200
+Subject: [PATCH] Fix cross link using autoconf detected AR
 
 If building on 32bit host and creating 64bit libraries, the target
 package builds should not invoke the 32bit hosts's ar.  Specifically
@@ -18,10 +21,10 @@ Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
  configure.ac | 4 ++++
  2 files changed, 6 insertions(+), 1 deletion(-)
 
-Index: newt-0.52.20/Makefile.in
-===================================================================
---- newt-0.52.20.orig/Makefile.in
-+++ newt-0.52.20/Makefile.in
+diff --git a/Makefile.in b/Makefile.in
+index f8fe290..8a44a56 100644
+--- a/Makefile.in
++++ b/Makefile.in
 @@ -7,6 +7,7 @@ CFLAGS = @CFLAGS@
  LDFLAGS = @LDFLAGS@
  CPPFLAGS = -D_GNU_SOURCE @CPPFLAGS@
@@ -30,7 +33,7 @@ Index: newt-0.52.20/Makefile.in
  
  VERSION = @VERSION@
  TAG = r$(subst .,-,$(VERSION))
-@@ -109,7 +110,7 @@ whiptcl.$(SOEXT): $(WHIPTCLOBJS) $(LIBNE
+@@ -109,7 +110,7 @@ whiptcl.$(SOEXT): $(WHIPTCLOBJS) $(LIBNEWTSH)
  	$(CC) -shared $(SHCFLAGS) $(LDFLAGS) -o whiptcl.$(SOEXT) $(WHIPTCLOBJS) -L. -lnewt  $(LIBTCL) -lpopt $(LIBS)
  
  $(LIBNEWT): $(LIBOBJS)
@@ -39,11 +42,11 @@ Index: newt-0.52.20/Makefile.in
  
  newt.o $(SHAREDDIR)/newt.o: newt.c Makefile
  
-Index: newt-0.52.20/configure.ac
-===================================================================
---- newt-0.52.20.orig/configure.ac
-+++ newt-0.52.20/configure.ac
-@@ -15,6 +15,10 @@ AC_PROG_INSTALL
+diff --git a/configure.ac b/configure.ac
+index 434121e..2cfffd6 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -15,6 +15,10 @@ AC_PROG_CC
  AC_PROG_LN_S
  AC_PROG_GREP
  AC_SYS_LARGEFILE
diff --git a/meta-oe/recipes-extended/newt/libnewt_0.52.24.bb b/meta-oe/recipes-extended/newt/libnewt_0.52.25.bb
similarity index 94%
rename from meta-oe/recipes-extended/newt/libnewt_0.52.24.bb
rename to meta-oe/recipes-extended/newt/libnewt_0.52.25.bb
index 834dddd0b5..aa6b120037 100644
--- a/meta-oe/recipes-extended/newt/libnewt_0.52.24.bb
+++ b/meta-oe/recipes-extended/newt/libnewt_0.52.25.bb
@@ -22,7 +22,7 @@ SRC_URI = "https://releases.pagure.org/newt/newt-${PV}.tar.gz \
            file://Makefile.in-Add-tinfo-library-to-the-linking-librari.patch \
            "
 
-SRC_URI[sha256sum] = "5ded7e221f85f642521c49b1826c8de19845aa372baf5d630a51774b544fbdbb"
+SRC_URI[sha256sum] = "ef0ca9ee27850d1a5c863bb7ff9aa08096c9ed312ece9087b30f3a426828de82"
 
 S = "${WORKDIR}/newt-${PV}"
 
-- 
2.43.0



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

* [oe] [meta-gnome] [PATCH 14/45] libpanel: upgrade 1.8.1 -> 1.10.0
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (11 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 13/45] libnewt: upgrade 0.52.24 -> 0.52.25 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-gnome] [PATCH 15/45] libpeas: upgrade 2.0.5 -> 2.0.7 wangmy
                   ` (30 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
===========
- OmniBar has received a fix for changes to AdwClamp
- Updated translations
- Various style improvements to match libadwaita
- Various drag-n-drop improvements
- Remove some deprecated API use

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../libpanel/{libpanel_1.8.1.bb => libpanel_1.10.0.bb}          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-gnome/recipes-gnome/libpanel/{libpanel_1.8.1.bb => libpanel_1.10.0.bb} (85%)

diff --git a/meta-gnome/recipes-gnome/libpanel/libpanel_1.8.1.bb b/meta-gnome/recipes-gnome/libpanel/libpanel_1.10.0.bb
similarity index 85%
rename from meta-gnome/recipes-gnome/libpanel/libpanel_1.8.1.bb
rename to meta-gnome/recipes-gnome/libpanel/libpanel_1.10.0.bb
index 9786acb38c..da47288cf8 100644
--- a/meta-gnome/recipes-gnome/libpanel/libpanel_1.8.1.bb
+++ b/meta-gnome/recipes-gnome/libpanel/libpanel_1.10.0.bb
@@ -11,7 +11,7 @@ DEPENDS += " \
     libadwaita \
 "
 
-SRC_URI[archive.sha256sum] = "b87b8fa9b79768cc704243793f0158a040a1e46d37b9889188545a7f7dcaa6fb"
+SRC_URI[archive.sha256sum] = "578ce512278ff2bb5eeebb55099392c52537a5abd9bd0629567f102532b38b25"
 
 PACKAGECONFIG ?= ""
 #EXTRA_OEMESON += "-Ddocs=disabled"
-- 
2.43.0



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

* [oe] [meta-gnome] [PATCH 15/45] libpeas: upgrade 2.0.5 -> 2.0.7
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (12 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-gnome] [PATCH 14/45] libpanel: upgrade 1.8.1 -> 1.10.0 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-gnome] [PATCH 16/45] libspelling: upgrade 0.4.6 -> 0.4.7 wangmy
                   ` (29 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../libpeas/{libpeas_2.0.5.bb => libpeas_2.0.7.bb}              | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-gnome/recipes-gnome/libpeas/{libpeas_2.0.5.bb => libpeas_2.0.7.bb} (90%)

diff --git a/meta-gnome/recipes-gnome/libpeas/libpeas_2.0.5.bb b/meta-gnome/recipes-gnome/libpeas/libpeas_2.0.7.bb
similarity index 90%
rename from meta-gnome/recipes-gnome/libpeas/libpeas_2.0.5.bb
rename to meta-gnome/recipes-gnome/libpeas/libpeas_2.0.7.bb
index 557831da6e..76ed820e66 100644
--- a/meta-gnome/recipes-gnome/libpeas/libpeas_2.0.5.bb
+++ b/meta-gnome/recipes-gnome/libpeas/libpeas_2.0.7.bb
@@ -8,7 +8,7 @@ DEPENDS = "glib-2.0"
 inherit gnomebase gobject-introspection vala gi-docgen
 
 SRC_URI += "file://disable-lgi-check.patch"
-SRC_URI[archive.sha256sum] = "376f2f73d731b54e13ddbab1d91b6382cf6a980524def44df62add15489de6dd"
+SRC_URI[archive.sha256sum] = "1e9a9d69761d2109eff5b7c11d8c96b4867ccfaca2b921eded49401192769ec9"
 
 PACKAGECONFIG ?= "python3 gjs lua51 ${@bb.utils.contains('DISTRO_FEATURES', 'gobject-introspection', 'vala', '', d)}"
 PACKAGECONFIG:remove:riscv32 = "lua51"
-- 
2.43.0



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

* [oe] [meta-gnome] [PATCH 16/45] libspelling: upgrade 0.4.6 -> 0.4.7
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (13 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-gnome] [PATCH 15/45] libpeas: upgrade 2.0.5 -> 2.0.7 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 17/45] libtinyxml2: upgrade 10.1.0 -> 11.0.0 wangmy
                   ` (28 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
============
- Fix a potential assertion failure in B+Tree item removal
- Translation updates
- Improve detection of asynchronous fragment cancellation to break out
  of long-running spellchecking.
- Fix Rust example and documentation links.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../libspelling/{libspelling_0.4.6.bb => libspelling_0.4.7.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-gnome/recipes-gnome/libspelling/{libspelling_0.4.6.bb => libspelling_0.4.7.bb} (85%)

diff --git a/meta-gnome/recipes-gnome/libspelling/libspelling_0.4.6.bb b/meta-gnome/recipes-gnome/libspelling/libspelling_0.4.7.bb
similarity index 85%
rename from meta-gnome/recipes-gnome/libspelling/libspelling_0.4.6.bb
rename to meta-gnome/recipes-gnome/libspelling/libspelling_0.4.7.bb
index b19c5f51e0..38476a6787 100644
--- a/meta-gnome/recipes-gnome/libspelling/libspelling_0.4.6.bb
+++ b/meta-gnome/recipes-gnome/libspelling/libspelling_0.4.7.bb
@@ -16,4 +16,4 @@ GIDOCGEN_MESON_OPTION = 'docs'
 PACKAGECONFIG ?= ""
 PACKAGECONFIG[sysprof] = "-Dsysprof=true,-Dsysprof=false,sysprof"
 
-SRC_URI[archive.sha256sum] = "3248a9b5336ea2f727d2db912d2f0083accc0505ce707679b3d9b8266c0101f5"
+SRC_URI[archive.sha256sum] = "42f130f295f5addb6e9e8e74ccfbb709794bd2dfd021293e2875b9481bbd4e88"
-- 
2.43.0



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

* [oe] [meta-oe] [PATCH 17/45] libtinyxml2: upgrade 10.1.0 -> 11.0.0
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (14 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-gnome] [PATCH 16/45] libspelling: upgrade 0.4.6 -> 0.4.7 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-networking] [PATCH 18/45] memcached: upgrade 1.6.37 -> 1.6.38 wangmy
                   ` (27 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../{libtinyxml2_10.1.0.bb => libtinyxml2_11.0.0.bb}            | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-support/libtinyxml2/{libtinyxml2_10.1.0.bb => libtinyxml2_11.0.0.bb} (94%)

diff --git a/meta-oe/recipes-support/libtinyxml2/libtinyxml2_10.1.0.bb b/meta-oe/recipes-support/libtinyxml2/libtinyxml2_11.0.0.bb
similarity index 94%
rename from meta-oe/recipes-support/libtinyxml2/libtinyxml2_10.1.0.bb
rename to meta-oe/recipes-support/libtinyxml2/libtinyxml2_11.0.0.bb
index 6bea792a78..e0b07deca3 100644
--- a/meta-oe/recipes-support/libtinyxml2/libtinyxml2_10.1.0.bb
+++ b/meta-oe/recipes-support/libtinyxml2/libtinyxml2_11.0.0.bb
@@ -5,7 +5,7 @@ LICENSE = "Zlib"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=135624eef03e1f1101b9ba9ac9b5fffd"
 CVE_PRODUCT = "tinyxml2"
 
-SRCREV = "57eea48c5bfc354ac45d53b2eb499e66c80d63e0"
+SRCREV = "9148bdf719e997d1f474be6bcc7943881046dba1"
 SRC_URI = "git://github.com/leethomason/tinyxml2.git;branch=master;protocol=https \
            file://run-ptest"
 
-- 
2.43.0



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

* [oe] [meta-networking] [PATCH 18/45] memcached: upgrade 1.6.37 -> 1.6.38
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (15 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 17/45] libtinyxml2: upgrade 10.1.0 -> 11.0.0 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 19/45] php: upgrade 8.4.4 -> 8.4.5 wangmy
                   ` (26 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

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

diff --git a/meta-networking/recipes-support/memcached/memcached_1.6.37.bb b/meta-networking/recipes-support/memcached/memcached_1.6.38.bb
similarity index 95%
rename from meta-networking/recipes-support/memcached/memcached_1.6.37.bb
rename to meta-networking/recipes-support/memcached/memcached_1.6.38.bb
index e77ca464c9..9799b55a09 100644
--- a/meta-networking/recipes-support/memcached/memcached_1.6.37.bb
+++ b/meta-networking/recipes-support/memcached/memcached_1.6.38.bb
@@ -22,7 +22,7 @@ RDEPENDS:${PN} += "perl perl-module-posix perl-module-autoloader \
 SRC_URI = "http://www.memcached.org/files/${BP}.tar.gz \
            file://memcached-add-hugetlbfs-check.patch \
            "
-SRC_URI[sha256sum] = "74a0629370f6bf60873937e439cd59659fbd7a84f24c1095bc082da0c8406969"
+SRC_URI[sha256sum] = "334d792294e37738796b5b03375c47bb6db283b1152e2ea4ccb720152dd17c66"
 
 CVE_STATUS[CVE-2022-26635] = "disputed: this is a problem of applications using php-memcached inproperly"
 
-- 
2.43.0



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

* [oe] [meta-oe] [PATCH 19/45] php: upgrade 8.4.4 -> 8.4.5
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (16 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-networking] [PATCH 18/45] memcached: upgrade 1.6.37 -> 1.6.38 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 20/45] python3-aiohappyeyeballs: upgrade 2.5.0 -> 2.6.1 wangmy
                   ` (25 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 meta-oe/recipes-devtools/php/{php_8.4.4.bb => php_8.4.5.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-devtools/php/{php_8.4.4.bb => php_8.4.5.bb} (99%)

diff --git a/meta-oe/recipes-devtools/php/php_8.4.4.bb b/meta-oe/recipes-devtools/php/php_8.4.5.bb
similarity index 99%
rename from meta-oe/recipes-devtools/php/php_8.4.4.bb
rename to meta-oe/recipes-devtools/php/php_8.4.5.bb
index c49780a2a4..cf4b756b85 100644
--- a/meta-oe/recipes-devtools/php/php_8.4.4.bb
+++ b/meta-oe/recipes-devtools/php/php_8.4.5.bb
@@ -29,7 +29,7 @@ SRC_URI:append:class-target = " \
 
 S = "${WORKDIR}/php-${PV}"
 
-SRC_URI[sha256sum] = "192a325fd3ca09b6c528dd6014ee07d803c3162514d4bb0d3e0981d00ac700ec"
+SRC_URI[sha256sum] = "9378c78887d0cd7462fc5c17f2de30c852f20f79d28795e2573fe3250d39436e"
 
 CVE_STATUS_GROUPS += "CVE_STATUS_PHP"
 CVE_STATUS_PHP[status] = "fixed-version: The name of this product is exactly the same as github.com/emlog/emlog. CVE can be safely ignored."
-- 
2.43.0



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

* [oe] [meta-python] [PATCH 20/45] python3-aiohappyeyeballs: upgrade 2.5.0 -> 2.6.1
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (17 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 19/45] php: upgrade 8.4.4 -> 8.4.5 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 21/45] python3-aiohttp: upgrade 3.11.13 -> 3.11.14 wangmy
                   ` (24 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
 Resolve typeerror on import for python < 3.9.2

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

diff --git a/meta-python/recipes-devtools/python/python3-aiohappyeyeballs_2.5.0.bb b/meta-python/recipes-devtools/python/python3-aiohappyeyeballs_2.6.1.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python3-aiohappyeyeballs_2.5.0.bb
rename to meta-python/recipes-devtools/python/python3-aiohappyeyeballs_2.6.1.bb
index a24434d85f..441016fd23 100644
--- a/meta-python/recipes-devtools/python/python3-aiohappyeyeballs_2.5.0.bb
+++ b/meta-python/recipes-devtools/python/python3-aiohappyeyeballs_2.6.1.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "https://github.com/aio-libs/aiohappyeyeballs"
 LICENSE = "PSF-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=fcf6b249c2641540219a727f35d8d2c2"
 
-SRC_URI[sha256sum] = "18fde6204a76deeabc97c48bdd01d5801cfda5d6b9c8bbeb1aaaee9d648ca191"
+SRC_URI[sha256sum] = "c3f9d0113123803ccadfdf3f0faa505bc78e6a72d1cc4806cbd719826e943558"
 
 inherit pypi python_poetry_core
 
-- 
2.43.0



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

* [oe] [meta-python] [PATCH 21/45] python3-aiohttp: upgrade 3.11.13 -> 3.11.14
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (18 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 20/45] python3-aiohappyeyeballs: upgrade 2.5.0 -> 2.6.1 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 22/45] python3-bitarray: upgrade 3.1.1 -> 3.2.0 wangmy
                   ` (23 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
===========
- Fixed an issue where dns queries were delayed indefinitely when an
  exception occurred in a trace.send_dns_cache_miss
- Fixed DNS resolution on platforms that don't support socket.AI_ADDRCONFIG
- The connector now raises :exc:aiohttp.ClientConnectionError instead of
  :exc:OSError when failing to explicitly close the socket after
  :py:meth:asyncio.loop.create_connection fails
- Break cyclic references at connection close when there was a traceback
- Break cyclic references when there is an exception handling a request
- Improved logging on non-overlapping WebSocket client protocols to include
  the remote address
- Improved performance of parsing content types by adding a cache in the same
  manner currently done with mime types

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

diff --git a/meta-python/recipes-devtools/python/python3-aiohttp_3.11.13.bb b/meta-python/recipes-devtools/python/python3-aiohttp_3.11.14.bb
similarity index 86%
rename from meta-python/recipes-devtools/python/python3-aiohttp_3.11.13.bb
rename to meta-python/recipes-devtools/python/python3-aiohttp_3.11.14.bb
index ad1275e201..8a3ec3cc33 100644
--- a/meta-python/recipes-devtools/python/python3-aiohttp_3.11.13.bb
+++ b/meta-python/recipes-devtools/python/python3-aiohttp_3.11.14.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "https://github.com/aio-libs/aiohttp"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=748073912af33aa59430d3702aa32d41"
 
-SRC_URI[sha256sum] = "8ce789231404ca8fff7f693cdce398abf6d90fd5dae2b1847477196c243b1fbb"
+SRC_URI[sha256sum] = "d6edc538c7480fa0a3b2bdd705f8010062d74700198da55d16498e1b49549b9c"
 
 inherit python_setuptools_build_meta pypi
 
-- 
2.43.0



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

* [oe] [meta-python] [PATCH 22/45] python3-bitarray: upgrade 3.1.1 -> 3.2.0
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (19 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 21/45] python3-aiohttp: upgrade 3.11.13 -> 3.11.14 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 23/45] python3-coverage: upgrade 7.6.12 -> 7.7.1 wangmy
                   ` (22 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
==========
- add 'util.xor_indices()'
- add Hamming code example

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

diff --git a/meta-python/recipes-devtools/python/python3-bitarray_3.1.1.bb b/meta-python/recipes-devtools/python/python3-bitarray_3.2.0.bb
similarity index 80%
rename from meta-python/recipes-devtools/python/python3-bitarray_3.1.1.bb
rename to meta-python/recipes-devtools/python/python3-bitarray_3.2.0.bb
index c07c52af89..86767dd6b2 100644
--- a/meta-python/recipes-devtools/python/python3-bitarray_3.1.1.bb
+++ b/meta-python/recipes-devtools/python/python3-bitarray_3.2.0.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "https://github.com/ilanschnell/bitarray"
 LICENSE = "PSF-2.0"
 LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=2ad702cdcd49e8d2ac01d7e7d0810d2d"
 
-SRC_URI[sha256sum] = "a3c1d74ac2c969bac33169286fe601f8a6f4ca0e8f26dbaa22ad61fbf8fcf259"
+SRC_URI[sha256sum] = "f766d1c6a5cbb1f87cb8ce0ff46cefda681cc2f9bef971908f914b2862409922"
 
 inherit setuptools3 pypi
 
-- 
2.43.0



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

* [oe] [meta-python] [PATCH 23/45] python3-coverage: upgrade 7.6.12 -> 7.7.1
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (20 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 22/45] python3-bitarray: upgrade 3.1.1 -> 3.2.0 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 24/45] python3-dbus-fast: upgrade 2.39.3 -> 2.39.6 wangmy
                   ` (21 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
  A few small tweaks to the sys.monitoring support for Python 3.14.

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

diff --git a/meta-python/recipes-devtools/python/python3-coverage_7.6.12.bb b/meta-python/recipes-devtools/python/python3-coverage_7.7.1.bb
similarity index 84%
rename from meta-python/recipes-devtools/python/python3-coverage_7.6.12.bb
rename to meta-python/recipes-devtools/python/python3-coverage_7.7.1.bb
index 5577832e50..78a0ebff2f 100644
--- a/meta-python/recipes-devtools/python/python3-coverage_7.6.12.bb
+++ b/meta-python/recipes-devtools/python/python3-coverage_7.7.1.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://coverage.readthedocs.io"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2ee41112a44fe7014dce33e26468ba93"
 
-SRC_URI[sha256sum] = "48cfc4641d95d34766ad41d9573cc0f22a48aa88d22657a1fe01dca0dbae4de2"
+SRC_URI[sha256sum] = "199a1272e642266b90c9f40dec7fd3d307b51bf639fa0d15980dc0b3246c1393"
 
 inherit pypi python_setuptools_build_meta
 
-- 
2.43.0



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

* [oe] [meta-python] [PATCH 24/45] python3-dbus-fast: upgrade 2.39.3 -> 2.39.6
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (21 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 23/45] python3-coverage: upgrade 7.6.12 -> 7.7.1 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 25/45] python3-ecdsa: upgrade 0.19.0 -> 0.19.1 wangmy
                   ` (20 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
===========
- Don't limit python upper bound
- fix: adjust pygobject pin to required python < 4
- Remove workflow from previous failed attempt at testing big-endian
- Upgrade to ruff 0.1.0 and fix violations
- Multiple calls on the root logger instead of module logger
- deps-dev: Bump setuptools from 75.8.2 to 76.0.0
- pre-commit.ci: Pre-commit autoupdate

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

diff --git a/meta-python/recipes-devtools/python/python3-dbus-fast_2.39.3.bb b/meta-python/recipes-devtools/python/python3-dbus-fast_2.39.6.bb
similarity index 83%
rename from meta-python/recipes-devtools/python/python3-dbus-fast_2.39.3.bb
rename to meta-python/recipes-devtools/python/python3-dbus-fast_2.39.6.bb
index 5eb7672d0a..3ca220b72e 100644
--- a/meta-python/recipes-devtools/python/python3-dbus-fast_2.39.3.bb
+++ b/meta-python/recipes-devtools/python/python3-dbus-fast_2.39.6.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/bluetooth-devices/dbus-fast"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=729e372b5ea0168438e4fd4a00a04947"
 
-SRC_URI[sha256sum] = "84b4ff23bcadfa794842e8d3eccb521907f7c6cb8d6534c895995840306512aa"
+SRC_URI[sha256sum] = "fc3349ffea522d137d856f8967129dd4b87394c0bf8b8b1648295c5eb0a457fe"
 
 PYPI_PACKAGE = "dbus_fast"
 UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}"
-- 
2.43.0



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

* [oe] [meta-python] [PATCH 25/45] python3-ecdsa: upgrade 0.19.0 -> 0.19.1
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (22 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 24/45] python3-dbus-fast: upgrade 2.39.3 -> 2.39.6 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 26/45] python3-grpcio-channelz: upgrade 1.70.0 -> 1.71.0 wangmy
                   ` (19 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
============
New API:
-----------
- der.remove_implicit and der.encode_implicit for decoding and
  encoding DER IMPLICIT values with custom tag values and arbitrary
  classes

Bug fixes:
------------
- Minor fixes around arithmetic with curves that have non-prime order
  (useful for experimentation, not practical deployments)
- Fix arithmetic to work with curves that have (0, 0) on the curve
- Fix canonicalization of signatures when s is just slightly
  above half of curve order

Maintenance:
------------
- Dropped official support for Python 3.5 (again, issues with CI, support
  for Python 2.6 and Python 2.7 is unchanged)
- Officially support Python 3.12 and 3.13 (add them to CI)
- Removal of few more unnecessary six.b literals (Alexandre Detiste)
- Fix typos in warning messages

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

diff --git a/meta-python/recipes-devtools/python/python3-ecdsa_0.19.0.bb b/meta-python/recipes-devtools/python/python3-ecdsa_0.19.1.bb
similarity index 87%
rename from meta-python/recipes-devtools/python/python3-ecdsa_0.19.0.bb
rename to meta-python/recipes-devtools/python/python3-ecdsa_0.19.1.bb
index f26c90d83b..4e884b2d74 100644
--- a/meta-python/recipes-devtools/python/python3-ecdsa_0.19.0.bb
+++ b/meta-python/recipes-devtools/python/python3-ecdsa_0.19.1.bb
@@ -4,7 +4,7 @@ LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=66ffc5e30f76cbb5358fe54b645e5a1d"
 
 PYPI_PACKAGE = "ecdsa"
-SRC_URI[sha256sum] = "60eaad1199659900dd0af521ed462b793bbdf867432b3948e87416ae4caf6bf8"
+SRC_URI[sha256sum] = "478cba7b62555866fcb3bb3fe985e06decbdb68ef55713c4e5ab98c57d508e61"
 
 inherit pypi setuptools3 python3native ptest-python-pytest
 
-- 
2.43.0



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

* [oe] [meta-python] [PATCH 26/45] python3-grpcio-channelz: upgrade 1.70.0 -> 1.71.0
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (23 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 25/45] python3-ecdsa: upgrade 0.19.0 -> 0.19.1 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 27/45] python3-grpcio-reflection: " wangmy
                   ` (18 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...cio-channelz_1.70.0.bb => python3-grpcio-channelz_1.71.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-grpcio-channelz_1.70.0.bb => python3-grpcio-channelz_1.71.0.bb} (82%)

diff --git a/meta-python/recipes-devtools/python/python3-grpcio-channelz_1.70.0.bb b/meta-python/recipes-devtools/python/python3-grpcio-channelz_1.71.0.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-grpcio-channelz_1.70.0.bb
rename to meta-python/recipes-devtools/python/python3-grpcio-channelz_1.71.0.bb
index 225048250e..a103867ab0 100644
--- a/meta-python/recipes-devtools/python/python3-grpcio-channelz_1.70.0.bb
+++ b/meta-python/recipes-devtools/python/python3-grpcio-channelz_1.71.0.bb
@@ -11,7 +11,7 @@ DEPENDS += "python3-grpcio"
 PYPI_PACKAGE = "grpcio_channelz"
 UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}"
 
-SRC_URI[sha256sum] = "79334e27f6d9bfbfc536adfa2a4108a1ac048a4d052158f1cc1df6cc359e748a"
+SRC_URI[sha256sum] = "2f6b661dee6b43ff76f38fd4fa17949f3847ea82e515d6e6f21f4fcfe046ecf2"
 
 RDEPENDS:${PN} = "python3-grpcio"
 
-- 
2.43.0



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

* [oe] [meta-python] [PATCH 27/45] python3-grpcio-reflection: upgrade 1.70.0 -> 1.71.0
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (24 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 26/45] python3-grpcio-channelz: upgrade 1.70.0 -> 1.71.0 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 28/45] python3-grpcio-tools: " wangmy
                   ` (17 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

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

diff --git a/meta-python/recipes-devtools/python/python3-grpcio-reflection_1.70.0.bb b/meta-python/recipes-devtools/python/python3-grpcio-reflection_1.71.0.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-grpcio-reflection_1.70.0.bb
rename to meta-python/recipes-devtools/python/python3-grpcio-reflection_1.71.0.bb
index 08d94a0084..308e1e0430 100644
--- a/meta-python/recipes-devtools/python/python3-grpcio-reflection_1.70.0.bb
+++ b/meta-python/recipes-devtools/python/python3-grpcio-reflection_1.71.0.bb
@@ -11,7 +11,7 @@ DEPENDS += "python3-grpcio"
 PYPI_PACKAGE = "grpcio_reflection"
 UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}"
 
-SRC_URI[sha256sum] = "af46ce13e57fd7602deaef5b1d1903f6644f8982cc00f62fa9fa5b928acf6a49"
+SRC_URI[sha256sum] = "51504e977057ffabe66d1ed55557b15e969c42bb3a1f28ee45d730dd5f983bb5"
 
 RDEPENDS:${PN} = "python3-grpcio"
 
-- 
2.43.0



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

* [oe] [meta-python] [PATCH 28/45] python3-grpcio-tools: upgrade 1.70.0 -> 1.71.0
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (25 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 27/45] python3-grpcio-reflection: " wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 29/45] python3-grpcio: " wangmy
                   ` (16 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

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

diff --git a/meta-python/recipes-devtools/python/python3-grpcio-tools_1.70.0.bb b/meta-python/recipes-devtools/python/python3-grpcio-tools_1.71.0.bb
similarity index 89%
rename from meta-python/recipes-devtools/python/python3-grpcio-tools_1.70.0.bb
rename to meta-python/recipes-devtools/python/python3-grpcio-tools_1.71.0.bb
index 38440edbee..7448ff55b2 100644
--- a/meta-python/recipes-devtools/python/python3-grpcio-tools_1.70.0.bb
+++ b/meta-python/recipes-devtools/python/python3-grpcio-tools_1.71.0.bb
@@ -15,7 +15,7 @@ DEPENDS += "python3-grpcio"
 SRC_URI += "file://0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch \
             file://0001-protobuf-Disable-musttail-attribute-on-mips.patch \
             "
-SRC_URI[sha256sum] = "e578fee7c1c213c8e471750d92631d00f178a15479fb2cb3b939a07fc125ccd3"
+SRC_URI[sha256sum] = "38dba8e0d5e0fb23a034e09644fdc6ed862be2371887eee54901999e8f6792a8"
 
 RDEPENDS:${PN} = "python3-grpcio"
 
-- 
2.43.0



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

* [oe] [meta-python] [PATCH 29/45] python3-grpcio: upgrade 1.70.0 -> 1.71.0
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (26 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 28/45] python3-grpcio-tools: " wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 30/45] python3-huey: upgrade 2.5.2 -> 2.5.3 wangmy
                   ` (15 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

0001-python-enable-unbundled-cross-compilation.patch
refreshed for 1.71.0

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../0001-python-enable-unbundled-cross-compilation.patch    | 6 +++---
 .../{python3-grpcio_1.70.0.bb => python3-grpcio_1.71.0.bb}  | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-grpcio_1.70.0.bb => python3-grpcio_1.71.0.bb} (94%)

diff --git a/meta-python/recipes-devtools/python/python3-grpcio/0001-python-enable-unbundled-cross-compilation.patch b/meta-python/recipes-devtools/python/python3-grpcio/0001-python-enable-unbundled-cross-compilation.patch
index 782b348815..b2b2713559 100644
--- a/meta-python/recipes-devtools/python/python3-grpcio/0001-python-enable-unbundled-cross-compilation.patch
+++ b/meta-python/recipes-devtools/python/python3-grpcio/0001-python-enable-unbundled-cross-compilation.patch
@@ -1,4 +1,4 @@
-From ff01ac8908a7267503ffbb85efd24755da0502d8 Mon Sep 17 00:00:00 2001
+From ed9f268774838d279e23b4ae9fb95ca7650942b2 Mon Sep 17 00:00:00 2001
 From: Peter Marko <peter.marko@siemens.com>
 Date: Wed, 5 Feb 2025 21:06:50 +0100
 Subject: [PATCH] python: enable unbundled cross compilation
@@ -13,10 +13,10 @@ Signed-off-by: Peter Marko <peter.marko@siemens.com>
  1 file changed, 5 insertions(+), 5 deletions(-)
 
 diff --git a/setup.py b/setup.py
-index 3b6edbe..d3a0d04 100644
+index 4d13d87..f002ab2 100644
 --- a/setup.py
 +++ b/setup.py
-@@ -317,25 +317,25 @@ if BUILD_WITH_SYSTEM_OPENSSL:
+@@ -318,25 +318,25 @@ if BUILD_WITH_SYSTEM_OPENSSL:
          lambda x: "third_party/boringssl" not in x, CORE_C_FILES
      )
      CORE_C_FILES = filter(lambda x: "src/boringssl" not in x, CORE_C_FILES)
diff --git a/meta-python/recipes-devtools/python/python3-grpcio_1.70.0.bb b/meta-python/recipes-devtools/python/python3-grpcio_1.71.0.bb
similarity index 94%
rename from meta-python/recipes-devtools/python/python3-grpcio_1.70.0.bb
rename to meta-python/recipes-devtools/python/python3-grpcio_1.71.0.bb
index b858a3b050..da677dc1ab 100644
--- a/meta-python/recipes-devtools/python/python3-grpcio_1.70.0.bb
+++ b/meta-python/recipes-devtools/python/python3-grpcio_1.71.0.bb
@@ -13,7 +13,7 @@ DEPENDS += "c-ares openssl python3-protobuf re2 zlib"
 SRC_URI += "file://0001-python-enable-unbundled-cross-compilation.patch \
            file://abseil-ppc-fixes.patch \
            "
-SRC_URI[sha256sum] = "8d1584a68d5922330025881e63a6c1b54cc8117291d382e4fa69339b6d914c56"
+SRC_URI[sha256sum] = "2b85f7820475ad3edec209d3d89a7909ada16caab05d3f2e08a7e8ae3200a55c"
 
 RDEPENDS:${PN} = "python3-protobuf"
 
-- 
2.43.0



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

* [oe] [meta-python] [PATCH 30/45] python3-huey: upgrade 2.5.2 -> 2.5.3
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (27 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 29/45] python3-grpcio: " wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 31/45] python3-inline-snapshot: upgrade 0.20.5 -> 0.20.8 wangmy
                   ` (14 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
============
- Add support for a new SIGNAL_ENQUEUED.
- Use FOR UPDATE SKIP LOCKED when supported by the database in the sql_huey storage engine.

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

diff --git a/meta-python/recipes-devtools/python/python3-huey_2.5.2.bb b/meta-python/recipes-devtools/python/python3-huey_2.5.3.bb
similarity index 78%
rename from meta-python/recipes-devtools/python/python3-huey_2.5.2.bb
rename to meta-python/recipes-devtools/python/python3-huey_2.5.3.bb
index 7829555b90..cb033712d9 100644
--- a/meta-python/recipes-devtools/python/python3-huey_2.5.2.bb
+++ b/meta-python/recipes-devtools/python/python3-huey_2.5.3.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=5cac039fcc82f01141cc170b48f315d4"
 
 PYPI_PACKAGE = "huey"
 
-SRC_URI[sha256sum] = "df33db474c05414ed40ee2110e9df692369871734da22d74ffb035a4bd74047f"
+SRC_URI[sha256sum] = "089fc72b97fd26a513f15b09925c56fad6abe4a699a1f0e902170b37e85163c7"
 
 RDEPENDS:${PN} += " \
 	python3-datetime \
-- 
2.43.0



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

* [oe] [meta-python] [PATCH 31/45] python3-inline-snapshot: upgrade 0.20.5 -> 0.20.8
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (28 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 30/45] python3-huey: upgrade 2.5.2 -> 2.5.3 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 32/45] python3-platformdirs: upgrade 4.3.6 -> 4.3.7 wangmy
                   ` (13 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
==========
- Do not skip snapshots in conditional marked xfail tests.
- Tests with failed snapshot comparisons now always result in a pytest Error,
  even if snapshots have been fixed or created.
- inline-snapshot now also works if you use --no-summary

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...ine-snapshot_0.20.5.bb => python3-inline-snapshot_0.20.8.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-inline-snapshot_0.20.5.bb => python3-inline-snapshot_0.20.8.bb} (88%)

diff --git a/meta-python/recipes-devtools/python/python3-inline-snapshot_0.20.5.bb b/meta-python/recipes-devtools/python/python3-inline-snapshot_0.20.8.bb
similarity index 88%
rename from meta-python/recipes-devtools/python/python3-inline-snapshot_0.20.5.bb
rename to meta-python/recipes-devtools/python/python3-inline-snapshot_0.20.8.bb
index 0e4807b856..9b63a40fa6 100644
--- a/meta-python/recipes-devtools/python/python3-inline-snapshot_0.20.5.bb
+++ b/meta-python/recipes-devtools/python/python3-inline-snapshot_0.20.8.bb
@@ -4,7 +4,7 @@ LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=7a35eb90dfdf03953dd2074d0fdba1d4"
 
 DEPENDS = "python3-hatchling-native"
-SRC_URI[sha256sum] = "d8b67c6d533c0a3f566e72608144b54da65dc3da5d0dba4169b2c56b75530fb5"
+SRC_URI[sha256sum] = "52373c15b63097215d1136f292962553f325a5e966957b489fe4326d6fbc77c0"
 
 inherit pypi python_hatchling
 
-- 
2.43.0



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

* [oe] [meta-python] [PATCH 32/45] python3-platformdirs: upgrade 4.3.6 -> 4.3.7
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (29 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 31/45] python3-inline-snapshot: upgrade 0.20.5 -> 0.20.8 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 33/45] python3-protobuf: upgrade 5.29.4 -> 6.30.1 wangmy
                   ` (12 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
============
- Chunk dependabot updates into a single PR
- Drop support for EOL Python 3.8

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

diff --git a/meta-python/recipes-devtools/python/python3-platformdirs_4.3.6.bb b/meta-python/recipes-devtools/python/python3-platformdirs_4.3.7.bb
similarity index 85%
rename from meta-python/recipes-devtools/python/python3-platformdirs_4.3.6.bb
rename to meta-python/recipes-devtools/python/python3-platformdirs_4.3.7.bb
index c85e12ab5c..4854427aec 100644
--- a/meta-python/recipes-devtools/python/python3-platformdirs_4.3.6.bb
+++ b/meta-python/recipes-devtools/python/python3-platformdirs_4.3.7.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/platformdirs/platformdirs"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=ea4f5a41454746a9ed111e3d8723d17a"
 
-SRC_URI[sha256sum] = "357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"
+SRC_URI[sha256sum] = "eb437d586b6a0986388f0d6f74aa0cde27b48d0e3d66843640bfb6bdcdb6e351"
 
 inherit pypi python_hatchling ptest-python-pytest
 
-- 
2.43.0



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

* [oe] [meta-python] [PATCH 33/45] python3-protobuf: upgrade 5.29.4 -> 6.30.1
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (30 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 32/45] python3-platformdirs: upgrade 4.3.6 -> 4.3.7 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25 10:43   ` Gyorgy Sarvari
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 34/45] python3-psycopg: upgrade 3.2.5 -> 3.2.6 wangmy
                   ` (11 subsequent siblings)
  43 siblings, 1 reply; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

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

diff --git a/meta-python/recipes-devtools/python/python3-protobuf_5.29.4.bb b/meta-python/recipes-devtools/python/python3-protobuf_6.30.1.bb
similarity index 95%
rename from meta-python/recipes-devtools/python/python3-protobuf_5.29.4.bb
rename to meta-python/recipes-devtools/python/python3-protobuf_6.30.1.bb
index d39c5e9790..48853699ac 100644
--- a/meta-python/recipes-devtools/python/python3-protobuf_5.29.4.bb
+++ b/meta-python/recipes-devtools/python/python3-protobuf_6.30.1.bb
@@ -10,7 +10,7 @@ LIC_FILES_CHKSUM = " \
 "
 
 inherit pypi setuptools3
-SRC_URI[sha256sum] = "4f1dfcd7997b31ef8f53ec82781ff434a28bf71d9102ddde14d076adcfc78c99"
+SRC_URI[sha256sum] = "535fb4e44d0236893d5cf1263a0f706f1160b689a7ab962e9da8a9ce4050b780"
 
 CVE_PRODUCT += "google:protobuf protobuf:protobuf google-protobuf protobuf-python"
 
-- 
2.43.0



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

* [oe] [meta-python] [PATCH 34/45] python3-psycopg: upgrade 3.2.5 -> 3.2.6
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (31 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 33/45] python3-protobuf: upgrade 5.29.4 -> 6.30.1 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 35/45] python3-pymisp: upgrade 2.5.7.1 -> 2.5.8.1 wangmy
                   ` (10 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
 Fix connection semantic when using target_session_attrs=prefer-standby

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

diff --git a/meta-oe/recipes-devtools/python/python3-psycopg_3.2.5.bb b/meta-oe/recipes-devtools/python/python3-psycopg_3.2.6.bb
similarity index 85%
rename from meta-oe/recipes-devtools/python/python3-psycopg_3.2.5.bb
rename to meta-oe/recipes-devtools/python/python3-psycopg_3.2.6.bb
index fb8135ae82..036e737b36 100644
--- a/meta-oe/recipes-devtools/python/python3-psycopg_3.2.5.bb
+++ b/meta-oe/recipes-devtools/python/python3-psycopg_3.2.6.bb
@@ -7,7 +7,7 @@ features offered by PostgreSQL."
 LICENSE = "LGPL-3.0-only"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3000208d539ec061b899bce1d9ce9404"
 
-SRC_URI[sha256sum] = "f5f750611c67cb200e85b408882f29265c66d1de7f813add4f8125978bfd70e8"
+SRC_URI[sha256sum] = "16fa094efa2698f260f2af74f3710f781e4a6f226efe9d1fd0c37f384639ed8a"
 
 inherit pypi python_setuptools_build_meta
 
-- 
2.43.0



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

* [oe] [meta-python] [PATCH 35/45] python3-pymisp: upgrade 2.5.7.1 -> 2.5.8.1
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (32 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 34/45] python3-psycopg: upgrade 3.2.5 -> 3.2.6 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 36/45] python3-pymongo: upgrade 4.11.2 -> 4.11.3 wangmy
                   ` (9 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
===========
- Remove top level files from wheel.
- Typo in objects.

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

diff --git a/meta-python/recipes-devtools/python/python3-pymisp_2.5.7.1.bb b/meta-python/recipes-devtools/python/python3-pymisp_2.5.8.1.bb
similarity index 85%
rename from meta-python/recipes-devtools/python/python3-pymisp_2.5.7.1.bb
rename to meta-python/recipes-devtools/python/python3-pymisp_2.5.8.1.bb
index 87d45940a2..b605dbb039 100644
--- a/meta-python/recipes-devtools/python/python3-pymisp_2.5.7.1.bb
+++ b/meta-python/recipes-devtools/python/python3-pymisp_2.5.8.1.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/MISP/PyMISP"
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=a3639cf5780f71b125d3e9d1dc127c20"
 
-SRC_URI[sha256sum] = "522f357fb9efd11acd14f423e577c3c8996c3bf90c9d66c2f3e83af31d669159"
+SRC_URI[sha256sum] = "253cc79c903344f722abdf1011f412e27106af7305c1a3183d5c247c25a8f41c"
 
 inherit python_poetry_core pypi
 
-- 
2.43.0



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

* [oe] [meta-python] [PATCH 36/45] python3-pymongo: upgrade 4.11.2 -> 4.11.3
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (33 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 35/45] python3-pymisp: upgrade 2.5.7.1 -> 2.5.8.1 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 37/45] python3-responses: upgrade 0.25.6 -> 0.25.7 wangmy
                   ` (8 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
=============
- WaitQueueTimeoutError should not clear the pool
- Migrate off of Ubuntu 20.04 GitHub Actions Runners
- Fix test_03_invalid_keyid

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

diff --git a/meta-python/recipes-devtools/python/python3-pymongo_4.11.2.bb b/meta-python/recipes-devtools/python/python3-pymongo_4.11.3.bb
similarity index 91%
rename from meta-python/recipes-devtools/python/python3-pymongo_4.11.2.bb
rename to meta-python/recipes-devtools/python/python3-pymongo_4.11.3.bb
index a31deba759..e36f009869 100644
--- a/meta-python/recipes-devtools/python/python3-pymongo_4.11.2.bb
+++ b/meta-python/recipes-devtools/python/python3-pymongo_4.11.3.bb
@@ -8,7 +8,7 @@ HOMEPAGE = "http://github.com/mongodb/mongo-python-driver"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
 
-SRC_URI[sha256sum] = "d0ee3e0275f67bddcd83b2263818b7c4ae7af1ecafebe7eb7fd16389457ec210"
+SRC_URI[sha256sum] = "b6f24aec7c0cfcf0ea9f89e92b7d40ba18a1e18c134815758f111ecb0122e61c"
 
 inherit pypi python_setuptools_build_meta python_hatchling
 
-- 
2.43.0



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

* [oe] [meta-python] [PATCH 37/45] python3-responses: upgrade 0.25.6 -> 0.25.7
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (34 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 36/45] python3-pymongo: upgrade 4.11.2 -> 4.11.3 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 38/45] python3-scikit-build-core: upgrade 0.11.0 -> 0.11.1 wangmy
                   ` (7 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
 Added support for python 3.13

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

diff --git a/meta-python/recipes-devtools/python/python3-responses_0.25.6.bb b/meta-python/recipes-devtools/python/python3-responses_0.25.7.bb
similarity index 80%
rename from meta-python/recipes-devtools/python/python3-responses_0.25.6.bb
rename to meta-python/recipes-devtools/python/python3-responses_0.25.7.bb
index ae34f300e4..31ead072fc 100644
--- a/meta-python/recipes-devtools/python/python3-responses_0.25.6.bb
+++ b/meta-python/recipes-devtools/python/python3-responses_0.25.7.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=0e601511a8517f4daf688a8eb95be7a2"
 
 inherit pypi python_setuptools_build_meta
 
-SRC_URI[sha256sum] = "eae7ce61a9603004e76c05691e7c389e59652d91e94b419623c12bbfb8e331d8"
+SRC_URI[sha256sum] = "8ebae11405d7a5df79ab6fd54277f6f2bc29b2d002d0dd2d5c632594d1ddcedb"
 
 RDEPENDS:${PN} += " \
 	python3-mock \
-- 
2.43.0



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

* [oe] [meta-python] [PATCH 38/45] python3-scikit-build-core: upgrade 0.11.0 -> 0.11.1
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (35 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 37/45] python3-responses: upgrade 0.25.6 -> 0.25.7 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 39/45] python3-sqlalchemy: upgrade 2.0.38 -> 2.0.39 wangmy
                   ` (6 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
============
- Bump pyproject-metadata to handle form feeds on Python < 3.12.8
- Increase timeout on CI
- Ignore deprecation message from cattrs on Python 3.14 alphas
- Add more integration tests in Fedora
- Restore example builds for Windows/macOS
- Remove leftover Python 3.7 checks
- Bump pytest version and include pytest-xdist
- Bump to ruff 0.10, work around bug
- Clarify verbosity options
- Fix incorrect configuration example
- Fix incorrect name (PYBIND11_NEWPYTHON -> PYBIND11_FINDPYTHON)

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...build-core_0.11.0.bb => python3-scikit-build-core_0.11.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-scikit-build-core_0.11.0.bb => python3-scikit-build-core_0.11.1.bb} (82%)

diff --git a/meta-python/recipes-devtools/python/python3-scikit-build-core_0.11.0.bb b/meta-python/recipes-devtools/python/python3-scikit-build-core_0.11.1.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-scikit-build-core_0.11.0.bb
rename to meta-python/recipes-devtools/python/python3-scikit-build-core_0.11.1.bb
index 2d01f0bf03..0632503ac9 100644
--- a/meta-python/recipes-devtools/python/python3-scikit-build-core_0.11.0.bb
+++ b/meta-python/recipes-devtools/python/python3-scikit-build-core_0.11.1.bb
@@ -10,6 +10,6 @@ DEPENDS = "python3-hatch-vcs-native"
 inherit pypi python_hatchling
 
 SRC_URI += "file://0001-builder.py-Check-PYTHON_INCLUDE_DIR.patch"
-SRC_URI[sha256sum] = "423d8b0885bf1942816c851f8ec7c1efc0a7ecad4f38ff43d5ba869a894b107b"
+SRC_URI[sha256sum] = "4e5988df5cd33f0bdb9967b72663ca99f50383c9bc21d8b24fa40c0661ae72b7"
 
 BBCLASSEXTEND = "native nativesdk"
-- 
2.43.0



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

* [oe] [meta-python] [PATCH 39/45] python3-sqlalchemy: upgrade 2.0.38 -> 2.0.39
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (36 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 38/45] python3-scikit-build-core: upgrade 0.11.0 -> 0.11.1 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 40/45] python3-web3: upgrade 7.8.0 -> 7.9.0 wangmy
                   ` (5 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
 https://docs.sqlalchemy.org/en/20/changelog/changelog_20.html#change-2.0.39

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

diff --git a/meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.38.bb b/meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.39.bb
similarity index 87%
rename from meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.38.bb
rename to meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.39.bb
index 4b2d049610..fd6853939e 100644
--- a/meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.38.bb
+++ b/meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.39.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "http://www.sqlalchemy.org/"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=061025f14213ac2818ff353223d6eca6"
 
-SRC_URI[sha256sum] = "e5a4d82bdb4bf1ac1285a68eab02d253ab73355d9f0fe725a97e1e0fa689decb"
+SRC_URI[sha256sum] = "5d2d1fe548def3267b4c70a8568f108d1fed7cbbeccb9cc166e05af2abc25c22"
 
 inherit pypi python_setuptools_build_meta cython
 
-- 
2.43.0



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

* [oe] [meta-python] [PATCH 40/45] python3-web3: upgrade 7.8.0 -> 7.9.0
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (37 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 39/45] python3-sqlalchemy: upgrade 2.0.38 -> 2.0.39 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 41/45] python3-xmlschema: upgrade 3.4.3 -> 3.4.5 wangmy
                   ` (4 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
  https://github.com/ethereum/web3.py/blob/v7.9.0/docs/release_notes.rst

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

diff --git a/meta-python/recipes-devtools/python/python3-web3_7.8.0.bb b/meta-python/recipes-devtools/python/python3-web3_7.9.0.bb
similarity index 87%
rename from meta-python/recipes-devtools/python/python3-web3_7.8.0.bb
rename to meta-python/recipes-devtools/python/python3-web3_7.9.0.bb
index 3b8c098280..3b740329f4 100644
--- a/meta-python/recipes-devtools/python/python3-web3_7.8.0.bb
+++ b/meta-python/recipes-devtools/python/python3-web3_7.9.0.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=1d34d9701a1461e4bd71a904ac4cf7be"
 
-SRC_URI[sha256sum] = "712bc9fd6b1ef6e467ee24c25b581e1951cab2cba17f9f548f12587734f2c857"
+SRC_URI[sha256sum] = "3c4487a7ac57e0a187bd7ee03db455d94f354d15cca45f097f15f7281ad1a01f"
 
 inherit pypi setuptools3
 
-- 
2.43.0



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

* [oe] [meta-python] [PATCH 41/45] python3-xmlschema: upgrade 3.4.3 -> 3.4.5
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (38 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 40/45] python3-web3: upgrade 7.8.0 -> 7.9.0 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 42/45] qpdf: upgrade 11.10.1 -> 12.0.0 wangmy
                   ` (3 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
=============
- Migrate project metadata to pyproject.toml
- Fix static typing errors with mypy==1.15.0 and elementpath==4.8.0
- Fix xs:all groups occurs check

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

diff --git a/meta-python/recipes-devtools/python/python3-xmlschema_3.4.3.bb b/meta-python/recipes-devtools/python/python3-xmlschema_3.4.5.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python3-xmlschema_3.4.3.bb
rename to meta-python/recipes-devtools/python/python3-xmlschema_3.4.5.bb
index 8f2fd9af4d..f4e76d7a2e 100644
--- a/meta-python/recipes-devtools/python/python3-xmlschema_3.4.3.bb
+++ b/meta-python/recipes-devtools/python/python3-xmlschema_3.4.5.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/sissaschool/xmlschema"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=26aa26eda991a3a2b61c11b62d3fda65"
 
-SRC_URI[sha256sum] = "0c638dac81c7d6c9da9a8d7544402c48cffe7ee0e13cc47fc0c18794d1395dfb"
+SRC_URI[sha256sum] = "243244743f151ec859ec0bbf1368fa3f70e5f29e977b77f72e1c9b8f8ae670f6"
 
 inherit pypi python_setuptools_build_meta
 
-- 
2.43.0



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

* [oe] [meta-oe] [PATCH 42/45] qpdf: upgrade 11.10.1 -> 12.0.0
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (39 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 41/45] python3-xmlschema: upgrade 3.4.3 -> 3.4.5 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 43/45] rasdaemon: upgrade 0.8.2 -> 0.8.3 wangmy
                   ` (2 subsequent siblings)
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
  https://qpdf.readthedocs.io/en/stable/release-notes.html

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../recipes-printing/qpdf/{qpdf_11.10.1.bb => qpdf_12.0.0.bb}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-printing/qpdf/{qpdf_11.10.1.bb => qpdf_12.0.0.bb} (94%)

diff --git a/meta-oe/recipes-printing/qpdf/qpdf_11.10.1.bb b/meta-oe/recipes-printing/qpdf/qpdf_12.0.0.bb
similarity index 94%
rename from meta-oe/recipes-printing/qpdf/qpdf_11.10.1.bb
rename to meta-oe/recipes-printing/qpdf/qpdf_12.0.0.bb
index a82303d455..538faafb5c 100644
--- a/meta-oe/recipes-printing/qpdf/qpdf_11.10.1.bb
+++ b/meta-oe/recipes-printing/qpdf/qpdf_12.0.0.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57"
 DEPENDS = "zlib jpeg ${@bb.utils.contains('PACKAGECONFIG', 'gnutls', 'gnutls', 'openssl', d)}"
 
 SRC_URI = "git://github.com/qpdf/qpdf.git;protocol=https;branch=main"
-SRCREV = "8a1d34bb74e6bae1b57076485386fc56e7c22aaa"
+SRCREV = "f84bf9778d141f2392c810eed340ade1eda5e421"
 
 inherit cmake pkgconfig gettext
 
-- 
2.43.0



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

* [oe] [meta-oe] [PATCH 43/45] rasdaemon: upgrade 0.8.2 -> 0.8.3
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (40 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 42/45] qpdf: upgrade 11.10.1 -> 12.0.0 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 44/45] thingsboard-gateway: upgrade 3.6.3 -> 3.7.2 wangmy
  2025-03-25  9:01 ` [oe] [meta-gnome] [PATCH 45/45] xdg-desktop-portal-gtk: upgrade 1.15.2 -> 1.15.3 wangmy
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
===========
- fix checkpatch warnings
- Use the right dev_t decoding for diskerror handler
- Add new modules supported by HiSilicon common section
- Fix some static check warning
- Fix few compilation warnings in non standard hisilicon code
- Fix some compilation alarms in ras-record.h.
- ras-mc-ctl: Update logging of CXL memory module data to align with CXL spec rev 3.1
- ras-mc-ctl: Update logging of CXL DRAM event data to align with CXL spec rev 3.1
- ras-mc-ctl: Update logging of CXL general media event data to align with CXL spec rev 3.1
- ras-mc-ctl: Update logging of common event data to align with CXL spec rev 3.1
- ras-mc-ctl: Fix logging of memory event type in CXL DRAM error table
- cxl: Update memory module event to CXL spec rev 3.1
- cxl: Update CXL DRAM event to CXL spec rev 3.1
- cxl: Update CXL general media event to CXL spec rev 3.1
- cxl: Add Component Identifier formatting for CXL spec rev 3.1
- cxl: Update common event to CXL spec rev 3.1
- cxl: Add automatic indexing for storing CXL fields in SQLite database
- cxl: Fix mismatch in region field's name with kernel DRAM trace event
- cxl: Fix logging of memory event type of DRAM trace event
- Fix for parsing error when trace event's format file is larger than PAGE_SIZE
- Add page offline support for cxl memory
- for ASRock X370 Taichi
- for ASRock X570 Creator
- for ASRock X570S PG Riptide
- mce: decode io port for bus error
- arm: do not print error msg if field not found
- add DE error type for AMD
- Fix the display format of JaguarMicro vendor no standard errors

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../rasdaemon/{rasdaemon_0.8.2.bb => rasdaemon_0.8.3.bb}        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/dynamic-layers/perl-layer/recipes-support/rasdaemon/{rasdaemon_0.8.2.bb => rasdaemon_0.8.3.bb} (97%)

diff --git a/meta-oe/dynamic-layers/perl-layer/recipes-support/rasdaemon/rasdaemon_0.8.2.bb b/meta-oe/dynamic-layers/perl-layer/recipes-support/rasdaemon/rasdaemon_0.8.3.bb
similarity index 97%
rename from meta-oe/dynamic-layers/perl-layer/recipes-support/rasdaemon/rasdaemon_0.8.2.bb
rename to meta-oe/dynamic-layers/perl-layer/recipes-support/rasdaemon/rasdaemon_0.8.3.bb
index 333d75a4f5..f21a3216af 100644
--- a/meta-oe/dynamic-layers/perl-layer/recipes-support/rasdaemon/rasdaemon_0.8.2.bb
+++ b/meta-oe/dynamic-layers/perl-layer/recipes-support/rasdaemon/rasdaemon_0.8.3.bb
@@ -7,7 +7,7 @@ SRC_URI = "git://github.com/mchehab/rasdaemon.git;branch=master;protocol=https \
            file://rasdaemon.service \
            file://init"
 
-SRCREV = "e6cc13e37a17843a2a82313928cd6deed9918649"
+SRCREV = "db0870edd2919f4f4d0101843136bcae92ab0743"
 
 S = "${WORKDIR}/git"
 
-- 
2.43.0



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

* [oe] [meta-oe] [PATCH 44/45] thingsboard-gateway: upgrade 3.6.3 -> 3.7.2
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (41 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 43/45] rasdaemon: upgrade 0.8.2 -> 0.8.3 wangmy
@ 2025-03-25  9:01 ` wangmy
  2025-03-25  9:01 ` [oe] [meta-gnome] [PATCH 45/45] xdg-desktop-portal-gtk: upgrade 1.15.2 -> 1.15.3 wangmy
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...hingsboard-gateway_3.6.3.bb => thingsboard-gateway_3.7.2.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/dynamic-layers/meta-python/recipes-connectivity/thingsboard-gateway/{thingsboard-gateway_3.6.3.bb => thingsboard-gateway_3.7.2.bb} (96%)

diff --git a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/thingsboard-gateway/thingsboard-gateway_3.6.3.bb b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/thingsboard-gateway/thingsboard-gateway_3.7.2.bb
similarity index 96%
rename from meta-oe/dynamic-layers/meta-python/recipes-connectivity/thingsboard-gateway/thingsboard-gateway_3.6.3.bb
rename to meta-oe/dynamic-layers/meta-python/recipes-connectivity/thingsboard-gateway/thingsboard-gateway_3.7.2.bb
index 9fc7d781a7..6b440e00f2 100644
--- a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/thingsboard-gateway/thingsboard-gateway_3.6.3.bb
+++ b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/thingsboard-gateway/thingsboard-gateway_3.7.2.bb
@@ -7,7 +7,7 @@ HOMEPAGE = "https://thingsboard.io/"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
 
-SRC_URI[sha256sum] = "a5ccad7d6940d194f9f39cc7fc22ab72b3d124066837cde27d92d090ce458a88"
+SRC_URI[sha256sum] = "b0d1df1af62afe36f5bc9c6cc13604ccba48a7bba1c33fe7288fc5ce72496d1e"
 
 inherit pypi setuptools3
 
-- 
2.43.0



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

* [oe] [meta-gnome] [PATCH 45/45] xdg-desktop-portal-gtk: upgrade 1.15.2 -> 1.15.3
  2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
                   ` (42 preceding siblings ...)
  2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 44/45] thingsboard-gateway: upgrade 3.6.3 -> 3.7.2 wangmy
@ 2025-03-25  9:01 ` wangmy
  43 siblings, 0 replies; 47+ messages in thread
From: wangmy @ 2025-03-25  9:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
============
- Fix build against newer xdg-desktop-portal
- Fix return value for the access portal

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...op-portal-gtk_1.15.2.bb => xdg-desktop-portal-gtk_1.15.3.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-gnome/recipes-support/xdg-desktop-portal/{xdg-desktop-portal-gtk_1.15.2.bb => xdg-desktop-portal-gtk_1.15.3.bb} (95%)

diff --git a/meta-gnome/recipes-support/xdg-desktop-portal/xdg-desktop-portal-gtk_1.15.2.bb b/meta-gnome/recipes-support/xdg-desktop-portal/xdg-desktop-portal-gtk_1.15.3.bb
similarity index 95%
rename from meta-gnome/recipes-support/xdg-desktop-portal/xdg-desktop-portal-gtk_1.15.2.bb
rename to meta-gnome/recipes-support/xdg-desktop-portal/xdg-desktop-portal-gtk_1.15.3.bb
index 8197a72ee2..0f6a9291b8 100644
--- a/meta-gnome/recipes-support/xdg-desktop-portal/xdg-desktop-portal-gtk_1.15.2.bb
+++ b/meta-gnome/recipes-support/xdg-desktop-portal/xdg-desktop-portal-gtk_1.15.3.bb
@@ -18,7 +18,7 @@ REQUIRED_DISTRO_FEATURES = "polkit"
 SRC_URI = "git://github.com/flatpak/xdg-desktop-portal-gtk.git;protocol=https;branch=main"
 
 S = "${WORKDIR}/git"
-SRCREV = "de133a5def77cca7de650ce331bd07488ee91e6c"
+SRCREV = "337202d4e7179857bc37b03c1a6d8c9d92e47c44"
 
 PACKAGECONFIG ?= "wallpaper appchooser lockdown settings"
 
-- 
2.43.0



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

* Re: [oe] [meta-python] [PATCH 33/45] python3-protobuf: upgrade 5.29.4 -> 6.30.1
  2025-03-25  9:01 ` [oe] [meta-python] [PATCH 33/45] python3-protobuf: upgrade 5.29.4 -> 6.30.1 wangmy
@ 2025-03-25 10:43   ` Gyorgy Sarvari
  2025-03-25 21:57     ` Khem Raj
  0 siblings, 1 reply; 47+ messages in thread
From: Gyorgy Sarvari @ 2025-03-25 10:43 UTC (permalink / raw)
  To: wangmy, openembedded-devel

I think this supposed to stay in sync with the protobuf recipe, which is
at 5.29.4

On 25.03.25 10:01, wangmy via lists.openembedded.org wrote:
> From: Wang Mingyu <wangmy@fujitsu.com>
>
> Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
> ---
>  .../{python3-protobuf_5.29.4.bb => python3-protobuf_6.30.1.bb}  | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>  rename meta-python/recipes-devtools/python/{python3-protobuf_5.29.4.bb => python3-protobuf_6.30.1.bb} (95%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-protobuf_5.29.4.bb b/meta-python/recipes-devtools/python/python3-protobuf_6.30.1.bb
> similarity index 95%
> rename from meta-python/recipes-devtools/python/python3-protobuf_5.29.4.bb
> rename to meta-python/recipes-devtools/python/python3-protobuf_6.30.1.bb
> index d39c5e9790..48853699ac 100644
> --- a/meta-python/recipes-devtools/python/python3-protobuf_5.29.4.bb
> +++ b/meta-python/recipes-devtools/python/python3-protobuf_6.30.1.bb
> @@ -10,7 +10,7 @@ LIC_FILES_CHKSUM = " \
>  "
>  
>  inherit pypi setuptools3
> -SRC_URI[sha256sum] = "4f1dfcd7997b31ef8f53ec82781ff434a28bf71d9102ddde14d076adcfc78c99"
> +SRC_URI[sha256sum] = "535fb4e44d0236893d5cf1263a0f706f1160b689a7ab962e9da8a9ce4050b780"
>  
>  CVE_PRODUCT += "google:protobuf protobuf:protobuf google-protobuf protobuf-python"
>  
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#116261): https://lists.openembedded.org/g/openembedded-devel/message/116261
> Mute This Topic: https://lists.openembedded.org/mt/111893783/6084445
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [skandigraun@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


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

* Re: [oe] [meta-python] [PATCH 33/45] python3-protobuf: upgrade 5.29.4 -> 6.30.1
  2025-03-25 10:43   ` Gyorgy Sarvari
@ 2025-03-25 21:57     ` Khem Raj
  0 siblings, 0 replies; 47+ messages in thread
From: Khem Raj @ 2025-03-25 21:57 UTC (permalink / raw)
  To: skandigraun; +Cc: wangmy, openembedded-devel

On Tue, Mar 25, 2025 at 3:43 AM Gyorgy Sarvari via
lists.openembedded.org <skandigraun=gmail.com@lists.openembedded.org>
wrote:
>
> I think this supposed to stay in sync with the protobuf recipe, which is
> at 5.29.4
>

yes lets keep them in sync

> On 25.03.25 10:01, wangmy via lists.openembedded.org wrote:
> > From: Wang Mingyu <wangmy@fujitsu.com>
> >
> > Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
> > ---
> >  .../{python3-protobuf_5.29.4.bb => python3-protobuf_6.30.1.bb}  | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >  rename meta-python/recipes-devtools/python/{python3-protobuf_5.29.4.bb => python3-protobuf_6.30.1.bb} (95%)
> >
> > diff --git a/meta-python/recipes-devtools/python/python3-protobuf_5.29.4.bb b/meta-python/recipes-devtools/python/python3-protobuf_6.30.1.bb
> > similarity index 95%
> > rename from meta-python/recipes-devtools/python/python3-protobuf_5.29.4.bb
> > rename to meta-python/recipes-devtools/python/python3-protobuf_6.30.1.bb
> > index d39c5e9790..48853699ac 100644
> > --- a/meta-python/recipes-devtools/python/python3-protobuf_5.29.4.bb
> > +++ b/meta-python/recipes-devtools/python/python3-protobuf_6.30.1.bb
> > @@ -10,7 +10,7 @@ LIC_FILES_CHKSUM = " \
> >  "
> >
> >  inherit pypi setuptools3
> > -SRC_URI[sha256sum] = "4f1dfcd7997b31ef8f53ec82781ff434a28bf71d9102ddde14d076adcfc78c99"
> > +SRC_URI[sha256sum] = "535fb4e44d0236893d5cf1263a0f706f1160b689a7ab962e9da8a9ce4050b780"
> >
> >  CVE_PRODUCT += "google:protobuf protobuf:protobuf google-protobuf protobuf-python"
> >
> >
> >
> >
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#116270): https://lists.openembedded.org/g/openembedded-devel/message/116270
> Mute This Topic: https://lists.openembedded.org/mt/111893783/1997914
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


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

end of thread, other threads:[~2025-03-25 21:58 UTC | newest]

Thread overview: 47+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-25  9:01 [oe] [meta-oe] [PATCH 01/45] abseil-cpp: upgrade 20250127.0 -> 20250127.1 wangmy
2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 02/45] adw-gtk3: upgrade 5.6 -> 5.7 wangmy
2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 03/45] ddrescue: upgrade 1.29 -> 1.29.1 wangmy
2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 04/45] flashrom: upgrade 1.4.0 -> 1.5.1 wangmy
2025-03-25  9:01 ` [oe] [meta-gnome] [PATCH 05/45] gnome-font-viewer: upgrade 47.0 -> 48.0 wangmy
2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 06/45] icewm: upgrade 3.7.1 -> 3.7.2 wangmy
2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 07/45] imlib2: upgrade 1.12.3 -> 1.12.4 wangmy
2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 08/45] jwt-cpp: upgrade 0.7.0 -> 0.7.1 wangmy
2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 09/45] libcbor: upgrade 0.11.0 -> 0.12.0 wangmy
2025-03-25  9:01 ` [oe] [meta-networking] [PATCH 10/45] libdaq: upgrade 3.0.18 -> 3.0.19 wangmy
2025-03-25  9:01 ` [oe] [meta-gnome] [PATCH 11/45] libdex: upgrade 0.8.1 -> 0.10.0 wangmy
2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 12/45] libharu: upgrade 2.4.4 -> 2.4.5 wangmy
2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 13/45] libnewt: upgrade 0.52.24 -> 0.52.25 wangmy
2025-03-25  9:01 ` [oe] [meta-gnome] [PATCH 14/45] libpanel: upgrade 1.8.1 -> 1.10.0 wangmy
2025-03-25  9:01 ` [oe] [meta-gnome] [PATCH 15/45] libpeas: upgrade 2.0.5 -> 2.0.7 wangmy
2025-03-25  9:01 ` [oe] [meta-gnome] [PATCH 16/45] libspelling: upgrade 0.4.6 -> 0.4.7 wangmy
2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 17/45] libtinyxml2: upgrade 10.1.0 -> 11.0.0 wangmy
2025-03-25  9:01 ` [oe] [meta-networking] [PATCH 18/45] memcached: upgrade 1.6.37 -> 1.6.38 wangmy
2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 19/45] php: upgrade 8.4.4 -> 8.4.5 wangmy
2025-03-25  9:01 ` [oe] [meta-python] [PATCH 20/45] python3-aiohappyeyeballs: upgrade 2.5.0 -> 2.6.1 wangmy
2025-03-25  9:01 ` [oe] [meta-python] [PATCH 21/45] python3-aiohttp: upgrade 3.11.13 -> 3.11.14 wangmy
2025-03-25  9:01 ` [oe] [meta-python] [PATCH 22/45] python3-bitarray: upgrade 3.1.1 -> 3.2.0 wangmy
2025-03-25  9:01 ` [oe] [meta-python] [PATCH 23/45] python3-coverage: upgrade 7.6.12 -> 7.7.1 wangmy
2025-03-25  9:01 ` [oe] [meta-python] [PATCH 24/45] python3-dbus-fast: upgrade 2.39.3 -> 2.39.6 wangmy
2025-03-25  9:01 ` [oe] [meta-python] [PATCH 25/45] python3-ecdsa: upgrade 0.19.0 -> 0.19.1 wangmy
2025-03-25  9:01 ` [oe] [meta-python] [PATCH 26/45] python3-grpcio-channelz: upgrade 1.70.0 -> 1.71.0 wangmy
2025-03-25  9:01 ` [oe] [meta-python] [PATCH 27/45] python3-grpcio-reflection: " wangmy
2025-03-25  9:01 ` [oe] [meta-python] [PATCH 28/45] python3-grpcio-tools: " wangmy
2025-03-25  9:01 ` [oe] [meta-python] [PATCH 29/45] python3-grpcio: " wangmy
2025-03-25  9:01 ` [oe] [meta-python] [PATCH 30/45] python3-huey: upgrade 2.5.2 -> 2.5.3 wangmy
2025-03-25  9:01 ` [oe] [meta-python] [PATCH 31/45] python3-inline-snapshot: upgrade 0.20.5 -> 0.20.8 wangmy
2025-03-25  9:01 ` [oe] [meta-python] [PATCH 32/45] python3-platformdirs: upgrade 4.3.6 -> 4.3.7 wangmy
2025-03-25  9:01 ` [oe] [meta-python] [PATCH 33/45] python3-protobuf: upgrade 5.29.4 -> 6.30.1 wangmy
2025-03-25 10:43   ` Gyorgy Sarvari
2025-03-25 21:57     ` Khem Raj
2025-03-25  9:01 ` [oe] [meta-python] [PATCH 34/45] python3-psycopg: upgrade 3.2.5 -> 3.2.6 wangmy
2025-03-25  9:01 ` [oe] [meta-python] [PATCH 35/45] python3-pymisp: upgrade 2.5.7.1 -> 2.5.8.1 wangmy
2025-03-25  9:01 ` [oe] [meta-python] [PATCH 36/45] python3-pymongo: upgrade 4.11.2 -> 4.11.3 wangmy
2025-03-25  9:01 ` [oe] [meta-python] [PATCH 37/45] python3-responses: upgrade 0.25.6 -> 0.25.7 wangmy
2025-03-25  9:01 ` [oe] [meta-python] [PATCH 38/45] python3-scikit-build-core: upgrade 0.11.0 -> 0.11.1 wangmy
2025-03-25  9:01 ` [oe] [meta-python] [PATCH 39/45] python3-sqlalchemy: upgrade 2.0.38 -> 2.0.39 wangmy
2025-03-25  9:01 ` [oe] [meta-python] [PATCH 40/45] python3-web3: upgrade 7.8.0 -> 7.9.0 wangmy
2025-03-25  9:01 ` [oe] [meta-python] [PATCH 41/45] python3-xmlschema: upgrade 3.4.3 -> 3.4.5 wangmy
2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 42/45] qpdf: upgrade 11.10.1 -> 12.0.0 wangmy
2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 43/45] rasdaemon: upgrade 0.8.2 -> 0.8.3 wangmy
2025-03-25  9:01 ` [oe] [meta-oe] [PATCH 44/45] thingsboard-gateway: upgrade 3.6.3 -> 3.7.2 wangmy
2025-03-25  9:01 ` [oe] [meta-gnome] [PATCH 45/45] xdg-desktop-portal-gtk: upgrade 1.15.2 -> 1.15.3 wangmy

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.