* [OE-core] [PATCH 01/22] autoconf-archive: upgrade 2023.02.20 -> 2024.10.16
@ 2024-10-25 5:39 wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 02/22] bash: upgrade 5.2.32 -> 5.2.37 wangmy
` (20 more replies)
0 siblings, 21 replies; 30+ messages in thread
From: wangmy @ 2024-10-25 5:39 UTC (permalink / raw)
To: openembedded-core; +Cc: Wang Mingyu
From: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
...onf-archive_2023.02.20.bb => autoconf-archive_2024.10.16.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-devtools/autoconf-archive/{autoconf-archive_2023.02.20.bb => autoconf-archive_2024.10.16.bb} (85%)
diff --git a/meta/recipes-devtools/autoconf-archive/autoconf-archive_2023.02.20.bb b/meta/recipes-devtools/autoconf-archive/autoconf-archive_2024.10.16.bb
similarity index 85%
rename from meta/recipes-devtools/autoconf-archive/autoconf-archive_2023.02.20.bb
rename to meta/recipes-devtools/autoconf-archive/autoconf-archive_2024.10.16.bb
index 6ba7cdf3fe..11708de1c8 100644
--- a/meta/recipes-devtools/autoconf-archive/autoconf-archive_2023.02.20.bb
+++ b/meta/recipes-devtools/autoconf-archive/autoconf-archive_2024.10.16.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=11cc2d3ee574f9d6b7ee797bdce4d423 \
file://COPYING.EXCEPTION;md5=fdef168ebff3bc2f13664c365a5fb515"
SRC_URI = "${GNU_MIRROR}/${BPN}/${BPN}-${PV}.tar.xz"
-SRC_URI[sha256sum] = "71d4048479ae28f1f5794619c3d72df9c01df49b1c628ef85fde37596dc31a33"
+SRC_URI[sha256sum] = "7bcd5d001916f3a50ed7436f4f700e3d2b1bade3ed803219c592d62502a57363"
inherit autotools allarch texinfo
--
2.34.1
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [OE-core] [PATCH 02/22] bash: upgrade 5.2.32 -> 5.2.37
2024-10-25 5:39 [OE-core] [PATCH 01/22] autoconf-archive: upgrade 2023.02.20 -> 2024.10.16 wangmy
@ 2024-10-25 5:39 ` wangmy
2024-10-25 9:10 ` Alexander Kanavin
2024-10-25 5:39 ` [OE-core] [PATCH 03/22] epiphany: upgrade 47.0 -> 47.1 wangmy
` (19 subsequent siblings)
20 siblings, 1 reply; 30+ messages in thread
From: wangmy @ 2024-10-25 5:39 UTC (permalink / raw)
To: openembedded-core; +Cc: Wang Mingyu
From: Wang Mingyu <wangmy@fujitsu.com>
0001-fix-c99.patch
refreshed for 5.2.37
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
.../bash/bash/0001-fix-c99.patch | 41 -------------------
.../bash/{bash_5.2.32.bb => bash_5.2.37.bb} | 3 +-
2 files changed, 1 insertion(+), 43 deletions(-)
delete mode 100644 meta/recipes-extended/bash/bash/0001-fix-c99.patch
rename meta/recipes-extended/bash/{bash_5.2.32.bb => bash_5.2.37.bb} (87%)
diff --git a/meta/recipes-extended/bash/bash/0001-fix-c99.patch b/meta/recipes-extended/bash/bash/0001-fix-c99.patch
deleted file mode 100644
index abd83d09af..0000000000
--- a/meta/recipes-extended/bash/bash/0001-fix-c99.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From e8ec2d75a52bdc93c83a679a71a68f4033033b8b Mon Sep 17 00:00:00 2001
-From: Ross Burton <ross.burton@arm.com>
-Date: Wed, 19 Jun 2024 12:57:39 +0000
-Subject: [PATCH] Fix C99 problems
-
-Backport some fixes from upstream to fix configure checks that fail with GCC 14.1.
-
-Upstream-Status: Backport [devel branch]
-Signed-off-by: Ross Burton <ross.burton@arm.com>
----
- aclocal.m4 | 3 +++
- configure.ac | 2 +-
- 2 files changed, 4 insertions(+), 1 deletion(-)
-
-diff --git a/aclocal.m4 b/aclocal.m4
-index cc97bd4..7423b99 100644
---- a/aclocal.m4
-+++ b/aclocal.m4
-@@ -238,6 +238,9 @@ AC_CACHE_VAL(bash_cv_dup2_broken,
- #include <sys/types.h>
- #include <fcntl.h>
- #include <stdlib.h>
-+#ifdef HAVE_UNISTD_H
-+# include <unistd.h>
-+#endif /* HAVE_UNISTD_H */
- int
- main()
- {
-diff --git a/configure.ac b/configure.ac
-index a3b5bd7..2a38c6b 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -842,7 +842,7 @@ AC_CHECK_DECLS([strtold], [
- [AC_COMPILE_IFELSE(
- [AC_LANG_PROGRAM(
- [[#include <stdlib.h>]],
-- [[long double r; char *foo, bar; r = strtold(foo, &bar);]]
-+ [[long double r; char *foo, *bar; r = strtold(foo, &bar);]]
- )],
- [bash_cv_strtold_broken=no],[bash_cv_strtold_broken=yes])
- ]
diff --git a/meta/recipes-extended/bash/bash_5.2.32.bb b/meta/recipes-extended/bash/bash_5.2.37.bb
similarity index 87%
rename from meta/recipes-extended/bash/bash_5.2.32.bb
rename to meta/recipes-extended/bash/bash_5.2.37.bb
index b159c0232f..3dcaefa374 100644
--- a/meta/recipes-extended/bash/bash_5.2.32.bb
+++ b/meta/recipes-extended/bash/bash_5.2.37.bb
@@ -14,10 +14,9 @@ SRC_URI = "${GNU_MIRROR}/bash/${BP}.tar.gz;name=tarball \
file://use_aclocal.patch \
file://0001-changes-to-SIGINT-handler-while-waiting-for-a-child-.patch \
file://fix-filesubst-errexit.patch \
- file://0001-fix-c99.patch \
"
-SRC_URI[tarball.sha256sum] = "d3ef80d2b67d8cbbe4d3265c63a72c46f9b278ead6e0e06d61801b58f23f50b5"
+SRC_URI[tarball.sha256sum] = "9599b22ecd1d5787ad7d3b7bf0c59f312b3396d1e281175dd1f8a4014da621ff"
DEBUG_OPTIMIZATION:append:armv4 = " ${@bb.utils.contains('TUNE_CCARGS', '-mthumb', '-fomit-frame-pointer', '', d)}"
DEBUG_OPTIMIZATION:append:armv5 = " ${@bb.utils.contains('TUNE_CCARGS', '-mthumb', '-fomit-frame-pointer', '', d)}"
--
2.34.1
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [OE-core] [PATCH 03/22] epiphany: upgrade 47.0 -> 47.1
2024-10-25 5:39 [OE-core] [PATCH 01/22] autoconf-archive: upgrade 2023.02.20 -> 2024.10.16 wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 02/22] bash: upgrade 5.2.32 -> 5.2.37 wangmy
@ 2024-10-25 5:39 ` wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 04/22] i2c-tools: upgrade 4.3 -> 4.4 wangmy
` (18 subsequent siblings)
20 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-10-25 5:39 UTC (permalink / raw)
To: openembedded-core; +Cc: Wang Mingyu
From: Wang Mingyu <wangmy@fujitsu.com>
Changelog:
===========
* Allow adding bookmarks in incognito mode
* Disable tab navigation shortcuts in tab overview
* Don't store page snapshots in web app mode
* Fix ephy-about suggestions not using pretty URL
* Fix crash in save password popover
* Fix crash when opening multiple preferences or history dialogs
* Fix crash when long pressing page
* Fix target origin property when using CSV password import
* Add tooltips to bookmarks tag rows
* Fix crash in history dialog
* Improve certificate selection dialog
* Fix non-translatable strings in autofill preferences
* Stop setting web view background color
* Fix failure to unregister autofill message handler
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
.../epiphany/{epiphany_47.0.bb => epiphany_47.1.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-gnome/epiphany/{epiphany_47.0.bb => epiphany_47.1.bb} (94%)
diff --git a/meta/recipes-gnome/epiphany/epiphany_47.0.bb b/meta/recipes-gnome/epiphany/epiphany_47.1.bb
similarity index 94%
rename from meta/recipes-gnome/epiphany/epiphany_47.0.bb
rename to meta/recipes-gnome/epiphany/epiphany_47.1.bb
index b3e295737d..a726d01314 100644
--- a/meta/recipes-gnome/epiphany/epiphany_47.0.bb
+++ b/meta/recipes-gnome/epiphany/epiphany_47.1.bb
@@ -31,7 +31,7 @@ SRC_URI = "${GNOME_MIRROR}/${GNOMEBN}/${@oe.utils.trim_version("${PV}", 1)}/${GN
file://migrator.patch \
file://distributor.patch \
"
-SRC_URI[archive.sha256sum] = "8e38ee7f90fd6054f8aef0e7f505d53c4520742f5acd1f008282a47b2764affa"
+SRC_URI[archive.sha256sum] = "642fd72045f6e9b18f09c3ef16df762d9b7816119abb22edd5d82ef687c6a004"
# Developer mode enables debugging
PACKAGECONFIG[developer-mode] = "-Ddeveloper_mode=true,-Ddeveloper_mode=false"
--
2.34.1
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [OE-core] [PATCH 04/22] i2c-tools: upgrade 4.3 -> 4.4
2024-10-25 5:39 [OE-core] [PATCH 01/22] autoconf-archive: upgrade 2023.02.20 -> 2024.10.16 wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 02/22] bash: upgrade 5.2.32 -> 5.2.37 wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 03/22] epiphany: upgrade 47.0 -> 47.1 wangmy
@ 2024-10-25 5:39 ` wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 05/22] less: upgrade 661 -> 668 wangmy
` (17 subsequent siblings)
20 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-10-25 5:39 UTC (permalink / raw)
To: openembedded-core; +Cc: Wang Mingyu
From: Wang Mingyu <wangmy@fujitsu.com>
Changelog:
===========
- tools: Use getopt
Implement and document option -h
- eeprog: Use force option when data comes from a pipe
- i2cdetect: Display more functionality bits with option -F
- i2cdump: Remove support for SMBus block mode
- i2cget: Document SMBus block mode
Fix the return code of option -h
- i2cset: Fix the return code of option -h
- i2ctransfer: Sort command line options and add to help text
Add an option to print binary data
Drop redundant variable arg_idx
- py-smbus: Install in the defined prefix
Use setuptools instead of distutils
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
.../i2c-tools/{i2c-tools_4.3.bb => i2c-tools_4.4.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-devtools/i2c-tools/{i2c-tools_4.3.bb => i2c-tools_4.4.bb} (95%)
diff --git a/meta/recipes-devtools/i2c-tools/i2c-tools_4.3.bb b/meta/recipes-devtools/i2c-tools/i2c-tools_4.4.bb
similarity index 95%
rename from meta/recipes-devtools/i2c-tools/i2c-tools_4.3.bb
rename to meta/recipes-devtools/i2c-tools/i2c-tools_4.4.bb
index 4e43c51496..f4881f3c2f 100644
--- a/meta/recipes-devtools/i2c-tools/i2c-tools_4.3.bb
+++ b/meta/recipes-devtools/i2c-tools/i2c-tools_4.4.bb
@@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
SRC_URI = "${KERNELORG_MIRROR}/software/utils/i2c-tools/${BP}.tar.gz \
"
-SRC_URI[sha256sum] = "eec464e42301d93586cbeca3845ed61bff40f560670e5b35baec57301d438148"
+SRC_URI[sha256sum] = "04d1e3b0cd88df8fb96e7709f374dd0b3561191b4c0363eaf873a074b8b7cb22"
inherit update-alternatives
--
2.34.1
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [OE-core] [PATCH 05/22] less: upgrade 661 -> 668
2024-10-25 5:39 [OE-core] [PATCH 01/22] autoconf-archive: upgrade 2023.02.20 -> 2024.10.16 wangmy
` (2 preceding siblings ...)
2024-10-25 5:39 ` [OE-core] [PATCH 04/22] i2c-tools: upgrade 4.3 -> 4.4 wangmy
@ 2024-10-25 5:39 ` wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 06/22] libarchive: upgrade 3.7.6 -> 3.7.7 wangmy
` (16 subsequent siblings)
20 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-10-25 5:39 UTC (permalink / raw)
To: openembedded-core; +Cc: Wang Mingyu
From: Wang Mingyu <wangmy@fujitsu.com>
Changelog:
============
* Make 256/true colors work better on Windows without -Da
* Fix build using --with-secure
* Fix crash when using --header on command line
* Fix possible crash when scrolling left/right or toggling -S
* Fix bug when using #stop in a lesskey file
* Fix bug when using --shift or --match-shift on command line with
a parameter starting with '.'
* Fix bug in R command when file size changes
* Fix bug using --header when file does not fill screen
* Fix ^X bug when output is not a terminal
* Fix bug where ^Z is not handled immediately
* Fix bug where first byte from a LESSOPEN filter is deleted if it is
greater than 0x7F
* Fix uninitialized variable in edit_ifile
* Fix incorrect handling of UTF-8 chars in prompts
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
meta/recipes-extended/less/{less_661.bb => less_668.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-extended/less/{less_661.bb => less_668.bb} (95%)
diff --git a/meta/recipes-extended/less/less_661.bb b/meta/recipes-extended/less/less_668.bb
similarity index 95%
rename from meta/recipes-extended/less/less_661.bb
rename to meta/recipes-extended/less/less_668.bb
index 061a494f0f..63fc367e33 100644
--- a/meta/recipes-extended/less/less_661.bb
+++ b/meta/recipes-extended/less/less_668.bb
@@ -29,7 +29,7 @@ SRC_URI = "http://www.greenwoodsoftware.com/${BPN}/${BPN}-${PV}.tar.gz \
file://run-ptest \
"
-SRC_URI[sha256sum] = "2b5f0167216e3ef0ffcb0c31c374e287eb035e4e223d5dae315c2783b6e738ed"
+SRC_URI[sha256sum] = "2819f55564d86d542abbecafd82ff61e819a3eec967faa36cd3e68f1596a44b8"
UPSTREAM_CHECK_URI = "http://www.greenwoodsoftware.com/less/download.html"
--
2.34.1
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [OE-core] [PATCH 06/22] libarchive: upgrade 3.7.6 -> 3.7.7
2024-10-25 5:39 [OE-core] [PATCH 01/22] autoconf-archive: upgrade 2023.02.20 -> 2024.10.16 wangmy
` (3 preceding siblings ...)
2024-10-25 5:39 ` [OE-core] [PATCH 05/22] less: upgrade 661 -> 668 wangmy
@ 2024-10-25 5:39 ` wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 07/22] libubootenv: upgrade 0.3.5 -> 0.3.6 wangmy
` (15 subsequent siblings)
20 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-10-25 5:39 UTC (permalink / raw)
To: openembedded-core; +Cc: Wang Mingyu
From: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
.../libarchive/{libarchive_3.7.6.bb => libarchive_3.7.7.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-extended/libarchive/{libarchive_3.7.6.bb => libarchive_3.7.7.bb} (96%)
diff --git a/meta/recipes-extended/libarchive/libarchive_3.7.6.bb b/meta/recipes-extended/libarchive/libarchive_3.7.7.bb
similarity index 96%
rename from meta/recipes-extended/libarchive/libarchive_3.7.6.bb
rename to meta/recipes-extended/libarchive/libarchive_3.7.7.bb
index a1cb34415e..0a0a6b374b 100644
--- a/meta/recipes-extended/libarchive/libarchive_3.7.6.bb
+++ b/meta/recipes-extended/libarchive/libarchive_3.7.7.bb
@@ -33,7 +33,7 @@ SRC_URI = "https://libarchive.org/downloads/libarchive-${PV}.tar.gz"
UPSTREAM_CHECK_URI = "http://libarchive.org/"
-SRC_URI[sha256sum] = "b4071807367b15b72777c2eaac80f42c8ea2d20212ab279514a19fe1f6f96ef4"
+SRC_URI[sha256sum] = "4cc540a3e9a1eebdefa1045d2e4184831100667e6d7d5b315bb1cbc951f8ddff"
CVE_STATUS[CVE-2023-30571] = "upstream-wontfix: upstream has documented that reported function is not thread-safe"
--
2.34.1
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [OE-core] [PATCH 07/22] libubootenv: upgrade 0.3.5 -> 0.3.6
2024-10-25 5:39 [OE-core] [PATCH 01/22] autoconf-archive: upgrade 2023.02.20 -> 2024.10.16 wangmy
` (4 preceding siblings ...)
2024-10-25 5:39 ` [OE-core] [PATCH 06/22] libarchive: upgrade 3.7.6 -> 3.7.7 wangmy
@ 2024-10-25 5:39 ` wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 08/22] libunistring: upgrade 1.2 -> 1.3 wangmy
` (14 subsequent siblings)
20 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-10-25 5:39 UTC (permalink / raw)
To: openembedded-core; +Cc: Wang Mingyu
From: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
.../u-boot/{libubootenv_0.3.5.bb => libubootenv_0.3.6.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-bsp/u-boot/{libubootenv_0.3.5.bb => libubootenv_0.3.6.bb} (93%)
diff --git a/meta/recipes-bsp/u-boot/libubootenv_0.3.5.bb b/meta/recipes-bsp/u-boot/libubootenv_0.3.6.bb
similarity index 93%
rename from meta/recipes-bsp/u-boot/libubootenv_0.3.5.bb
rename to meta/recipes-bsp/u-boot/libubootenv_0.3.6.bb
index b68bbb430a..8c7a59ba96 100644
--- a/meta/recipes-bsp/u-boot/libubootenv_0.3.5.bb
+++ b/meta/recipes-bsp/u-boot/libubootenv_0.3.6.bb
@@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "file://LICENSES/LGPL-2.1-or-later.txt;md5=4fbd65380cdd255951
SECTION = "libs"
SRC_URI = "git://github.com/sbabic/libubootenv;protocol=https;branch=master"
-SRCREV = "3f4d15e36ceb58085b08dd13f3f2788e9299877b"
+SRCREV = "5507339628b5caf244e1ff9d58cb3fa534b16beb"
S = "${WORKDIR}/git"
--
2.34.1
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [OE-core] [PATCH 08/22] libunistring: upgrade 1.2 -> 1.3
2024-10-25 5:39 [OE-core] [PATCH 01/22] autoconf-archive: upgrade 2023.02.20 -> 2024.10.16 wangmy
` (5 preceding siblings ...)
2024-10-25 5:39 ` [OE-core] [PATCH 07/22] libubootenv: upgrade 0.3.5 -> 0.3.6 wangmy
@ 2024-10-25 5:39 ` wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 09/22] libuv: upgrade 1.49.0 -> 1.49.2 wangmy
` (13 subsequent siblings)
20 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-10-25 5:39 UTC (permalink / raw)
To: openembedded-core; +Cc: Wang Mingyu
From: Wang Mingyu <wangmy@fujitsu.com>
Changelog:
===========
* The data tables and algorithms have been updated to Unicode version 16.0.0.
* New function
uc_is_property_modifier_combining_mark
and new constant
UC_PROPERTY_MODIFIER_COMBINING_MARK.
* Fixed a bug in the *printf functions: The %ls and %lc directives could
lead to a crash on Solaris and MSVC.
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
.../libunistring/{libunistring_1.2.bb => libunistring_1.3.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-support/libunistring/{libunistring_1.2.bb => libunistring_1.3.bb} (93%)
diff --git a/meta/recipes-support/libunistring/libunistring_1.2.bb b/meta/recipes-support/libunistring/libunistring_1.3.bb
similarity index 93%
rename from meta/recipes-support/libunistring/libunistring_1.2.bb
rename to meta/recipes-support/libunistring/libunistring_1.3.bb
index 3018dbfdfb..08531acec1 100644
--- a/meta/recipes-support/libunistring/libunistring_1.2.bb
+++ b/meta/recipes-support/libunistring/libunistring_1.3.bb
@@ -21,7 +21,7 @@ LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=6a6a8e020838b23406c81b19c1d46df6 \
DEPENDS = "gperf-native"
SRC_URI = "${GNU_MIRROR}/libunistring/libunistring-${PV}.tar.gz"
-SRC_URI[sha256sum] = "fd6d5662fa706487c48349a758b57bc149ce94ec6c30624ec9fdc473ceabbc8e"
+SRC_URI[sha256sum] = "8ea8ccf86c09dd801c8cac19878e804e54f707cf69884371130d20bde68386b7"
inherit autotools texinfo
BBCLASSEXTEND = "native nativesdk"
--
2.34.1
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [OE-core] [PATCH 09/22] libuv: upgrade 1.49.0 -> 1.49.2
2024-10-25 5:39 [OE-core] [PATCH 01/22] autoconf-archive: upgrade 2023.02.20 -> 2024.10.16 wangmy
` (6 preceding siblings ...)
2024-10-25 5:39 ` [OE-core] [PATCH 08/22] libunistring: upgrade 1.2 -> 1.3 wangmy
@ 2024-10-25 5:39 ` wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 10/22] libxmlb: upgrade 0.3.19 -> 0.3.21 wangmy
` (12 subsequent siblings)
20 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-10-25 5:39 UTC (permalink / raw)
To: openembedded-core; +Cc: Wang Mingyu
From: Wang Mingyu <wangmy@fujitsu.com>
Changelog:
==========
* win,fs: remove trailing slash in junctions
* Revert "linux: eliminate a read on eventfd per wakeup"
* win: Fix linked list logic in getaddrinfo
* win: fix compilation against Windows 24H2 SDK
* win: remap ERROR_NOACCESS and ERROR_BUFFER_OVERFLOW
* win,fs: match trailing slash presence in junctions to user input
* build: add darwin-syscalls.h to release tarball
* linux: use IORING_SETUP_NO_SQARRAY when available
* linux: use IORING_OP_FTRUNCATE when available
* win: fix pNtQueryDirectoryFile check
* win: fix WriteFile() error translation
* win,fs: uv_fs_rmdir() to return ENOENT on file
* win,pipe: ipc code does not support async read
* netbsd: fix build
* win,fs: fix bug in fs__readdir
* unix: workaround gcc bug on armv7
* unix: work around arm-linux-gnueabihf-gcc bug
* unix: fix uv_tcp_keepalive in smartOS
* unix: fix uv_getrusage ru_maxrss on solaris
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
.../libuv/{libuv_1.49.0.bb => libuv_1.49.2.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-connectivity/libuv/{libuv_1.49.0.bb => libuv_1.49.2.bb} (94%)
diff --git a/meta/recipes-connectivity/libuv/libuv_1.49.0.bb b/meta/recipes-connectivity/libuv/libuv_1.49.2.bb
similarity index 94%
rename from meta/recipes-connectivity/libuv/libuv_1.49.0.bb
rename to meta/recipes-connectivity/libuv/libuv_1.49.2.bb
index 1dd73f2f8c..ecffb30c24 100644
--- a/meta/recipes-connectivity/libuv/libuv_1.49.0.bb
+++ b/meta/recipes-connectivity/libuv/libuv_1.49.2.bb
@@ -6,7 +6,7 @@ LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=74b6f2f7818a4e3a80d03556f71b129b \
file://LICENSE-extra;md5=f9307417749e19bd1d6d68a394b49324"
-SRCREV = "d2e56a5e8d3e39947b78405ca6e4727c70f5568a"
+SRCREV = "e1095c7a4373ce00cd8874d8e820de5afb25776e"
SRC_URI = "git://github.com/libuv/libuv.git;branch=v1.x;protocol=https"
UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>\d+(\.\d+)+)"
--
2.34.1
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [OE-core] [PATCH 10/22] libxmlb: upgrade 0.3.19 -> 0.3.21
2024-10-25 5:39 [OE-core] [PATCH 01/22] autoconf-archive: upgrade 2023.02.20 -> 2024.10.16 wangmy
` (7 preceding siblings ...)
2024-10-25 5:39 ` [OE-core] [PATCH 09/22] libuv: upgrade 1.49.0 -> 1.49.2 wangmy
@ 2024-10-25 5:39 ` wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 11/22] llvm: upgrade 19.1.0 -> 19.1.2 wangmy
` (11 subsequent siblings)
20 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-10-25 5:39 UTC (permalink / raw)
To: openembedded-core; +Cc: Wang Mingyu
From: Wang Mingyu <wangmy@fujitsu.com>
0001-xb-selftest.c-hardcode-G_TEST_SRCDIR.patch
refreshed for 0.3.21
Changelogg:
===========
- Check for corrupt XbSiloNode values in a smarter way
- Do not always strip literal text
- Do not assume .txt files are application/xml
- Fix a crash when loading a corrupt XMLb store
- Fix writing files on Windows
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
.../libxmlb/0001-xb-selftest.c-hardcode-G_TEST_SRCDIR.patch | 6 +++---
.../libxmlb/{libxmlb_0.3.19.bb => libxmlb_0.3.21.bb} | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
rename meta/recipes-gnome/libxmlb/{libxmlb_0.3.19.bb => libxmlb_0.3.21.bb} (93%)
diff --git a/meta/recipes-gnome/libxmlb/libxmlb/0001-xb-selftest.c-hardcode-G_TEST_SRCDIR.patch b/meta/recipes-gnome/libxmlb/libxmlb/0001-xb-selftest.c-hardcode-G_TEST_SRCDIR.patch
index 27081d8749..e37c3245e0 100644
--- a/meta/recipes-gnome/libxmlb/libxmlb/0001-xb-selftest.c-hardcode-G_TEST_SRCDIR.patch
+++ b/meta/recipes-gnome/libxmlb/libxmlb/0001-xb-selftest.c-hardcode-G_TEST_SRCDIR.patch
@@ -1,4 +1,4 @@
-From 8a1aa4c318b8dbe4c0c2b1c4968f867ea6641b32 Mon Sep 17 00:00:00 2001
+From b2dc47ed498d69ecac05b68abddefc7ca65983c3 Mon Sep 17 00:00:00 2001
From: Markus Volk <f_l_k@t-online.de>
Date: Sat, 16 Sep 2023 14:02:57 +0200
Subject: [PATCH] xb-self-test.c: hardcode G_TEST_SRCDIR
@@ -18,10 +18,10 @@ Signed-off-by: Markus Volk <f_l_k@t-online.de>
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/xb-self-test.c b/src/xb-self-test.c
-index 1daca18..2e5b251 100644
+index baba19e..7da3b6f 100644
--- a/src/xb-self-test.c
+++ b/src/xb-self-test.c
-@@ -2876,7 +2876,7 @@ xb_speed_func(void)
+@@ -2882,7 +2882,7 @@ xb_speed_func(void)
int
main(int argc, char **argv)
{
diff --git a/meta/recipes-gnome/libxmlb/libxmlb_0.3.19.bb b/meta/recipes-gnome/libxmlb/libxmlb_0.3.21.bb
similarity index 93%
rename from meta/recipes-gnome/libxmlb/libxmlb_0.3.19.bb
rename to meta/recipes-gnome/libxmlb/libxmlb_0.3.21.bb
index de8d860d00..c78b5eeaea 100644
--- a/meta/recipes-gnome/libxmlb/libxmlb_0.3.19.bb
+++ b/meta/recipes-gnome/libxmlb/libxmlb_0.3.21.bb
@@ -8,7 +8,7 @@ SRC_URI = " \
file://0001-xb-selftest.c-hardcode-G_TEST_SRCDIR.patch \
file://run-ptest \
"
-SRCREV = "4393955fb7c8bbcb6a2c65ff54f16c39dc165e59"
+SRCREV = "4cff6ece25f47b8fb740881387e50a00df922c57"
S = "${WORKDIR}/git"
DEPENDS = "glib-2.0 xz zstd"
--
2.34.1
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [OE-core] [PATCH 11/22] llvm: upgrade 19.1.0 -> 19.1.2
2024-10-25 5:39 [OE-core] [PATCH 01/22] autoconf-archive: upgrade 2023.02.20 -> 2024.10.16 wangmy
` (8 preceding siblings ...)
2024-10-25 5:39 ` [OE-core] [PATCH 10/22] libxmlb: upgrade 0.3.19 -> 0.3.21 wangmy
@ 2024-10-25 5:39 ` wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 12/22] meson: upgrade 1.5.2 -> 1.6.0 wangmy
` (10 subsequent siblings)
20 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-10-25 5:39 UTC (permalink / raw)
To: openembedded-core; +Cc: Wang Mingyu
From: Wang Mingyu <wangmy@fujitsu.com>
Changelog:
https://discourse.llvm.org/t/llvm-19-1-2-released/82550
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
meta/recipes-devtools/llvm/{llvm_19.1.0.bb => llvm_19.1.2.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-devtools/llvm/{llvm_19.1.0.bb => llvm_19.1.2.bb} (98%)
diff --git a/meta/recipes-devtools/llvm/llvm_19.1.0.bb b/meta/recipes-devtools/llvm/llvm_19.1.2.bb
similarity index 98%
rename from meta/recipes-devtools/llvm/llvm_19.1.0.bb
rename to meta/recipes-devtools/llvm/llvm_19.1.2.bb
index 35e7f4c07f..7128d1e71e 100644
--- a/meta/recipes-devtools/llvm/llvm_19.1.0.bb
+++ b/meta/recipes-devtools/llvm/llvm_19.1.2.bb
@@ -27,7 +27,7 @@ SRC_URI = "https://github.com/llvm/llvm-project/releases/download/llvmorg-${PV}/
file://0001-AsmMatcherEmitter-sort-ClassInfo-lists-by-name-as-we.patch;striplevel=2 \
file://llvm-config \
"
-SRC_URI[sha256sum] = "5042522b49945bc560ff9206f25fb87980a9b89b914193ca00d961511ff0673c"
+SRC_URI[sha256sum] = "3666f01fc52d8a0b0da83e107d74f208f001717824be0b80007f529453aa1e19"
UPSTREAM_CHECK_URI = "https://github.com/llvm/llvm-project"
UPSTREAM_CHECK_REGEX = "llvmorg-(?P<pver>\d+(\.\d+)+)"
--
2.34.1
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [OE-core] [PATCH 12/22] meson: upgrade 1.5.2 -> 1.6.0
2024-10-25 5:39 [OE-core] [PATCH 01/22] autoconf-archive: upgrade 2023.02.20 -> 2024.10.16 wangmy
` (9 preceding siblings ...)
2024-10-25 5:39 ` [OE-core] [PATCH 11/22] llvm: upgrade 19.1.0 -> 19.1.2 wangmy
@ 2024-10-25 5:39 ` wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 13/22] ofono: upgrade 2.10 -> 2.11 wangmy
` (9 subsequent siblings)
20 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-10-25 5:39 UTC (permalink / raw)
To: openembedded-core; +Cc: Wang Mingyu
From: Wang Mingyu <wangmy@fujitsu.com>
0001-Make-CPU-family-warnings-fatal.patch
0001-python-module-do-not-manipulate-the-environment-when.patch
refreshed for 1.6.0
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
.../meson/meson/0001-Make-CPU-family-warnings-fatal.patch | 6 +++---
...on-module-do-not-manipulate-the-environment-when.patch | 8 ++++----
.../meson/{meson_1.5.2.bb => meson_1.6.0.bb} | 2 +-
3 files changed, 8 insertions(+), 8 deletions(-)
rename meta/recipes-devtools/meson/{meson_1.5.2.bb => meson_1.6.0.bb} (98%)
diff --git a/meta/recipes-devtools/meson/meson/0001-Make-CPU-family-warnings-fatal.patch b/meta/recipes-devtools/meson/meson/0001-Make-CPU-family-warnings-fatal.patch
index b272fd45b0..85f8a81cf4 100644
--- a/meta/recipes-devtools/meson/meson/0001-Make-CPU-family-warnings-fatal.patch
+++ b/meta/recipes-devtools/meson/meson/0001-Make-CPU-family-warnings-fatal.patch
@@ -1,4 +1,4 @@
-From 13e05ca933a572c1caf93372df808a30976f99cd Mon Sep 17 00:00:00 2001
+From 57ab007ab3d510292d7ce7e8929eaaa93d169c51 Mon Sep 17 00:00:00 2001
From: Ross Burton <ross.burton@intel.com>
Date: Tue, 3 Jul 2018 13:59:09 +0100
Subject: [PATCH] Make CPU family warnings fatal
@@ -26,10 +26,10 @@ index 86bad9b..9703315 100644
endian = literal['endian']
if endian not in ('little', 'big'):
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py
-index 484ef45..cf4a3ba 100644
+index 71a2f3a..4cbeabe 100644
--- a/mesonbuild/environment.py
+++ b/mesonbuild/environment.py
-@@ -389,10 +389,8 @@ def detect_cpu_family(compilers: CompilersDict) -> str:
+@@ -416,10 +416,8 @@ def detect_cpu_family(compilers: CompilersDict) -> str:
if compilers and not any_compiler_has_define(compilers, '__mips64'):
trial = 'mips'
diff --git a/meta/recipes-devtools/meson/meson/0001-python-module-do-not-manipulate-the-environment-when.patch b/meta/recipes-devtools/meson/meson/0001-python-module-do-not-manipulate-the-environment-when.patch
index b4671f591f..d570cb01a0 100644
--- a/meta/recipes-devtools/meson/meson/0001-python-module-do-not-manipulate-the-environment-when.patch
+++ b/meta/recipes-devtools/meson/meson/0001-python-module-do-not-manipulate-the-environment-when.patch
@@ -1,4 +1,4 @@
-From 66e350bbbd65e56a0d19c75710f61503e15e24a2 Mon Sep 17 00:00:00 2001
+From 17e9d8cefe934346b21333241446373868d2cdb0 Mon Sep 17 00:00:00 2001
From: Alexander Kanavin <alex.kanavin@gmail.com>
Date: Mon, 19 Nov 2018 14:24:26 +0100
Subject: [PATCH] python module: do not manipulate the environment when calling
@@ -11,10 +11,10 @@ Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/mesonbuild/dependencies/python.py b/mesonbuild/dependencies/python.py
-index 883a29a..52bfbf3 100644
+index fff4aaa..1fde2f6 100644
--- a/mesonbuild/dependencies/python.py
+++ b/mesonbuild/dependencies/python.py
-@@ -399,9 +399,6 @@ def python_factory(env: 'Environment', for_machine: 'MachineChoice',
+@@ -400,9 +400,6 @@ def python_factory(env: 'Environment', for_machine: 'MachineChoice',
empty.name = 'python'
return empty
@@ -24,7 +24,7 @@ index 883a29a..52bfbf3 100644
try:
return PythonPkgConfigDependency(name, env, kwargs, installation, True)
finally:
-@@ -410,8 +407,7 @@ def python_factory(env: 'Environment', for_machine: 'MachineChoice',
+@@ -411,8 +408,7 @@ def python_factory(env: 'Environment', for_machine: 'MachineChoice',
os.environ[name] = value
elif name in os.environ:
del os.environ[name]
diff --git a/meta/recipes-devtools/meson/meson_1.5.2.bb b/meta/recipes-devtools/meson/meson_1.6.0.bb
similarity index 98%
rename from meta/recipes-devtools/meson/meson_1.5.2.bb
rename to meta/recipes-devtools/meson/meson_1.6.0.bb
index beb1751e6f..46127b7a9b 100644
--- a/meta/recipes-devtools/meson/meson_1.5.2.bb
+++ b/meta/recipes-devtools/meson/meson_1.6.0.bb
@@ -15,7 +15,7 @@ SRC_URI = "${GITHUB_BASE_URI}/download/${PV}/meson-${PV}.tar.gz \
file://0001-Make-CPU-family-warnings-fatal.patch \
file://0002-Support-building-allarch-recipes-again.patch \
"
-SRC_URI[sha256sum] = "f955e09ab0d71ef180ae85df65991d58ed8430323de7d77a37e11c9ea630910b"
+SRC_URI[sha256sum] = "999b65f21c03541cf11365489c1fad22e2418bb0c3d50ca61139f2eec09d5496"
UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)$"
inherit python_setuptools_build_meta github-releases
--
2.34.1
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [OE-core] [PATCH 13/22] ofono: upgrade 2.10 -> 2.11
2024-10-25 5:39 [OE-core] [PATCH 01/22] autoconf-archive: upgrade 2023.02.20 -> 2024.10.16 wangmy
` (10 preceding siblings ...)
2024-10-25 5:39 ` [OE-core] [PATCH 12/22] meson: upgrade 1.5.2 -> 1.6.0 wangmy
@ 2024-10-25 5:39 ` wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 14/22] ptest-runner: upgrade 2.4.5 -> 2.5.1 wangmy
` (8 subsequent siblings)
20 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-10-25 5:39 UTC (permalink / raw)
To: openembedded-core; +Cc: Wang Mingyu
From: Wang Mingyu <wangmy@fujitsu.com>
Changelog:
===========
- Add support for SIMCom A7672E-FASE modem.
- Add support for Quectel EG916Q-GL modem.
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
.../recipes-connectivity/ofono/{ofono_2.10.bb => ofono_2.11.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-connectivity/ofono/{ofono_2.10.bb => ofono_2.11.bb} (95%)
diff --git a/meta/recipes-connectivity/ofono/ofono_2.10.bb b/meta/recipes-connectivity/ofono/ofono_2.11.bb
similarity index 95%
rename from meta/recipes-connectivity/ofono/ofono_2.10.bb
rename to meta/recipes-connectivity/ofono/ofono_2.11.bb
index c1f686b164..85119c73d4 100644
--- a/meta/recipes-connectivity/ofono/ofono_2.10.bb
+++ b/meta/recipes-connectivity/ofono/ofono_2.11.bb
@@ -11,7 +11,7 @@ SRC_URI = "\
${KERNELORG_MIRROR}/linux/network/${BPN}/${BP}.tar.xz \
file://ofono \
"
-SRC_URI[sha256sum] = "ce65c12e446f7b15d2ed98a220f9cc6f1571b269d83c4f14b0a2d67c33919fef"
+SRC_URI[sha256sum] = "fa908ac79e2ffaa52391b6c6737cd451275ef788284e46d3f05a7a409bc52cfc"
inherit autotools pkgconfig update-rc.d systemd gobject-introspection-data
--
2.34.1
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [OE-core] [PATCH 14/22] ptest-runner: upgrade 2.4.5 -> 2.5.1
2024-10-25 5:39 [OE-core] [PATCH 01/22] autoconf-archive: upgrade 2023.02.20 -> 2024.10.16 wangmy
` (11 preceding siblings ...)
2024-10-25 5:39 ` [OE-core] [PATCH 13/22] ofono: upgrade 2.10 -> 2.11 wangmy
@ 2024-10-25 5:39 ` wangmy
2024-10-25 9:12 ` Alexander Kanavin
2024-10-25 5:39 ` [OE-core] [PATCH 15/22] python3-jsonschema-specifications: upgrade 2023.12.1 -> 2024.10.1 wangmy
` (7 subsequent siblings)
20 siblings, 1 reply; 30+ messages in thread
From: wangmy @ 2024-10-25 5:39 UTC (permalink / raw)
To: openembedded-core; +Cc: Wang Mingyu
From: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
.../{ptest-runner_2.4.5.bb => ptest-runner_2.5.1.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-support/ptest-runner/{ptest-runner_2.4.5.bb => ptest-runner_2.5.1.bb} (95%)
diff --git a/meta/recipes-support/ptest-runner/ptest-runner_2.4.5.bb b/meta/recipes-support/ptest-runner/ptest-runner_2.5.1.bb
similarity index 95%
rename from meta/recipes-support/ptest-runner/ptest-runner_2.4.5.bb
rename to meta/recipes-support/ptest-runner/ptest-runner_2.5.1.bb
index d28ae7ca91..e07f5d444b 100644
--- a/meta/recipes-support/ptest-runner/ptest-runner_2.4.5.bb
+++ b/meta/recipes-support/ptest-runner/ptest-runner_2.5.1.bb
@@ -7,7 +7,7 @@ HOMEPAGE = "http://git.yoctoproject.org/cgit/cgit.cgi/ptest-runner2/about/"
LICENSE = "GPL-2.0-or-later"
LIC_FILES_CHKSUM = "file://LICENSE;md5=751419260aa954499f7abaabaa882bbe"
-SRCREV = "aea9f42f87f2a78a973ae22cade8e45259f754e1"
+SRCREV = "c99e8c2737ff802f110612cc2d90c60233c33255"
PV .= "+git"
SRC_URI = "git://git.yoctoproject.org/ptest-runner2;branch=master;protocol=https \
--
2.34.1
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [OE-core] [PATCH 15/22] python3-jsonschema-specifications: upgrade 2023.12.1 -> 2024.10.1
2024-10-25 5:39 [OE-core] [PATCH 01/22] autoconf-archive: upgrade 2023.02.20 -> 2024.10.16 wangmy
` (12 preceding siblings ...)
2024-10-25 5:39 ` [OE-core] [PATCH 14/22] ptest-runner: upgrade 2.4.5 -> 2.5.1 wangmy
@ 2024-10-25 5:39 ` wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 16/22] python3-poetry-core: upgrade 1.9.0 -> 1.9.1 wangmy
` (6 subsequent siblings)
20 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-10-25 5:39 UTC (permalink / raw)
To: openembedded-core; +Cc: Wang Mingyu
From: Wang Mingyu <wangmy@fujitsu.com>
Changelog:
Declare support for Python 3.13
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
...3.12.1.bb => python3-jsonschema-specifications_2024.10.1.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-devtools/python/{python3-jsonschema-specifications_2023.12.1.bb => python3-jsonschema-specifications_2024.10.1.bb} (86%)
diff --git a/meta/recipes-devtools/python/python3-jsonschema-specifications_2023.12.1.bb b/meta/recipes-devtools/python/python3-jsonschema-specifications_2024.10.1.bb
similarity index 86%
rename from meta/recipes-devtools/python/python3-jsonschema-specifications_2023.12.1.bb
rename to meta/recipes-devtools/python/python3-jsonschema-specifications_2024.10.1.bb
index 4ee0dd9b12..6ef83e0554 100644
--- a/meta/recipes-devtools/python/python3-jsonschema-specifications_2023.12.1.bb
+++ b/meta/recipes-devtools/python/python3-jsonschema-specifications_2024.10.1.bb
@@ -5,7 +5,7 @@ HOMEPAGE = "https://pypi.org/project/jsonschema-specifications/"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://COPYING;md5=93eb9740964b59e9ba30281255b044e2"
-SRC_URI[sha256sum] = "48a76787b3e70f5ed53f1160d2b81f586e4ca6d1548c5de7085d1682674764cc"
+SRC_URI[sha256sum] = "0f38b83639958ce1152d02a7f062902c41c8fd20d558b0c34344292d417ae272"
inherit pypi python_hatchling
--
2.34.1
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [OE-core] [PATCH 16/22] python3-poetry-core: upgrade 1.9.0 -> 1.9.1
2024-10-25 5:39 [OE-core] [PATCH 01/22] autoconf-archive: upgrade 2023.02.20 -> 2024.10.16 wangmy
` (13 preceding siblings ...)
2024-10-25 5:39 ` [OE-core] [PATCH 15/22] python3-jsonschema-specifications: upgrade 2023.12.1 -> 2024.10.1 wangmy
@ 2024-10-25 5:39 ` wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 17/22] python3-psutil: upgrade 6.0.0 -> 6.1.0 wangmy
` (5 subsequent siblings)
20 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-10-25 5:39 UTC (permalink / raw)
To: openembedded-core; +Cc: Wang Mingyu
From: Wang Mingyu <wangmy@fujitsu.com>
Changelog:
===========
Add 3.13 to the list of available Python versions
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
...ython3-poetry-core_1.9.0.bb => python3-poetry-core_1.9.1.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-devtools/python/{python3-poetry-core_1.9.0.bb => python3-poetry-core_1.9.1.bb} (94%)
diff --git a/meta/recipes-devtools/python/python3-poetry-core_1.9.0.bb b/meta/recipes-devtools/python/python3-poetry-core_1.9.1.bb
similarity index 94%
rename from meta/recipes-devtools/python/python3-poetry-core_1.9.0.bb
rename to meta/recipes-devtools/python/python3-poetry-core_1.9.1.bb
index a073f8b069..173c3bdb68 100644
--- a/meta/recipes-devtools/python/python3-poetry-core_1.9.0.bb
+++ b/meta/recipes-devtools/python/python3-poetry-core_1.9.1.bb
@@ -15,7 +15,7 @@ LIC_FILES_CHKSUM = "\
file://src/poetry/core/_vendor/tomli/LICENSE;md5=aaaaf0879d17df0110d1aa8c8c9f46f5 \
"
-SRC_URI[sha256sum] = "fa7a4001eae8aa572ee84f35feb510b321bd652e5cf9293249d62853e1f935a2"
+SRC_URI[sha256sum] = "7a2d49214bf58b4f17f99d6891d947a9836c9899a67a5069f52d7b67217f61b8"
inherit python_poetry_core pypi
--
2.34.1
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [OE-core] [PATCH 17/22] python3-psutil: upgrade 6.0.0 -> 6.1.0
2024-10-25 5:39 [OE-core] [PATCH 01/22] autoconf-archive: upgrade 2023.02.20 -> 2024.10.16 wangmy
` (14 preceding siblings ...)
2024-10-25 5:39 ` [OE-core] [PATCH 16/22] python3-poetry-core: upgrade 1.9.0 -> 1.9.1 wangmy
@ 2024-10-25 5:39 ` wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 18/22] python3-rdflib: upgrade 7.0.0 -> 7.1.0 wangmy
` (4 subsequent siblings)
20 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-10-25 5:39 UTC (permalink / raw)
To: openembedded-core; +Cc: Wang Mingyu
From: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
.../python/{python3-psutil_6.0.0.bb => python3-psutil_6.1.0.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-devtools/python/{python3-psutil_6.0.0.bb => python3-psutil_6.1.0.bb} (90%)
diff --git a/meta/recipes-devtools/python/python3-psutil_6.0.0.bb b/meta/recipes-devtools/python/python3-psutil_6.1.0.bb
similarity index 90%
rename from meta/recipes-devtools/python/python3-psutil_6.0.0.bb
rename to meta/recipes-devtools/python/python3-psutil_6.1.0.bb
index 787bc61e89..bbff7f3fe5 100644
--- a/meta/recipes-devtools/python/python3-psutil_6.0.0.bb
+++ b/meta/recipes-devtools/python/python3-psutil_6.1.0.bb
@@ -3,7 +3,7 @@ LICENSE = "BSD-3-Clause"
LIC_FILES_CHKSUM = "file://LICENSE;md5=a9c72113a843d0d732a0ac1c200d81b1"
HOMEPAGE = "https://pypi.org/project/psutil/"
-SRC_URI[sha256sum] = "8faae4f310b6d969fa26ca0545338b21f73c6b15db7c4a8d934a5482faa818f2"
+SRC_URI[sha256sum] = "353815f59a7f64cdaca1c0307ee13558a0512f6db064e92fe833784f08539c7a"
inherit pypi python_setuptools_build_meta
--
2.34.1
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [OE-core] [PATCH 18/22] python3-rdflib: upgrade 7.0.0 -> 7.1.0
2024-10-25 5:39 [OE-core] [PATCH 01/22] autoconf-archive: upgrade 2023.02.20 -> 2024.10.16 wangmy
` (15 preceding siblings ...)
2024-10-25 5:39 ` [OE-core] [PATCH 17/22] python3-psutil: upgrade 6.0.0 -> 6.1.0 wangmy
@ 2024-10-25 5:39 ` wangmy
2024-10-29 9:40 ` Mathieu Dubois-Briand
2024-10-25 5:39 ` [OE-core] [PATCH 19/22] python3-sphinx-rtd-theme: upgrade 3.0.0 -> 3.0.1 wangmy
` (3 subsequent siblings)
20 siblings, 1 reply; 30+ messages in thread
From: wangmy @ 2024-10-25 5:39 UTC (permalink / raw)
To: openembedded-core; +Cc: Wang Mingyu
From: Wang Mingyu <wangmy@fujitsu.com>
License-Update: Copyright year updated to 2024.
Changelog:
https://github.com/RDFLib/rdflib/blob/main/CHANGELOG.md#2024-10-17-release-710
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
.../{python3-rdflib_7.0.0.bb => python3-rdflib_7.1.0.bb} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
rename meta/recipes-devtools/python/{python3-rdflib_7.0.0.bb => python3-rdflib_7.1.0.bb} (71%)
diff --git a/meta/recipes-devtools/python/python3-rdflib_7.0.0.bb b/meta/recipes-devtools/python/python3-rdflib_7.1.0.bb
similarity index 71%
rename from meta/recipes-devtools/python/python3-rdflib_7.0.0.bb
rename to meta/recipes-devtools/python/python3-rdflib_7.1.0.bb
index 4057c1dbbc..2715c36810 100644
--- a/meta/recipes-devtools/python/python3-rdflib_7.0.0.bb
+++ b/meta/recipes-devtools/python/python3-rdflib_7.1.0.bb
@@ -2,9 +2,9 @@ SUMMARY = "RDFLib is a pure Python package for working with RDF"
HOMEPAGE = "https://github.com/RDFLib/rdflib"
SECTION = "devel/python"
LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=37d489c0cefe52a17e1d5007e196464a"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=e1efde25e459057a815649b18cbefa5e"
-SRC_URI[sha256sum] = "9995eb8569428059b8c1affd26b25eac510d64f5043d9ce8c84e0d0036e995ae"
+SRC_URI[sha256sum] = "a29a8fccebd3d3a5f1b7e88d92dace1c89829018c7d29a6114fff4449c188b3b"
inherit pypi python_poetry_core
--
2.34.1
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [OE-core] [PATCH 19/22] python3-sphinx-rtd-theme: upgrade 3.0.0 -> 3.0.1
2024-10-25 5:39 [OE-core] [PATCH 01/22] autoconf-archive: upgrade 2023.02.20 -> 2024.10.16 wangmy
` (16 preceding siblings ...)
2024-10-25 5:39 ` [OE-core] [PATCH 18/22] python3-rdflib: upgrade 7.0.0 -> 7.1.0 wangmy
@ 2024-10-25 5:39 ` wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 20/22] python3-xmltodict: upgrade 0.13.0 -> 0.14.2 wangmy
` (2 subsequent siblings)
20 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-10-25 5:39 UTC (permalink / raw)
To: openembedded-core; +Cc: Wang Mingyu
From: Wang Mingyu <wangmy@fujitsu.com>
Changelog:
Use black color for text in selectors.
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
...inx-rtd-theme_3.0.0.bb => python3-sphinx-rtd-theme_3.0.1.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-devtools/python/{python3-sphinx-rtd-theme_3.0.0.bb => python3-sphinx-rtd-theme_3.0.1.bb} (89%)
diff --git a/meta/recipes-devtools/python/python3-sphinx-rtd-theme_3.0.0.bb b/meta/recipes-devtools/python/python3-sphinx-rtd-theme_3.0.1.bb
similarity index 89%
rename from meta/recipes-devtools/python/python3-sphinx-rtd-theme_3.0.0.bb
rename to meta/recipes-devtools/python/python3-sphinx-rtd-theme_3.0.1.bb
index f02f1fe42d..b4d0d2be90 100644
--- a/meta/recipes-devtools/python/python3-sphinx-rtd-theme_3.0.0.bb
+++ b/meta/recipes-devtools/python/python3-sphinx-rtd-theme_3.0.1.bb
@@ -14,7 +14,7 @@ RDEPENDS:${PN} += " \
PYPI_PACKAGE = "sphinx_rtd_theme"
-SRC_URI[sha256sum] = "905d67de03217fd3d76fbbdd992034ac8e77044ef8063a544dda1af74d409e08"
+SRC_URI[sha256sum] = "a4c5745d1b06dfcb80b7704fe532eb765b44065a8fad9851e4258c8804140703"
UPSTREAM_CHECK_REGEX ?= "/sphinx-rtd-theme/(?P<pver>(\d+[\.\-_]*)+)/"
inherit setuptools3 pypi
--
2.34.1
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [OE-core] [PATCH 20/22] python3-xmltodict: upgrade 0.13.0 -> 0.14.2
2024-10-25 5:39 [OE-core] [PATCH 01/22] autoconf-archive: upgrade 2023.02.20 -> 2024.10.16 wangmy
` (17 preceding siblings ...)
2024-10-25 5:39 ` [OE-core] [PATCH 19/22] python3-sphinx-rtd-theme: upgrade 3.0.0 -> 3.0.1 wangmy
@ 2024-10-25 5:39 ` wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 21/22] systemd: upgrade 256.6 -> 256.7 wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 22/22] xtrans: upgrade 1.5.0 -> 1.5.1 wangmy
20 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-10-25 5:39 UTC (permalink / raw)
To: openembedded-core; +Cc: Wang Mingyu
From: Wang Mingyu <wangmy@fujitsu.com>
Changelog:
===========
- Revert "Ensure significant whitespace is not trimmed"
- Drop support for Python older than 3.6
- Additional ruff/Pyflakes/codespell fixes.
- Drop old Python 2 support leftover code and apply several RUFF code health fixes.
- Add Python 3.11, 3.12 and 3.13 support and tests.
- Tests in gh-action.
- Remove defusedexpat import.
- Replace deprecated BadZipfile with BadZipFile.
- Support indent using integer format, enable python -m unittest tests/*.py.
- Ensure significant whitespace is not trimmed
- added conda installation command
- fix attributes not appearing in streaming mode
- Fix Travis CI status badge URL
- Update push_release.sh to use twine.
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
...{python3-xmltodict_0.13.0.bb => python3-xmltodict_0.14.2.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-devtools/python/{python3-xmltodict_0.13.0.bb => python3-xmltodict_0.14.2.bb} (86%)
diff --git a/meta/recipes-devtools/python/python3-xmltodict_0.13.0.bb b/meta/recipes-devtools/python/python3-xmltodict_0.14.2.bb
similarity index 86%
rename from meta/recipes-devtools/python/python3-xmltodict_0.13.0.bb
rename to meta/recipes-devtools/python/python3-xmltodict_0.14.2.bb
index e8e275647c..e99fa3826e 100644
--- a/meta/recipes-devtools/python/python3-xmltodict_0.13.0.bb
+++ b/meta/recipes-devtools/python/python3-xmltodict_0.14.2.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/martinblech/xmltodict"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=01441d50dc74476db58a41ac10cb9fa2"
-SRC_URI[sha256sum] = "341595a488e3e01a85a9d8911d8912fd922ede5fecc4dce437eb4b6c8d037e56"
+SRC_URI[sha256sum] = "201e7c28bb210e374999d1dde6382923ab0ed1a8a5faeece48ab525b7810a553"
PYPI_PACKAGE = "xmltodict"
--
2.34.1
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [OE-core] [PATCH 21/22] systemd: upgrade 256.6 -> 256.7
2024-10-25 5:39 [OE-core] [PATCH 01/22] autoconf-archive: upgrade 2023.02.20 -> 2024.10.16 wangmy
` (18 preceding siblings ...)
2024-10-25 5:39 ` [OE-core] [PATCH 20/22] python3-xmltodict: upgrade 0.13.0 -> 0.14.2 wangmy
@ 2024-10-25 5:39 ` wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 22/22] xtrans: upgrade 1.5.0 -> 1.5.1 wangmy
20 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-10-25 5:39 UTC (permalink / raw)
To: openembedded-core; +Cc: Wang Mingyu
From: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
...ystemd-boot-native_256.6.bb => systemd-boot-native_256.7.bb} | 0
.../systemd/{systemd-boot_256.6.bb => systemd-boot_256.7.bb} | 0
meta/recipes-core/systemd/systemd.inc | 2 +-
.../recipes-core/systemd/{systemd_256.6.bb => systemd_256.7.bb} | 0
4 files changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-core/systemd/{systemd-boot-native_256.6.bb => systemd-boot-native_256.7.bb} (100%)
rename meta/recipes-core/systemd/{systemd-boot_256.6.bb => systemd-boot_256.7.bb} (100%)
rename meta/recipes-core/systemd/{systemd_256.6.bb => systemd_256.7.bb} (100%)
diff --git a/meta/recipes-core/systemd/systemd-boot-native_256.6.bb b/meta/recipes-core/systemd/systemd-boot-native_256.7.bb
similarity index 100%
rename from meta/recipes-core/systemd/systemd-boot-native_256.6.bb
rename to meta/recipes-core/systemd/systemd-boot-native_256.7.bb
diff --git a/meta/recipes-core/systemd/systemd-boot_256.6.bb b/meta/recipes-core/systemd/systemd-boot_256.7.bb
similarity index 100%
rename from meta/recipes-core/systemd/systemd-boot_256.6.bb
rename to meta/recipes-core/systemd/systemd-boot_256.7.bb
diff --git a/meta/recipes-core/systemd/systemd.inc b/meta/recipes-core/systemd/systemd.inc
index d6a3332efe..87bf9b78c0 100644
--- a/meta/recipes-core/systemd/systemd.inc
+++ b/meta/recipes-core/systemd/systemd.inc
@@ -15,7 +15,7 @@ LICENSE:libsystemd = "LGPL-2.1-or-later"
LIC_FILES_CHKSUM = "file://LICENSE.GPL2;md5=751419260aa954499f7abaabaa882bbe \
file://LICENSE.LGPL2.1;md5=4fbd65380cdd255951079008b364516c"
-SRCREV = "230f5613c97175985f878580ef2f5f1937963da6"
+SRCREV = "7635d01869ba325b9cf450923c8f13912b7ca536"
SRCBRANCH = "v256-stable"
SRC_URI = "git://github.com/systemd/systemd.git;protocol=https;branch=${SRCBRANCH}"
diff --git a/meta/recipes-core/systemd/systemd_256.6.bb b/meta/recipes-core/systemd/systemd_256.7.bb
similarity index 100%
rename from meta/recipes-core/systemd/systemd_256.6.bb
rename to meta/recipes-core/systemd/systemd_256.7.bb
--
2.34.1
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [OE-core] [PATCH 22/22] xtrans: upgrade 1.5.0 -> 1.5.1
2024-10-25 5:39 [OE-core] [PATCH 01/22] autoconf-archive: upgrade 2023.02.20 -> 2024.10.16 wangmy
` (19 preceding siblings ...)
2024-10-25 5:39 ` [OE-core] [PATCH 21/22] systemd: upgrade 256.6 -> 256.7 wangmy
@ 2024-10-25 5:39 ` wangmy
20 siblings, 0 replies; 30+ messages in thread
From: wangmy @ 2024-10-25 5:39 UTC (permalink / raw)
To: openembedded-core; +Cc: Wang Mingyu
From: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
.../xorg-lib/{xtrans_1.5.0.bb => xtrans_1.5.1.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-graphics/xorg-lib/{xtrans_1.5.0.bb => xtrans_1.5.1.bb} (88%)
diff --git a/meta/recipes-graphics/xorg-lib/xtrans_1.5.0.bb b/meta/recipes-graphics/xorg-lib/xtrans_1.5.1.bb
similarity index 88%
rename from meta/recipes-graphics/xorg-lib/xtrans_1.5.0.bb
rename to meta/recipes-graphics/xorg-lib/xtrans_1.5.1.bb
index 781382e516..ea362750df 100644
--- a/meta/recipes-graphics/xorg-lib/xtrans_1.5.0.bb
+++ b/meta/recipes-graphics/xorg-lib/xtrans_1.5.1.bb
@@ -22,4 +22,4 @@ inherit gettext
BBCLASSEXTEND = "native nativesdk"
-SRC_URI[sha256sum] = "1ba4b703696bfddbf40bacf25bce4e3efb2a0088878f017a50e9884b0c8fb1bd"
+SRC_URI[sha256sum] = "dea80fbd8c3c941495b4b1d2785cb652815d016849a0d2ef90d1140de916993e"
--
2.34.1
^ permalink raw reply related [flat|nested] 30+ messages in thread
* Re: [OE-core] [PATCH 02/22] bash: upgrade 5.2.32 -> 5.2.37
2024-10-25 5:39 ` [OE-core] [PATCH 02/22] bash: upgrade 5.2.32 -> 5.2.37 wangmy
@ 2024-10-25 9:10 ` Alexander Kanavin
0 siblings, 0 replies; 30+ messages in thread
From: Alexander Kanavin @ 2024-10-25 9:10 UTC (permalink / raw)
To: wangmy; +Cc: openembedded-core
On Fri, 25 Oct 2024 at 07:40, wangmy via lists.openembedded.org
<wangmy=fujitsu.com@lists.openembedded.org> wrote:
> 0001-fix-c99.patch
> refreshed for 5.2.37
Looks like it's actually removed as a backport?
Alex
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: [OE-core] [PATCH 14/22] ptest-runner: upgrade 2.4.5 -> 2.5.1
2024-10-25 5:39 ` [OE-core] [PATCH 14/22] ptest-runner: upgrade 2.4.5 -> 2.5.1 wangmy
@ 2024-10-25 9:12 ` Alexander Kanavin
2024-10-27 3:12 ` Mingyu Wang (Fujitsu)
0 siblings, 1 reply; 30+ messages in thread
From: Alexander Kanavin @ 2024-10-25 9:12 UTC (permalink / raw)
To: wangmy; +Cc: openembedded-core
The new version is actually 2.4.5.1:
https://git.yoctoproject.org/ptest-runner2/log/
I once again suggest that you use 'devtool upgrade' (or output from
AUH that is posted on this list twice a month), so mistakes like this
can be avoided.
Alex
On Fri, 25 Oct 2024 at 07:40, wangmy via lists.openembedded.org
<wangmy=fujitsu.com@lists.openembedded.org> wrote:
>
> From: Wang Mingyu <wangmy@fujitsu.com>
>
> Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
> ---
> .../{ptest-runner_2.4.5.bb => ptest-runner_2.5.1.bb} | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
> rename meta/recipes-support/ptest-runner/{ptest-runner_2.4.5.bb => ptest-runner_2.5.1.bb} (95%)
>
> diff --git a/meta/recipes-support/ptest-runner/ptest-runner_2.4.5.bb b/meta/recipes-support/ptest-runner/ptest-runner_2.5.1.bb
> similarity index 95%
> rename from meta/recipes-support/ptest-runner/ptest-runner_2.4.5.bb
> rename to meta/recipes-support/ptest-runner/ptest-runner_2.5.1.bb
> index d28ae7ca91..e07f5d444b 100644
> --- a/meta/recipes-support/ptest-runner/ptest-runner_2.4.5.bb
> +++ b/meta/recipes-support/ptest-runner/ptest-runner_2.5.1.bb
> @@ -7,7 +7,7 @@ HOMEPAGE = "http://git.yoctoproject.org/cgit/cgit.cgi/ptest-runner2/about/"
> LICENSE = "GPL-2.0-or-later"
> LIC_FILES_CHKSUM = "file://LICENSE;md5=751419260aa954499f7abaabaa882bbe"
>
> -SRCREV = "aea9f42f87f2a78a973ae22cade8e45259f754e1"
> +SRCREV = "c99e8c2737ff802f110612cc2d90c60233c33255"
> PV .= "+git"
>
> SRC_URI = "git://git.yoctoproject.org/ptest-runner2;branch=master;protocol=https \
> --
> 2.34.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#206325): https://lists.openembedded.org/g/openembedded-core/message/206325
> Mute This Topic: https://lists.openembedded.org/mt/109203593/1686489
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [alex.kanavin@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
^ permalink raw reply [flat|nested] 30+ messages in thread
* RE: [OE-core] [PATCH 14/22] ptest-runner: upgrade 2.4.5 -> 2.5.1
2024-10-25 9:12 ` Alexander Kanavin
@ 2024-10-27 3:12 ` Mingyu Wang (Fujitsu)
2024-10-28 19:46 ` Alexander Kanavin
[not found] ` <1802B5823947D89C.18751@lists.openembedded.org>
0 siblings, 2 replies; 30+ messages in thread
From: Mingyu Wang (Fujitsu) @ 2024-10-27 3:12 UTC (permalink / raw)
To: Alexander Kanavin; +Cc: openembedded-core@lists.openembedded.org
It was indeed done using devtool upgrade, but the version number of the resulting bb file is 2.5.1.
Although the version number is recorded as 2.4.5.1 in the bb file, I deleted that line when modifying the content of the bb file.
When modifying the patch, I forgot that the actual version number was 2.4.5.1, so I made a mistake.
So sorry to make that mistake.
--
Best Regards
---------------------------------------------------
Wang Mingyu
FUJITSU NANJING SOFTWARE TECHNOLOGY CO., LTD. (FNST)
No.6 Wenzhu Road, Nanjing, 210012, China
TEL:+86+25-86630566--8568
COINS: 79988548
FAX: +86+25-83317685
MAIL: wangmy@fujitsu.com
> -----Original Message-----
> From: Alexander Kanavin <alex.kanavin@gmail.com>
> Sent: Friday, October 25, 2024 5:13 PM
> To: Wang, Mingyu/王 鸣瑜 <wangmy@fujitsu.com>
> Cc: openembedded-core@lists.openembedded.org
> Subject: Re: [OE-core] [PATCH 14/22] ptest-runner: upgrade 2.4.5 -> 2.5.1
>
> The new version is actually 2.4.5.1:
> https://git.yoctoproject.org/ptest-runner2/log/
>
> I once again suggest that you use 'devtool upgrade' (or output from AUH that is
> posted on this list twice a month), so mistakes like this can be avoided.
>
> Alex
>
> On Fri, 25 Oct 2024 at 07:40, wangmy via lists.openembedded.org
> <wangmy=fujitsu.com@lists.openembedded.org> wrote:
> >
> > From: Wang Mingyu <wangmy@fujitsu.com>
> >
> > Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
> > ---
> > .../{ptest-runner_2.4.5.bb => ptest-runner_2.5.1.bb} | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-) rename
> > meta/recipes-support/ptest-runner/{ptest-runner_2.4.5.bb =>
> > ptest-runner_2.5.1.bb} (95%)
> >
> > diff --git a/meta/recipes-support/ptest-runner/ptest-runner_2.4.5.bb
> > b/meta/recipes-support/ptest-runner/ptest-runner_2.5.1.bb
> > similarity index 95%
> > rename from meta/recipes-support/ptest-runner/ptest-runner_2.4.5.bb
> > rename to meta/recipes-support/ptest-runner/ptest-runner_2.5.1.bb
> > index d28ae7ca91..e07f5d444b 100644
> > --- a/meta/recipes-support/ptest-runner/ptest-runner_2.4.5.bb
> > +++ b/meta/recipes-support/ptest-runner/ptest-runner_2.5.1.bb
> > @@ -7,7 +7,7 @@ HOMEPAGE =
> "http://git.yoctoproject.org/cgit/cgit.cgi/ptest-runner2/about/"
> > LICENSE = "GPL-2.0-or-later"
> > LIC_FILES_CHKSUM =
> "file://LICENSE;md5=751419260aa954499f7abaabaa882bbe"
> >
> > -SRCREV = "aea9f42f87f2a78a973ae22cade8e45259f754e1"
> > +SRCREV = "c99e8c2737ff802f110612cc2d90c60233c33255"
> > PV .= "+git"
> >
> > SRC_URI =
> > "git://git.yoctoproject.org/ptest-runner2;branch=master;protocol=https
> > \
> > --
> > 2.34.1
> >
> >
> > -=-=-=-=-=-=-=-=-=-=-=-
> > Links: You receive all messages sent to this group.
> > View/Reply Online (#206325):
> > https://lists.openembedded.org/g/openembedded-core/message/206325
> > Mute This Topic: https://lists.openembedded.org/mt/109203593/1686489
> > Group Owner: openembedded-core+owner@lists.openembedded.org
> > Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub
> > [alex.kanavin@gmail.com]
> > -=-=-=-=-=-=-=-=-=-=-=-
> >
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: [OE-core] [PATCH 14/22] ptest-runner: upgrade 2.4.5 -> 2.5.1
2024-10-27 3:12 ` Mingyu Wang (Fujitsu)
@ 2024-10-28 19:46 ` Alexander Kanavin
[not found] ` <1802B5823947D89C.18751@lists.openembedded.org>
1 sibling, 0 replies; 30+ messages in thread
From: Alexander Kanavin @ 2024-10-28 19:46 UTC (permalink / raw)
To: Mingyu Wang (Fujitsu); +Cc: openembedded-core@lists.openembedded.org
On Sun, 27 Oct 2024 at 04:12, Mingyu Wang (Fujitsu) <wangmy@fujitsu.com> wrote:
> It was indeed done using devtool upgrade, but the version number of the resulting bb file is 2.5.1.
> Although the version number is recorded as 2.4.5.1 in the bb file, I deleted that line when modifying the content of the bb file.
> When modifying the patch, I forgot that the actual version number was 2.4.5.1, so I made a mistake.
That's fine. But why did you have to modify the file? Did devtool
change something that you had to fix afterwards?
Alex
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: [OE-core] [PATCH 18/22] python3-rdflib: upgrade 7.0.0 -> 7.1.0
2024-10-25 5:39 ` [OE-core] [PATCH 18/22] python3-rdflib: upgrade 7.0.0 -> 7.1.0 wangmy
@ 2024-10-29 9:40 ` Mathieu Dubois-Briand
2024-10-31 8:36 ` Mingyu Wang (Fujitsu)
0 siblings, 1 reply; 30+ messages in thread
From: Mathieu Dubois-Briand @ 2024-10-29 9:40 UTC (permalink / raw)
To: wangmy; +Cc: openembedded-core
On Fri, Oct 25, 2024 at 01:39:25PM +0800, wangmy via lists.openembedded.org wrote:
> From: Wang Mingyu <wangmy@fujitsu.com>
>
> License-Update: Copyright year updated to 2024.
>
> Changelog:
> https://github.com/RDFLib/rdflib/blob/main/CHANGELOG.md#2024-10-17-release-710
>
> Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Hi,
It seems one of these python commit is triggering a build issue in the
oe-selftest autobuilders:
2024-10-29 07:12:37,279 - oe-selftest - INFO - spdx.SPDX22Check.test_spdx_base_files (subunit.RemotedTestCase)
2024-10-29 07:12:37,279 - oe-selftest - INFO - ... FAIL
2024-10-29 07:12:37,280 - oe-selftest - INFO - 9: 14/16 170/611 (36.87s) (0 failed) (spdx.SPDX22Check.test_spdx_base_files)
2024-10-29 07:12:37,280 - oe-selftest - INFO - testtools.testresult.real._StringException: Traceback (most recent call last):
File "/srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/selftest/cases/spdx.py", line 67, in test_spdx_base_files
self.check_recipe_spdx("packages", "base-files.spdx.json", "base-files")
File "/srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/selftest/cases/spdx.py", line 64, in check_recipe_spdx
result = check_spdx_json(full_file_path)
File "/srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/selftest/cases/spdx.py", line 61, in check_spdx_json
result = runCmd("{} {} -i {}".format(python, validator, filename))
File "/srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/utils/commands.py", line 212, in runCmd
raise AssertionError("Command '%s' returned non-zero exit status %d:\n%s" % (command, result.status, exc_output))
AssertionError: Command '/srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-312849/tmp/work/x86_64-linux/python3-spdx-tools-native/0.8.3/recipe-sysroot-native/usr/bin/nativepython3 /srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-312849/tmp/work/x86_64-linux/python3-spdx-tools-native/0.8.3/recipe-sysroot-native/usr/bin/pyspdxtools -i /srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-312849/tmp/deploy/spdx/2.2/qemux86_64/packages/base-files.spdx.json' returned non-zero exit status 1:
Traceback (most recent call last):
File "/srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-312849/tmp/work/x86_64-linux/python3-spdx-tools-native/0.8.3/recipe-sysroot-native/usr/bin/pyspdxtools", line 5, in <module>
from spdx_tools.spdx.clitools.pyspdxtools import main
File "/srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-312849/tmp/work/x86_64-linux/python3-spdx-tools-native/0.8.3/recipe-sysroot-native/usr/lib/python3.13/site-packages/spdx_tools/spdx/clitools/pyspdxtools.py", line 28, in <module>
from spdx_tools.spdx.parser.parse_anything import parse_file
File "/srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-312849/tmp/work/x86_64-linux/python3-spdx-tools-native/0.8.3/recipe-sysroot-native/usr/lib/python3.13/site-packages/spdx_tools/spdx/parser/parse_anything.py", line 16, in <module>
from spdx_tools.spdx.parser.rdf import rdf_parser
File "/srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-312849/tmp/work/x86_64-linux/python3-spdx-tools-native/0.8.3/recipe-sysroot-native/usr/lib/python3.13/site-packages/spdx_tools/spdx/parser/rdf/rdf_parser.py", line 5, in <module>
from rdflib import RDF, Graph
File "/srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-312849/tmp/work/x86_64-linux/python3-spdx-tools-native/0.8.3/recipe-sysroot-native/usr/lib/python3.13/site-packages/rdflib/__init__.py", line 168, in <module>
from rdflib.graph import ConjunctiveGraph, Dataset, Graph
File "/srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-312849/tmp/work/x86_64-linux/python3-spdx-tools-native/0.8.3/recipe-sysroot-native/usr/lib/python3.13/site-packages/rdflib/graph.py", line 283, in <module>
import rdflib.namespace as namespace # noqa: F401 # This is here because it is used in a docstring.
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-312849/tmp/work/x86_64-linux/python3-spdx-tools-native/0.8.3/recipe-sysroot-native/usr/lib/python3.13/site-packages/rdflib/namespace/__init__.py", line 83, in <module>
from rdflib.term import URIRef, Variable, _is_valid_uri
File "/srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-312849/tmp/work/x86_64-linux/python3-spdx-tools-native/0.8.3/recipe-sysroot-native/usr/lib/python3.13/site-packages/rdflib/term.py", line 68, in <module>
import html5lib
ModuleNotFoundError: No module named 'html5lib'
https://valkyrie.yoctoproject.org/#/builders/54/builds/315/steps/14/logs/stdio
https://valkyrie.yoctoproject.org/#/builders/76/builds/326/steps/14/logs/stdio
Can you have a look at this issue please ?
--
Mathieu Dubois-Briand, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: [OE-core] [PATCH 14/22] ptest-runner: upgrade 2.4.5 -> 2.5.1
[not found] ` <1802B5823947D89C.18751@lists.openembedded.org>
@ 2024-10-29 11:56 ` Alexander Kanavin
2024-10-29 22:34 ` Richard Purdie
0 siblings, 1 reply; 30+ messages in thread
From: Alexander Kanavin @ 2024-10-29 11:56 UTC (permalink / raw)
To: Mingyu Wang (Fujitsu)
Cc: openembedded-core@lists.openembedded.org, Mathieu Dubois-Briand,
Richard Purdie
On Mon, 28 Oct 2024 at 20:46, Alexander Kanavin via
lists.openembedded.org <alex.kanavin=gmail.com@lists.openembedded.org>
wrote:
>
> On Sun, 27 Oct 2024 at 04:12, Mingyu Wang (Fujitsu) <wangmy@fujitsu.com> wrote:
> > It was indeed done using devtool upgrade, but the version number of the resulting bb file is 2.5.1.
> > Although the version number is recorded as 2.4.5.1 in the bb file, I deleted that line when modifying the content of the bb file.
> > When modifying the patch, I forgot that the actual version number was 2.4.5.1, so I made a mistake.
>
> That's fine. But why did you have to modify the file? Did devtool
> change something that you had to fix afterwards?
This has now merged in master :( I'll send a quick fixup.
Alex
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: [OE-core] [PATCH 14/22] ptest-runner: upgrade 2.4.5 -> 2.5.1
2024-10-29 11:56 ` Alexander Kanavin
@ 2024-10-29 22:34 ` Richard Purdie
0 siblings, 0 replies; 30+ messages in thread
From: Richard Purdie @ 2024-10-29 22:34 UTC (permalink / raw)
To: Alexander Kanavin, Mingyu Wang (Fujitsu)
Cc: openembedded-core@lists.openembedded.org, Mathieu Dubois-Briand
On Tue, 2024-10-29 at 12:56 +0100, Alexander Kanavin wrote:
> On Mon, 28 Oct 2024 at 20:46, Alexander Kanavin via
> lists.openembedded.org
> <alex.kanavin=gmail.com@lists.openembedded.org>
> wrote:
> >
> > On Sun, 27 Oct 2024 at 04:12, Mingyu Wang (Fujitsu)
> > <wangmy@fujitsu.com> wrote:
> > > It was indeed done using devtool upgrade, but the version number
> > > of the resulting bb file is 2.5.1.
> > > Although the version number is recorded as 2.4.5.1 in the bb
> > > file, I deleted that line when modifying the content of the bb
> > > file.
> > > When modifying the patch, I forgot that the actual version number
> > > was 2.4.5.1, so I made a mistake.
> >
> > That's fine. But why did you have to modify the file? Did devtool
> > change something that you had to fix afterwards?
>
> This has now merged in master :( I'll send a quick fixup.
Sorry, and thanks!
Cheers,
Richard
^ permalink raw reply [flat|nested] 30+ messages in thread
* RE: [OE-core] [PATCH 18/22] python3-rdflib: upgrade 7.0.0 -> 7.1.0
2024-10-29 9:40 ` Mathieu Dubois-Briand
@ 2024-10-31 8:36 ` Mingyu Wang (Fujitsu)
0 siblings, 0 replies; 30+ messages in thread
From: Mingyu Wang (Fujitsu) @ 2024-10-31 8:36 UTC (permalink / raw)
To: Mathieu Dubois-Briand; +Cc: openembedded-core@lists.openembedded.org
The upstream has replaced html5lib with html5rdf, so the error disappeared.
I already summited another patch to update the python3-rdflib to 7.1.1
--
Best Regards
---------------------------------------------------
Wang Mingyu
FUJITSU NANJING SOFTWARE TECHNOLOGY CO., LTD. (FNST)
No.6 Wenzhu Road, Nanjing, 210012, China
TEL:+86+25-86630566--8568
COINS: 79988548
FAX: +86+25-83317685
MAIL: wangmy@fujitsu.com
> -----Original Message-----
> From: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
> Sent: Tuesday, October 29, 2024 5:41 PM
> To: Wang, Mingyu/王 鸣瑜 <wangmy@fujitsu.com>
> Cc: openembedded-core@lists.openembedded.org
> Subject: Re: [OE-core] [PATCH 18/22] python3-rdflib: upgrade 7.0.0 -> 7.1.0
>
> On Fri, Oct 25, 2024 at 01:39:25PM +0800, wangmy via
> lists.openembedded.org wrote:
> > From: Wang Mingyu <wangmy@fujitsu.com>
> >
> > License-Update: Copyright year updated to 2024.
> >
> > Changelog:
> >
> >
> https://github.com/RDFLib/rdflib/blob/main/CHANGELOG.md#2024-10-17-rel
> > ease-710
> >
> > Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
>
> Hi,
>
> It seems one of these python commit is triggering a build issue in the
> oe-selftest autobuilders:
>
> 2024-10-29 07:12:37,279 - oe-selftest - INFO -
> spdx.SPDX22Check.test_spdx_base_files (subunit.RemotedTestCase)
> 2024-10-29 07:12:37,279 - oe-selftest - INFO - ... FAIL
> 2024-10-29 07:12:37,280 - oe-selftest - INFO - 9: 14/16 170/611 (36.87s) (0
> failed) (spdx.SPDX22Check.test_spdx_base_files)
> 2024-10-29 07:12:37,280 - oe-selftest - INFO -
> testtools.testresult.real._StringException: Traceback (most recent call last):
> File
> "/srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/selftest
> /cases/spdx.py", line 67, in test_spdx_base_files
> self.check_recipe_spdx("packages", "base-files.spdx.json", "base-files")
> File
> "/srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/selftest
> /cases/spdx.py", line 64, in check_recipe_spdx
> result = check_spdx_json(full_file_path)
> File
> "/srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/selftest
> /cases/spdx.py", line 61, in check_spdx_json
> result = runCmd("{} {} -i {}".format(python, validator, filename))
> File
> "/srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/utils/co
> mmands.py", line 212, in runCmd
> raise AssertionError("Command '%s' returned non-zero exit
> status %d:\n%s" % (command, result.status, exc_output))
> AssertionError: Command
> '/srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-312849/tmp/
> work/x86_64-linux/python3-spdx-tools-native/0.8.3/recipe-sysroot-native/usr/
> bin/nativepython3
> /srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-312849/tmp/w
> ork/x86_64-linux/python3-spdx-tools-native/0.8.3/recipe-sysroot-native/usr/bi
> n/pyspdxtools -i
> /srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-312849/tmp/d
> eploy/spdx/2.2/qemux86_64/packages/base-files.spdx.json' returned non-zero
> exit status 1:
> Traceback (most recent call last):
> File
> "/srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-312849/tmp/
> work/x86_64-linux/python3-spdx-tools-native/0.8.3/recipe-sysroot-native/usr/
> bin/pyspdxtools", line 5, in <module>
> from spdx_tools.spdx.clitools.pyspdxtools import main
> File
> "/srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-312849/tmp/
> work/x86_64-linux/python3-spdx-tools-native/0.8.3/recipe-sysroot-native/usr/
> lib/python3.13/site-packages/spdx_tools/spdx/clitools/pyspdxtools.py", line
> 28, in <module>
> from spdx_tools.spdx.parser.parse_anything import parse_file
> File
> "/srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-312849/tmp/
> work/x86_64-linux/python3-spdx-tools-native/0.8.3/recipe-sysroot-native/usr/
> lib/python3.13/site-packages/spdx_tools/spdx/parser/parse_anything.py", line
> 16, in <module>
> from spdx_tools.spdx.parser.rdf import rdf_parser
> File
> "/srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-312849/tmp/
> work/x86_64-linux/python3-spdx-tools-native/0.8.3/recipe-sysroot-native/usr/
> lib/python3.13/site-packages/spdx_tools/spdx/parser/rdf/rdf_parser.py", line 5,
> in <module>
> from rdflib import RDF, Graph
> File
> "/srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-312849/tmp/
> work/x86_64-linux/python3-spdx-tools-native/0.8.3/recipe-sysroot-native/usr/
> lib/python3.13/site-packages/rdflib/__init__.py", line 168, in <module>
> from rdflib.graph import ConjunctiveGraph, Dataset, Graph
> File
> "/srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-312849/tmp/
> work/x86_64-linux/python3-spdx-tools-native/0.8.3/recipe-sysroot-native/usr/
> lib/python3.13/site-packages/rdflib/graph.py", line 283, in <module>
> import rdflib.namespace as namespace # noqa: F401 # This is here
> because it is used in a docstring.
> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> File
> "/srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-312849/tmp/
> work/x86_64-linux/python3-spdx-tools-native/0.8.3/recipe-sysroot-native/usr/
> lib/python3.13/site-packages/rdflib/namespace/__init__.py", line 83, in
> <module>
> from rdflib.term import URIRef, Variable, _is_valid_uri
> File
> "/srv/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-312849/tmp/
> work/x86_64-linux/python3-spdx-tools-native/0.8.3/recipe-sysroot-native/usr/
> lib/python3.13/site-packages/rdflib/term.py", line 68, in <module>
> import html5lib
> ModuleNotFoundError: No module named 'html5lib'
>
> https://valkyrie.yoctoproject.org/#/builders/54/builds/315/steps/14/logs/stdi
> o
> https://valkyrie.yoctoproject.org/#/builders/76/builds/326/steps/14/logs/stdi
> o
>
> Can you have a look at this issue please ?
>
> --
> Mathieu Dubois-Briand, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com
^ permalink raw reply [flat|nested] 30+ messages in thread
end of thread, other threads:[~2024-10-31 8:36 UTC | newest]
Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-25 5:39 [OE-core] [PATCH 01/22] autoconf-archive: upgrade 2023.02.20 -> 2024.10.16 wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 02/22] bash: upgrade 5.2.32 -> 5.2.37 wangmy
2024-10-25 9:10 ` Alexander Kanavin
2024-10-25 5:39 ` [OE-core] [PATCH 03/22] epiphany: upgrade 47.0 -> 47.1 wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 04/22] i2c-tools: upgrade 4.3 -> 4.4 wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 05/22] less: upgrade 661 -> 668 wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 06/22] libarchive: upgrade 3.7.6 -> 3.7.7 wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 07/22] libubootenv: upgrade 0.3.5 -> 0.3.6 wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 08/22] libunistring: upgrade 1.2 -> 1.3 wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 09/22] libuv: upgrade 1.49.0 -> 1.49.2 wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 10/22] libxmlb: upgrade 0.3.19 -> 0.3.21 wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 11/22] llvm: upgrade 19.1.0 -> 19.1.2 wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 12/22] meson: upgrade 1.5.2 -> 1.6.0 wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 13/22] ofono: upgrade 2.10 -> 2.11 wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 14/22] ptest-runner: upgrade 2.4.5 -> 2.5.1 wangmy
2024-10-25 9:12 ` Alexander Kanavin
2024-10-27 3:12 ` Mingyu Wang (Fujitsu)
2024-10-28 19:46 ` Alexander Kanavin
[not found] ` <1802B5823947D89C.18751@lists.openembedded.org>
2024-10-29 11:56 ` Alexander Kanavin
2024-10-29 22:34 ` Richard Purdie
2024-10-25 5:39 ` [OE-core] [PATCH 15/22] python3-jsonschema-specifications: upgrade 2023.12.1 -> 2024.10.1 wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 16/22] python3-poetry-core: upgrade 1.9.0 -> 1.9.1 wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 17/22] python3-psutil: upgrade 6.0.0 -> 6.1.0 wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 18/22] python3-rdflib: upgrade 7.0.0 -> 7.1.0 wangmy
2024-10-29 9:40 ` Mathieu Dubois-Briand
2024-10-31 8:36 ` Mingyu Wang (Fujitsu)
2024-10-25 5:39 ` [OE-core] [PATCH 19/22] python3-sphinx-rtd-theme: upgrade 3.0.0 -> 3.0.1 wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 20/22] python3-xmltodict: upgrade 0.13.0 -> 0.14.2 wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 21/22] systemd: upgrade 256.6 -> 256.7 wangmy
2024-10-25 5:39 ` [OE-core] [PATCH 22/22] xtrans: upgrade 1.5.0 -> 1.5.1 wangmy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox