openembedded-devel.lists.openembedded.org archive mirror
 help / color / mirror / Atom feed
* [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2
@ 2024-05-02 14:48 wangmy
  2024-05-02 14:48 ` [oe] [meta-oe] [PATCH 02/30] iniparser: upgrade 4.1 -> 4.2 wangmy
                   ` (28 more replies)
  0 siblings, 29 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

0001-fping-Initialize-msghdr-struct-in-a-portable-way.patch
removed since it's included in 5.2

Changelog:
============
-New option -X / --fast-reachable to exit immediately once N hosts have been found
-New option -k / -fwmark to set Linux fwmark mask
-Always output fatal error messages
-Fallback to SO_TIMESTAMP if SO_TIMESTAMPNS is not available
-Fix "not enough sequence numbers available" error on BSD-like systems
-Fix running in unprivileged mode
-Fix build issue for NetBSD/alpha
-Fix build issue for OpenBSD/alpha
-Fix build warning for long int usage
-Fix build error with musl libc
-Fix to guard against division by zero
-Decouple -a/-u effects from -c
-Added contrib/Dockerfile
-Remove host from Netdata chart titles
-Add additional tests
-Update github action os images
-Fix Azure pipeline tests
-Various autoconf fixes
-Extended configure script with --enable-debug and output cpu usage
-Documentation: Update Netdata website link
-Documentation: fix description of --file option
-Documentation: improve exit status description
-Documentation: move description of -i MSEC
-Documentation: improve help output for options -c and -C

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...lize-msghdr-struct-in-a-portable-way.patch | 42 -------------------
 .../fping/{fping_5.1.bb => fping_5.2.bb}      |  6 +--
 2 files changed, 2 insertions(+), 46 deletions(-)
 delete mode 100644 meta-networking/recipes-support/fping/fping/0001-fping-Initialize-msghdr-struct-in-a-portable-way.patch
 rename meta-networking/recipes-support/fping/{fping_5.1.bb => fping_5.2.bb} (80%)

diff --git a/meta-networking/recipes-support/fping/fping/0001-fping-Initialize-msghdr-struct-in-a-portable-way.patch b/meta-networking/recipes-support/fping/fping/0001-fping-Initialize-msghdr-struct-in-a-portable-way.patch
deleted file mode 100644
index 9965d2ec5..000000000
--- a/meta-networking/recipes-support/fping/fping/0001-fping-Initialize-msghdr-struct-in-a-portable-way.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From c3f476a763412be51b4df0e748af04d4150a2c71 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Mon, 29 Aug 2022 15:41:51 -0700
-Subject: [PATCH] fping: Initialize msghdr struct in a portable way
-
-Initializing the structure assuming glibc layout results in
-compile errors on musl, therefore do partial intialization and then
-assigning the members individually.
-
-Upstream-Status: Submitted [https://github.com/schweikert/fping/pull/263]
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- src/fping.c | 16 +++++++---------
- 1 file changed, 7 insertions(+), 9 deletions(-)
-
-diff --git a/src/fping.c b/src/fping.c
-index e26b216..81a61d9 100644
---- a/src/fping.c
-+++ b/src/fping.c
-@@ -1951,15 +1951,13 @@ int receive_packet(int64_t wait_time,
-         reply_buf,
-         reply_buf_len
-     };
--    struct msghdr recv_msghdr = {
--        reply_src_addr,
--        reply_src_addr_len,
--        &msg_iov,
--        1,
--        &msg_control,
--        sizeof(msg_control),
--        0
--    };
-+    struct msghdr recv_msghdr = {0};
-+    recv_msghdr.msg_name = reply_src_addr;
-+    recv_msghdr.msg_namelen = reply_src_addr_len;
-+    recv_msghdr.msg_iov = &msg_iov;
-+    recv_msghdr.msg_iovlen = 1;
-+    recv_msghdr.msg_control = &msg_control;
-+    recv_msghdr.msg_controllen = sizeof(msg_control);
- #if HAVE_SO_TIMESTAMPNS
-     struct cmsghdr* cmsg;
- #endif
diff --git a/meta-networking/recipes-support/fping/fping_5.1.bb b/meta-networking/recipes-support/fping/fping_5.2.bb
similarity index 80%
rename from meta-networking/recipes-support/fping/fping_5.1.bb
rename to meta-networking/recipes-support/fping/fping_5.2.bb
index 0682eafa0..f75b6441b 100644
--- a/meta-networking/recipes-support/fping/fping_5.1.bb
+++ b/meta-networking/recipes-support/fping/fping_5.2.bb
@@ -14,10 +14,8 @@ LICENSE = "fping"
 NO_GENERIC_LICENSE[fping] = "COPYING"
 LIC_FILES_CHKSUM = "file://COPYING;md5=c6170fbadddfcd74f011515291d96901"
 
-SRC_URI = "http://www.fping.org/dist/fping-${PV}.tar.gz \
-           file://0001-fping-Initialize-msghdr-struct-in-a-portable-way.patch \
-           "
-SRC_URI[sha256sum] = "1ee5268c063d76646af2b4426052e7d81a42b657e6a77d8e7d3d2e60fd7409fe"
+SRC_URI = "http://www.fping.org/dist/fping-${PV}.tar.gz"
+SRC_URI[sha256sum] = "a7692d10d73fb0bb76e1f7459aa7f19bbcdbfc5adbedef02f468974b18b0e42f"
 
 S = "${WORKDIR}/fping-${PV}"
 
-- 
2.34.1



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

* [oe] [meta-oe] [PATCH 02/30] iniparser: upgrade 4.1 -> 4.2
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
@ 2024-05-02 14:48 ` wangmy
  2024-05-02 14:48 ` [oe] [meta-gnome] [PATCH 03/30] libgedit-gtksourceview: upgrade 299.1.0 -> 299.2.1 wangmy
                   ` (27 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

License-Update: Copyright year updated to 2024.

CVE-2023-33461.patch
removed since it's included in 4.2

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../iniparser/iniparser/CVE-2023-33461.patch  | 48 -------------------
 .../{iniparser_4.1.bb => iniparser_4.2.bb}    |  7 ++-
 2 files changed, 3 insertions(+), 52 deletions(-)
 delete mode 100644 meta-oe/recipes-support/iniparser/iniparser/CVE-2023-33461.patch
 rename meta-oe/recipes-support/iniparser/{iniparser_4.1.bb => iniparser_4.2.bb} (76%)

diff --git a/meta-oe/recipes-support/iniparser/iniparser/CVE-2023-33461.patch b/meta-oe/recipes-support/iniparser/iniparser/CVE-2023-33461.patch
deleted file mode 100644
index db5fb06aa..000000000
--- a/meta-oe/recipes-support/iniparser/iniparser/CVE-2023-33461.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-CVE: CVE-2023-33461
-Upstream-Status: Backport [https://github.com/ndevilla/iniparser/pull/146/commits/ace9871f65d11b5d73f0b9ee8cf5d2807439442d]
-Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com>
-
-
-From ace9871f65d11b5d73f0b9ee8cf5d2807439442d Mon Sep 17 00:00:00 2001
-From: Antonio <antoniolrt@gmail.com>
-Date: Fri, 2 Jun 2023 15:03:10 -0300
-Subject: [PATCH] Handle null return from iniparser_getstring
-
-Fix handling of NULL returns from iniparser_getstring in
-iniparser_getboolean, iniparser_getlongint and iniparser_getdouble,
-avoiding a crash.
----
- src/iniparser.c | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/src/iniparser.c b/src/iniparser.c
-index f1d1658..dbceb20 100644
---- a/src/iniparser.c
-+++ b/src/iniparser.c
-@@ -456,7 +456,7 @@ long int iniparser_getlongint(const dictionary * d, const char * key, long int n
-     const char * str ;
- 
-     str = iniparser_getstring(d, key, INI_INVALID_KEY);
--    if (str==INI_INVALID_KEY) return notfound ;
-+    if (str==NULL || str==INI_INVALID_KEY) return notfound ;
-     return strtol(str, NULL, 0);
- }
- 
-@@ -511,7 +511,7 @@ double iniparser_getdouble(const dictionary * d, const char * key, double notfou
-     const char * str ;
- 
-     str = iniparser_getstring(d, key, INI_INVALID_KEY);
--    if (str==INI_INVALID_KEY) return notfound ;
-+    if (str==NULL || str==INI_INVALID_KEY) return notfound ;
-     return atof(str);
- }
- 
-@@ -553,7 +553,7 @@ int iniparser_getboolean(const dictionary * d, const char * key, int notfound)
-     const char * c ;
- 
-     c = iniparser_getstring(d, key, INI_INVALID_KEY);
--    if (c==INI_INVALID_KEY) return notfound ;
-+    if (c==NULL || c==INI_INVALID_KEY) return notfound ;
-     if (c[0]=='y' || c[0]=='Y' || c[0]=='1' || c[0]=='t' || c[0]=='T') {
-         ret = 1 ;
-     } else if (c[0]=='n' || c[0]=='N' || c[0]=='0' || c[0]=='f' || c[0]=='F') {
diff --git a/meta-oe/recipes-support/iniparser/iniparser_4.1.bb b/meta-oe/recipes-support/iniparser/iniparser_4.2.bb
similarity index 76%
rename from meta-oe/recipes-support/iniparser/iniparser_4.1.bb
rename to meta-oe/recipes-support/iniparser/iniparser_4.2.bb
index c80668d27..d44772590 100644
--- a/meta-oe/recipes-support/iniparser/iniparser_4.1.bb
+++ b/meta-oe/recipes-support/iniparser/iniparser_4.2.bb
@@ -2,7 +2,7 @@ SUMMARY = "The iniParser library is a simple C library offering INI file parsing
 SECTION = "libs"
 HOMEPAGE = "https://github.com/ndevilla/iniparser"
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=e02baf71c76e0650e667d7da133379ac"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=8474d3b745f77e203f1fc82fb0bb7678"
 
 DEPENDS = "doxygen-native"
 
@@ -10,11 +10,10 @@ PV .= "+git"
 
 SRC_URI = "git://github.com/ndevilla/iniparser.git;protocol=https;branch=master \
            file://0001-iniparser.pc-Make-libpath-a-variable.patch \
-	   file://Add-CMake-support.patch \
-           file://CVE-2023-33461.patch \
+           file://Add-CMake-support.patch \
 "
 
-SRCREV= "deb85ad4936d4ca32cc2260ce43323d47936410d"
+SRCREV = "9f5a6da1c245b44f49a46212ec0d81ffb1f821aa"
 
 S = "${WORKDIR}/git"
 
-- 
2.34.1



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

* [oe] [meta-gnome] [PATCH 03/30] libgedit-gtksourceview: upgrade 299.1.0 -> 299.2.1
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
  2024-05-02 14:48 ` [oe] [meta-oe] [PATCH 02/30] iniparser: upgrade 4.1 -> 4.2 wangmy
@ 2024-05-02 14:48 ` wangmy
  2024-05-02 14:48 ` [oe] [meta-perl] [PATCH 04/30] libmodule-build-tiny-perl: upgrade 0.047 -> 0.048 wangmy
                   ` (26 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...ksourceview_299.1.0.bb => libgedit-gtksourceview_299.2.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-gnome/recipes-gnome/gedit/{libgedit-gtksourceview_299.1.0.bb => libgedit-gtksourceview_299.2.1.bb} (93%)

diff --git a/meta-gnome/recipes-gnome/gedit/libgedit-gtksourceview_299.1.0.bb b/meta-gnome/recipes-gnome/gedit/libgedit-gtksourceview_299.2.1.bb
similarity index 93%
rename from meta-gnome/recipes-gnome/gedit/libgedit-gtksourceview_299.1.0.bb
rename to meta-gnome/recipes-gnome/gedit/libgedit-gtksourceview_299.2.1.bb
index 0ebc22acb..d66ce6080 100644
--- a/meta-gnome/recipes-gnome/gedit/libgedit-gtksourceview_299.1.0.bb
+++ b/meta-gnome/recipes-gnome/gedit/libgedit-gtksourceview_299.2.1.bb
@@ -9,7 +9,7 @@ inherit meson pkgconfig gobject-introspection features_check gtk-doc
 
 SRC_URI = "git://github.com/gedit-technology/libgedit-gtksourceview.git;protocol=https;branch=main"
 S = "${WORKDIR}/git"
-SRCREV = "b271a625ca057cc3fa7d5ac83285c5d4e038202e"
+SRCREV = "eaafc892d033713c7c823d8ad602061e456b3c88"
 
 ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}"
 
-- 
2.34.1



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

* [oe] [meta-perl] [PATCH 04/30] libmodule-build-tiny-perl: upgrade 0.047 -> 0.048
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
  2024-05-02 14:48 ` [oe] [meta-oe] [PATCH 02/30] iniparser: upgrade 4.1 -> 4.2 wangmy
  2024-05-02 14:48 ` [oe] [meta-gnome] [PATCH 03/30] libgedit-gtksourceview: upgrade 299.1.0 -> 299.2.1 wangmy
@ 2024-05-02 14:48 ` wangmy
  2024-05-02 14:48 ` [oe] [meta-oe] [PATCH 05/30] libmxml: upgrade 3.3.1 -> 4.0.3 wangmy
                   ` (25 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
 - Implement dynamic prerequisites

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...ld-tiny-perl_0.047.bb => libmodule-build-tiny-perl_0.048.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-perl/recipes-perl/libmodule/{libmodule-build-tiny-perl_0.047.bb => libmodule-build-tiny-perl_0.048.bb} (95%)

diff --git a/meta-perl/recipes-perl/libmodule/libmodule-build-tiny-perl_0.047.bb b/meta-perl/recipes-perl/libmodule/libmodule-build-tiny-perl_0.048.bb
similarity index 95%
rename from meta-perl/recipes-perl/libmodule/libmodule-build-tiny-perl_0.047.bb
rename to meta-perl/recipes-perl/libmodule/libmodule-build-tiny-perl_0.048.bb
index db765b88f..860185007 100644
--- a/meta-perl/recipes-perl/libmodule/libmodule-build-tiny-perl_0.047.bb
+++ b/meta-perl/recipes-perl/libmodule/libmodule-build-tiny-perl_0.048.bb
@@ -15,7 +15,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=2b9e8b5e2bd19fcc97ac84b78a271a64"
 DEPENDS = "libextutils-config-perl-native libextutils-helpers-perl-native libextutils-installpaths-perl-native"
 
 SRC_URI = "${CPAN_MIRROR}/authors/id/L/LE/LEONT/Module-Build-Tiny-${PV}.tar.gz"
-SRC_URI[sha256sum] = "71260e9421b93c33dd1b3e7d0cf15f759c0ca7c753fa840279ec3be70f8f8c9d"
+SRC_URI[sha256sum] = "79a73e506fb7badabdf79137a45c6c5027daaf6f9ac3dcfb9d4ffcce92eb36bd"
 
 S = "${WORKDIR}/Module-Build-Tiny-${PV}"
 
-- 
2.34.1



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

* [oe] [meta-oe] [PATCH 05/30] libmxml: upgrade 3.3.1 -> 4.0.3
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
                   ` (2 preceding siblings ...)
  2024-05-02 14:48 ` [oe] [meta-perl] [PATCH 04/30] libmodule-build-tiny-perl: upgrade 0.047 -> 0.048 wangmy
@ 2024-05-02 14:48 ` wangmy
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 06/30] python3-aiohttp: upgrade 3.9.4 -> 3.9.5 wangmy
                   ` (24 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
============
-Now default the DSOFLAGS value to LDFLAGS in the configure script
-Now install the man page as "mxml4" to allow parallel installation of Mini-XML 4.x and 3.x
-Added MXML_ALLOC_SIZE define to control the allocation increment for attributes and indices
-Fixed mxmlSetDeclarationf implementation
-Fixed an issue with GNU make and parallel builds
-Fixed missing "docdir" definition in makefile
-Fixed missing CPPFLAGS, OPTIM, and WARNINGS in CFLAGS in makefile.
-Fixed configure script issues.
-Now require C99 support
-Now install as "libmxml4" to support installing both Mini-XML 3.x and 4.x at the same time (use --disable-libmxml4-prefix configure option to disable)
-Added mxmlLoadIO and mxmlSaveIO functions to load and save XML via callbacks
-Added new MXML_TYPE_CDATA, MXML_TYPE_COMMENT, MXML_TYPE_DECLARATION, and MXML_TYPE_DIRECTIVE node types
-Added mxmlLoadFilename and mxmlSaveFilename functions
-Added AFL fuzzing support
-Added mxmlOptions APIs to replace the long list of callbacks and options for each of the load and save functions
-Added string copy/free callbacks to support alternate memory management of strings.
-Renamed mxml_type_t enumerations to MXML_TYPE_xxx
-Updated APIs to use bool type instead of an int representing a boolean value.
-Updated the SAX callback to return a bool value to control processing
-Updated the load and save callbacks to include a context pointer
-Fixed some warnings
-Fixed real number support in non-English locales
-Updated the autoconf config.guess and config.sub scripts to support cross compilation for newer platforms

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

diff --git a/meta-oe/recipes-support/libmxml/libmxml_3.3.1.bb b/meta-oe/recipes-support/libmxml/libmxml_4.0.3.bb
similarity index 95%
rename from meta-oe/recipes-support/libmxml/libmxml_3.3.1.bb
rename to meta-oe/recipes-support/libmxml/libmxml_4.0.3.bb
index 38e270c03..54582e704 100644
--- a/meta-oe/recipes-support/libmxml/libmxml_3.3.1.bb
+++ b/meta-oe/recipes-support/libmxml/libmxml_4.0.3.bb
@@ -5,7 +5,7 @@ HOMEPAGE = "https://www.msweet.org/mxml/"
 BUGTRACKER = "https://github.com/michaelrsweet/mxml/issues"
 
 SRC_URI = "git://github.com/michaelrsweet/mxml.git;branch=master;protocol=https"
-SRCREV = "fd47c7d115191c8a6bce2c781ffee41e179530f2"
+SRCREV = "804c4f4d922e4ca240ce2cad3ec7bc5d00c08691"
 S = "${WORKDIR}/git"
 
 # Package does not support out of tree builds.
-- 
2.34.1



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

* [oe] [meta-python] [PATCH 06/30] python3-aiohttp: upgrade 3.9.4 -> 3.9.5
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
                   ` (3 preceding siblings ...)
  2024-05-02 14:48 ` [oe] [meta-oe] [PATCH 05/30] libmxml: upgrade 3.3.1 -> 4.0.3 wangmy
@ 2024-05-02 14:48 ` wangmy
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 07/30] python3-bitstring: upgrade 4.1.4 -> 4.2.1 wangmy
                   ` (23 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
==========
- Fixed "Unclosed client session" when initialization of
  :py:class:~aiohttp.ClientSession fails -- by :user:NewGlad.
- Fixed regression (from :pr:8280) with adding Content-Disposition to the form-data
  part after appending to writer -- by :user:Dreamsorcerer/:user:Olegt0rr.
- Added default Content-Disposition in multipart/form-data responses to avoid broken
  form-data responses -- by :user:Dreamsorcerer.

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

diff --git a/meta-python/recipes-devtools/python/python3-aiohttp_3.9.4.bb b/meta-python/recipes-devtools/python/python3-aiohttp_3.9.5.bb
similarity index 86%
rename from meta-python/recipes-devtools/python/python3-aiohttp_3.9.4.bb
rename to meta-python/recipes-devtools/python/python3-aiohttp_3.9.5.bb
index 1cfed0d7a..57adb1eeb 100644
--- a/meta-python/recipes-devtools/python/python3-aiohttp_3.9.4.bb
+++ b/meta-python/recipes-devtools/python/python3-aiohttp_3.9.5.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] = "6ff71ede6d9a5a58cfb7b6fffc83ab5d4a63138276c771ac91ceaaddf5459644"
+SRC_URI[sha256sum] = "edea7d15772ceeb29db4aff55e482d4bcfb6ae160ce144f2682de02f6d693551"
 
 PYPI_PACKAGE = "aiohttp"
 inherit python_setuptools_build_meta pypi
-- 
2.34.1



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

* [oe] [meta-python] [PATCH 07/30] python3-bitstring: upgrade 4.1.4 -> 4.2.1
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
                   ` (4 preceding siblings ...)
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 06/30] python3-aiohttp: upgrade 3.9.4 -> 3.9.5 wangmy
@ 2024-05-02 14:48 ` wangmy
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 08/30] python3-freezegun: upgrade 1.4.0 -> 1.5.0 wangmy
                   ` (22 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

License-UPdate:
 format of LICENSE updated to "ASCII text, with CRLF line terminators"

Changelog:
==========
- Module crashes on import with 32-bit Python.
- Lists of integers not converted to bytes when using the bytes constructor.
- Empty comma separated tokens not handled correctly.
- Crash on import when docstrings not present due to optimize flag.
- Dropped support for Python 3.7. Minimum version is now 3.8.
- For tokens that use a non-numeric length, a ':' is now compulsory rather than
  recommended. For example use 'uint:foo' instead of 'uintfoo'.
- The previous e4m3float and e5m2float formats have become the slightly modified
  p4binary8 and p3binary8 formats.
- Some parameters are now enforced as positional only, such as auto in constructors.

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

diff --git a/meta-python/recipes-devtools/python/python3-bitstring_4.1.4.bb b/meta-python/recipes-devtools/python/python3-bitstring_4.2.1.bb
similarity index 68%
rename from meta-python/recipes-devtools/python/python3-bitstring_4.1.4.bb
rename to meta-python/recipes-devtools/python/python3-bitstring_4.2.1.bb
index 0777b6cff..8485e2e8f 100644
--- a/meta-python/recipes-devtools/python/python3-bitstring_4.1.4.bb
+++ b/meta-python/recipes-devtools/python/python3-bitstring_4.2.1.bb
@@ -1,9 +1,9 @@
 SUMMARY = "Simple construction, analysis and modification of binary data."
 HOMEPAGE = "https://github.com/scott-griffiths/bitstring"
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=661f450e2c0aef39b4b15597333444a7"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=f7f2fd3f1cd52b5ccd39d76fb3568d3f"
 
-SRC_URI[sha256sum] = "94f3f1c45383ebe8fd4a359424ffeb75c2f290760ae8fcac421b44f89ac85213"
+SRC_URI[sha256sum] = "8abb5a661588c764bacf1a23d64c7bb57517d2841e3e6f54fb8c057119e0540d"
 
 PYPI_PACKAGE = "bitstring"
 
-- 
2.34.1



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

* [oe] [meta-python] [PATCH 08/30] python3-freezegun: upgrade 1.4.0 -> 1.5.0
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
                   ` (5 preceding siblings ...)
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 07/30] python3-bitstring: upgrade 4.1.4 -> 4.2.1 wangmy
@ 2024-05-02 14:48 ` wangmy
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 09/30] python3-google-api-python-client: upgrade 2.125.0 -> 2.127.0 wangmy
                   ` (21 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
============
* The default ignore list now contains the 'queue'-package
* Added a missing 'move_to'-function when calling 'freeze_time(tick=True)'
* Fixes a rounding error in 'time.time_ns()'
* Fixed a bug where the default ignore list could not be empty ('configure(default_ignore_list=[])')
* All 'tick()' methods now return the new datetime (instead of None)
* Type improvements

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

diff --git a/meta-python/recipes-devtools/python/python3-freezegun_1.4.0.bb b/meta-python/recipes-devtools/python/python3-freezegun_1.5.0.bb
similarity index 88%
rename from meta-python/recipes-devtools/python/python3-freezegun_1.4.0.bb
rename to meta-python/recipes-devtools/python/python3-freezegun_1.5.0.bb
index 15c0bf06b..b9cbedbf7 100644
--- a/meta-python/recipes-devtools/python/python3-freezegun_1.4.0.bb
+++ b/meta-python/recipes-devtools/python/python3-freezegun_1.5.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/spulec/freezegun"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=acf1d209bb6eddae4cbe6ffd6a0144fe"
 
-SRC_URI[sha256sum] = "10939b0ba0ff5adaecf3b06a5c2f73071d9678e507c5eaedb23c761d56ac774b"
+SRC_URI[sha256sum] = "200a64359b363aa3653d8aac289584078386c7c3da77339d257e46a01fb5c77c"
 
 inherit pypi python_setuptools_build_meta ptest
 
-- 
2.34.1



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

* [oe] [meta-python] [PATCH 09/30] python3-google-api-python-client: upgrade 2.125.0 -> 2.127.0
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
                   ` (6 preceding siblings ...)
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 08/30] python3-freezegun: upgrade 1.4.0 -> 1.5.0 wangmy
@ 2024-05-02 14:48 ` wangmy
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 10/30] python3-imageio: upgrade 2.34.0 -> 2.34.1 wangmy
                   ` (20 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
 https://github.com/googleapis/google-api-python-client/releases/tag/v2.127.0

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

diff --git a/meta-python/recipes-devtools/python/python3-google-api-python-client_2.125.0.bb b/meta-python/recipes-devtools/python/python3-google-api-python-client_2.127.0.bb
similarity index 85%
rename from meta-python/recipes-devtools/python/python3-google-api-python-client_2.125.0.bb
rename to meta-python/recipes-devtools/python/python3-google-api-python-client_2.127.0.bb
index 8abe4699e..4c9bbc6cf 100644
--- a/meta-python/recipes-devtools/python/python3-google-api-python-client_2.125.0.bb
+++ b/meta-python/recipes-devtools/python/python3-google-api-python-client_2.127.0.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "https://github.com/googleapis/google-api-python-client"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
 
-SRC_URI[sha256sum] = "51a0385cff65ec135106e8be60ee7112557396dde5f44113ae23912baddda143"
+SRC_URI[sha256sum] = "bbb51b0fbccdf40e536c26341e372d7800f09afebb53103bbcc94e08f14b523b"
 
 inherit pypi setuptools3
 
-- 
2.34.1



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

* [oe] [meta-python] [PATCH 10/30] python3-imageio: upgrade 2.34.0 -> 2.34.1
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
                   ` (7 preceding siblings ...)
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 09/30] python3-google-api-python-client: upgrade 2.125.0 -> 2.127.0 wangmy
@ 2024-05-02 14:48 ` wangmy
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 11/30] python3-ipython: upgrade 8.23.0 -> 8.24.0 wangmy
                   ` (19 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
===========
- Fix bug of #1068 that getattr cannot get attribute with index directly
- Update pyav.py
- Trivial typo fixes

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

diff --git a/meta-python/recipes-devtools/python/python3-imageio_2.34.0.bb b/meta-python/recipes-devtools/python/python3-imageio_2.34.1.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python3-imageio_2.34.0.bb
rename to meta-python/recipes-devtools/python/python3-imageio_2.34.1.bb
index e38d69440..45772ef8e 100644
--- a/meta-python/recipes-devtools/python/python3-imageio_2.34.0.bb
+++ b/meta-python/recipes-devtools/python/python3-imageio_2.34.1.bb
@@ -5,7 +5,7 @@ SECTION = "devel/python"
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=24cb9a367a9e641b459a01c4d15256ba"
 
-SRC_URI[sha256sum] = "ae9732e10acf807a22c389aef193f42215718e16bd06eed0c5bb57e1034a4d53"
+SRC_URI[sha256sum] = "f13eb76e4922f936ac4a7fec77ce8a783e63b93543d4ea3e40793a6cabd9ac7d"
 
 inherit pypi setuptools3
 
-- 
2.34.1



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

* [oe] [meta-python] [PATCH 11/30] python3-ipython: upgrade 8.23.0 -> 8.24.0
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
                   ` (8 preceding siblings ...)
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 10/30] python3-imageio: upgrade 2.34.0 -> 2.34.1 wangmy
@ 2024-05-02 14:48 ` wangmy
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 12/30] python3-mypy: upgrade 1.9.0 -> 1.10.0 wangmy
                   ` (18 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
===========
- pytest 8 compatibility
- typing-extension now needs 4.6 or newer. It was already the case, but not explicated.
- Attempt to speed running code under debugger in some cases.
- Multiple fixes to documentation for ipyparallel, simple_prompt and emacs
- Maintenance and cleanup of debugger

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

diff --git a/meta-python/recipes-devtools/python/python3-ipython_8.23.0.bb b/meta-python/recipes-devtools/python/python3-ipython_8.24.0.bb
similarity index 87%
rename from meta-python/recipes-devtools/python/python3-ipython_8.23.0.bb
rename to meta-python/recipes-devtools/python/python3-ipython_8.24.0.bb
index ebfd14722..23060f3d6 100644
--- a/meta-python/recipes-devtools/python/python3-ipython_8.23.0.bb
+++ b/meta-python/recipes-devtools/python/python3-ipython_8.24.0.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://COPYING.rst;md5=59b20262b8663cdd094005bddf47af5f"
 
 PYPI_PACKAGE = "ipython"
 
-SRC_URI[sha256sum] = "7468edaf4f6de3e1b912e57f66c241e6fd3c7099f2ec2136e239e142e800274d"
+SRC_URI[sha256sum] = "010db3f8a728a578bb641fdd06c063b9fb8e96a9464c63aec6310fbcb5e80501"
 
 RDEPENDS:${PN} = "\
     python3-setuptools \
-- 
2.34.1



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

* [oe] [meta-python] [PATCH 12/30] python3-mypy: upgrade 1.9.0 -> 1.10.0
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
                   ` (9 preceding siblings ...)
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 11/30] python3-ipython: upgrade 8.23.0 -> 8.24.0 wangmy
@ 2024-05-02 14:48 ` wangmy
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 13/30] python3-pdm: upgrade 2.14.0 -> 2.15.1 wangmy
                   ` (17 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
============
- Fix incorrect inferred type when accessing descriptor on union type
- Fix crash when expanding invalid Unpack in a Callable alias
- Fix false positive when string formatting with string enum
- Narrow individual items when matching a tuple to a sequence pattern
- Fix false positive from type variable within TypeGuard or TypeIs
- Improve yield from inference for unions of generators
- Fix emulating hash method logic in attrs classes
- Add reverted typeshed commit that uses ParamSpec for functools.wraps
- Fix type narrowing for types.EllipsisType
- Fix single item enum match type exhaustion
- Improve type inference with empty collections
- Fix override checking for decorated property
- Fix narrowing on match with function subject
- Allow +N within Literal[...]
- Experimental: Support TypedDict within type[...]
- Experimtental: Fix issue with TypedDict with optional keys in type[...]

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

diff --git a/meta-python/recipes-devtools/python/python3-mypy_1.9.0.bb b/meta-python/recipes-devtools/python/python3-mypy_1.10.0.bb
similarity index 86%
rename from meta-python/recipes-devtools/python/python3-mypy_1.9.0.bb
rename to meta-python/recipes-devtools/python/python3-mypy_1.10.0.bb
index e51264f8a..534ff9066 100644
--- a/meta-python/recipes-devtools/python/python3-mypy_1.9.0.bb
+++ b/meta-python/recipes-devtools/python/python3-mypy_1.10.0.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=8d62fd8f8648cb018e52857347e340b9"
 
 inherit pypi python_setuptools_build_meta
 
-SRC_URI[sha256sum] = "3cc5da0127e6a478cddd906068496a97a7618a21ce9b54bde5bf7e539c7af974"
+SRC_URI[sha256sum] = "3d087fcbec056c4ee34974da493a826ce316947485cef3901f511848e687c131"
 
 BBCLASSEXTEND = "native"
 
-- 
2.34.1



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

* [oe] [meta-python] [PATCH 13/30] python3-pdm: upgrade 2.14.0 -> 2.15.1
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
                   ` (10 preceding siblings ...)
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 12/30] python3-mypy: upgrade 1.9.0 -> 1.10.0 wangmy
@ 2024-05-02 14:48 ` wangmy
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 14/30] python3-platformdirs: upgrade 4.2.0 -> 4.2.1 wangmy
                   ` (16 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
===========
- Disable check update in zsh completion script.
- Fixes cached packages metadata files (.referrers) collisions on sync when
  using a venv with symlink cache method.
- Don't create project and virtualenv when running pdm python install.
- Clean up the python installation directory if a previous download was
  unsuccessful.
- Don't cache editable installations.
- Fix a bug that installing in-project plugins with editable local paths
  doesn't work.
- Don't create log directory until it's needed, to fix a PermissionError in
  docker environment.
- Fix recursive script detection on multiple invocations.
- Build docs with object inventory to support cross references from Sphinx
  documentation projects.
- Packages format preferences can now be defined in the project pyproject.toml
  using the no-binary, only-binary and prefer-binary keys of the
  tool.pdm.resolution section.

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

diff --git a/meta-python/recipes-devtools/python/python3-pdm_2.14.0.bb b/meta-python/recipes-devtools/python/python3-pdm_2.15.1.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python3-pdm_2.14.0.bb
rename to meta-python/recipes-devtools/python/python3-pdm_2.15.1.bb
index 011ba5b3d..270850061 100644
--- a/meta-python/recipes-devtools/python/python3-pdm_2.14.0.bb
+++ b/meta-python/recipes-devtools/python/python3-pdm_2.15.1.bb
@@ -4,7 +4,7 @@ LICENSE = "MIT"
 SECTION = "devel/python"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=2eb31a2cc1a758c34b499f287dd04ef2"
 
-SRC_URI[sha256sum] = "7ae6c4b5518085a703e0824ab10cbc3b7246b599ef07b8c4dcb2af1e42859190"
+SRC_URI[sha256sum] = "1c9cd049c1016633a23ef92ec1fc782da8ae0743142ef33faf7d48872f874b39"
 
 inherit pypi python_setuptools_build_meta
 
-- 
2.34.1



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

* [oe] [meta-python] [PATCH 14/30] python3-platformdirs: upgrade 4.2.0 -> 4.2.1
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
                   ` (11 preceding siblings ...)
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 13/30] python3-pdm: upgrade 2.14.0 -> 2.15.1 wangmy
@ 2024-05-02 14:48 ` wangmy
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 15/30] python3-pydantic: upgrade 2.7.0 -> 2.7.1 wangmy
                   ` (15 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
===========
- Switch to ruff for formatting and use codespell and docformatter
- Use hatch over tox
- chore: various minor fixes
- chore: update dead Microsoft's known folders documentation link
- Allow working without ctypes

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

diff --git a/meta-python/recipes-devtools/python/python3-platformdirs_4.2.0.bb b/meta-python/recipes-devtools/python/python3-platformdirs_4.2.1.bb
similarity index 88%
rename from meta-python/recipes-devtools/python/python3-platformdirs_4.2.0.bb
rename to meta-python/recipes-devtools/python/python3-platformdirs_4.2.1.bb
index 19c95b374..5f0aafc93 100644
--- a/meta-python/recipes-devtools/python/python3-platformdirs_4.2.0.bb
+++ b/meta-python/recipes-devtools/python/python3-platformdirs_4.2.1.bb
@@ -7,7 +7,7 @@ SRC_URI += " \
     file://run-ptest \
 "
 
-SRC_URI[sha256sum] = "ef0cc731df711022c174543cb70a9b5bd22e5a9337c8624ef2c2ceb8ddad8768"
+SRC_URI[sha256sum] = "031cd18d4ec63ec53e82dceaac0417d218a6863f7745dfcc9efe7793b7039bdf"
 
 inherit pypi python_hatchling ptest
 
-- 
2.34.1



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

* [oe] [meta-python] [PATCH 15/30] python3-pydantic: upgrade 2.7.0 -> 2.7.1
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
                   ` (12 preceding siblings ...)
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 14/30] python3-platformdirs: upgrade 4.2.0 -> 4.2.1 wangmy
@ 2024-05-02 14:48 ` wangmy
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 16/30] python3-pymodbus: upgrade 3.6.7 -> 3.6.8 wangmy
                   ` (14 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
============
-Bump pydantic-core to v2.18.2
-Ftp and Websocket connection strings support
-Use field description for RootModel schema description when there is no docstring
-Fix validation_alias behavior with model_construct for AliasChoices and AliasPath
-Revert typing.Literal and import it outside the TYPE_CHECKING block
-Fix Secret serialization schema, applicable for unions
-Fix strict application to function-after with use_enum_values
-Address case where model_construct on a class which defines model_post_init fails with AttributeError
-Fix model_json_schema with config types
-Support multiple zeros as an int
-Fix validation of ints with leading unary plus
-Fix interaction between extra != 'ignore' and from_attributes=True
-Handle error from Enum's missing function as ValidationError
-Fix memory leak with Iterable validation

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

diff --git a/meta-python/recipes-devtools/python/python3-pydantic_2.7.0.bb b/meta-python/recipes-devtools/python/python3-pydantic_2.7.1.bb
similarity index 95%
rename from meta-python/recipes-devtools/python/python3-pydantic_2.7.0.bb
rename to meta-python/recipes-devtools/python/python3-pydantic_2.7.1.bb
index 36ad83527..3c1114447 100644
--- a/meta-python/recipes-devtools/python/python3-pydantic_2.7.0.bb
+++ b/meta-python/recipes-devtools/python/python3-pydantic_2.7.1.bb
@@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=09280955509d1c4ca14bae02f21d49a6"
 
 inherit pypi python_hatchling
 
-SRC_URI[sha256sum] = "b5ecdd42262ca2462e2624793551e80911a1e989f462910bb81aef974b4bb383"
+SRC_URI[sha256sum] = "e9dbb5eada8abe4d9ae5f46b9939aead650cd2b68f249bb3a8139dbe125803cc"
 
 DEPENDS += "python3-hatch-fancy-pypi-readme-native"
 
-- 
2.34.1



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

* [oe] [meta-python] [PATCH 16/30] python3-pymodbus: upgrade 3.6.7 -> 3.6.8
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
                   ` (13 preceding siblings ...)
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 15/30] python3-pydantic: upgrade 2.7.0 -> 2.7.1 wangmy
@ 2024-05-02 14:48 ` wangmy
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 17/30] python3-regex: upgrade 2023.04.16 -> 2024.4.28 wangmy
                   ` (13 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
 Allow socket exception response with wrong length

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

diff --git a/meta-python/recipes-devtools/python/python3-pymodbus_3.6.7.bb b/meta-python/recipes-devtools/python/python3-pymodbus_3.6.8.bb
similarity index 90%
rename from meta-python/recipes-devtools/python/python3-pymodbus_3.6.7.bb
rename to meta-python/recipes-devtools/python/python3-pymodbus_3.6.8.bb
index 323377253..b94504f14 100644
--- a/meta-python/recipes-devtools/python/python3-pymodbus_3.6.7.bb
+++ b/meta-python/recipes-devtools/python/python3-pymodbus_3.6.8.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/riptideio/pymodbus/"
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=eba8057aa82c058d2042b4b0a0e9cc63"
 
-SRC_URI[sha256sum] = "e6cefac57f8d0e887ef49a705743787d8f1f005df94bd148e3da43c2599c77f3"
+SRC_URI[sha256sum] = "abb214716b56fc62bc0d5d9d964e2249439341746287e918d175f0e3ee241407"
 
 inherit pypi python_setuptools_build_meta
 
-- 
2.34.1



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

* [oe] [meta-python] [PATCH 17/30] python3-regex: upgrade 2023.04.16 -> 2024.4.28
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
                   ` (14 preceding siblings ...)
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 16/30] python3-pymodbus: upgrade 3.6.7 -> 3.6.8 wangmy
@ 2024-05-02 14:48 ` wangmy
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 18/30] python3-rlp: upgrade 4.0.0 -> 4.0.1 wangmy
                   ` (12 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
==========
- fix bug of VERBOSE/X flag breaks \N escapes

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

diff --git a/meta-python/recipes-devtools/python/python3-regex_2024.4.16.bb b/meta-python/recipes-devtools/python/python3-regex_2024.4.28.bb
similarity index 79%
rename from meta-python/recipes-devtools/python/python3-regex_2024.4.16.bb
rename to meta-python/recipes-devtools/python/python3-regex_2024.4.28.bb
index 18a6f3d65..62c850dcd 100644
--- a/meta-python/recipes-devtools/python/python3-regex_2024.4.16.bb
+++ b/meta-python/recipes-devtools/python/python3-regex_2024.4.28.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=7b5751ddd6b643203c31ff873051d069"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "fa454d26f2e87ad661c4f0c5a5fe4cf6aab1e307d1b94f16ffdfcb089ba685c0"
+SRC_URI[sha256sum] = "83ab366777ea45d58f72593adf35d36ca911ea8bd838483c1823b883a121b0e4"
 
 RDEPENDS:${PN} += " \
 	python3-stringold \
-- 
2.34.1



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

* [oe] [meta-python] [PATCH 18/30] python3-rlp: upgrade 4.0.0 -> 4.0.1
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
                   ` (15 preceding siblings ...)
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 17/30] python3-regex: upgrade 2023.04.16 -> 2024.4.28 wangmy
@ 2024-05-02 14:48 ` wangmy
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 19/30] python3-tox: upgrade 4.14.2 -> 4.15.0 wangmy
                   ` (11 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
 Add python 3.12 support, rust-backend now works with python 3.11 and 3.12

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

diff --git a/meta-python/recipes-devtools/python/python3-rlp_4.0.0.bb b/meta-python/recipes-devtools/python/python3-rlp_4.0.1.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python3-rlp_4.0.0.bb
rename to meta-python/recipes-devtools/python/python3-rlp_4.0.1.bb
index 7df8ac07c..46ca600ea 100644
--- a/meta-python/recipes-devtools/python/python3-rlp_4.0.0.bb
+++ b/meta-python/recipes-devtools/python/python3-rlp_4.0.1.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=00854fa80a84236706b11f47f23e61e7"
 
-SRC_URI[sha256sum] = "61a5541f86e4684ab145cb849a5929d2ced8222930a570b3941cf4af16b72a78"
+SRC_URI[sha256sum] = "bcefb11013dfadf8902642337923bd0c786dc8a27cb4c21da6e154e52869ecb1"
 
 inherit pypi setuptools3
 
-- 
2.34.1



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

* [oe] [meta-python] [PATCH 19/30] python3-tox: upgrade 4.14.2 -> 4.15.0
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
                   ` (16 preceding siblings ...)
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 18/30] python3-rlp: upgrade 4.0.0 -> 4.0.1 wangmy
@ 2024-05-02 14:48 ` wangmy
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 20/30] python3-types-psutil: upgrade 5.9.5.20240316 -> 5.9.5.20240423 wangmy
                   ` (10 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
=============
- Add support for multiple appending override options (-x, -override) on command line
- Add support for inverting exit code success criteria using bang
- Fix issue that the leading character c was dropped from packages in constraints files
- Allow appending to deps with --override testenv.deps+=foo
- Fix non-existing branch rewrite in the documentation to main.
- Update test typing for build 1.2.0, which has an explicit Distribution type
- Fix broken input parsing for --discover flag.
- Rephrase --discover flag's description to avoid confusion between paths and executables.

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

diff --git a/meta-python/recipes-devtools/python/python3-tox_4.14.2.bb b/meta-python/recipes-devtools/python/python3-tox_4.15.0.bb
similarity index 92%
rename from meta-python/recipes-devtools/python/python3-tox_4.14.2.bb
rename to meta-python/recipes-devtools/python/python3-tox_4.15.0.bb
index f451de321..4296738ec 100644
--- a/meta-python/recipes-devtools/python/python3-tox_4.14.2.bb
+++ b/meta-python/recipes-devtools/python/python3-tox_4.15.0.bb
@@ -6,7 +6,7 @@ HOMEPAGE = "http://tox.readthedocs.org/"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=11610a9d8fd95649cf8159be12b98cb7"
 
-SRC_URI[sha256sum] = "0defb44f6dafd911b61788325741cc6b2e12ea71f987ac025ad4d649f1f1a104"
+SRC_URI[sha256sum] = "7a0beeef166fbe566f54f795b4906c31b428eddafc0102ac00d20998dd1933f6"
 
 BBCLASSEXTEND = "native nativesdk"
 inherit pypi python_hatchling
-- 
2.34.1



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

* [oe] [meta-python] [PATCH 20/30] python3-types-psutil: upgrade 5.9.5.20240316 -> 5.9.5.20240423
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
                   ` (17 preceding siblings ...)
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 19/30] python3-tox: upgrade 4.14.2 -> 4.15.0 wangmy
@ 2024-05-02 14:48 ` wangmy
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 21/30] python3-validators: upgrade 0.28.0 -> 0.28.1 wangmy
                   ` (9 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
 Add precise values for enum members where possible

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...5.9.5.20240316.bb => python3-types-psutil_5.9.5.20240423.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-types-psutil_5.9.5.20240316.bb => python3-types-psutil_5.9.5.20240423.bb} (74%)

diff --git a/meta-python/recipes-devtools/python/python3-types-psutil_5.9.5.20240316.bb b/meta-python/recipes-devtools/python/python3-types-psutil_5.9.5.20240423.bb
similarity index 74%
rename from meta-python/recipes-devtools/python/python3-types-psutil_5.9.5.20240316.bb
rename to meta-python/recipes-devtools/python/python3-types-psutil_5.9.5.20240423.bb
index c6f15696e..876f93a0f 100644
--- a/meta-python/recipes-devtools/python/python3-types-psutil_5.9.5.20240316.bb
+++ b/meta-python/recipes-devtools/python/python3-types-psutil_5.9.5.20240423.bb
@@ -5,6 +5,6 @@ LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=6;endline=6;md5=ef4dc1e740f5c928f1
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "5636f5714bb930c64bb34c4d47a59dc92f9d610b778b5364a31daa5584944848"
+SRC_URI[sha256sum] = "1b976cf86308316c5ac22cec688015b04273c84f8e691c3dfb0c12318f32a6f3"
 
 BBCLASSEXTEND = "native"
-- 
2.34.1



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

* [oe] [meta-python] [PATCH 21/30] python3-validators: upgrade 0.28.0 -> 0.28.1
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
                   ` (18 preceding siblings ...)
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 20/30] python3-types-psutil: upgrade 5.9.5.20240316 -> 5.9.5.20240423 wangmy
@ 2024-05-02 14:48 ` wangmy
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 22/30] python3-virtualenv: upgrade 20.25.0 -> 20.26.0 wangmy
                   ` (8 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
==========
- fix: reduce memory footprint when loading TLDs
- build(deps): bump idna from 3.6 to 3.7 in /package
- fix: rfc cases in the domain validator
- chore: documentation maintenance
- chore: update contribution guidelines
- chore: updated dev dependencies; bump version

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

diff --git a/meta-python/recipes-devtools/python/python3-validators_0.28.0.bb b/meta-python/recipes-devtools/python/python3-validators_0.28.1.bb
similarity index 87%
rename from meta-python/recipes-devtools/python/python3-validators_0.28.0.bb
rename to meta-python/recipes-devtools/python/python3-validators_0.28.1.bb
index 36444c0bf..7666ae7d4 100644
--- a/meta-python/recipes-devtools/python/python3-validators_0.28.0.bb
+++ b/meta-python/recipes-devtools/python/python3-validators_0.28.1.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://python-validators.github.io/validators"
 LICENSE = "MIT"
 
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=b3fb4b9e6db86c69a33d5e3ee013ab59"
-SRC_URI[sha256sum] = "85bc82511f6ccd0800f4c15d8c0dc546c15e369640c5ea1f24349ba0b3b17815"
+SRC_URI[sha256sum] = "5ac88e7916c3405f0ce38ac2ac82a477fcf4d90dbbeddd04c8193171fc17f7dc"
 
 inherit pypi python_setuptools_build_meta ptest
 
-- 
2.34.1



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

* [oe] [meta-python] [PATCH 22/30] python3-virtualenv: upgrade 20.25.0 -> 20.26.0
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
                   ` (19 preceding siblings ...)
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 21/30] python3-validators: upgrade 0.28.0 -> 0.28.1 wangmy
@ 2024-05-02 14:48 ` wangmy
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 23/30] python3-web3: upgrade 6.17.0 -> 6.17.2 wangmy
                   ` (7 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
============
- Fixed a case when template variable is WindowsPath
- Allow builtin interpreter discovery to find specific Python versions given a general spec

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

diff --git a/meta-python/recipes-devtools/python/python3-virtualenv_20.25.0.bb b/meta-python/recipes-devtools/python/python3-virtualenv_20.26.0.bb
similarity index 85%
rename from meta-python/recipes-devtools/python/python3-virtualenv_20.25.0.bb
rename to meta-python/recipes-devtools/python/python3-virtualenv_20.26.0.bb
index 1858fee25..55f7f4611 100644
--- a/meta-python/recipes-devtools/python/python3-virtualenv_20.25.0.bb
+++ b/meta-python/recipes-devtools/python/python3-virtualenv_20.26.0.bb
@@ -6,7 +6,7 @@ HOMEPAGE = "https://github.com/pypa/virtualenv"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=0ce089158cf60a8ab6abb452b6405538"
 
-SRC_URI[sha256sum] = "bf51c0d9c7dd63ea8e44086fa1e4fb1093a31e963b86959257378aef020e1f1b"
+SRC_URI[sha256sum] = "ec25a9671a5102c8d2657f62792a27b48f016664c6873f6beed3800008577210"
 
 BBCLASSEXTEND = "native nativesdk"
 inherit pypi python_hatchling
-- 
2.34.1



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

* [oe] [meta-python] [PATCH 23/30] python3-web3: upgrade 6.17.0 -> 6.17.2
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
                   ` (20 preceding siblings ...)
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 22/30] python3-virtualenv: upgrade 20.25.0 -> 20.26.0 wangmy
@ 2024-05-02 14:48 ` wangmy
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 24/30] python3-xmlschema: upgrade 3.0.1 -> 3.3.1 wangmy
                   ` (6 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
=============
- Revert pin of eth-typing to utilize EthPM types.
- Add upper pin to eth-account in anticipation of breaking changes

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

diff --git a/meta-python/recipes-devtools/python/python3-web3_6.17.0.bb b/meta-python/recipes-devtools/python/python3-web3_6.17.2.bb
similarity index 87%
rename from meta-python/recipes-devtools/python/python3-web3_6.17.0.bb
rename to meta-python/recipes-devtools/python/python3-web3_6.17.2.bb
index f1be4dcf4..e695bc27a 100644
--- a/meta-python/recipes-devtools/python/python3-web3_6.17.0.bb
+++ b/meta-python/recipes-devtools/python/python3-web3_6.17.2.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=373fede350846fdffd23648fba504635"
 
-SRC_URI[sha256sum] = "1b535272a40da3d8d2b120856edb53b84b0c08bcc8fe1a5bbd5f816fd72f4ec6"
+SRC_URI[sha256sum] = "8ed8b7184eba5b00d0849efb95c8ec6f3220aa8886e740182bb1e4f1247cca3e"
 
 inherit pypi setuptools3
 
-- 
2.34.1



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

* [oe] [meta-python] [PATCH 24/30] python3-xmlschema: upgrade 3.0.1 -> 3.3.1
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
                   ` (21 preceding siblings ...)
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 23/30] python3-web3: upgrade 6.17.0 -> 6.17.2 wangmy
@ 2024-05-02 14:48 ` wangmy
  2024-05-02 14:48 ` [oe] [meta-oe] [PATCH 25/30] qcbor: upgrade 1.2 -> 1.3 wangmy
                   ` (5 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
==========
- Update validation errors with logging stack trace in debug mode
- Improve locations parsing and URL encoding
- Rewrite the validation of openContent using InterleavedModelVisitor and SuffixedModelVisitor
- Fix validation of XSD 1.1 'all' nested models
- Improve ModelVisitor and particle occurs checking
- Fix interleave mode with XSD 1.1 open content
- Fix for export/download of XSD sources with commented-out imports/include
- Add download_schemas() to package API
- Fix issue with facets on list types
- Add GData converter
- Fix static typing protocols usage
- Extend XSD annotations parsing
- Use XPath subtree as fragment for xs:assert
- Fix in XMLSchemaProxy definition and usage for providing a base-uri to schema nodes
- Module xpath.py splitted to a subpackage for including all the
- custom XPath 1.0/2.0 parsers and related classes to XPath
- Add support for Python 3.13

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

diff --git a/meta-python/recipes-devtools/python/python3-xmlschema_3.0.1.bb b/meta-python/recipes-devtools/python/python3-xmlschema_3.3.1.bb
similarity index 83%
rename from meta-python/recipes-devtools/python/python3-xmlschema_3.0.1.bb
rename to meta-python/recipes-devtools/python/python3-xmlschema_3.3.1.bb
index 97dc68378..a80f6c2db 100644
--- a/meta-python/recipes-devtools/python/python3-xmlschema_3.0.1.bb
+++ b/meta-python/recipes-devtools/python/python3-xmlschema_3.3.1.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/sissaschool/xmlschema"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=26aa26eda991a3a2b61c11b62d3fda65"
 
-SRC_URI[sha256sum] = "bb24a5f4738e49d85d9eb03a2b5af26bbbbfdb055517ad953d98925094b8c026"
+SRC_URI[sha256sum] = "2066ecbc9728112073f6f44d17c5c16723aff1c7d22a7c4c6421e2d68ec5f0ea"
 
 PYPI_PACKAGE = "xmlschema"
 inherit pypi setuptools3
-- 
2.34.1



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

* [oe] [meta-oe] [PATCH 25/30] qcbor: upgrade 1.2 -> 1.3
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
                   ` (22 preceding siblings ...)
  2024-05-02 14:48 ` [oe] [meta-python] [PATCH 24/30] python3-xmlschema: upgrade 3.0.1 -> 3.3.1 wangmy
@ 2024-05-02 14:48 ` wangmy
  2024-05-02 14:48 ` [oe] [meta-oe] [PATCH 26/30] ser2net: upgrade 4.6.1 -> 4.6.2 wangmy
                   ` (4 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

License-Update: Update the LICENSE file from README.md to LICENSE

Changelog:
==========
- Floating-point conversion between half, single and double-precision for
  subnormal values and NaN payloads is completed. These are relatively obscure
  unused parts of IEEE754 floats.
- QCBOREncode_GetErrorState() can now be called after QCBOREncode_Finish() and
  it will always return the correct error.
- User-defined error codes are now supported. The error state can be set with
  the new function QCBORDecode_SetError().
- Fixed a rare condition where QCBORDecode_ VGetNext() would not set the
  Item.uDataType to QCBOR_TYPE_NONE on error.
- Function naming changed to better avoid name collision. This includes internal
  functions. This is to compensate for C not having name spaces like C++.
- Documentation correctly describes mixing of traversal cursor used by GetNext
  with fetch by label in entered maps
- Some increase in test coverage
- A bunch of "TODO:" items were addressed. Most result in no change to the code,
  just changes to documentation and test coverage.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../recipes-extended/qcbor/{qcbor_git.bb => qcbor_1.3.bb}   | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)
 rename meta-oe/recipes-extended/qcbor/{qcbor_git.bb => qcbor_1.3.bb} (79%)

diff --git a/meta-oe/recipes-extended/qcbor/qcbor_git.bb b/meta-oe/recipes-extended/qcbor/qcbor_1.3.bb
similarity index 79%
rename from meta-oe/recipes-extended/qcbor/qcbor_git.bb
rename to meta-oe/recipes-extended/qcbor/qcbor_1.3.bb
index a87454fa9..f90e814f7 100644
--- a/meta-oe/recipes-extended/qcbor/qcbor_git.bb
+++ b/meta-oe/recipes-extended/qcbor/qcbor_1.3.bb
@@ -6,13 +6,11 @@ DESCRIPTION = " \
 HOMEPAGE = "https://github.com/laurencelundblade/QCBOR"
 
 LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://README.md;beginline=442;endline=463;md5=b55643261d6d221dac2b7a395105af62"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=498c298542365dfcfe29948c72a5849b"
 
 SRC_URI = "git://github.com/laurencelundblade/QCBOR;protocol=https;branch=master"
 
-SRCREV = "44754f738c6534a4304a83d4c6e97b3d3193d887"
-
-PV = "1.2+git"
+SRCREV = "1eba85dbbe78fc1938f8aba2112ba1b228caed30"
 
 S = "${WORKDIR}/git"
 
-- 
2.34.1



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

* [oe] [meta-oe] [PATCH 26/30] ser2net: upgrade 4.6.1 -> 4.6.2
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
                   ` (23 preceding siblings ...)
  2024-05-02 14:48 ` [oe] [meta-oe] [PATCH 25/30] qcbor: upgrade 1.2 -> 1.3 wangmy
@ 2024-05-02 14:48 ` wangmy
  2024-05-02 14:48 ` [oe] [meta-oe] [PATCH 27/30] spdlog: upgrade 1.13.0 -> 1.14.0 wangmy
                   ` (3 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../ser2net/{ser2net_4.6.1.bb => ser2net_4.6.2.bb}              | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-connectivity/ser2net/{ser2net_4.6.1.bb => ser2net_4.6.2.bb} (91%)

diff --git a/meta-oe/recipes-connectivity/ser2net/ser2net_4.6.1.bb b/meta-oe/recipes-connectivity/ser2net/ser2net_4.6.2.bb
similarity index 91%
rename from meta-oe/recipes-connectivity/ser2net/ser2net_4.6.1.bb
rename to meta-oe/recipes-connectivity/ser2net/ser2net_4.6.2.bb
index e5ebafa54..21066b10f 100644
--- a/meta-oe/recipes-connectivity/ser2net/ser2net_4.6.1.bb
+++ b/meta-oe/recipes-connectivity/ser2net/ser2net_4.6.2.bb
@@ -11,7 +11,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/project/ser2net/ser2net/ser2net-${PV}.tar.gz \
     file://ser2net.service \
 "
 
-SRC_URI[sha256sum] = "78ffee19d9b97e93ae65b5cec072da2b7b947fc484e9ccb3f535702f36f6ed19"
+SRC_URI[sha256sum] = "63bafcd65bb9270a93b7d5cdde58ccf4d279603ff6d044ac4b484a257cda82ce"
 
 UPSTREAM_CHECK_URI = "http://sourceforge.net/projects/ser2net/files/ser2net"
 
-- 
2.34.1



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

* [oe] [meta-oe] [PATCH 27/30] spdlog: upgrade 1.13.0 -> 1.14.0
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
                   ` (24 preceding siblings ...)
  2024-05-02 14:48 ` [oe] [meta-oe] [PATCH 26/30] ser2net: upgrade 4.6.1 -> 4.6.2 wangmy
@ 2024-05-02 14:48 ` wangmy
  2024-05-02 14:48 ` [oe] [meta-gnome] [PATCH 28/30] tracker-miners: upgrade 3.7.1 -> 3.7.2 wangmy
                   ` (2 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
===========
-Updated bundled fmt to version 10.2.1.
-Mapped Diagnostic Context (MDC) support
-MDC is a simple map of key->string values stored in thread local storage whose content will be printed by the loggers.
-spdlog::mdc::put("mdc_key_1", "mdc_value_1");
-spdlog::info("Hello, {}", "World!");  // => [2024-04-26 02:08:05.040] [info] [mdc_key_1:mdc_value_1] Hello, World!
-Add milliseconds support to stopwatch
-Add std::string_view overloads for logger accessor
-Make async_logger::flush() synchronous - wait for the flush operation to complete before returning
-Use _stat() on Windows to be more UTF8 friendly
-Add details about how compile time macros work
-Fix typos found by codespell
-Expose the flusher thread object to user in order to allow setting of thread name and thread affinity when needed
-Fix the problem of compilation failure under MINGW
-Add missing include in circular_q.h
-Don't remove previous defaullt logger from registry in set_default_logger.
-Remove the legacy AnalyzeTemporaryDtors option from .clang-tidy.
-Updated INSTALL.md has to better reflect compiler info
-Fixed README.md example

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../spdlog/{spdlog_1.13.0.bb => spdlog_1.14.0.bb}               | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-support/spdlog/{spdlog_1.13.0.bb => spdlog_1.14.0.bb} (91%)

diff --git a/meta-oe/recipes-support/spdlog/spdlog_1.13.0.bb b/meta-oe/recipes-support/spdlog/spdlog_1.14.0.bb
similarity index 91%
rename from meta-oe/recipes-support/spdlog/spdlog_1.13.0.bb
rename to meta-oe/recipes-support/spdlog/spdlog_1.14.0.bb
index c6a0881db..aa55171f3 100644
--- a/meta-oe/recipes-support/spdlog/spdlog_1.13.0.bb
+++ b/meta-oe/recipes-support/spdlog/spdlog_1.14.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/gabime/spdlog/wiki"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=9573510928429ad0cbe5ba4de77546e9"
 
-SRCREV = "7c02e204c92545f869e2f04edaab1f19fe8b19fd"
+SRCREV = "238c9ffa5d1a14226eeabe10c9b63ffff3ed8b8e"
 SRC_URI = "git://github.com/gabime/spdlog.git;protocol=https;branch=v1.x"
 
 DEPENDS = "fmt"
-- 
2.34.1



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

* [oe] [meta-gnome] [PATCH 28/30] tracker-miners: upgrade 3.7.1 -> 3.7.2
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
                   ` (25 preceding siblings ...)
  2024-05-02 14:48 ` [oe] [meta-oe] [PATCH 27/30] spdlog: upgrade 1.13.0 -> 1.14.0 wangmy
@ 2024-05-02 14:48 ` wangmy
  2024-05-02 14:48 ` [oe] [meta-gnome] [PATCH 29/30] tracker: " wangmy
  2024-05-02 14:48 ` [oe] [meta-oe] [PATCH 30/30] uftrace: upgrade 0.15.2 -> 0.16 wangmy
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

0001-Set-header-file-to-a-fixed-path-instead-of-a-host-pa.patch
0001-fix-reproducibility.patch
refreshed for 3.7.2

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...to-a-fixed-path-instead-of-a-host-pa.patch |  15 +--
 .../0001-fix-reproducibility.patch            | 104 +++++++++---------
 ...iners_3.7.1.bb => tracker-miners_3.7.2.bb} |   2 +-
 3 files changed, 62 insertions(+), 59 deletions(-)
 rename meta-gnome/recipes-gnome/tracker/{tracker-miners_3.7.1.bb => tracker-miners_3.7.2.bb} (97%)

diff --git a/meta-gnome/recipes-gnome/tracker/tracker-miners/0001-Set-header-file-to-a-fixed-path-instead-of-a-host-pa.patch b/meta-gnome/recipes-gnome/tracker/tracker-miners/0001-Set-header-file-to-a-fixed-path-instead-of-a-host-pa.patch
index 7a40ae338..36dd4a588 100644
--- a/meta-gnome/recipes-gnome/tracker/tracker-miners/0001-Set-header-file-to-a-fixed-path-instead-of-a-host-pa.patch
+++ b/meta-gnome/recipes-gnome/tracker/tracker-miners/0001-Set-header-file-to-a-fixed-path-instead-of-a-host-pa.patch
@@ -7,21 +7,22 @@ Upstream-Status: Inappropriate [embedded specific]
 
 Signed-off-by: Lei Maohui <leimaohui@fujitsu.com>
 ---
- src/libtracker-miners-common/tracker-miner-enum-types.c.template        | 1 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
+ .../tracker-miners-enum-types.c.template                        | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/src/libtracker-miners-common/tracker-miners-enum-types.c.template b/src/libtracker-miners-common/tracker-miners-enum-types.c.template
-index c712dda..cb449e2 100644
+index 4db7ef1..7c44c13 100644
 --- a/src/libtracker-miners-common/tracker-miners-enum-types.c.template
 +++ b/src/libtracker-miners-common/tracker-miners-enum-types.c.template
 @@ -7,7 +7,7 @@
-
+ 
  /*** BEGIN file-production ***/
  /* enumerations from "@basename@" */
 -#include "@filename@"
 +#include "tracker-enums.h"
  /*** END file-production ***/
+ 
+ 
+-- 
+2.34.1
 
-
---
-2.25.1
diff --git a/meta-gnome/recipes-gnome/tracker/tracker-miners/0001-fix-reproducibility.patch b/meta-gnome/recipes-gnome/tracker/tracker-miners/0001-fix-reproducibility.patch
index 98618e5d3..ea239c41f 100644
--- a/meta-gnome/recipes-gnome/tracker/tracker-miners/0001-fix-reproducibility.patch
+++ b/meta-gnome/recipes-gnome/tracker/tracker-miners/0001-fix-reproducibility.patch
@@ -12,16 +12,18 @@ Upstream-Status: Inappropriate [oe-specific]
 
 Signed-off-by: Markus Volk <f_l_k@t-online.de>
 ---
- meson.build                        | 20 ++++++++++----------
- src/tracker-extract/meson.build    |  2 +-
- tests/tracker-miner-fs/meson.build |  2 +-
- 3 files changed, 12 insertions(+), 12 deletions(-)
+ meson.build                                     | 8 ++++----
+ src/libtracker-miners-common/tracker-landlock.c | 4 ++--
+ src/miners/fs/meson.build                       | 4 ++--
+ src/tracker-extract/meson.build                 | 2 +-
+ tests/tracker-miner-fs/meson.build              | 2 +-
+ 5 files changed, 10 insertions(+), 10 deletions(-)
 
 diff --git a/meson.build b/meson.build
-index 935584185..aa6126081 100644
+index a838344..6945f63 100644
 --- a/meson.build
 +++ b/meson.build
-@@ -380,7 +380,7 @@ conf.set('PACKAGE_VERSION', '"@0@"'.format(meson.project_version()))
+@@ -393,7 +393,7 @@ conf.set('PACKAGE_VERSION', '"@0@"'.format(meson.project_version()))
  conf.set('TRACKER_VERSION', '"@0@"'.format(meson.project_version()))
  
  # Config that goes in some other generated files (.desktop, .pc, etc)
@@ -30,7 +32,7 @@ index 935584185..aa6126081 100644
  conf.set('exec_prefix', get_option('prefix'))
  conf.set('bindir', join_paths(get_option('prefix'), get_option('bindir')))
  conf.set('datadir', datadir)
-@@ -409,7 +409,7 @@ tracker_c_args = [
+@@ -422,7 +422,7 @@ tracker_c_args = [
  configinc = include_directories('./')
  srcinc = include_directories('src/')
  
@@ -39,7 +41,7 @@ index 935584185..aa6126081 100644
  
  # We use tracker-miners-3.0 rather than tracker3-miners inside the lib64
  # directory, following the existing convention in that directory.
-@@ -438,8 +438,8 @@ subdir('data')
+@@ -451,8 +451,8 @@ subdir('data')
  subdir('docs')
  
  test_c_args = tracker_c_args + [
@@ -50,11 +52,48 @@ index 935584185..aa6126081 100644
  ]
  
  if get_option('tests_tap_protocol')
+diff --git a/src/libtracker-miners-common/tracker-landlock.c b/src/libtracker-miners-common/tracker-landlock.c
+index 95c652e..608cee4 100644
+--- a/src/libtracker-miners-common/tracker-landlock.c
++++ b/src/libtracker-miners-common/tracker-landlock.c
+@@ -276,7 +276,7 @@ tracker_landlock_init (const gchar * const *indexed_folders)
+ 			          LANDLOCK_ACCESS_FS_READ_DIR);
+ 		}
+ 	}
+-
++#if 0
+ 	current_dir = g_get_current_dir ();
+ 
+ 	/* Detect running in-tree */
+@@ -296,7 +296,7 @@ tracker_landlock_init (const gchar * const *indexed_folders)
+ 			          in_tree_rules[i].flags);
+ 		}
+ 	}
+-
++#endif
+ 	/* Add user cache for readonly databases */
+ #ifdef MINER_FS_CACHE_LOCATION
+ 	add_rule (landlock_fd, MINER_FS_CACHE_LOCATION,
+diff --git a/src/miners/fs/meson.build b/src/miners/fs/meson.build
+index 6e58832..04750f8 100644
+--- a/src/miners/fs/meson.build
++++ b/src/miners/fs/meson.build
+@@ -67,8 +67,8 @@ executable('tracker-miner-fs-@0@'.format(tracker_api_major),
+     dependencies: tracker_miner_fs_deps,
+     c_args: [
+         tracker_c_args,
+-        '-DBUILDROOT="@0@"'.format(meson.global_build_root()),
+-        '-DBUILD_EXTRACTDIR="@0@"'.format(meson.build_root() / 'src' / 'tracker-extract'),
++        '-DBUILDROOT="@0@"'.format(get_option('prefix') / 'src'),
++        '-DBUILD_EXTRACTDIR="@0@"'.format(get_option('prefix') / 'src' / 'tracker-extract'),
+         '-DLIBEXECDIR="@0@"'.format(get_option('prefix') / get_option('libexecdir')),
+     ],
+     install: true,
 diff --git a/src/tracker-extract/meson.build b/src/tracker-extract/meson.build
-index 4aaad5c41..d17cce221 100644
+index 16ce367..bbd494d 100644
 --- a/src/tracker-extract/meson.build
 +++ b/src/tracker-extract/meson.build
-@@ -159,7 +159,7 @@ endif
+@@ -158,7 +158,7 @@ endif
  executable('tracker-extract-@0@'.format(tracker_api_major),
    tracker_extract_sources,
    # Manually add the root dir to work around https://github.com/mesonbuild/meson/issues/1387
@@ -64,10 +103,10 @@ index 4aaad5c41..d17cce221 100644
    dependencies: tracker_extract_dependencies,
    install: true,
 diff --git a/tests/tracker-miner-fs/meson.build b/tests/tracker-miner-fs/meson.build
-index e131b85ad..59e509fa6 100644
+index 8c081fd..9792082 100644
 --- a/tests/tracker-miner-fs/meson.build
 +++ b/tests/tracker-miner-fs/meson.build
-@@ -19,7 +19,7 @@ libtracker_miner_test_c_args = [
+@@ -18,7 +18,7 @@ libtracker_miner_test_c_args = [
  ]
  
  libtracker_miner_test_environment = environment()
@@ -76,43 +115,6 @@ index e131b85ad..59e509fa6 100644
  
  libtracker_miner_test_deps = [tracker_miners_common_dep, tracker_miner_dep, tracker_sparql]
  
- 
-diff --git a/src/miners/fs/meson.build b/src/miners/fs/meson.build
-index 6e5883288..04750f82b 100644
---- a/src/miners/fs/meson.build
-+++ b/src/miners/fs/meson.build
-@@ -67,8 +67,8 @@ executable('tracker-miner-fs-@0@'.format(tracker_api_major),
-     dependencies: tracker_miner_fs_deps,
-     c_args: [
-         tracker_c_args,
--        '-DBUILDROOT="@0@"'.format(meson.global_build_root()),
--        '-DBUILD_EXTRACTDIR="@0@"'.format(meson.build_root() / 'src' / 'tracker-extract'),
-+        '-DBUILDROOT="@0@"'.format(get_option('prefix') / 'src'),
-+        '-DBUILD_EXTRACTDIR="@0@"'.format(get_option('prefix') / 'src' / 'tracker-extract'),
-         '-DLIBEXECDIR="@0@"'.format(get_option('prefix') / get_option('libexecdir')),
-     ],
-     install: true,
-diff --git a/src/libtracker-miners-common/tracker-landlock.c b/src/libtracker-miners-common/tracker-landlock.c
-index 27e7db65b..3021343eb 100644
---- a/src/libtracker-miners-common/tracker-landlock.c
-+++ b/src/libtracker-miners-common/tracker-landlock.c
-@@ -276,7 +276,7 @@
- 			          LANDLOCK_ACCESS_FS_READ_DIR);
- 		}
- 	}
--
-+#if 0
- 	current_dir = g_get_current_dir ();
- 
- 	/* Detect running in-tree */
-@@ -296,7 +296,7 @@
- 			          in_tree_rules[i].flags);
- 		}
- 	}
--
-+#endif
- 	/* Add user cache for readonly databases */
- #ifdef MINER_FS_CACHE_LOCATION
- 	add_rule (landlock_fd, MINER_FS_CACHE_LOCATION,
 -- 
-2.41.0
+2.34.1
+
diff --git a/meta-gnome/recipes-gnome/tracker/tracker-miners_3.7.1.bb b/meta-gnome/recipes-gnome/tracker/tracker-miners_3.7.2.bb
similarity index 97%
rename from meta-gnome/recipes-gnome/tracker/tracker-miners_3.7.1.bb
rename to meta-gnome/recipes-gnome/tracker/tracker-miners_3.7.2.bb
index 7bbee2a88..a1fefe6a0 100644
--- a/meta-gnome/recipes-gnome/tracker/tracker-miners_3.7.1.bb
+++ b/meta-gnome/recipes-gnome/tracker/tracker-miners_3.7.2.bb
@@ -18,7 +18,7 @@ SRC_URI:append = " \
 	file://0001-fix-reproducibility.patch \
 	file://0001-Set-header-file-to-a-fixed-path-instead-of-a-host-pa.patch \
 "
-SRC_URI[archive.sha256sum] = "50a3abe40cfb0b35ced43ec716dbf1368992e444ef7a0babf202c7ac6ab2f6f4"
+SRC_URI[archive.sha256sum] = "eb4f2b288a0cbe9e614871cb0048274461cfe1cb8467ac817b102d3873dbcba5"
 
 # gobject-introspection is mandatory and cannot be configured
 REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
-- 
2.34.1



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

* [oe] [meta-gnome] [PATCH 29/30] tracker: upgrade 3.7.1 -> 3.7.2
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
                   ` (26 preceding siblings ...)
  2024-05-02 14:48 ` [oe] [meta-gnome] [PATCH 28/30] tracker-miners: upgrade 3.7.1 -> 3.7.2 wangmy
@ 2024-05-02 14:48 ` wangmy
  2024-05-02 14:48 ` [oe] [meta-oe] [PATCH 30/30] uftrace: upgrade 0.15.2 -> 0.16 wangmy
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

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

diff --git a/meta-gnome/recipes-gnome/tracker/tracker_3.7.1.bb b/meta-gnome/recipes-gnome/tracker/tracker_3.7.2.bb
similarity index 94%
rename from meta-gnome/recipes-gnome/tracker/tracker_3.7.1.bb
rename to meta-gnome/recipes-gnome/tracker/tracker_3.7.2.bb
index 1d5c79ab4..f3c482b27 100644
--- a/meta-gnome/recipes-gnome/tracker/tracker_3.7.1.bb
+++ b/meta-gnome/recipes-gnome/tracker/tracker_3.7.2.bb
@@ -22,7 +22,7 @@ DEPENDS = " \
 inherit gettext gnomebase gobject-introspection vala gtk-doc bash-completion python3native
 
 SRC_URI += "file://0001-fix-reproducibility.patch"
-SRC_URI[archive.sha256sum] = "cd91b885ee9839cde5387f8e05ed24a7108d1627629cb6b1b2aa51a9603e130a"
+SRC_URI[archive.sha256sum] = "debcaa291e46afadc1cf6a251f17efb02440aa48bff643d78c61123807dce00f"
 
 # text search is not an option anymore and requires sqlite3 build with
 # PACKAGECONFIG[fts5] set (default)
-- 
2.34.1



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

* [oe] [meta-oe] [PATCH 30/30] uftrace: upgrade 0.15.2 -> 0.16
  2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
                   ` (27 preceding siblings ...)
  2024-05-02 14:48 ` [oe] [meta-gnome] [PATCH 29/30] tracker: " wangmy
@ 2024-05-02 14:48 ` wangmy
  28 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-05-02 14:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
==========
- build: Add -mno-sse to fix i386 build
- build: Fix build failure on RHEL 7
- mcount: Fix a compiler warning on PAGE_SIZE
- fix: #1858 by changing the wrong logic in update_dbg_info
- ci: Fix ci warning on GitHub Acitons
- slide: Add tensorflow and keras tracing example
- python: Fix GC isn't working correctly.
- replay: Support a new argument format for octal values
- build: Fix compiler warnings
- Fix Python SyntaxWarning on invalid escape sequence in the tests scripts
- utils: Lower the debug level after dwfl_module_getdwarf
- wrap: Do not print "dlopen is called for '(null)'"
- Support standard deviation(STDDEV) in report output
- dwarf: Close file descriptors in setup_dwarf_info()

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../uftrace/{uftrace_0.15.2.bb => uftrace_0.16.bb}              | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-devtools/uftrace/{uftrace_0.15.2.bb => uftrace_0.16.bb} (95%)

diff --git a/meta-oe/recipes-devtools/uftrace/uftrace_0.15.2.bb b/meta-oe/recipes-devtools/uftrace/uftrace_0.16.bb
similarity index 95%
rename from meta-oe/recipes-devtools/uftrace/uftrace_0.15.2.bb
rename to meta-oe/recipes-devtools/uftrace/uftrace_0.16.bb
index 60436025a..320b5a88a 100644
--- a/meta-oe/recipes-devtools/uftrace/uftrace_0.15.2.bb
+++ b/meta-oe/recipes-devtools/uftrace/uftrace_0.16.bb
@@ -10,7 +10,7 @@ DEPENDS:append:libc-musl = " argp-standalone"
 
 inherit autotools
 
-SRCREV = "9d8657e90b918994d7d2bcf6dd2cc7354c35a1b4"
+SRCREV = "68aed9b0a20d3d1b5e1dc15e0f8aabba7e34735b"
 SRC_URI = "git://github.com/namhyung/${BPN};branch=master;protocol=https \
            file://0001-include-libgen.h-for-basename.patch"
 S = "${WORKDIR}/git"
-- 
2.34.1



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

end of thread, other threads:[~2024-05-02  5:49 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-05-02 14:48 [oe] [meta-networking] [PATCH 01/30] fping: upgrade 5.1 -> 5.2 wangmy
2024-05-02 14:48 ` [oe] [meta-oe] [PATCH 02/30] iniparser: upgrade 4.1 -> 4.2 wangmy
2024-05-02 14:48 ` [oe] [meta-gnome] [PATCH 03/30] libgedit-gtksourceview: upgrade 299.1.0 -> 299.2.1 wangmy
2024-05-02 14:48 ` [oe] [meta-perl] [PATCH 04/30] libmodule-build-tiny-perl: upgrade 0.047 -> 0.048 wangmy
2024-05-02 14:48 ` [oe] [meta-oe] [PATCH 05/30] libmxml: upgrade 3.3.1 -> 4.0.3 wangmy
2024-05-02 14:48 ` [oe] [meta-python] [PATCH 06/30] python3-aiohttp: upgrade 3.9.4 -> 3.9.5 wangmy
2024-05-02 14:48 ` [oe] [meta-python] [PATCH 07/30] python3-bitstring: upgrade 4.1.4 -> 4.2.1 wangmy
2024-05-02 14:48 ` [oe] [meta-python] [PATCH 08/30] python3-freezegun: upgrade 1.4.0 -> 1.5.0 wangmy
2024-05-02 14:48 ` [oe] [meta-python] [PATCH 09/30] python3-google-api-python-client: upgrade 2.125.0 -> 2.127.0 wangmy
2024-05-02 14:48 ` [oe] [meta-python] [PATCH 10/30] python3-imageio: upgrade 2.34.0 -> 2.34.1 wangmy
2024-05-02 14:48 ` [oe] [meta-python] [PATCH 11/30] python3-ipython: upgrade 8.23.0 -> 8.24.0 wangmy
2024-05-02 14:48 ` [oe] [meta-python] [PATCH 12/30] python3-mypy: upgrade 1.9.0 -> 1.10.0 wangmy
2024-05-02 14:48 ` [oe] [meta-python] [PATCH 13/30] python3-pdm: upgrade 2.14.0 -> 2.15.1 wangmy
2024-05-02 14:48 ` [oe] [meta-python] [PATCH 14/30] python3-platformdirs: upgrade 4.2.0 -> 4.2.1 wangmy
2024-05-02 14:48 ` [oe] [meta-python] [PATCH 15/30] python3-pydantic: upgrade 2.7.0 -> 2.7.1 wangmy
2024-05-02 14:48 ` [oe] [meta-python] [PATCH 16/30] python3-pymodbus: upgrade 3.6.7 -> 3.6.8 wangmy
2024-05-02 14:48 ` [oe] [meta-python] [PATCH 17/30] python3-regex: upgrade 2023.04.16 -> 2024.4.28 wangmy
2024-05-02 14:48 ` [oe] [meta-python] [PATCH 18/30] python3-rlp: upgrade 4.0.0 -> 4.0.1 wangmy
2024-05-02 14:48 ` [oe] [meta-python] [PATCH 19/30] python3-tox: upgrade 4.14.2 -> 4.15.0 wangmy
2024-05-02 14:48 ` [oe] [meta-python] [PATCH 20/30] python3-types-psutil: upgrade 5.9.5.20240316 -> 5.9.5.20240423 wangmy
2024-05-02 14:48 ` [oe] [meta-python] [PATCH 21/30] python3-validators: upgrade 0.28.0 -> 0.28.1 wangmy
2024-05-02 14:48 ` [oe] [meta-python] [PATCH 22/30] python3-virtualenv: upgrade 20.25.0 -> 20.26.0 wangmy
2024-05-02 14:48 ` [oe] [meta-python] [PATCH 23/30] python3-web3: upgrade 6.17.0 -> 6.17.2 wangmy
2024-05-02 14:48 ` [oe] [meta-python] [PATCH 24/30] python3-xmlschema: upgrade 3.0.1 -> 3.3.1 wangmy
2024-05-02 14:48 ` [oe] [meta-oe] [PATCH 25/30] qcbor: upgrade 1.2 -> 1.3 wangmy
2024-05-02 14:48 ` [oe] [meta-oe] [PATCH 26/30] ser2net: upgrade 4.6.1 -> 4.6.2 wangmy
2024-05-02 14:48 ` [oe] [meta-oe] [PATCH 27/30] spdlog: upgrade 1.13.0 -> 1.14.0 wangmy
2024-05-02 14:48 ` [oe] [meta-gnome] [PATCH 28/30] tracker-miners: upgrade 3.7.1 -> 3.7.2 wangmy
2024-05-02 14:48 ` [oe] [meta-gnome] [PATCH 29/30] tracker: " wangmy
2024-05-02 14:48 ` [oe] [meta-oe] [PATCH 30/30] uftrace: upgrade 0.15.2 -> 0.16 wangmy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).