[OE-core][PATCH] tzdata: Reduced time zone configuration

2023-11-01 Thread Xu, Lizhi via lists.openembedded.org
The tzdata.bb by default pulls in all possible timezone data packages which 
increases size of the final root filesystem considerably.
The customer would like to have extra timezones configurable so that only 
tzdata-core is chosen by default and rest of the zones are optional.
This change would make the fs size a lot smaller.

Signed-off-by: Lizhi Xu 
---
 meta/recipes-extended/timezone/README.txt |   8 ++
 meta/recipes-extended/timezone/tzd.inc|   3 +
 .../recipes-extended/timezone/tzdata.bbappend | 115 ++
 3 files changed, 126 insertions(+)
 create mode 100644 meta/recipes-extended/timezone/README.txt
 create mode 100644 meta/recipes-extended/timezone/tzd.inc
 create mode 100644 meta/recipes-extended/timezone/tzdata.bbappend

diff --git a/meta/recipes-extended/timezone/README.txt 
b/meta/recipes-extended/timezone/README.txt
new file mode 100644
index 00..e0c6bfdc2e
--- /dev/null
+++ b/meta/recipes-extended/timezone/README.txt
@@ -0,0 +1,8 @@
+# Timezones Config 
+Set the parameter "OP_TZ" in the file "tzd.inc" to increase or 
+decrease the time zone in rootfs, as shown in the following example:
+
+1. Add time zone Asia and Americas, set OP_TZ=" tzdata-asia tzdata-americas"
+
+2. Delete time zone Americas, set OP_TZ=" tzdata-asia"
+
diff --git a/meta/recipes-extended/timezone/tzd.inc 
b/meta/recipes-extended/timezone/tzd.inc
new file mode 100644
index 00..fd59531063
--- /dev/null
+++ b/meta/recipes-extended/timezone/tzd.inc
@@ -0,0 +1,3 @@
+OP_TZ=" tzdata-americas \
+   tzdata-asia \
+"
diff --git a/meta/recipes-extended/timezone/tzdata.bbappend 
b/meta/recipes-extended/timezone/tzdata.bbappend
new file mode 100644
index 00..c57e961392
--- /dev/null
+++ b/meta/recipes-extended/timezone/tzdata.bbappend
@@ -0,0 +1,115 @@
+FILESEXTRAPATHS:append := "${THISDIR}/files:"
+require tzd.inc
+# Packages are primarily organized by directory with a major city in most time
+# zones in the base package
+TZ_PACKAGES = " \
+tzdata-core \
+${OP_TZ} \
+"
+
+# delete posix
+do_install:append() { 
+   if ! echo "${TZ_PACKAGES}" | grep -c "tzdata-posix" 2>&1; then
+   rm -rf ${D}${datadir}/zoneinfo/posix
+   fi
+}
+
+# delete right
+do_install:append() {  
+   if ! echo "${TZ_PACKAGES}" | grep -c "tzdata-right" 2>&1; then
+   rm -rf ${D}${datadir}/zoneinfo/right
+   fi
+}
+
+# delete america
+do_install:append() {  
+   if ! echo "${TZ_PACKAGES}" | grep -c "tzdata-americas" 2>&1; then
+   rm -rf ${D}${datadir}/zoneinfo/America
+   rm -rf ${D}${datadir}/zoneinfo/US
+   rm -rf ${D}${datadir}/zoneinfo/Brazil
+   rm -rf ${D}${datadir}/zoneinfo/Canada
+   rm -rf ${D}${datadir}/zoneinfo/Mexico
+   rm -rf ${D}${datadir}/zoneinfo/Chile
+   fi
+}
+
+# delete europe
+do_install:append() {  
+   if ! echo "${TZ_PACKAGES}" | grep -c "tzdata-europe" 2>&1; then
+   rm -rf ${D}${datadir}/zoneinfo/Europe
+   fi
+}
+
+# delete africa
+do_install:append() {  
+   if ! echo "${TZ_PACKAGES}" | grep -c "tzdata-africa" 2>&1; then
+   rm -rf ${D}${datadir}/zoneinfo/Africa
+   fi
+}
+
+# delete atlantic
+do_install:append() {  
+   if ! echo "${TZ_PACKAGES}" | grep -c "tzdata-atlantic" 2>&1; then
+   rm -rf ${D}${datadir}/zoneinfo/Atlantic
+   fi
+}
+
+# delete pacific
+do_install:append() {  
+   if ! echo "${TZ_PACKAGES}" | grep -c "tzdata-pacific" 2>&1; then
+   rm -rf ${D}${datadir}/zoneinfo/Pacific
+   fi
+}
+
+# delete antarctica
+do_install:append() {  
+   if ! echo "${TZ_PACKAGES}" | grep -c "tzdata-antarctica" 2>&1; then
+   rm -rf ${D}${datadir}/zoneinfo/Antarctica
+   fi
+}
+
+# delete australia
+do_install:append() {  
+   if ! echo "${TZ_PACKAGES}" | grep -c "tzdata-australia" 2>&1; then
+   rm -rf ${D}${datadir}/zoneinfo/Australia
+   fi
+}
+
+# delete arctic
+do_install:append() {  
+   if ! echo "${TZ_PACKAGES}" | grep -c "tzdata-arctic" 2>&1; then
+   rm -rf ${D}${datadir}/zoneinfo/Arctic
+   fi
+}
+
+# delete misc
+do_install:append() {  
+   if ! echo "${TZ_PACKAGES}" | grep -c "tzdata-misc" 2>&1; then
+   rm ${D}${datadir}/zoneinfo/Cuba
+   rm ${D}${datadir}/zoneinfo/Egypt
+   rm ${D}${datadir}/zoneinfo/Eire
+   rm ${D}${datadir}/zoneinfo/Factory
+   rm ${D}${datadir}/zoneinfo/GB-Eire
+   rm ${D}${datadir}/zoneinfo/Hongkong
+   rm ${D}${datadir}/zoneinfo/Iceland
+   rm ${D}${datadir}/zoneinfo/Iran
+   rm ${D}${datadir}/zoneinfo/Israel
+   rm ${D}${datadir}/zoneinfo/Jamaica
+   rm ${D}${datadir}/zoneinfo/Japan
+   rm ${D}${datadir}/zoneinfo/Kwajalein
+   rm ${D}${datadir}/zoneinfo/Libya
+   rm 

[OE-core] [PATCH V2] systemd: fix DynamicUser issue

2023-11-01 Thread Chen Qi via lists.openembedded.org
From: Chen Qi 

The DynamicUser needs libnss-systemd to be installed to function
well. The tweaks to nsswitch.conf should be conditional on PACKAGECONFIG
values.

Signed-off-by: Chen Qi 
---
 meta/recipes-core/systemd/systemd_254.4.bb | 30 +-
 1 file changed, 23 insertions(+), 7 deletions(-)

Changes in V2:
Follow 
https://docs.yoctoproject.org/dev/dev-manual/new-recipe.html#recipe-syntax
to use taps in shell functions.

diff --git a/meta/recipes-core/systemd/systemd_254.4.bb 
b/meta/recipes-core/systemd/systemd_254.4.bb
index ef29116bf9..c3507d9033 100644
--- a/meta/recipes-core/systemd/systemd_254.4.bb
+++ b/meta/recipes-core/systemd/systemd_254.4.bb
@@ -179,7 +179,7 @@ PACKAGECONFIG[microhttpd] = 
"-Dmicrohttpd=true,-Dmicrohttpd=false,libmicrohttpd"
 PACKAGECONFIG[myhostname] = 
"-Dnss-myhostname=true,-Dnss-myhostname=false,,libnss-myhostname"
 PACKAGECONFIG[networkd] = "-Dnetworkd=true,-Dnetworkd=false"
 PACKAGECONFIG[no-dns-fallback] = "-Ddns-servers="
-PACKAGECONFIG[nss] = "-Dnss-systemd=true,-Dnss-systemd=false"
+PACKAGECONFIG[nss] = "-Dnss-systemd=true,-Dnss-systemd=false,,libnss-systemd"
 PACKAGECONFIG[nss-mymachines] = "-Dnss-mymachines=true,-Dnss-mymachines=false"
 PACKAGECONFIG[nss-resolve] = "-Dnss-resolve=true,-Dnss-resolve=false"
 PACKAGECONFIG[oomd] = "-Doomd=true,-Doomd=false"
@@ -839,15 +839,31 @@ ALTERNATIVE_LINK_NAME[runlevel] = 
"${base_sbindir}/runlevel"
 ALTERNATIVE_PRIORITY[runlevel] ?= "300"
 
 pkg_postinst:${PN}:libc-glibc () {
-   sed -e '/^hosts:/s/\s*\//' \
-   -e 's/\(^hosts:.*\)\(\\)\(.*\)\(\\)\(.*\)/\1\2 
myhostname \3\4\5/' \
-   -i $D${sysconfdir}/nsswitch.conf
+   if ${@bb.utils.contains('PACKAGECONFIG', 'myhostname', 'true', 'false', 
d)}; then
+   sed -e '/^hosts:/s/\s*\//' \
+   -e 
's/\(^hosts:.*\)\(\\)\(.*\)\(\\)\(.*\)/\1\2 myhostname \3\4\5/' \
+   -i $D${sysconfdir}/nsswitch.conf
+   fi
+   if ${@bb.utils.contains('PACKAGECONFIG', 'nss', 'true', 'false', d)}; 
then
+   sed -e 's#\(^passwd:.*\)#\1 systemd#' \
+   -e 's#\(^group:.*\)#\1 systemd#' \
+   -e 's#\(^shadow:.*\)#\1 systemd#' \
+   -i $D${sysconfdir}/nsswitch.conf
+   fi
 }
 
 pkg_prerm:${PN}:libc-glibc () {
-   sed -e '/^hosts:/s/\s*\//' \
-   -e '/^hosts:/s/\s*myhostname//' \
-   -i $D${sysconfdir}/nsswitch.conf
+   if ${@bb.utils.contains('PACKAGECONFIG', 'myhostname', 'true', 'false', 
d)}; then
+   sed -e '/^hosts:/s/\s*\//' \
+   -e '/^hosts:/s/\s*myhostname//' \
+   -i $D${sysconfdir}/nsswitch.conf
+   fi
+   if ${@bb.utils.contains('PACKAGECONFIG', 'nss', 'true', 'false', d)}; 
then
+   sed -e '/^passwd:/s#\s*systemd##' \
+   -e '/^group:/s#\s*systemd##' \
+   -e '/^shadow:/s#\s*systemd##' \
+   -i $D${sysconfdir}/nsswitch.conf
+   fi
 }
 
 PACKAGE_WRITE_DEPS += "qemu-native"
-- 
2.42.0


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#190055): 
https://lists.openembedded.org/g/openembedded-core/message/190055
Mute This Topic: https://lists.openembedded.org/mt/102333967/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] Patchtest results for [PATCH 5/5 v3] image: add check_image_max_size as post function to check file size against IMAGE_FILE_MAXSIZE

2023-11-01 Thread Patchtest
Thank you for your submission. Patchtest identified one
or more issues with the patch. Please see the log below for
more information:

---
Testing patch 
/home/patchtest/share/mboxes/5-5-v3-image-add-check_image_max_size-as-post-function-to-check-file-size-against-IMAGE_FILE_MAXSIZE.patch

FAIL: test shortlog length: Edit shortlog so that it is 90 characters or less 
(currently 94 characters) (test_mbox.TestMbox.test_shortlog_length)

PASS: test Signed-off-by presence 
(test_mbox.TestMbox.test_signed_off_by_presence)
PASS: test author valid (test_mbox.TestMbox.test_author_valid)
PASS: test commit message presence 
(test_mbox.TestMbox.test_commit_message_presence)
PASS: test max line length (test_metadata.TestMetadata.test_max_line_length)
PASS: test mbox format (test_mbox.TestMbox.test_mbox_format)
PASS: test non-AUH upgrade (test_mbox.TestMbox.test_non_auh_upgrade)
PASS: test shortlog format (test_mbox.TestMbox.test_shortlog_format)

SKIP: pretest lic files chksum modified not mentioned: No modified recipes, 
skipping pretest 
(test_metadata.TestMetadata.pretest_lic_files_chksum_modified_not_mentioned)
SKIP: pretest src uri left files: No modified recipes, skipping pretest 
(test_metadata.TestMetadata.pretest_src_uri_left_files)
SKIP: test CVE tag format: No new CVE patches introduced 
(test_patch.TestPatch.test_cve_tag_format)
SKIP: test Signed-off-by presence: No new CVE patches introduced 
(test_patch.TestPatch.test_signed_off_by_presence)
SKIP: test Upstream-Status presence: No new CVE patches introduced 
(test_patch.TestPatch.test_upstream_status_presence_format)
SKIP: test bugzilla entry format: No bug ID found 
(test_mbox.TestMbox.test_bugzilla_entry_format)
SKIP: test lic files chksum modified not mentioned: No modified recipes, 
skipping test 
(test_metadata.TestMetadata.test_lic_files_chksum_modified_not_mentioned)
SKIP: test lic files chksum presence: No added recipes, skipping test 
(test_metadata.TestMetadata.test_lic_files_chksum_presence)
SKIP: test license presence: No added recipes, skipping test 
(test_metadata.TestMetadata.test_license_presence)
SKIP: test series merge on head: Merge test is disabled for now 
(test_mbox.TestMbox.test_series_merge_on_head)
SKIP: test src uri left files: No modified recipes, skipping pretest 
(test_metadata.TestMetadata.test_src_uri_left_files)
SKIP: test summary presence: No added recipes, skipping test 
(test_metadata.TestMetadata.test_summary_presence)
SKIP: test target mailing list: Series merged, no reason to check other mailing 
lists (test_mbox.TestMbox.test_target_mailing_list)

---

Please address the issues identified and
submit a new revision of the patch, or alternatively, reply to this
email with an explanation of why the patch should be accepted. If you
believe these results are due to an error in patchtest, please submit a
bug at https://bugzilla.yoctoproject.org/ (use the 'Patchtest' category
under 'Yocto Project Subprojects'). For more information on specific
failures, see: https://wiki.yoctoproject.org/wiki/Patchtest. Thank
you!

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#190054): 
https://lists.openembedded.org/g/openembedded-core/message/190054
Mute This Topic: https://lists.openembedded.org/mt/102332041/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [PATCH 3/5 v3] image_types: use IMAGE_FILE_MAXSIZE variable for btrfs image types

2023-11-01 Thread Charles-Antoine Couret via lists.openembedded.org
If defined, this variable value overrides the size of btrfs partition file 
created by mkfs.
Otherwise previous logic based on ROOTFS_SIZE variable is used.

It should be set when the final file size would not be above a specific value 
due to fixed
partitionning for example.

Signed-off-by: Charles-Antoine Couret 
---
 meta/classes-recipe/image_types.bbclass | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/meta/classes-recipe/image_types.bbclass 
b/meta/classes-recipe/image_types.bbclass
index fb1e33cf3e..1356552445 100644
--- a/meta/classes-recipe/image_types.bbclass
+++ b/meta/classes-recipe/image_types.bbclass
@@ -120,6 +120,12 @@ IMAGE_CMD:ext4 = "oe_mkext234fs ext4 
${@get_max_image_size(d, 'ext4')} ${EXTRA_I
 MIN_BTRFS_SIZE ?= "16384"
 IMAGE_CMD:btrfs () {
size=${ROOTFS_SIZE}
+   image_file_maxsize=${@get_max_image_size(d, "btrfs")}
+
+   if [[ ${image_file_maxsize} -ne 0 ]]; then
+   size=${image_file_maxsize}
+   fi
+
if [ ${size} -lt ${MIN_BTRFS_SIZE} ] ; then
size=${MIN_BTRFS_SIZE}
bbwarn "Rootfs size is too small for BTRFS. Filesystem will be 
extended to ${size}K"
-- 
2.41.0


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#190051): 
https://lists.openembedded.org/g/openembedded-core/message/190051
Mute This Topic: https://lists.openembedded.org/mt/102331602/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [PATCH 5/5 v3] image: add check_image_max_size as post function to check file size against IMAGE_FILE_MAXSIZE

2023-11-01 Thread Charles-Antoine Couret via lists.openembedded.org
Trigger an error if the final size is above IMAGE_FILE_MAXSIZE value. Which is 
relevant if the
partition size is fixed and the user wants to be sure that the image can be 
entirely installed
into its partition.

If the variable is not set, no error is trigger. It works for all filesystems.

Signed-off-by: Charles-Antoine Couret 
---
 meta/classes-recipe/image.bbclass | 30 +++
 meta/lib/oeqa/selftest/cases/imagefeatures.py | 52 +++
 2 files changed, 82 insertions(+)

diff --git a/meta/classes-recipe/image.bbclass 
b/meta/classes-recipe/image.bbclass
index 7231fad940..d2fcf078c9 100644
--- a/meta/classes-recipe/image.bbclass
+++ b/meta/classes-recipe/image.bbclass
@@ -509,6 +509,7 @@ python () {
 
 d.appendVarFlag(task, 'prefuncs', ' ' + debug + ' set_image_size')
 d.prependVarFlag(task, 'postfuncs', 'create_symlinks ')
+d.prependVarFlag(task, 'postfuncs', 'check_image_max_size ')
 d.appendVarFlag(task, 'subimages', ' ' + ' '.join(subimages))
 d.appendVarFlag(task, 'vardeps', ' ' + ' '.join(vardeps))
 d.appendVarFlag(task, 'vardepsexclude', ' DATETIME DATE ' + ' 
'.join(vardepsexclude))
@@ -609,6 +610,35 @@ python create_symlinks() {
 bb.note("Skipping symlink, source does not exist: %s -> %s" % 
(dst, src))
 }
 
+#
+# Check if image size is lighter than maximum size
+#
+python check_image_max_size() {
+def get_max_image_size(d, fs):
+max_size = d.getVar("IMAGE_FILE_MAXSIZE:%s" % fs)
+if max_size is not None:
+return int(max_size)
+
+return None
+
+deploy_dir = d.getVar('IMGDEPLOYDIR')
+img_name = d.getVar('IMAGE_NAME')
+taskname = d.getVar("BB_CURRENTTASK")
+subimages = (d.getVarFlag("do_" + taskname, 'subimages', False) or 
"").split()
+imgsuffix = d.getVarFlag("do_" + taskname, 'imgsuffix') or 
d.expand("${IMAGE_NAME_SUFFIX}.")
+
+for type in subimages:
+file_name = os.path.join(deploy_dir, img_name + imgsuffix + type)
+
+if os.path.exists(file_name):
+file_size = os.stat(file_name).st_size / 1024
+max_size = get_max_image_size(d, type)
+if max_size is not None:
+if file_size > max_size:
+bb.error("The image %s size %d(K) exceeds 
IMAGE_FILE_MAXSIZE: %d(K)" % \
+(file_name, file_size, max_size))
+}
+
 MULTILIBRE_ALLOW_REP =. 
"${base_bindir}|${base_sbindir}|${bindir}|${sbindir}|${libexecdir}|${sysconfdir}|${nonarch_base_libdir}/udev|/lib/modules/[^/]*/modules.*|"
 MULTILIB_CHECK_FILE = "${WORKDIR}/multilib_check.py"
 MULTILIB_TEMP_ROOTFS = "${WORKDIR}/multilib"
diff --git a/meta/lib/oeqa/selftest/cases/imagefeatures.py 
b/meta/lib/oeqa/selftest/cases/imagefeatures.py
index dc88c222bd..afdc7a72fa 100644
--- a/meta/lib/oeqa/selftest/cases/imagefeatures.py
+++ b/meta/lib/oeqa/selftest/cases/imagefeatures.py
@@ -234,6 +234,58 @@ UBINIZE_ARGS_mtd_4_256 ?= "-m 4096 -p 256KiB"
 self.assertTrue(os.path.exists(image_path),
 "%s image %s doesn't exist" % (itype, 
image_path))
 
+def test_image_maxsize_success(self):
+"""
+Summary: Check if the image built is below maximum size if set
+Expected:image is built, size below the limit and no error are 
reported
+Product: oe-core
+Author:  Charles-Antoine Couret 
+"""
+image = 'core-image-minimal'
+
+config = """
+IMAGE_FSTYPES += "ext4"
+IMAGE_FILE_MAXSIZE:ext4 = "30"
+"""
+self.write_config(config)
+
+res = bitbake(image)
+bb_vars = get_bb_vars(['DEPLOY_DIR_IMAGE', 'IMAGE_LINK_NAME'], image)
+
+image_path = os.path.join(bb_vars['DEPLOY_DIR_IMAGE'], "%s.%s" % 
(bb_vars['IMAGE_LINK_NAME'], "ext4"))
+# check if result image is in deploy directory
+self.assertTrue(os.path.exists(image_path),
+"%s image %s doesn't exist" % ("ext4", image_path))
+# check if result image size is below than maximum value
+self.assertTrue(os.stat(image_path).st_size / 1024 <= 30)
+# No error during execution
+self.assertEqual(res.status, 0)
+
+def test_image_maxsize_failure(self):
+"""
+Summary: Check if the image built with size above limit is 
triggering error
+Expected:the image size is above limit and triggers error
+Product: oe-core
+Author:  Charles-Antoine Couret 
+"""
+image = 'core-image-minimal'
+
+config = """
+IMAGE_FSTYPES += "ext4"
+IMAGE_FILE_MAXSIZE:ext4 = "1000"
+"""
+self.write_config(config)
+
+res = bitbake(image, ignore_status=True)
+bb_vars = get_bb_vars(['DEPLOY_DIR_IMAGE', 'IMAGE_LINK_NAME'], image)
+
+image_path = os.path.join(bb_vars['DEPLOY_DIR_IMAGE'], "%s.%s" % 
(bb_vars['IMAGE_LINK_NAME'], "ext4"))
+# check if result image is not generated

[OE-core] [PATCH 4/5 v3] image_types: use IMAGE_FILE_MAXSIZE variable for f2fs image types

2023-11-01 Thread Charles-Antoine Couret via lists.openembedded.org
If defined, this variable value overrides the size of f2fs partition file 
created by mkfs.
Otherwise previous logic based on ROOTFS_SIZE variable is used.

It should be set when the final file size would not be above a specific value 
due to fixed
partitionning for example.

Signed-off-by: Charles-Antoine Couret 
---
 meta/classes-recipe/image_types.bbclass | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/meta/classes-recipe/image_types.bbclass 
b/meta/classes-recipe/image_types.bbclass
index 1356552445..6e3190fa3f 100644
--- a/meta/classes-recipe/image_types.bbclass
+++ b/meta/classes-recipe/image_types.bbclass
@@ -272,6 +272,12 @@ IMAGE_CMD:f2fs () {
 # 500M the standard IMAGE_OVERHEAD_FACTOR does not work, so add 
additional
 # space here when under 500M
size=${ROOTFS_SIZE}
+   image_file_maxsize=${@get_max_image_size(d, "f2fs")}
+
+   if [[ "${image_file_maxsize}" -ne 0 ]]; then
+   size=${image_file_maxsize}
+   fi
+
if [ ${size} -lt ${MIN_F2FS_SIZE} ] ; then
size=${MIN_F2FS_SIZE}
bbwarn "Rootfs size is too small for F2FS. Filesystem will be 
extended to ${size}K"
-- 
2.41.0


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#190052): 
https://lists.openembedded.org/g/openembedded-core/message/190052
Mute This Topic: https://lists.openembedded.org/mt/102331603/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [PATCH 2/5 v3] image_types: use IMAGE_FILE_MAXSIZE variable for ext2/3/4 image types

2023-11-01 Thread Charles-Antoine Couret via lists.openembedded.org
If defined, this variable value overrides the size of ext* partition file 
created by mkfs.
Otherwise previous logic based on ROOTFS_SIZE variable is used.

It should be set when the final file size would not be above a specific value 
due to fixed
partitionning for example.

Signed-off-by: Charles-Antoine Couret 
---
 meta/classes-recipe/image_types.bbclass | 24 
 1 file changed, 16 insertions(+), 8 deletions(-)

diff --git a/meta/classes-recipe/image_types.bbclass 
b/meta/classes-recipe/image_types.bbclass
index be8197f1f6..fb1e33cf3e 100644
--- a/meta/classes-recipe/image_types.bbclass
+++ b/meta/classes-recipe/image_types.bbclass
@@ -79,24 +79,32 @@ IMAGE_CMD:cramfs = "mkfs.cramfs ${IMAGE_ROOTFS} 
${IMGDEPLOYDIR}/${IMAGE_NAME}.cr
 
 oe_mkext234fs () {
fstype=$1
+   image_file_maxsize=$2
extra_imagecmd=""
+   rootfs_file_size=$ROOTFS_SIZE
 
-   if [ $# -gt 1 ]; then
-   shift
+   if [ $# -gt 2 ]; then
+   shift 2
extra_imagecmd=$@
fi
 
+
+   if [[ "${image_file_maxsize}" -ne 0 ]]; then
+   rootfs_file_size=${image_file_maxsize}
+   fi
+
# If generating an empty image the size of the sparse block should be 
large
# enough to allocate an ext4 filesystem using 4096 bytes per inode, 
this is
# about 60K, so dd needs a minimum count of 60, with bs=1024 (bytes per 
IO)
eval local COUNT=\"0\"
eval local MIN_COUNT=\"60\"
-   if [ $ROOTFS_SIZE -lt $MIN_COUNT ]; then
+   if [ $rootfs_file_size -lt $MIN_COUNT ]; then
eval COUNT=\"$MIN_COUNT\"
fi
+
# Create a sparse image block
-   bbdebug 1 Executing "dd if=/dev/zero 
of=${IMGDEPLOYDIR}/${IMAGE_NAME}.$fstype seek=$ROOTFS_SIZE count=$COUNT bs=1024"
-   dd if=/dev/zero of=${IMGDEPLOYDIR}/${IMAGE_NAME}.$fstype 
seek=$ROOTFS_SIZE count=$COUNT bs=1024
+   bbdebug 1 Executing "dd if=/dev/zero 
of=${IMGDEPLOYDIR}/${IMAGE_NAME}.$fstype seek=$rootfs_file_size count=$COUNT 
bs=1024"
+   dd if=/dev/zero of=${IMGDEPLOYDIR}/${IMAGE_NAME}.$fstype 
seek=$rootfs_file_size count=$COUNT bs=1024
bbdebug 1 "Actual Rootfs size:  `du -s ${IMAGE_ROOTFS}`"
bbdebug 1 "Actual Partition size: `stat -c '%s' 
${IMGDEPLOYDIR}/${IMAGE_NAME}.$fstype`"
bbdebug 1 Executing "mkfs.$fstype -F $extra_imagecmd 
${IMGDEPLOYDIR}/${IMAGE_NAME}.$fstype -d ${IMAGE_ROOTFS}"
@@ -105,9 +113,9 @@ oe_mkext234fs () {
fsck.$fstype -pvfD ${IMGDEPLOYDIR}/${IMAGE_NAME}.$fstype || [ $? -le 3 ]
 }
 
-IMAGE_CMD:ext2 = "oe_mkext234fs ext2 ${EXTRA_IMAGECMD}"
-IMAGE_CMD:ext3 = "oe_mkext234fs ext3 ${EXTRA_IMAGECMD}"
-IMAGE_CMD:ext4 = "oe_mkext234fs ext4 ${EXTRA_IMAGECMD}"
+IMAGE_CMD:ext2 = "oe_mkext234fs ext2 ${@get_max_image_size(d, 'ext2')} 
${EXTRA_IMAGECMD}"
+IMAGE_CMD:ext3 = "oe_mkext234fs ext3 ${@get_max_image_size(d, 'ext3')} 
${EXTRA_IMAGECMD}"
+IMAGE_CMD:ext4 = "oe_mkext234fs ext4 ${@get_max_image_size(d, 'ext4')} 
${EXTRA_IMAGECMD}"
 
 MIN_BTRFS_SIZE ?= "16384"
 IMAGE_CMD:btrfs () {
-- 
2.41.0


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#190050): 
https://lists.openembedded.org/g/openembedded-core/message/190050
Mute This Topic: https://lists.openembedded.org/mt/102331601/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [PATCH 1/5 v3] image_types: add python function to get the IMAGE_FILE_MAXSIZE:fstype value

2023-11-01 Thread Charles-Antoine Couret via lists.openembedded.org
It returns 0 if the variable is not set for this filesystem.

In case of fixed partitionning where the rootfs partition can't exceed an
amount of bytes, there is currently no automatic and no generic way to have
this requirement met in any case.

Until now, ROOTFS_SIZE value got from directory_size() does not takes into 
account
the size of required metadata for the filesystem itself (and does not work well
for other block size than 4k BTW).
Obviously it's a difficult task which depends on rootfs size and filesystem 
type.

The workaround was to set IMAGE_OVERHEAD_FACTOR and IMAGE_ROOTFS_EXTRA_SPACE
to add the required extra margins. But when the final rootfs is closed to the
maximum size, it's difficult to adjust them correctly. And if you remove
or add new recipes in your image, you've to recompute these margins to have 
enough
space for these metadata when the rootfs is small, and to not have too big final
image when the rootfs is big.

It's cumbersome and error prone to just have a build failure when the final 
output
can't be flashed into the partition.

The solution is to follow how it's implemented in buildroot by having a
specific variable, here IMAGE_FILE_MAXSIZE, to create the final sparse file
and trying to fill it with the content of rootfs. If there is enough space,
margins are well compressed and does not consume space in the filesystem.
If there is no enough space, an error is triggered to warm the developer before
trying to use it in the device.

If IMAGE_FILE_MAXSIZE is not set, the idea is to keep the previous behaviour
for compatibility reason and to met other requirements.

Signed-off-by: Charles-Antoine Couret 
---
 meta/classes-recipe/image_types.bbclass | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/meta/classes-recipe/image_types.bbclass 
b/meta/classes-recipe/image_types.bbclass
index 4aed64e27f..be8197f1f6 100644
--- a/meta/classes-recipe/image_types.bbclass
+++ b/meta/classes-recipe/image_types.bbclass
@@ -54,6 +54,13 @@ def imagetypes_getdepends(d):
 # Sort the set so that ordering is consistant
 return " ".join(sorted(deps))
 
+def get_max_image_size(d, fs):
+max_size = d.getVar("IMAGE_FILE_MAXSIZE:%s" % fs)
+if max_size is not None:
+return max_size
+
+return 0
+
 XZ_COMPRESSION_LEVEL ?= "-9"
 XZ_INTEGRITY_CHECK ?= "crc32"
 
-- 
2.41.0


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#190049): 
https://lists.openembedded.org/g/openembedded-core/message/190049
Mute This Topic: https://lists.openembedded.org/mt/102331600/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [PATCH 0/5 v3] image_types: use IMAGE_FILE_MAXSIZE variable to create fixed partition size

2023-11-01 Thread Charles-Antoine Couret via lists.openembedded.org
Details are described in the first patch.

Difference from v2:

* Added working and failing tests in 
meta/lib/oeqa/selftest/cases/imagefeatures.py
* Split commit to send documentation to right mailing list

Difference from v1:

* Added documentation for IMAGE_FILE_MAXSIZE variable
* Added Python function to get the value of this variable from shell functions
otherwise parsing issue can happen
* Added an additional task to check the final result which works for all 
filesystems
and not only those created with dd command.

Charles-Antoine Couret (6):
  image_types: add python function to get the IMAGE_FILE_MAXSIZE:fstype
value
  image_types: use IMAGE_FILE_MAXSIZE variable for ext2/3/4 image types
  image_types: use IMAGE_FILE_MAXSIZE variable for btrfs image types
  image_types: use IMAGE_FILE_MAXSIZE variable for f2fs image types
  image: add check_image_max_size as post function to check file size
against IMAGE_FILE_MAXSIZE
  ref-manual: document IMAGE_FILE_MAXSIZE variable

 documentation/ref-manual/variables.rst| 14 +
 meta/classes-recipe/image.bbclass | 30 +++
 meta/classes-recipe/image_types.bbclass   | 43 ---
 meta/lib/oeqa/selftest/cases/imagefeatures.py | 52 +++
 4 files changed, 131 insertions(+), 8 deletions(-)

-- 
2.41.0


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#190048): 
https://lists.openembedded.org/g/openembedded-core/message/190048
Mute This Topic: https://lists.openembedded.org/mt/102331599/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core][PATCH] patchtest-send-results: add In-Reply-To

2023-11-01 Thread Trevor Gamblin
Rework the script for sending results to use send_raw_email and specify
the 'In-Reply-To' field so that patchtest replies to the emails, rather
than sending them standalone to the submitter and mailing list.

Signed-off-by: Trevor Gamblin 
---
Note that this patch is a reworded version of a previous submission with
subject '[OE-core][PATCH] patchtest-send-results: fix sender', but with
a more accurate commit message and subject line.

 scripts/patchtest-send-results | 39 ++
 1 file changed, 21 insertions(+), 18 deletions(-)

diff --git a/scripts/patchtest-send-results b/scripts/patchtest-send-results
index 01b071159be..1df81f943a1 100755
--- a/scripts/patchtest-send-results
+++ b/scripts/patchtest-send-results
@@ -59,7 +59,16 @@ subject_line = f"Patchtest results for {mbox_subject}"
 
 # extract the submitter email address and use it as the reply address
 # for the results
-reply_address = re.findall("<(.*)>", mbox[0]['from'])
+reply_address = re.findall("<(.*)>", mbox[0]['from'])[0]
+
+# extract the message ID and use that as the in-reply-to address
+in_reply_to = re.findall("<(.*)>", mbox[0]['Message-ID'])[0]
+
+# the address the results email is sent from
+from_address = "patcht...@automation.yoctoproject.org"
+
+# mailing list to CC
+cc_address = "openembedded-core@lists.openembedded.org"
 
 if "FAIL" in testresult:
 reply_contents = None
@@ -70,24 +79,18 @@ if "FAIL" in testresult:
 reply_contents = greeting + testresult + suggestions
 
 ses_client = boto3.client('ses', region_name='us-west-2')
-response = ses_client.send_email(
-Source='patcht...@automation.yoctoproject.org',
-Destination={
-'CcAddresses': ['openembedded-core@lists.openembedded.org'],
+raw_data = 'From: ' + from_address + '\nTo: ' + reply_address + \
+'\nCC: ' + cc_address + '\nSubject:' + subject_line + \
+'\nIn-Reply-To:' + in_reply_to + \
+'\nMIME-Version: 1.0" + \
+"\nContent-type: 
Multipart/Mixed;boundary="NextPart"\n\n--NextPart\nContent-Type: 
text/plain\n\n' + \
+reply_contents + '\n\n--NextPart'
+response = ses_client.send_raw_email(
+Source="patcht...@automation.yoctoproject.org",
+RawMessage={
+"Data": raw_data,
 },
-ReplyToAddresses=reply_address,
-Message={
-'Subject': {
-'Data': subject_line,
-'Charset': 'utf-8'
-},
-'Body': {
-'Text': {
-'Data': reply_contents,
-'Charset': 'utf-8'
-}
-}
-}
 )
+
 else:
 print(f"No failures identified for {args.patch}.")
-- 
2.41.0


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#190047): 
https://lists.openembedded.org/g/openembedded-core/message/190047
Mute This Topic: https://lists.openembedded.org/mt/102325638/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Patchtest results for [OE-core][PATCH] patchtest: shorten test result outputs

2023-11-01 Thread Patchtest
Thank you for your submission. Patchtest identified one
or more issues with the patch. Please see the log below for
more information:

---
Testing patch 
/home/patchtest/share/mboxes/patchtest-shorten-test-result-outputs.patch

FAIL: test CVE presence in commit message: A CVE tag should be provided in the 
commit message with format: "CVE: CVE--" 
(test_mbox.TestMbox.test_cve_presence_in_commit_message)

PASS: pretest pylint (test_python_pylint.PyLint.pretest_pylint)
PASS: test Signed-off-by presence 
(test_mbox.TestMbox.test_signed_off_by_presence)
PASS: test author valid (test_mbox.TestMbox.test_author_valid)
PASS: test commit message presence 
(test_mbox.TestMbox.test_commit_message_presence)
PASS: test max line length (test_metadata.TestMetadata.test_max_line_length)
PASS: test mbox format (test_mbox.TestMbox.test_mbox_format)
PASS: test non-AUH upgrade (test_mbox.TestMbox.test_non_auh_upgrade)
PASS: test pylint (test_python_pylint.PyLint.test_pylint)
PASS: test shortlog format (test_mbox.TestMbox.test_shortlog_format)
PASS: test shortlog length (test_mbox.TestMbox.test_shortlog_length)

SKIP: pretest lic files chksum modified not mentioned: No modified recipes, 
skipping pretest 
(test_metadata.TestMetadata.pretest_lic_files_chksum_modified_not_mentioned)
SKIP: pretest src uri left files: No modified recipes, skipping pretest 
(test_metadata.TestMetadata.pretest_src_uri_left_files)
SKIP: test CVE tag format: No new CVE patches introduced 
(test_patch.TestPatch.test_cve_tag_format)
SKIP: test Signed-off-by presence: No new CVE patches introduced 
(test_patch.TestPatch.test_signed_off_by_presence)
SKIP: test Upstream-Status presence: No new CVE patches introduced 
(test_patch.TestPatch.test_upstream_status_presence_format)
SKIP: test bugzilla entry format: No bug ID found 
(test_mbox.TestMbox.test_bugzilla_entry_format)
SKIP: test lic files chksum modified not mentioned: No modified recipes, 
skipping test 
(test_metadata.TestMetadata.test_lic_files_chksum_modified_not_mentioned)
SKIP: test lic files chksum presence: No added recipes, skipping test 
(test_metadata.TestMetadata.test_lic_files_chksum_presence)
SKIP: test license presence: No added recipes, skipping test 
(test_metadata.TestMetadata.test_license_presence)
SKIP: test series merge on head: Merge test is disabled for now 
(test_mbox.TestMbox.test_series_merge_on_head)
SKIP: test src uri left files: No modified recipes, skipping pretest 
(test_metadata.TestMetadata.test_src_uri_left_files)
SKIP: test summary presence: No added recipes, skipping test 
(test_metadata.TestMetadata.test_summary_presence)
SKIP: test target mailing list: Series merged, no reason to check other mailing 
lists (test_mbox.TestMbox.test_target_mailing_list)

---

Please address the issues identified and
submit a new revision of the patch, or alternatively, reply to this
email with an explanation of why the patch should be accepted. If you
believe these results are due to an error in patchtest, please submit a
bug at https://bugzilla.yoctoproject.org/ (use the 'Patchtest' category
under 'Yocto Project Subprojects'). For more information on specific
failures, see: https://wiki.yoctoproject.org/wiki/Patchtest. Thank
you!

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#190046): 
https://lists.openembedded.org/g/openembedded-core/message/190046
Mute This Topic: https://lists.openembedded.org/mt/102325151/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Patchtest results for [OE-core][PATCH] patchtest: shorten test result outputs

2023-11-01 Thread Patchtest
Thank you for your submission. Patchtest identified one
or more issues with the patch. Please see the log below for
more information:

---
Testing patch 
/home/patchtest/share/mboxes/patchtest-shorten-test-result-outputs.patch

FAIL: test CVE presence in commit message: A CVE tag should be provided in the 
commit message with format: "CVE: CVE--" 
(test_mbox.TestMbox.test_cve_presence_in_commit_message)

PASS: pretest pylint (test_python_pylint.PyLint.pretest_pylint)
PASS: test Signed-off-by presence 
(test_mbox.TestMbox.test_signed_off_by_presence)
PASS: test author valid (test_mbox.TestMbox.test_author_valid)
PASS: test commit message presence 
(test_mbox.TestMbox.test_commit_message_presence)
PASS: test max line length (test_metadata.TestMetadata.test_max_line_length)
PASS: test mbox format (test_mbox.TestMbox.test_mbox_format)
PASS: test non-AUH upgrade (test_mbox.TestMbox.test_non_auh_upgrade)
PASS: test pylint (test_python_pylint.PyLint.test_pylint)
PASS: test shortlog format (test_mbox.TestMbox.test_shortlog_format)
PASS: test shortlog length (test_mbox.TestMbox.test_shortlog_length)

SKIP: pretest lic files chksum modified not mentioned: No modified recipes, 
skipping pretest 
(test_metadata.TestMetadata.pretest_lic_files_chksum_modified_not_mentioned)
SKIP: pretest src uri left files: No modified recipes, skipping pretest 
(test_metadata.TestMetadata.pretest_src_uri_left_files)
SKIP: test CVE tag format: No new CVE patches introduced 
(test_patch.TestPatch.test_cve_tag_format)
SKIP: test Signed-off-by presence: No new CVE patches introduced 
(test_patch.TestPatch.test_signed_off_by_presence)
SKIP: test Upstream-Status presence: No new CVE patches introduced 
(test_patch.TestPatch.test_upstream_status_presence_format)
SKIP: test bugzilla entry format: No bug ID found 
(test_mbox.TestMbox.test_bugzilla_entry_format)
SKIP: test lic files chksum modified not mentioned: No modified recipes, 
skipping test 
(test_metadata.TestMetadata.test_lic_files_chksum_modified_not_mentioned)
SKIP: test lic files chksum presence: No added recipes, skipping test 
(test_metadata.TestMetadata.test_lic_files_chksum_presence)
SKIP: test license presence: No added recipes, skipping test 
(test_metadata.TestMetadata.test_license_presence)
SKIP: test series merge on head: Merge test is disabled for now 
(test_mbox.TestMbox.test_series_merge_on_head)
SKIP: test src uri left files: No modified recipes, skipping pretest 
(test_metadata.TestMetadata.test_src_uri_left_files)
SKIP: test summary presence: No added recipes, skipping test 
(test_metadata.TestMetadata.test_summary_presence)
SKIP: test target mailing list: Series merged, no reason to check other mailing 
lists (test_mbox.TestMbox.test_target_mailing_list)

---

Please address the issues identified and
submit a new revision of the patch, or alternatively, reply to this
email with an explanation of why the patch should be accepted. If you
believe these results are due to an error in patchtest, please submit a
bug at https://bugzilla.yoctoproject.org/ (use the 'Patchtest' category
under 'Yocto Project Subprojects'). For more information on specific
failures, see: https://wiki.yoctoproject.org/wiki/Patchtest. Thank
you!

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#190045): 
https://lists.openembedded.org/g/openembedded-core/message/190045
Mute This Topic: https://lists.openembedded.org/mt/102325151/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [OE-core] [yocto] Core workflow: sstate for all, bblock/bbunlock, tools for why is sstate not being reused?

2023-11-01 Thread Alexander Kanavin
On Wed, 1 Nov 2023 at 16:45,  wrote:
> I think these differences between SDK and bitbake environment are no
> longer required and they have been problematic. I would try to make the
> bitbake environment usable like the eSDK environment was without trying
> to replicate all the details of the eSDK installer such as these
> local.conf settings.

I have now split up the populate_sdk_ext into separate functions [1]
for better maintainability, and the more I think about what to do
next, the more I agree with Adrian. I just don't see why (in a
standard yocto build) would we want to manipulate PATH to provide a
restricted set of tools, or to create a "local.conf+extra stuff"
(locked signatures, esdk tweaks) environment, when existing local.conf
by itself is already working fine, and full set of tools is better
than a restricted one. If we want to add or remove locked signatures,
this can be done with 'bitbake -s lockedsigs' or bblock for specific
recipes only. And SDK's cross-toolchain is accessible via
meta-ide-support/build-sysroots flow.

[1] https://git.yoctoproject.org/poky-contrib/commit/?h=akanavin/sstate-for-all

THAT SAID. I also agree there should be a way to package the 'standard
yocto build' that does not also do 'weird esdk stuff' on top. Just a
tarball that has 'everything', and that you unpack and get a standard
build exactly like the one that was used to produce the tarball.
Something like what Adrian suggested: basically place all information
needed to replicate a build into one place, then either make a tarball
out of it (with sstate for fast builds), or publish it into the
network. We might be able to reuse some of esdk packaging code for
this, or we might not, but I think this is the direction that should
be taken.

Alex

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#190044): 
https://lists.openembedded.org/g/openembedded-core/message/190044
Mute This Topic: https://lists.openembedded.org/mt/102322302/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [Openembedded-architecture] [OE-core] Core workflow: sstate for all, bblock/bbunlock, tools for why is sstate not being reused?

2023-11-01 Thread Adrian Freihofer
On Wed, 2023-11-01 at 16:19 +0100, Alexander Kanavin via
lists.openembedded.org wrote:
> On Wed, 1 Nov 2023 at 15:18,  wrote:
> > We are currently experimenting with replacing the eSDK installer
> > with
> > the bitbake build environment for our users. Part of this
> > transformation is, of course, the shared sstate-cache, for which
> > this
> > discussion seems quite relevant. The workflow we are aiming for is
> > as
> > follows:
> > 
> >    1. Setup the layers and build config (out of scope here)
> >    2. Download the sstate for a particular recipe (usually an image
> >   recipe).
> 
> I'm not sure I understand the case for downloading the complete set
> of
> cache objects up front. What's wrong with 'lazy' downloading, e.g.
> only when the objects are actually needed in a build?
> 
> Even then, does --setscene-only do just that, or am I completely
> confused?

If I remember correctly, when configuring a SSTATE_MIRROR, the server
is queried when a Setcene task is executed. This is not ideal for
several reasons:
 * Bitbake Setcene tasks run in the context of a recipe, which means
   that thousands of connections are opened against the mirror server.
   Many servers treat this behavior as a denial of service attack. With
   a separate download tool, this can be handled with a reasonable
   number of parallel connections. With bitbake's architecture, this is
   a barely solvable issue.
 * Especially with an SDK, setcene tasks can run much more frequently
   than do_fetch tasks. So the same artifact is downloaded multiple
   times, which is not efficient.
 * SDK users may be located in different places in the world. This
   results in poor performance depending on the location.
 * With a separate download, you can download on a fast network and
   then switch to a slower network or even work offline.
 * Of course, supporting downloading in advance does not mean that a
   SSTATE_MIRROR should not be supported.

Adrian

> 
> Alex
> 
> 
> 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#190043): 
https://lists.openembedded.org/g/openembedded-core/message/190043
Mute This Topic: https://lists.openembedded.org/mt/102324540/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [OE-core] [yocto] Core workflow: sstate for all, bblock/bbunlock, tools for why is sstate not being reused?

2023-11-01 Thread Adrian Freihofer
Hi Richard, hi Alex

On Mon, 2023-10-30 at 14:07 +, Richard Purdie wrote:
> On Mon, 2023-10-30 at 14:50 +0100, Alexander Kanavin wrote:
> > On Thu, 14 Sept 2023 at 14:56, Richard Purdie
> >  wrote:
> > > There are design elements to this work. We need to work out how
> > > we can
> > > make eSDK and "normal" builds more similar and less of an
> > > overhead to
> > > switch between one and the other. A "bblock all" command does
> > > partly
> > > get you to an eSDK effectively so part of this may be switching
> > > eSDK to
> > > use the new lock command. What other differences are there? What
> > > other
> > > differences are necessary or make sense for the use cases eSDK
> > > was
> > > designed for? How would you turn an existing build into an eSDK
> > > like
> > > one? Could you provide a copy of a local build to someone else
> > > easily
> > > using something like eSDK's tooling? What does the eSDK look like
> > > at
> > > the end of this. One section we don't have good answers to yet is
> > > setup
> > > and configuration although I know you've started on some of that.
> > 
> > So I see the following differences between esdk and normal modes:
> > 
> > 1. Environment and tooling availability.
> > 
> > a) esdk sets a number of variables from its initialization script
> > that
> > aid with cross-compiling components directly (e.g. the core use
> > case
> > of SDKs). Normal mode doesn't do that, but recently added
> > meta-ide-support will generate a similar initialization script that
> > will set up the same environment from the normal mode. There are
> > tests
> > and documentation for it.
> 
> In that case, this one is something we can document as how to make
> the
> functionality available in the normal build.
> 
> > b) PATH. eSDK has a number of items in PATH that point to various
> > locations inside tmp/sysroots/, collectively they provide the
> > cross-toolchain.
> > 
> > eSDK also puts a selection of yocto tools into path - wic, devtool
> > but
> > not bitbake:
> > 
> > 
> > alex@Zen2:~/poky_sdk$ ls -l sysroots/x86_64-pokysdk-linux/usr/bin/
> > total 48
> > lrwxrwxrwx 1 alex alex  39 Oct 30 12:52 devtool ->
> > ../../../../layers/poky/scripts/devtool
> > lrwxrwxrwx 1 alex alex  54 Oct 30 12:52 oe-find-native-sysroot ->
> > ../../../../layers/poky/scripts/oe-find-native-sysroot
> > lrwxrwxrwx 1 alex alex  42 Oct 30 12:52 recipetool ->
> > ../../../../layers/poky/scripts/recipetool
> > lrwxrwxrwx 1 alex alex  39 Oct 30 12:52 runqemu ->
> > ../../../../layers/poky/scripts/runqemu
> > lrwxrwxrwx 1 alex alex  55 Oct 30 12:52 runqemu-addptable2image ->
> > ../../../../layers/poky/scripts/runqemu-addptable2image
> > lrwxrwxrwx 1 alex alex  53 Oct 30 12:52 runqemu-export-rootfs ->
> > ../../../../layers/poky/scripts/runqemu-export-rootfs
> > lrwxrwxrwx 1 alex alex  51 Oct 30 12:52 runqemu-extract-sdk ->
> > ../../../../layers/poky/scripts/runqemu-extract-sdk
> > lrwxrwxrwx 1 alex alex  51 Oct 30 12:52 runqemu-gen-tapdevs ->
> > ../../../../layers/poky/scripts/runqemu-gen-tapdevs
> > lrwxrwxrwx 1 alex alex  46 Oct 30 12:52 runqemu-ifdown ->
> > ../../../../layers/poky/scripts/runqemu-ifdown
> > lrwxrwxrwx 1 alex alex  44 Oct 30 12:52 runqemu-ifup ->
> > ../../../../layers/poky/scripts/runqemu-ifup
> > lrwxrwxrwx 1 alex alex 100 Oct 30 12:52 unfsd ->
> > ../../../../tmp/work/qemuarm64-poky-linux/core-image-
> > minimal/1.0/recipe-sysroot-native/usr/bin/unfsd
> > lrwxrwxrwx 1 alex alex  35 Oct 30 12:52 wic ->
> > ../../../../layers/poky/scripts/wic
> > ==
> > 
> > 'normal mode' puts bitbake/bin/ and oe-core/scripts in PATH.
> > Cross-toolchain can be added by the same environment script made by
> > meta-ide-support as mentioned in 1a.
> 
> Right, so in theory we can change PATH and change this which can also
> easily be documented.
> 
> > 2. Configuration (e.g. local.conf).

I think these differences between SDK and bitbake environment are no
longer required and they have been problematic. I would try to make the
bitbake environment usable like the eSDK environment was without trying
to replicate all the details of the eSDK installer such as these
local.conf settings.
> > 
> > eSDK local.conf is local.conf from the normal mode that was used to
> > produce eSDK, stripped of all comments, and with a bunch of extra
> > settings:
> > 
> > 
> > INHERIT:remove = "buildhistory icecc"
That's not needed it there is a full bitbake environment.

> > CONNECTIVITY_CHECK_URIS = ""
> > 
> > SIGGEN_LOCKEDSIGS_SSTATE_EXISTS_CHECK = "none"
> > 
> > SIGGEN_LOCKEDSIGS_TASKSIG_CHECK = "warn"
As already mentioned in my previous mail, a locked SDK is not a must if
the full bitbake environment with shared sstate-cache is available.
Locking might be added later as an optional feature.

> > 
> > BB_HASHCONFIG_IGNORE_VARS:append = " SIGGEN_UNLOCKED_RECIPES"
> > 
> > BB_SETSCENE_ENFORCE_IGNORE_TASKS = "%:* *:do_shared_workdir
> > *:do_rm_work 

Re: [OE-core] Core workflow: sstate for all, bblock/bbunlock, tools for why is sstate not being reused?

2023-11-01 Thread Alexander Kanavin
On Wed, 1 Nov 2023 at 15:18,  wrote:
> We are currently experimenting with replacing the eSDK installer with
> the bitbake build environment for our users. Part of this
> transformation is, of course, the shared sstate-cache, for which this
> discussion seems quite relevant. The workflow we are aiming for is as
> follows:
>
>1. Setup the layers and build config (out of scope here)
>2. Download the sstate for a particular recipe (usually an image
>   recipe).

I'm not sure I understand the case for downloading the complete set of
cache objects up front. What's wrong with 'lazy' downloading, e.g.
only when the objects are actually needed in a build?

Even then, does --setscene-only do just that, or am I completely confused?

Alex

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#190041): 
https://lists.openembedded.org/g/openembedded-core/message/190041
Mute This Topic: https://lists.openembedded.org/mt/101356420/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [AUH] libnotify: upgrading to 0.8.3 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *libnotify* to *0.8.3* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-libnotify-upgrade-0.8.2-0.8.3.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 45da8a0e89ecd99bd6d71a1a031ba31b7798d192 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 12:13:50 +
Subject: [PATCH] libnotify: upgrade 0.8.2 -> 0.8.3

---
 .../libnotify/{libnotify_0.8.2.bb => libnotify_0.8.3.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-gnome/libnotify/{libnotify_0.8.2.bb => libnotify_0.8.3.bb} 
(93%)

diff --git a/meta/recipes-gnome/libnotify/libnotify_0.8.2.bb 
b/meta/recipes-gnome/libnotify/libnotify_0.8.3.bb
similarity index 93%
rename from meta/recipes-gnome/libnotify/libnotify_0.8.2.bb
rename to meta/recipes-gnome/libnotify/libnotify_0.8.3.bb
index 6888c33d14..02c48c21df 100644
--- a/meta/recipes-gnome/libnotify/libnotify_0.8.2.bb
+++ b/meta/recipes-gnome/libnotify/libnotify_0.8.3.bb
@@ -21,7 +21,7 @@ inherit gnomebase gi-docgen features_check 
gobject-introspection
 # depends on gtk+3 if tests are enabled
 ANY_OF_DISTRO_FEATURES = "${@bb.utils.contains('PACKAGECONFIG', 'tests', 
'${GTK3DISTROFEATURES}', '', d)}"
 
-SRC_URI[archive.sha256sum] = 
"c5f4ed3d1f86e5b118c76415aacb861873ed3e6f0c6b3181b828cf584fc5c616"
+SRC_URI[archive.sha256sum] = 
"ee8f3ef946156ad3406fdf45feedbdcd932dbd211ab4f16f75eba4f36fb2f6c0"
 
 EXTRA_OEMESON = "-Dman=false"
 
-- 
2.39.2



0001-libnotify-upgrade-0.8.2-0.8.3.patch
Description: Binary data
packages/core2-64-poky-linux/libnotify: SRC_URI changed from 
"https://download.gnome.org/sources//libnotify/0.8/libnotify-0.8.2.tar.xz;name=archive;
 to 
"https://download.gnome.org/sources//libnotify/0.8/libnotify-0.8.3.tar.xz;name=archive;
packages/core2-64-poky-linux/libnotify: PKGV changed from 0.8.2 [default] to 
0.8.3 [default]
packages/core2-64-poky-linux/libnotify: PV changed from "0.8.2" to "0.8.3"
packages/core2-64-poky-linux/libnotify/libnotify-dbg: PKGV changed from 0.8.2 
[default] to 0.8.3 [default]
packages/core2-64-poky-linux/libnotify/libnotify-dbg: PKGSIZE changed from 
146752 to 146944 (+0%)
packages/core2-64-poky-linux/libnotify/libnotify-dbg: PV changed from "0.8.2" 
to "0.8.3"
packages/core2-64-poky-linux/libnotify/libnotify-dev: PKGV changed from 0.8.2 
[default] to 0.8.3 [default]
packages/core2-64-poky-linux/libnotify/libnotify-dev: PV changed from "0.8.2" 
to "0.8.3"
packages/core2-64-poky-linux/libnotify/libnotify-doc: PKGV changed from 0.8.2 
[default] to 0.8.3 [default]
packages/core2-64-poky-linux/libnotify/libnotify-doc: PV changed from "0.8.2" 
to "0.8.3"
packages/core2-64-poky-linux/libnotify/libnotify-locale: PKGV changed from 
0.8.2 [default] to 0.8.3 [default]
packages/core2-64-poky-linux/libnotify/libnotify-locale: PV changed from 
"0.8.2" to "0.8.3"
packages/core2-64-poky-linux/libnotify/libnotify-src: PKGV changed from 0.8.2 
[default] to 0.8.3 [default]
packages/core2-64-poky-linux/libnotify/libnotify-src: PKGSIZE changed from 
125695 to 125478 (-0%)
packages/core2-64-poky-linux/libnotify/libnotify-src: PV changed from "0.8.2" 
to "0.8.3"
packages/core2-64-poky-linux/libnotify/libnotify-staticdev: PKGV changed from 
0.8.2 [default] to 0.8.3 [default]
packages/core2-64-poky-linux/libnotify/libnotify-staticdev: PV changed from 
"0.8.2" to "0.8.3"
packages/core2-64-poky-linux/libnotify/libnotify: PKGV changed from 0.8.2 
[default] to 0.8.3 [default]
packages/core2-64-poky-linux/libnotify/libnotify: PV changed from "0.8.2" to 
"0.8.3"

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#189996): 
https://lists.openembedded.org/g/openembedded-core/message/189996
Mute This Topic: https://lists.openembedded.org/mt/102320373/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [AUH] python3-poetry-core: upgrading to 1.8.1 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *python3-poetry-core* to 
*1.8.1* has Failed (devtool error).

Detailed error information:

The following devtool command failed:  upgrade python3-poetry-core -V 1.8.1
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)... (09:11:20.042237)
Loading cache...done.
Loaded 1842 entries from dependency cache.
Removing 1 recipes from the x86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-a8120867840a6f19b937debb0d4da9d78620d138"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:a8120867840a6f19b937debb0d4da9d78620d138"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 2 Local 2 Mirrors 0 Missed 0 Current 28 (100% match, 
100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 103 tasks of which 100 didn't need to be rerun 
and all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
Loading cache...done.
Loaded 1842 entries from dependency cache.
Parsing recipes...done.
Parsing of 912 .bb files complete (910 cached, 2 parsed). 1843 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-a8120867840a6f19b937debb0d4da9d78620d138"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:a8120867840a6f19b937debb0d4da9d78620d138"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 1 Local 0 Mirrors 0 Missed 1 Current 0 (0% match, 0% 
complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 3 tasks of which 0 didn't need to be rerun and 
all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
DEBUG 5 [Errno 25] Inappropriate ioctl for device
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:  63% |##  | ETA:  0:00:00
Adding changed files: 100% || Time: 0:00:00

INFO: Extracting current version source...
INFO: Extracting upgraded version source...
INFO: Fetching 
https://files.pythonhosted.org/packages/source/p/poetry-core/poetry_core-1.8.1.tar.gz;downloadfilename=poetry_core-1.8.1.tar.gz...
INFO: Rebasing devtool onto e54549e1e475a05052ee0bf99f1f356d41b1bb6a
Traceback (most recent call last):
  File "/home/pokybuild/yocto-worker/auh/build/build/poky/scripts/devtool", 
line 349, in 
ret = main()
  ^^
  File "/home/pokybuild/yocto-worker/auh/build/build/poky/scripts/devtool", 
line 336, in main
ret = args.func(args, config, basepath, workspace)
  
  File 
"/home/pokybuild/yocto-worker/auh/build/build/poky/scripts/lib/devtool/upgrade.py",
 line 568, in upgrade
new_licenses = _extract_licenses(srctree_s, (rd.getVar('LIC_FILES_CHKSUM') 
or ""))
   
^^^
  File 
"/home/pokybuild/yocto-worker/auh/build/build/poky/scripts/lib/devtool/upgrade.py",
 line 476, in _extract_licenses
with open(os.path.join(srcpath, path), 'rb') as f:
 ^^^
FileNotFoundError: [Errno 2] No such file or directory: 
'/home/pokybuild/yocto-worker/auh/build/build/build/workspace/sources/python3-poetry-core/src/poetry/core/_vendor/attr/_version_info.py'


Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#189944): 
https://lists.openembedded.org/g/openembedded-core/message/189944
Mute This Topic: https://lists.openembedded.org/mt/102320320/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]

[OE-core] [AUH] icu: upgrading to 74-1 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *icu* to *74-1* has 
Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-icu-upgrade-73-2-74-1.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
From 54bcae1ed72883db78a96d42d07ac1afdaf57688 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 14:10:22 +
Subject: [PATCH] icu: upgrade 73-2 -> 74-1

---
 .../icu/{icu_73-2.bb => icu_74-1.bb}  | 103 +-
 1 file changed, 101 insertions(+), 2 deletions(-)
 rename meta/recipes-support/icu/{icu_73-2.bb => icu_74-1.bb} (51%)

diff --git a/meta/recipes-support/icu/icu_73-2.bb 
b/meta/recipes-support/icu/icu_74-1.bb
similarity index 51%
rename from meta/recipes-support/icu/icu_73-2.bb
rename to meta/recipes-support/icu/icu_74-1.bb
index 7c59f8bb89..a5a2802ed8 100644
--- a/meta/recipes-support/icu/icu_73-2.bb
+++ b/meta/recipes-support/icu/icu_74-1.bb
@@ -1,3 +1,102 @@
+# FIXME: the LIC_FILES_CHKSUM values have been updated by 'devtool upgrade'.
+# The following is the difference between the old and the new license text.
+# Please update the LICENSE value if needed, and summarize the changes in
+# the commit message via 'License-Update:' tag.
+# (example: 'License-Update: copyright years updated.')
+#
+# The changes:
+#
+# --- ../LICENSE
+# +++ ../LICENSE
+# @@ -1,49 +1,42 @@
+# -UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE
+# -
+# -See Terms of Use 
+# -for definitions of Unicode Inc.’s Data Files and Software.
+# -
+# -NOTICE TO USER: Carefully read the following legal agreement.
+# -BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S
+# -DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"),
+# -YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE
+# -TERMS AND CONDITIONS OF THIS AGREEMENT.
+# -IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE
+# -THE DATA FILES OR SOFTWARE.
+# +UNICODE LICENSE V3
+#  
+#  COPYRIGHT AND PERMISSION NOTICE
+#  
+# -Copyright © 1991-2023 Unicode, Inc. All rights reserved.
+# -Distributed under the Terms of Use in 
https://www.unicode.org/copyright.html.
+# -
+# -Permission is hereby granted, free of charge, to any person obtaining
+# -a copy of the Unicode data files and any associated documentation
+# -(the "Data Files") or Unicode software and any associated documentation
+# -(the "Software") to deal in the Data Files or Software
+# -without restriction, including without limitation the rights to use,
+# -copy, modify, merge, publish, distribute, and/or sell copies of
+# -the Data Files or Software, and to permit persons to whom the Data Files
+# -or Software are furnished to do so, provided that either
+# -(a) this copyright and permission notice appear with all copies
+# -of the Data Files or Software, or
+# -(b) this copyright and permission notice appear in associated
+# -Documentation.
+# -
+# -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
+# -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
+# -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+# -NONINFRINGEMENT OF THIRD PARTY RIGHTS.
+# -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS
+# -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
+# -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# -PERFORMANCE OF THE DATA FILES OR SOFTWARE.
+# -
+# -Except as contained in this notice, the name of a copyright holder
+# -shall not be used in advertising or otherwise to promote the sale,
+# -use or other dealings in these Data Files or Software without prior
+# -written authorization of the copyright holder.
+# +Copyright © 2016-2023 Unicode, Inc.
+# +
+# +NOTICE TO USER: Carefully read the following legal agreement. BY
+# +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR
+# +SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE
+# +TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT 

[OE-core] [AUH] gpgme: upgrading to 1.23.1 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *gpgme* to *1.23.1* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-gpgme-upgrade-1.22.0-1.23.1.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From ed1ff8f7463141b85291bbca0bc9dc67ee94ad82 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 14:08:57 +
Subject: [PATCH] gpgme: upgrade 1.22.0 -> 1.23.1

---
 meta/recipes-support/gpgme/{gpgme_1.22.0.bb => gpgme_1.23.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-support/gpgme/{gpgme_1.22.0.bb => gpgme_1.23.1.bb} (97%)

diff --git a/meta/recipes-support/gpgme/gpgme_1.22.0.bb 
b/meta/recipes-support/gpgme/gpgme_1.23.1.bb
similarity index 97%
rename from meta/recipes-support/gpgme/gpgme_1.22.0.bb
rename to meta/recipes-support/gpgme/gpgme_1.23.1.bb
index 84c8fa9f8a..e029b73a8f 100644
--- a/meta/recipes-support/gpgme/gpgme_1.22.0.bb
+++ b/meta/recipes-support/gpgme/gpgme_1.23.1.bb
@@ -24,7 +24,7 @@ SRC_URI = "${GNUPG_MIRROR}/gpgme/${BP}.tar.bz2 \
file://0001-autogen.sh-remove-unknown-in-version.patch \
"
 
-SRC_URI[sha256sum] = 
"9551e37081ad3bde81018a0d24f245c3f8206990549598fb31a97a68380a7b71"
+SRC_URI[sha256sum] = 
"a0c316f7ab7d3bfb01a8753c3370dc906e5b61436021f3b54ff1483b513769bd"
 
 PYTHON_DEPS = "${@bb.utils.contains('LANGUAGES', 'python', 'swig-native', '', 
d)}"
 
-- 
2.39.2

packages/core2-64-poky-linux/gpgme/gpgme-cpp: FILELIST: removed 
"/usr/lib/libgpgmepp.so.6.19.0", added "/usr/lib/libgpgmepp.so.6.20.0"
packages/core2-64-poky-linux/gpgme/gpgme-cpp: PKGV changed from 1.22.0 
[default] to 1.23.1 [default]
packages/core2-64-poky-linux/gpgme/gpgme-cpp: PV changed from "1.22.0" to 
"1.23.1"
packages/core2-64-poky-linux/gpgme/gpgme-dbg: PKGSIZE changed from 10205464 to 
10228744 (+0%)
packages/core2-64-poky-linux/gpgme/gpgme-dbg: FILELIST: removed 
"/usr/lib/.debug/libgpgme.so.11.31.0 /usr/lib/.debug/libgpgmepp.so.6.19.0", 
added "/usr/lib/.debug/libgpgme.so.11.32.0 /usr/lib/.debug/libgpgmepp.so.6.20.0"
packages/core2-64-poky-linux/gpgme/gpgme-dbg: PKGV changed from 1.22.0 
[default] to 1.23.1 [default]
packages/core2-64-poky-linux/gpgme/gpgme-dbg: PV changed from "1.22.0" to 
"1.23.1"
packages/core2-64-poky-linux/gpgme/gpgme-dev: PKGSIZE changed from 262285 to 
263792 (+1%)
packages/core2-64-poky-linux/gpgme/gpgme-dev: PKGV changed from 1.22.0 
[default] to 1.23.1 [default]
packages/core2-64-poky-linux/gpgme/gpgme-dev: PV changed from "1.22.0" to 
"1.23.1"
packages/core2-64-poky-linux/gpgme/gpgme-doc: PKGSIZE changed from 472572 to 
474142 (+0%)
packages/core2-64-poky-linux/gpgme/gpgme-doc: PKGV changed from 1.22.0 
[default] to 1.23.1 [default]
packages/core2-64-poky-linux/gpgme/gpgme-doc: PV changed from "1.22.0" to 
"1.23.1"
packages/core2-64-poky-linux/gpgme/gpgme-locale: PKGV changed from 1.22.0 
[default] to 1.23.1 [default]
packages/core2-64-poky-linux/gpgme/gpgme-locale: PV changed from "1.22.0" to 
"1.23.1"
packages/core2-64-poky-linux/gpgme/gpgme-src: PKGSIZE changed from 3599636 to 
3616747 (+0%)
packages/core2-64-poky-linux/gpgme/gpgme-src: PKGV changed from 1.22.0 
[default] to 1.23.1 [default]
packages/core2-64-poky-linux/gpgme/gpgme-src: PV changed from "1.22.0" to 
"1.23.1"
packages/core2-64-poky-linux/gpgme/gpgme-staticdev: PKGV changed from 1.22.0 
[default] to 1.23.1 [default]
packages/core2-64-poky-linux/gpgme/gpgme-staticdev: PV changed from "1.22.0" to 
"1.23.1"
packages/core2-64-poky-linux/gpgme/gpgme: FILELIST: removed 
"/usr/lib/libgpgme.so.11.31.0", added "/usr/lib/libgpgme.so.11.32.0"
packages/core2-64-poky-linux/gpgme/gpgme: PKGV changed from 1.22.0 [default] to 
1.23.1 [default]
packages/core2-64-poky-linux/gpgme/gpgme: PV changed from "1.22.0" to "1.23.1"
packages/core2-64-poky-linux/gpgme: SRC_URI changed from 
"https://www.gnupg.org/ftp/gcrypt/gpgme/gpgme-1.22.0.tar.bz2 
file://0001-Revert-build-Make-gpgme.m4-use-gpgrt-config-with-.pc.patch 
file://0001-pkgconfig.patch 
file://0002-gpgme-lang-python-gpg-error-config-should-not-be-use.patch 
file://0003-Correctly-install-python-modules.patch 
file://0004-python-import.patch 
file://0005-gpgme-config-skip-all-lib-or-usr-lib-directories-in-.patch 
file://0006-fix-build-path-issue.patch 

[OE-core] [AUH] python3-gitdb: upgrading to 4.0.11 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *python3-gitdb* to *4.0.11* 
has Succeeded.

Next steps:
- apply the patch: git am 0001-python3-gitdb-upgrade-4.0.10-4.0.11.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From f042dd6bd13434168e307f81170d5ad52a3c1f91 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 08:49:29 +
Subject: [PATCH] python3-gitdb: upgrade 4.0.10 -> 4.0.11

---
 .../python/{python3-gitdb_4.0.10.bb => python3-gitdb_4.0.11.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-gitdb_4.0.10.bb => 
python3-gitdb_4.0.11.bb} (86%)

diff --git a/meta/recipes-devtools/python/python3-gitdb_4.0.10.bb 
b/meta/recipes-devtools/python/python3-gitdb_4.0.11.bb
similarity index 86%
rename from meta/recipes-devtools/python/python3-gitdb_4.0.10.bb
rename to meta/recipes-devtools/python/python3-gitdb_4.0.11.bb
index 3a430c30f0..25e1a2df7e 100644
--- a/meta/recipes-devtools/python/python3-gitdb_4.0.10.bb
+++ b/meta/recipes-devtools/python/python3-gitdb_4.0.11.bb
@@ -10,7 +10,7 @@ inherit pypi setuptools3
 
 PYPI_PACKAGE = "gitdb"
 
-SRC_URI[sha256sum] = 
"6eb990b69df4e15bad899ea868dc46572c3f75339735663b81de79b06f17eb9a"
+SRC_URI[sha256sum] = 
"bf5421126136d6d0af55bc1e7c1af1c397a34f5b7bd79e776cd3e89785c2b04b"
 
 RDEPENDS:${PN} += "python3-compression \
python3-crypt \
-- 
2.39.2



0001-python3-gitdb-upgrade-4.0.10-4.0.11.patch
Description: Binary data
packages/core2-64-poky-linux/python3-gitdb: SRC_URI changed from 
"https://files.pythonhosted.org/packages/source/g/gitdb/gitdb-4.0.10.tar.gz;downloadfilename=gitdb-4.0.10.tar.gz;
 to 
"https://files.pythonhosted.org/packages/source/g/gitdb/gitdb-4.0.11.tar.gz;downloadfilename=gitdb-4.0.11.tar.gz;
packages/core2-64-poky-linux/python3-gitdb: PV changed from "4.0.10" to "4.0.11"
packages/core2-64-poky-linux/python3-gitdb: PKGV changed from 4.0.10 [default] 
to 4.0.11 [default]
packages/core2-64-poky-linux/python3-gitdb/python3-gitdb-dbg: PV changed from 
"4.0.10" to "4.0.11"
packages/core2-64-poky-linux/python3-gitdb/python3-gitdb-dbg: PKGV changed from 
4.0.10 [default] to 4.0.11 [default]
packages/core2-64-poky-linux/python3-gitdb/python3-gitdb-dev: PV changed from 
"4.0.10" to "4.0.11"
packages/core2-64-poky-linux/python3-gitdb/python3-gitdb-dev: PKGV changed from 
4.0.10 [default] to 4.0.11 [default]
packages/core2-64-poky-linux/python3-gitdb/python3-gitdb-doc: PV changed from 
"4.0.10" to "4.0.11"
packages/core2-64-poky-linux/python3-gitdb/python3-gitdb-doc: PKGV changed from 
4.0.10 [default] to 4.0.11 [default]
packages/core2-64-poky-linux/python3-gitdb/python3-gitdb-locale: PV changed 
from "4.0.10" to "4.0.11"
packages/core2-64-poky-linux/python3-gitdb/python3-gitdb-locale: PKGV changed 
from 4.0.10 [default] to 4.0.11 [default]
packages/core2-64-poky-linux/python3-gitdb/python3-gitdb-src: PV changed from 
"4.0.10" to "4.0.11"
packages/core2-64-poky-linux/python3-gitdb/python3-gitdb-src: PKGV changed from 
4.0.10 [default] to 4.0.11 [default]
packages/core2-64-poky-linux/python3-gitdb/python3-gitdb-staticdev: PV changed 
from "4.0.10" to "4.0.11"
packages/core2-64-poky-linux/python3-gitdb/python3-gitdb-staticdev: PKGV 
changed from 4.0.10 [default] to 4.0.11 [default]
packages/core2-64-poky-linux/python3-gitdb/python3-gitdb: PV changed from 
"4.0.10" to "4.0.11"
packages/core2-64-poky-linux/python3-gitdb/python3-gitdb: PKGV changed from 
4.0.10 [default] to 4.0.11 [default]
packages/core2-64-poky-linux/python3-gitdb/python3-gitdb: PKGSIZE changed from 
406991 to 407178 (+0%)
Changes to packages/core2-64-poky-linux/python3-gitdb (sysroot):
  /usr/lib/python3.11/site-packages/gitdb-4.0.10.dist-info moved to 
/usr/lib/python3.11/site-packages/gitdb-4.0.11.dist-info
Changes to packages/core2-64-poky-linux/python3-gitdb (sysroot):
  /usr/lib/python3.11/site-packages/gitdb-4.0.10.dist-info moved to 
/usr/lib/python3.11/site-packages/gitdb-4.0.11.dist-info

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#190039): 
https://lists.openembedded.org/g/openembedded-core/message/190039
Mute This Topic: https://lists.openembedded.org/mt/102320420/21656
Group Owner: 

[OE-core] [AUH] vulkan-samples: upgrading to 8a9376c6afd45eab6b95b65e5d5d7bad7699b5cb FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *vulkan-samples* to 
*8a9376c6afd45eab6b95b65e5d5d7bad7699b5cb* has Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 
0001-vulkan-samples-upgrade-to-latest-revision.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 4c04cd05189b375f9be773140d1f6c7fbb1c4566 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 13:15:14 +
Subject: [PATCH] vulkan-samples: upgrade to latest revision

---
 .../0001-Deprecate-u8string_view.patch|  59 --
 ...ot-use-LFS64-functions-on-linux-musl.patch |  37 ---
 ...002-Committing-changes-from-do_patch.patch |  16 +++
 .../vulkan/vulkan-samples/32bit.patch | 101 --
 .../vulkan/vulkan-samples_git.bb  |   6 +-
 5 files changed, 18 insertions(+), 201 deletions(-)
 delete mode 100644 
meta/recipes-graphics/vulkan/vulkan-samples/0001-Deprecate-u8string_view.patch
 delete mode 100644 
meta/recipes-graphics/vulkan/vulkan-samples/0001-Do-not-use-LFS64-functions-on-linux-musl.patch
 create mode 100644 
meta/recipes-graphics/vulkan/vulkan-samples/0002-Committing-changes-from-do_patch.patch
 delete mode 100644 meta/recipes-graphics/vulkan/vulkan-samples/32bit.patch

diff --git 
a/meta/recipes-graphics/vulkan/vulkan-samples/0001-Deprecate-u8string_view.patch
 
b/meta/recipes-graphics/vulkan/vulkan-samples/0001-Deprecate-u8string_view.patch
deleted file mode 100644
index c2304bdd48..00
--- 
a/meta/recipes-graphics/vulkan/vulkan-samples/0001-Deprecate-u8string_view.patch
+++ /dev/null
@@ -1,59 +0,0 @@
-From 93987b1ce7d6f91387202495aac61026070597df Mon Sep 17 00:00:00 2001
-From: Khem Raj 
-Date: Sun, 15 Jan 2023 21:37:52 -0800
-Subject: [PATCH] Deprecate u8string_view
-
-Use basic_string_view instead
-
-Upstream-Status: Backport 
[https://github.com/fmtlib/fmt/commit/dea7fde8b7d649923dd41b0766bdf076033c62a2]
-Signed-off-by: Khem Raj 

- include/spdlog/fmt/bundled/core.h   |  3 ++-
- include/spdlog/fmt/bundled/format.h | 15 ++-
- 2 files changed, 4 insertions(+), 14 deletions(-)
-
-diff --git a/include/spdlog/fmt/bundled/core.h 
b/include/spdlog/fmt/bundled/core.h
-index 50b79351..e8b029ef 100644
 a/include/spdlog/fmt/bundled/core.h
-+++ b/include/spdlog/fmt/bundled/core.h
-@@ -1484,7 +1484,8 @@ FMT_API void vprint(wstring_view format_str, 
wformat_args args);
- 
- /**
-   \rst
--  Prints formatted data to ``stdout``.
-+  Formats ``args`` according to specifications in ``format_str`` and writes 
the
-+  output to ``stdout``.
- 
-   **Example**::
- 
-diff --git a/include/spdlog/fmt/bundled/format.h 
b/include/spdlog/fmt/bundled/format.h
-index 1bb24a52..39426361 100644
 a/include/spdlog/fmt/bundled/format.h
-+++ b/include/spdlog/fmt/bundled/format.h
-@@ -407,21 +407,10 @@ void basic_buffer::append(const U *begin, const U 
*end) {
- enum char8_t: unsigned char {};
- #endif
- 
--// A UTF-8 string view.
--class u8string_view : public basic_string_view {
-- public:
--  typedef char8_t char_type;
--
--  u8string_view(const char *s):
--basic_string_view(reinterpret_cast(s)) {}
--  u8string_view(const char *s, size_t count) FMT_NOEXCEPT:
--basic_string_view(reinterpret_cast(s), count) {}
--};
--
- #if FMT_USE_USER_DEFINED_LITERALS
- inline namespace literals {
--inline u8string_view operator"" _u(const char *s, std::size_t n) {
--  return {s, n};
-+inline basic_string_view operator"" _u(const char* s, std::size_t n) 
{
-+  return {reinterpret_cast(s), n};
- }
- }
- #endif
--- 
-2.39.0
-
diff --git 
a/meta/recipes-graphics/vulkan/vulkan-samples/0001-Do-not-use-LFS64-functions-on-linux-musl.patch
 
b/meta/recipes-graphics/vulkan/vulkan-samples/0001-Do-not-use-LFS64-functions-on-linux-musl.patch
deleted file mode 100644
index f2bd7e510b..00
--- 
a/meta/recipes-graphics/vulkan/vulkan-samples/0001-Do-not-use-LFS64-functions-on-linux-musl.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From ce7a593e74c8e0c2ece15c73e7614d4f13a19a53 Mon Sep 17 00:00:00 2001
-From: Khem Raj 
-Date: Fri, 30 Dec 2022 13:04:08 -0800
-Subject: [PATCH] Do not use LFS64 functions on linux/musl
-
-On musl, off_t is 64bit always ( even on 32bit platforms ), 

[OE-core] [AUH] libsoup: upgrading to 3.4.4 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *libsoup* to *3.4.4* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-libsoup-upgrade-3.4.2-3.4.4.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From f03db61e5fa31d4ed2e69e14f604008d94bed6d2 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 14:14:47 +
Subject: [PATCH] libsoup: upgrade 3.4.2 -> 3.4.4

---
 .../libsoup/{libsoup_3.4.2.bb => libsoup_3.4.4.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-support/libsoup/{libsoup_3.4.2.bb => libsoup_3.4.4.bb} 
(96%)

diff --git a/meta/recipes-support/libsoup/libsoup_3.4.2.bb 
b/meta/recipes-support/libsoup/libsoup_3.4.4.bb
similarity index 96%
rename from meta/recipes-support/libsoup/libsoup_3.4.2.bb
rename to meta/recipes-support/libsoup/libsoup_3.4.4.bb
index 3996ae6836..6d382a7852 100644
--- a/meta/recipes-support/libsoup/libsoup_3.4.2.bb
+++ b/meta/recipes-support/libsoup/libsoup_3.4.4.bb
@@ -12,7 +12,7 @@ DEPENDS = "glib-2.0 glib-2.0-native libxml2 sqlite3 libpsl 
nghttp2"
 SHRT_VER = "${@d.getVar('PV').split('.')[0]}.${@d.getVar('PV').split('.')[1]}"
 
 SRC_URI = "${GNOME_MIRROR}/libsoup/${SHRT_VER}/libsoup-${PV}.tar.xz"
-SRC_URI[sha256sum] = 
"78c8fa37cb152d40ec8c4a148d6155e2f6947f3f1602a7cda3a31ad40f5ee2f3"
+SRC_URI[sha256sum] = 
"291c67725f36ed90ea43efff25064b69c5a2d1981488477c05c481a3b4b0c5aa"
 
 PROVIDES = "libsoup-3.0"
 CVE_PRODUCT = "libsoup"
-- 
2.39.2

packages/core2-64-poky-linux/libsoup: PKGV changed from 3.4.2 [default] to 
3.4.4 [default]
packages/core2-64-poky-linux/libsoup: PV changed from "3.4.2" to "3.4.4"
packages/core2-64-poky-linux/libsoup: SRC_URI changed from 
"https://download.gnome.org/sources//libsoup/3.4/libsoup-3.4.2.tar.xz; to 
"https://download.gnome.org/sources//libsoup/3.4/libsoup-3.4.4.tar.xz;
packages/core2-64-poky-linux/libsoup/libsoup-dbg: PKGV changed from 3.4.2 
[default] to 3.4.4 [default]
packages/core2-64-poky-linux/libsoup/libsoup-dbg: PV changed from "3.4.2" to 
"3.4.4"
packages/core2-64-poky-linux/libsoup/libsoup-dbg: PKGSIZE changed from 2191048 
to 2197872 (+0%)
packages/core2-64-poky-linux/libsoup/libsoup-dbg: FILELIST: removed 
"/usr/lib/.debug/libsoup-3.0.so.0.7.0", added 
"/usr/lib/.debug/libsoup-3.0.so.0.7.1"
packages/core2-64-poky-linux/libsoup/libsoup-dev: PKGV changed from 3.4.2 
[default] to 3.4.4 [default]
packages/core2-64-poky-linux/libsoup/libsoup-dev: PV changed from "3.4.2" to 
"3.4.4"
packages/core2-64-poky-linux/libsoup/libsoup-doc: PKGV changed from 3.4.2 
[default] to 3.4.4 [default]
packages/core2-64-poky-linux/libsoup/libsoup-doc: PV changed from "3.4.2" to 
"3.4.4"
packages/core2-64-poky-linux/libsoup/libsoup-locale-ab: PKGV changed from 3.4.2 
[default] to 3.4.4 [default]
packages/core2-64-poky-linux/libsoup/libsoup-locale-ab: PV changed from "3.4.2" 
to "3.4.4"
packages/core2-64-poky-linux/libsoup/libsoup-locale-an: PKGV changed from 3.4.2 
[default] to 3.4.4 [default]
packages/core2-64-poky-linux/libsoup/libsoup-locale-an: PV changed from "3.4.2" 
to "3.4.4"
packages/core2-64-poky-linux/libsoup/libsoup-locale-as: PKGV changed from 3.4.2 
[default] to 3.4.4 [default]
packages/core2-64-poky-linux/libsoup/libsoup-locale-as: PV changed from "3.4.2" 
to "3.4.4"
packages/core2-64-poky-linux/libsoup/libsoup-locale-be: PKGV changed from 3.4.2 
[default] to 3.4.4 [default]
packages/core2-64-poky-linux/libsoup/libsoup-locale-be: PV changed from "3.4.2" 
to "3.4.4"
packages/core2-64-poky-linux/libsoup/libsoup-locale-bg: PKGV changed from 3.4.2 
[default] to 3.4.4 [default]
packages/core2-64-poky-linux/libsoup/libsoup-locale-bg: PV changed from "3.4.2" 
to "3.4.4"
packages/core2-64-poky-linux/libsoup/libsoup-locale-bn-in: PKGV changed from 
3.4.2 [default] to 3.4.4 [default]
packages/core2-64-poky-linux/libsoup/libsoup-locale-bn-in: PV changed from 
"3.4.2" to "3.4.4"
packages/core2-64-poky-linux/libsoup/libsoup-locale-bs: PKGV changed from 3.4.2 
[default] to 3.4.4 [default]
packages/core2-64-poky-linux/libsoup/libsoup-locale-bs: PV changed from "3.4.2" 
to "3.4.4"
packages/core2-64-poky-linux/libsoup/libsoup-locale-ca+valencia: PKGV changed 
from 3.4.2 [default] to 3.4.4 [default]

[OE-core] [AUH] msmtp: upgrading to 1.8.25 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *msmtp* to *1.8.25* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-msmtp-upgrade-1.8.24-1.8.25.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From f5b6bdb2176f0ad78c5274e134ef982eba95affc Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 11:32:46 +
Subject: [PATCH] msmtp: upgrade 1.8.24 -> 1.8.25

---
 .../recipes-extended/msmtp/{msmtp_1.8.24.bb => msmtp_1.8.25.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-extended/msmtp/{msmtp_1.8.24.bb => msmtp_1.8.25.bb} (91%)

diff --git a/meta/recipes-extended/msmtp/msmtp_1.8.24.bb 
b/meta/recipes-extended/msmtp/msmtp_1.8.25.bb
similarity index 91%
rename from meta/recipes-extended/msmtp/msmtp_1.8.24.bb
rename to meta/recipes-extended/msmtp/msmtp_1.8.25.bb
index b8c867161b..b575fad5e1 100644
--- a/meta/recipes-extended/msmtp/msmtp_1.8.24.bb
+++ b/meta/recipes-extended/msmtp/msmtp_1.8.25.bb
@@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
 UPSTREAM_CHECK_URI = "https://marlam.de/msmtp/download/;
 
 SRC_URI = "https://marlam.de/${BPN}/releases/${BP}.tar.xz;
-SRC_URI[sha256sum] = 
"bd6644b1aaab17d61b86647993e3efad860b23c54283b00ddc579c1f5110aa59"
+SRC_URI[sha256sum] = 
"2dfe1dbbb397d26fe0b0b6b2e9cd2efdf9d72dd42d18e70d7f363ada2652d738"
 
 inherit gettext autotools update-alternatives pkgconfig
 
-- 
2.39.2

packages/core2-64-poky-linux/msmtp: PKGV changed from 1.8.24 [default] to 
1.8.25 [default]
packages/core2-64-poky-linux/msmtp: PACKAGES: added "msmtp-locale-ro"
packages/core2-64-poky-linux/msmtp: SRC_URI changed from 
"https://marlam.de/msmtp/releases/msmtp-1.8.24.tar.xz; to 
"https://marlam.de/msmtp/releases/msmtp-1.8.25.tar.xz;
packages/core2-64-poky-linux/msmtp: PV changed from "1.8.24" to "1.8.25"
packages/core2-64-poky-linux/msmtp/msmtp-dbg: PKGSIZE changed from 436392 to 
437760 (+0%)
packages/core2-64-poky-linux/msmtp/msmtp-dbg: PKGV changed from 1.8.24 
[default] to 1.8.25 [default]
packages/core2-64-poky-linux/msmtp/msmtp-dbg: PV changed from "1.8.24" to 
"1.8.25"
packages/core2-64-poky-linux/msmtp/msmtp-dev: PKGV changed from 1.8.24 
[default] to 1.8.25 [default]
packages/core2-64-poky-linux/msmtp/msmtp-dev: PV changed from "1.8.24" to 
"1.8.25"
packages/core2-64-poky-linux/msmtp/msmtp-doc: PKGSIZE changed from 114861 to 
115996 (+1%)
packages/core2-64-poky-linux/msmtp/msmtp-doc: PKGV changed from 1.8.24 
[default] to 1.8.25 [default]
packages/core2-64-poky-linux/msmtp/msmtp-doc: PV changed from "1.8.24" to 
"1.8.25"
packages/core2-64-poky-linux/msmtp/msmtp-locale-de: PKGSIZE changed from 36812 
to 36640 (-0%)
packages/core2-64-poky-linux/msmtp/msmtp-locale-de: PKGV changed from 1.8.24 
[default] to 1.8.25 [default]
packages/core2-64-poky-linux/msmtp/msmtp-locale-de: PV changed from "1.8.24" to 
"1.8.25"
packages/core2-64-poky-linux/msmtp/msmtp-locale-eo: PKGSIZE changed from 34835 
to 34666 (-0%)
packages/core2-64-poky-linux/msmtp/msmtp-locale-eo: PKGV changed from 1.8.24 
[default] to 1.8.25 [default]
packages/core2-64-poky-linux/msmtp/msmtp-locale-eo: PV changed from "1.8.24" to 
"1.8.25"
packages/core2-64-poky-linux/msmtp/msmtp-locale-fr: PKGSIZE changed from 37402 
to 37206 (-1%)
packages/core2-64-poky-linux/msmtp/msmtp-locale-fr: PKGV changed from 1.8.24 
[default] to 1.8.25 [default]
packages/core2-64-poky-linux/msmtp/msmtp-locale-fr: PV changed from "1.8.24" to 
"1.8.25"
packages/core2-64-poky-linux/msmtp/msmtp-locale-pt-br: PKGSIZE changed from 
36253 to 36085 (-0%)
packages/core2-64-poky-linux/msmtp/msmtp-locale-pt-br: PKGV changed from 1.8.24 
[default] to 1.8.25 [default]
packages/core2-64-poky-linux/msmtp/msmtp-locale-pt-br: PV changed from "1.8.24" 
to "1.8.25"
packages/core2-64-poky-linux/msmtp/msmtp-locale-ru: PKGSIZE changed from 45081 
to 44877 (-0%)
packages/core2-64-poky-linux/msmtp/msmtp-locale-ru: PKGV changed from 1.8.24 
[default] to 1.8.25 [default]
packages/core2-64-poky-linux/msmtp/msmtp-locale-ru: PV changed from "1.8.24" to 
"1.8.25"
packages/core2-64-poky-linux/msmtp/msmtp-locale-sr: PKGSIZE changed from 45442 
to 45243 (-0%)
packages/core2-64-poky-linux/msmtp/msmtp-locale-sr: PKGV changed from 1.8.24 
[default] to 

[OE-core] [AUH] puzzles: upgrading to 35f796542ee5d7e775643f526973aa75f483bf20 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *puzzles* to 
*35f796542ee5d7e775643f526973aa75f483bf20* has Succeeded.

Next steps:
- apply the patch: git am 0001-puzzles-upgrade-to-latest-revision.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From d234bcb3963ef31723c68c4c2e832daad67fba5e Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 13:55:30 +
Subject: [PATCH] puzzles: upgrade to latest revision

---
 meta/recipes-sato/puzzles/puzzles_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-sato/puzzles/puzzles_git.bb 
b/meta/recipes-sato/puzzles/puzzles_git.bb
index d7089ef95d..a6ecd7a0e1 100644
--- a/meta/recipes-sato/puzzles/puzzles_git.bb
+++ b/meta/recipes-sato/puzzles/puzzles_git.bb
@@ -10,7 +10,7 @@ REQUIRED_DISTRO_FEATURES = "x11"
 SRC_URI = "git://git.tartarus.org/simon/puzzles.git;branch=main;protocol=https"
 
 UPSTREAM_CHECK_COMMITS = "1"
-SRCREV = "2d9e414ee316b37143954150016e8f4f18358497"
+SRCREV = "35f796542ee5d7e775643f526973aa75f483bf20"
 PE = "2"
 PV = "0.0+git"
 
-- 
2.39.2

packages/core2-64-poky-linux/puzzles/puzzles-dbg: PKGSIZE changed from 19532880 
to 19532952 (+0%)
packages/core2-64-poky-linux/puzzles/puzzles-dbg: PKGV changed from 
0.0+git0+2d9e414ee3 to 0.0+git0+35f796542e
packages/core2-64-poky-linux/puzzles/puzzles-dev: PKGV changed from 
0.0+git0+2d9e414ee3 to 0.0+git0+35f796542e
packages/core2-64-poky-linux/puzzles/puzzles-doc: PKGV changed from 
0.0+git0+2d9e414ee3 to 0.0+git0+35f796542e
packages/core2-64-poky-linux/puzzles/puzzles-locale: PKGV changed from 
0.0+git0+2d9e414ee3 to 0.0+git0+35f796542e
packages/core2-64-poky-linux/puzzles/puzzles-src: PKGSIZE changed from 3837742 
to 3837761 (+0%)
packages/core2-64-poky-linux/puzzles/puzzles-src: PKGV changed from 
0.0+git0+2d9e414ee3 to 0.0+git0+35f796542e
packages/core2-64-poky-linux/puzzles/puzzles-staticdev: PKGV changed from 
0.0+git0+2d9e414ee3 to 0.0+git0+35f796542e
packages/core2-64-poky-linux/puzzles/puzzles: PKGV changed from 
0.0+git0+2d9e414ee3 to 0.0+git0+35f796542e
Loading cache...done.
Loaded 0 entries from dependency cache.
Parsing recipes...done.
Parsing of 911 .bb files complete (0 cached, 911 parsed). 1843 targets, 67 
skipped, 0 masked, 0 errors.
Removing 1 recipes from the cortexa15t2hf-neon sysroot...done.
Removing 1 recipes from the qemuarm sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "arm-poky-linux-musleabi"
MACHINE  = "qemuarm"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-b3862316b2c765c98d314f76489b6734da7f9dc8"
TUNE_FEATURES= "arm vfp cortexa15 neon thumb callconvention-hard"
TARGET_FPU   = "hard"
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:b3862316b2c765c98d314f76489b6734da7f9dc8"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 136 Local 62 Mirrors 0 Missed 74 Current 791 (45% match, 
92% complete)
Removing 1 stale sstate objects for arch allarch...done.
Removing 2 stale sstate objects for arch qemuarm...done.
NOTE: Executing Tasks
NOTE: Running setscene task 817 of 927 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-graphics/jpeg/libjpeg-turbo_3.0.0.bb:do_create_spdx_setscene)
NOTE: Running setscene task 820 of 927 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-graphics/wayland/wayland-protocols_1.32.bb:do_create_spdx_setscene)
NOTE: Running setscene task 824 of 927 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-graphics/xorg-lib/libxrandr_1.5.3.bb:do_create_spdx_setscene)
NOTE: Running setscene task 846 of 927 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-graphics/jpeg/libjpeg-turbo_3.0.0.bb:do_populate_sysroot_setscene)
NOTE: recipe wayland-protocols-1.32-r0: task do_create_spdx_setscene: Started
NOTE: recipe libxrandr-1_1.5.3-r0: task do_create_spdx_setscene: Started
NOTE: recipe libjpeg-turbo-1_3.0.0-r0: task do_create_spdx_setscene: Started
NOTE: recipe 

[OE-core] [AUH] xserver-xorg: upgrading to 21.1.9 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *xserver-xorg* to *21.1.9* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-xserver-xorg-upgrade-21.1.8-21.1.9.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 148bc3310567dd6f677aa3bf85650e4aad895b63 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 13:29:10 +
Subject: [PATCH] xserver-xorg: upgrade 21.1.8 -> 21.1.9

---
 .../{xserver-xorg_21.1.8.bb => xserver-xorg_21.1.9.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-graphics/xorg-xserver/{xserver-xorg_21.1.8.bb => 
xserver-xorg_21.1.9.bb} (92%)

diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xorg_21.1.8.bb 
b/meta/recipes-graphics/xorg-xserver/xserver-xorg_21.1.9.bb
similarity index 92%
rename from meta/recipes-graphics/xorg-xserver/xserver-xorg_21.1.8.bb
rename to meta/recipes-graphics/xorg-xserver/xserver-xorg_21.1.9.bb
index 19db7ea434..43c06181e3 100644
--- a/meta/recipes-graphics/xorg-xserver/xserver-xorg_21.1.8.bb
+++ b/meta/recipes-graphics/xorg-xserver/xserver-xorg_21.1.9.bb
@@ -3,7 +3,7 @@ require xserver-xorg.inc
 SRC_URI += 
"file://0001-xf86pciBus.c-use-Intel-ddx-only-for-pre-gen4-hardwar.patch \
file://0001-Avoid-duplicate-definitions-of-IOPortBase.patch \
"
-SRC_URI[sha256sum] = 
"38aadb735650c8024ee25211c190bf8aad844c5f59632761ab1ef4c4d5aeb152"
+SRC_URI[sha256sum] = 
"ff697be2011b4c4966b7806929e51b7a08e9d33800d505305d26d9ccde4b533a"
 
 # These extensions are now integrated into the server, so declare the migration
 # path for in-place upgrades.
-- 
2.39.2

packages/core2-64-poky-linux/xserver-xorg: PKGV changed from 21.1.8 [default] 
to 21.1.9 [default]
packages/core2-64-poky-linux/xserver-xorg: SRC_URI changed from 
"https://www.x.org/releases//individual/xserver/xorg-server-21.1.8.tar.xz 
file://0001-xf86pciBus.c-use-Intel-ddx-only-for-pre-gen4-hardwar.patch 
file://0001-Avoid-duplicate-definitions-of-IOPortBase.patch" to 
"https://www.x.org/releases//individual/xserver/xorg-server-21.1.9.tar.xz 
file://0001-xf86pciBus.c-use-Intel-ddx-only-for-pre-gen4-hardwar.patch 
file://0001-Avoid-duplicate-definitions-of-IOPortBase.patch"
packages/core2-64-poky-linux/xserver-xorg: PV changed from "21.1.8" to "21.1.9"
packages/core2-64-poky-linux/xserver-xorg/xf86-video-modesetting: PKGV changed 
from 21.1.8 [default] to 21.1.9 [default]
packages/core2-64-poky-linux/xserver-xorg/xf86-video-modesetting: PV changed 
from "21.1.8" to "21.1.9"
packages/core2-64-poky-linux/xserver-xorg/xserver-xorg-dbg: PKGV changed from 
21.1.8 [default] to 21.1.9 [default]
packages/core2-64-poky-linux/xserver-xorg/xserver-xorg-dbg: PKGSIZE changed 
from 26806624 to 26807272 (+0%)
packages/core2-64-poky-linux/xserver-xorg/xserver-xorg-dbg: PV changed from 
"21.1.8" to "21.1.9"
packages/core2-64-poky-linux/xserver-xorg/xserver-xorg-dev: PKGV changed from 
21.1.8 [default] to 21.1.9 [default]
packages/core2-64-poky-linux/xserver-xorg/xserver-xorg-dev: PKGSIZE changed 
from 1154536 to 1154394 (-0%)
packages/core2-64-poky-linux/xserver-xorg/xserver-xorg-dev: PV changed from 
"21.1.8" to "21.1.9"
packages/core2-64-poky-linux/xserver-xorg/xserver-xorg-doc: PKGV changed from 
21.1.8 [default] to 21.1.9 [default]
packages/core2-64-poky-linux/xserver-xorg/xserver-xorg-doc: PV changed from 
"21.1.8" to "21.1.9"
packages/core2-64-poky-linux/xserver-xorg/xserver-xorg-extension-dbe: PKGV 
changed from 21.1.8 [default] to 21.1.9 [default]
packages/core2-64-poky-linux/xserver-xorg/xserver-xorg-extension-dbe: PV 
changed from "21.1.8" to "21.1.9"
packages/core2-64-poky-linux/xserver-xorg/xserver-xorg-extension-dri: PKGV 
changed from 21.1.8 [default] to 21.1.9 [default]
packages/core2-64-poky-linux/xserver-xorg/xserver-xorg-extension-dri: PV 
changed from "21.1.8" to "21.1.9"
packages/core2-64-poky-linux/xserver-xorg/xserver-xorg-extension-dri2: PKGV 
changed from 21.1.8 [default] to 21.1.9 [default]
packages/core2-64-poky-linux/xserver-xorg/xserver-xorg-extension-dri2: PV 
changed from "21.1.8" to "21.1.9"
packages/core2-64-poky-linux/xserver-xorg/xserver-xorg-extension-extmod: PKGV 
changed from 21.1.8 [default] to 21.1.9 [default]

[OE-core] [AUH] xwayland: upgrading to 23.2.2 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *xwayland* to *23.2.2* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-xwayland-upgrade-23.2.1-23.2.2.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From ad0b482722899379e6c90511c7acc73fb713947a Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 13:31:37 +
Subject: [PATCH] xwayland: upgrade 23.2.1 -> 23.2.2

---
 .../xwayland/{xwayland_23.2.1.bb => xwayland_23.2.2.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-graphics/xwayland/{xwayland_23.2.1.bb => 
xwayland_23.2.2.bb} (95%)

diff --git a/meta/recipes-graphics/xwayland/xwayland_23.2.1.bb 
b/meta/recipes-graphics/xwayland/xwayland_23.2.2.bb
similarity index 95%
rename from meta/recipes-graphics/xwayland/xwayland_23.2.1.bb
rename to meta/recipes-graphics/xwayland/xwayland_23.2.2.bb
index e97a921a96..9feac147db 100644
--- a/meta/recipes-graphics/xwayland/xwayland_23.2.1.bb
+++ b/meta/recipes-graphics/xwayland/xwayland_23.2.2.bb
@@ -10,7 +10,7 @@ LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=5df87950af51ac2c5822094553ea1880"
 
 SRC_URI = "https://www.x.org/archive/individual/xserver/xwayland-${PV}.tar.xz;
-SRC_URI[sha256sum] = 
"eebc2692c3aa80617d78428bc6ec7b91b254a98214d2a70e997098503cd6ef90"
+SRC_URI[sha256sum] = 
"9f7c0938d2a41e941ffa04f99c35e5db2bcd3eec034afe8d35d5c810a22eb0a8"
 
 UPSTREAM_CHECK_REGEX = "xwayland-(?P\d+(\.(?!90\d)\d+)+)\.tar"
 
-- 
2.39.2

packages/core2-64-poky-linux/xwayland: SRC_URI changed from 
"https://www.x.org/archive/individual/xserver/xwayland-23.2.1.tar.xz; to 
"https://www.x.org/archive/individual/xserver/xwayland-23.2.2.tar.xz;
packages/core2-64-poky-linux/xwayland: PKGV changed from 23.2.1 [default] to 
23.2.2 [default]
packages/core2-64-poky-linux/xwayland: PV changed from "23.2.1" to "23.2.2"
packages/core2-64-poky-linux/xwayland/xwayland-dbg: PKGV changed from 23.2.1 
[default] to 23.2.2 [default]
packages/core2-64-poky-linux/xwayland/xwayland-dbg: PKGSIZE changed from 
11677976 to 11678448 (+0%)
packages/core2-64-poky-linux/xwayland/xwayland-dbg: PV changed from "23.2.1" to 
"23.2.2"
packages/core2-64-poky-linux/xwayland/xwayland-dev: PKGV changed from 23.2.1 
[default] to 23.2.2 [default]
packages/core2-64-poky-linux/xwayland/xwayland-dev: PKGSIZE changed from 478 to 
506 (+6%)
packages/core2-64-poky-linux/xwayland/xwayland-dev: PV changed from "23.2.1" to 
"23.2.2"
packages/core2-64-poky-linux/xwayland/xwayland-doc: PKGV changed from 23.2.1 
[default] to 23.2.2 [default]
packages/core2-64-poky-linux/xwayland/xwayland-doc: PKGSIZE changed from 30269 
to 30589 (+1%)
packages/core2-64-poky-linux/xwayland/xwayland-doc: PV changed from "23.2.1" to 
"23.2.2"
packages/core2-64-poky-linux/xwayland/xwayland-locale: PKGV changed from 23.2.1 
[default] to 23.2.2 [default]
packages/core2-64-poky-linux/xwayland/xwayland-locale: PV changed from "23.2.1" 
to "23.2.2"
packages/core2-64-poky-linux/xwayland/xwayland-src: PKGV changed from 23.2.1 
[default] to 23.2.2 [default]
packages/core2-64-poky-linux/xwayland/xwayland-src: PKGSIZE changed from 
8750674 to 8751561 (+0%)
packages/core2-64-poky-linux/xwayland/xwayland-src: PV changed from "23.2.1" to 
"23.2.2"
packages/core2-64-poky-linux/xwayland/xwayland-staticdev: PKGV changed from 
23.2.1 [default] to 23.2.2 [default]
packages/core2-64-poky-linux/xwayland/xwayland-staticdev: PV changed from 
"23.2.1" to "23.2.2"
packages/core2-64-poky-linux/xwayland/xwayland: PKGV changed from 23.2.1 
[default] to 23.2.2 [default]
packages/core2-64-poky-linux/xwayland/xwayland: PV changed from "23.2.1" to 
"23.2.2"


0001-xwayland-upgrade-23.2.1-23.2.2.patch
Description: Binary data

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#190025): 
https://lists.openembedded.org/g/openembedded-core/message/190025
Mute This Topic: https://lists.openembedded.org/mt/102320402/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [AUH] man-db: upgrading to 2.12.0 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *man-db* to *2.12.0* has 
Failed (devtool error).

Detailed error information:

Running 'devtool upgrade' for recipe man-db failed.
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)... (11:30:39.546937)
Loading cache...done.
Loaded 1842 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-03d8ce2b33e2ed1a3e231c6ef2234ca75537ab95"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:03d8ce2b33e2ed1a3e231c6ef2234ca75537ab95"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 2 Local 2 Mirrors 0 Missed 0 Current 31 (100% match, 
100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 113 tasks of which 110 didn't need to be rerun 
and all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
Loading cache...done.
Loaded 1842 entries from dependency cache.
Parsing recipes...done.
Parsing of 912 .bb files complete (910 cached, 2 parsed). 1843 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-03d8ce2b33e2ed1a3e231c6ef2234ca75537ab95"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:03d8ce2b33e2ed1a3e231c6ef2234ca75537ab95"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 3 Local 2 Mirrors 0 Missed 1 Current 25 (66% match, 96% 
complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 93 tasks of which 90 didn't need to be rerun and 
all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
DEBUG 5 [Errno 25] Inappropriate ioctl for device
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:  12% || ETA:  0:00:01
Adding changed files:  25% |#   | ETA:  0:00:00
Adding changed files:  38% |#   | ETA:  0:00:00
Adding changed files:  50% |##  | ETA:  0:00:00
Adding changed files:  63% |##  | ETA:  0:00:00
Adding changed files:  76% |### | ETA:  0:00:00
Adding changed files:  88% || ETA:  0:00:00
Adding changed files: 100% || Time: 0:00:00
INFO: Extracting current version source...
INFO: Adding local source files to srctree...
INFO: Extracting upgraded version source...
INFO: Fetching 
https://download.savannah.nongnu.org/releases/man-db/man-db-2.12.0.tar.xz...
INFO: Rebasing devtool onto 9fbadeba3f8eef67aef70a8195419a3d79ec5559
WARNING: Command 'git rebase 9fbadeba3f8eef67aef70a8195419a3d79ec5559' failed:
Auto-merging gl/m4/largefile.m4
CONFLICT (content): Merge conflict in gl/m4/largefile.m4

You will need to resolve conflicts in order to complete the upgrade.
INFO: Upgraded source extracted to 
/home/pokybuild/yocto-worker/auh/build/build/build/workspace/sources/man-db
INFO: New recipe is 
/home/pokybuild/yocto-worker/auh/build/build/build/workspace/recipes/man-db/man-db_2.12.0.bb



Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#189998): 
https://lists.openembedded.org/g/openembedded-core/message/189998
Mute This Topic: https://lists.openembedded.org/mt/102320375/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [AUH] p11-kit: upgrading to 0.25.2 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *p11-kit* to *0.25.2* has 
Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-p11-kit-upgrade-0.25.0-0.25.2.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 67d1e9a0e02b6e9ba8b2900b1ff9b890fd36f571 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 14:18:01 +
Subject: [PATCH] p11-kit: upgrade 0.25.0 -> 0.25.2

---
 .../p11-kit/files/strerror-1.patch| 76 ---
 .../p11-kit/files/strerror-2.patch| 30 
 .../{p11-kit_0.25.0.bb => p11-kit_0.25.2.bb}  |  6 +-
 3 files changed, 2 insertions(+), 110 deletions(-)
 delete mode 100644 meta/recipes-support/p11-kit/files/strerror-1.patch
 delete mode 100644 meta/recipes-support/p11-kit/files/strerror-2.patch
 rename meta/recipes-support/p11-kit/{p11-kit_0.25.0.bb => p11-kit_0.25.2.bb} 
(90%)

diff --git a/meta/recipes-support/p11-kit/files/strerror-1.patch 
b/meta/recipes-support/p11-kit/files/strerror-1.patch
deleted file mode 100644
index 6af4fee724..00
--- a/meta/recipes-support/p11-kit/files/strerror-1.patch
+++ /dev/null
@@ -1,76 +0,0 @@
-From 3ba2c55dfdc8ff20de369f07f6c57d08718d3add Mon Sep 17 00:00:00 2001
-From: Adam Sampson 
-Date: Sun, 2 Jul 2023 15:22:49 +0100
-Subject: [PATCH] Check for GNU strerror_r using the compiler only
-
-The new test that was added to distinguish GNU/XSI strerror_r ran a
-compiled program, which doesn't work when cross-compiling. The only
-difference at compile time is that the GNU version returns char * and
-the XSI version returns int, so detect it by compiling a program that
-dereferences the return value.
-
-Signed-off-by: Adam Sampson 
-
-Upstream-Status: Backport
-Signed-off-by: Ross Burton 

- configure.ac | 19 +++
- meson.build  | 10 +-
- 2 files changed, 12 insertions(+), 17 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 40f5a583..29890622 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -146,19 +146,14 @@ if test "$os_unix" = "yes"; then
- 
-   AC_CHECK_FUNC(
-   [strerror_r],
--  [AC_RUN_IFELSE(
--  [AC_LANG_SOURCE([[
--  #include 
--  #include 
--
--  int main (void)
--  {
--  char buf[32];
--  return strerror_r (EINVAL, buf, 32);
--  }
--  ]])],
--[AC_DEFINE([HAVE_XSI_STRERROR_R], 1, [Whether 
XSI-compliant strerror_r() is available])],
-+  [AC_COMPILE_IFELSE(
-+  [AC_LANG_PROGRAM([[#include 
-+ #include ]],
-+   [[/* GNU strerror_r returns char *, 
XSI returns int */
-+  char buf[32];
-+  return *strerror_r (EINVAL, buf, 
32);]])],
-   [AC_DEFINE([HAVE_GNU_STRERROR_R], 1, [Whether 
GNU-specific strerror_r() is available])],
-+[AC_DEFINE([HAVE_XSI_STRERROR_R], 1, [Whether 
XSI-compliant strerror_r() is available])],
-   [])],
-   [])
- 
-diff --git a/meson.build b/meson.build
-index 0f8c8da0..4cc3f89a 100644
 a/meson.build
-+++ b/meson.build
-@@ -306,15 +306,15 @@ if cc.has_function('strerror_r', prefix: '#include 
')
- 
- int main (void)
- {
-+/* GNU strerror_r returns char *, XSI returns int */
- char buf[32];
--return strerror_r (EINVAL, buf, 32);
-+return *strerror_r (EINVAL, buf, 32);
- }
- '''
--  strerror_r_check = cc.run(strerror_r_code, name : 'strerror_r check')
--  if strerror_r_check.returncode() == 0
--conf.set('HAVE_XSI_STRERROR_R', 1)
--  else
-+  if cc.compiles(strerror_r_code, name : 'GNU strerror_r check')
- conf.set('HAVE_GNU_STRERROR_R', 1)
-+  else
-+conf.set('HAVE_XSI_STRERROR_R', 1)
-   endif
- endif
- 
diff --git a/meta/recipes-support/p11-kit/files/strerror-2.patch 
b/meta/recipes-support/p11-kit/files/strerror-2.patch

[OE-core] [AUH] linux-firmware: upgrading to 20231030 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *linux-firmware* to *20231030* 
has Succeeded.

Next steps:
- apply the patch: git am 
0001-linux-firmware-upgrade-20230804-20231030.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From b1f0cadf960a3fa1a88960ab5d0a2d81142b66ac Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 13:40:58 +
Subject: [PATCH] linux-firmware: upgrade 20230804 -> 20231030

---
 ...20230804.bb => linux-firmware_20231030.bb} | 611 +-
 1 file changed, 609 insertions(+), 2 deletions(-)
 rename meta/recipes-kernel/linux-firmware/{linux-firmware_20230804.bb => 
linux-firmware_20231030.bb} (75%)

diff --git a/meta/recipes-kernel/linux-firmware/linux-firmware_20230804.bb 
b/meta/recipes-kernel/linux-firmware/linux-firmware_20231030.bb
similarity index 75%
rename from meta/recipes-kernel/linux-firmware/linux-firmware_20230804.bb
rename to meta/recipes-kernel/linux-firmware/linux-firmware_20231030.bb
index 0e8005bfc9..356fbb0fb9 100644
--- a/meta/recipes-kernel/linux-firmware/linux-firmware_20230804.bb
+++ b/meta/recipes-kernel/linux-firmware/linux-firmware_20231030.bb
@@ -1,3 +1,610 @@
+# FIXME: the LIC_FILES_CHKSUM values have been updated by 'devtool upgrade'.
+# The following is the difference between the old and the new license text.
+# Please update the LICENSE value if needed, and summarize the changes in
+# the commit message via 'License-Update:' tag.
+# (example: 'License-Update: copyright years updated.')
+#
+# The changes:
+#
+# --- WHENCE
+# +++ WHENCE
+# @@ -536,14 +536,14 @@
+#  
+#  File: cxgb4/t4fw-1.14.4.0.bin
+#  File: cxgb4/t4fw-1.15.37.0.bin
+# -File: cxgb4/t4fw-1.27.3.0.bin
+# -Link: cxgb4/t4fw.bin -> t4fw-1.27.3.0.bin
+# +File: cxgb4/t4fw-1.27.4.0.bin
+# +Link: cxgb4/t4fw.bin -> t4fw-1.27.4.0.bin
+#  File: cxgb4/t5fw-1.14.4.0.bin
+#  File: cxgb4/t5fw-1.15.37.0.bin
+# -File: cxgb4/t5fw-1.27.3.0.bin
+# -Link: cxgb4/t5fw.bin -> t5fw-1.27.3.0.bin
+# -File: cxgb4/t6fw-1.27.3.0.bin
+# -Link: cxgb4/t6fw.bin -> t6fw-1.27.3.0.bin
+# +File: cxgb4/t5fw-1.27.4.0.bin
+# +Link: cxgb4/t5fw.bin -> t5fw-1.27.4.0.bin
+# +File: cxgb4/t6fw-1.27.4.0.bin
+# +Link: cxgb4/t6fw.bin -> t6fw-1.27.4.0.bin
+#  File: cxgb4/aq1202_fw.cld
+#  File: cxgb4/bcm8483.bin
+#  File: cxgb4/configs/t4-config-default.txt
+# @@ -726,10 +726,10 @@
+#  Version: W16.68.1.p179
+#  
+#  File: mrvl/pcieusb8997_combo_v4.bin
+# -Version: W16.68.1.p195
+# +Version: W16.68.10.p159.1
+#  
+#  File: mrvl/pcie8997_wlan_v4.bin
+# -Version: W16.68.1.p195
+# +Version: W16.68.10.p159.1
+#  
+#  File: mrvl/usbusb8997_combo_v4.bin
+#  Version: W16.68.1.p183
+# @@ -1017,22 +1017,22 @@
+#  Version: 74.a5e9588b.0
+#  
+#  File: iwlwifi-cc-a0-77.ucode
+# -Version: 74.2df8986f.0
+# +Version: 74.bd067429.0
+#  
+#  File: iwlwifi-Qu-b0-hr-b0-77.ucode
+# -Version: 74.2df8986f.0
+# +Version: 74.bd067429.0
+#  
+#  File: iwlwifi-Qu-b0-jf-b0-77.ucode
+# -Version: 74.2df8986f.0
+# +Version: 74.bd067429.0
+#  
+#  File: iwlwifi-Qu-c0-hr-b0-77.ucode
+# -Version: 74.2df8986f.0
+# +Version: 74.bd067429.0
+#  
+#  File: iwlwifi-Qu-c0-jf-b0-77.ucode
+# -Version: 74.2df8986f.0
+# +Version: 74.bd067429.0
+#  
+#  File: iwlwifi-QuZ-a0-hr-b0-77.ucode
+# -Version: 74.2df8986f.0
+# +Version: 74.bd06742.0
+#  
+#  File: iwlwifi-QuZ-a0-jf-b0-77.ucode
+#  Version: 74.206b0184.0
+# @@ -1052,6 +1052,9 @@
+#  File: iwlwifi-ty-a0-gf-a0-83.ucode
+#  Version: 80.e8f84e98.0
+#  
+# +File: iwlwifi-ty-a0-gf-a0-84.ucode
+# +Version: 81.8e5c544c.0
+# +
+#  File: iwlwifi-so-a0-gf4-a0-77.ucode
+#  Version: 74.f92b5fed.0
+#  
+# @@ -1067,6 +1070,9 @@
+#  File: iwlwifi-so-a0-gf4-a0-83.ucode
+#  Version: 80.e8f84e98.0
+#  
+# +File: iwlwifi-so-a0-gf4-a0-84.ucode
+# +Version: 81.8e5c544c.0
+# +
+#  File: iwlwifi-so-a0-gf-a0-77.ucode
+#  Version: 74.f92b5fed.0
+#  
+# @@ -1082,6 +1088,9 @@
+#  File: iwlwifi-so-a0-gf-a0-83.ucode
+#  Version: 80.e8f84e98.0
+#  
+# +File: iwlwifi-so-a0-gf-a0-84.ucode
+# +Version: 81.8e5c544c.0
+# +
+#  File: iwlwifi-so-a0-hr-b0-77.ucode
+#  Version: 74.f92b5fed.0
+#  
+# @@ -1091,10 +1100,34 @@
+#  File: iwlwifi-so-a0-hr-b0-81.ucode
+#  Version: 78.31fc9ae6.0
+#  
+# +File: iwlwifi-so-a0-hr-b0-83.ucode
+# +Version: 80.e8f84e98.0
+# +
+# +File: 

[OE-core] [AUH] vulkan-tools: upgrading to 1.3.268.0 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *vulkan-tools* to *1.3.268.0* 
has Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 
0001-vulkan-tools-upgrade-1.3.261.1-1.3.268.0.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From d698f6ac7b61facc4abcc0a4d1730718c9274c2a Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 13:16:43 +
Subject: [PATCH] vulkan-tools: upgrade 1.3.261.1 -> 1.3.268.0

---
 .../{vulkan-tools_1.3.261.1.bb => vulkan-tools_1.3.268.0.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-graphics/vulkan/{vulkan-tools_1.3.261.1.bb => 
vulkan-tools_1.3.268.0.bb} (96%)

diff --git a/meta/recipes-graphics/vulkan/vulkan-tools_1.3.261.1.bb 
b/meta/recipes-graphics/vulkan/vulkan-tools_1.3.268.0.bb
similarity index 96%
rename from meta/recipes-graphics/vulkan/vulkan-tools_1.3.261.1.bb
rename to meta/recipes-graphics/vulkan/vulkan-tools_1.3.268.0.bb
index 7a7edc9ebd..5f0d52bb6e 100644
--- a/meta/recipes-graphics/vulkan/vulkan-tools_1.3.261.1.bb
+++ b/meta/recipes-graphics/vulkan/vulkan-tools_1.3.268.0.bb
@@ -7,7 +7,7 @@ SECTION = "libs"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57"
 SRC_URI = 
"git://github.com/KhronosGroup/Vulkan-Tools.git;branch=main;protocol=https"
-SRCREV = "a7da7027ca9fd0901639f02619c226da9c6036f1"
+SRCREV = "1532001f7edae559af1988293eec90bc5e2607d5"
 
 S = "${WORKDIR}/git"
 
-- 
2.39.2

Loading cache...done.
Loaded 1842 entries from dependency cache.
Parsing recipes...done.
Parsing of 911 .bb files complete (910 cached, 1 parsed). 1842 targets, 38 
skipped, 0 masked, 0 errors.
Removing 1 recipes from the core2-64 sysroot...done.
Removing 1 recipes from the qemux86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-e13f91a49c7f495e0b239953c84ebbe620fdf8fa"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:e13f91a49c7f495e0b239953c84ebbe620fdf8fa"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 60 Local 50 Mirrors 0 Missed 10 Current 492 (83% match, 
98% complete)
NOTE: Executing Tasks
NOTE: Setscene tasks completed
NOTE: Running task 1439 of 1549 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-graphics/vulkan/vulkan-tools_1.3.268.0.bb:do_recipe_qa)
NOTE: recipe vulkan-tools-1.3.268.0-r0: task do_recipe_qa: Started
NOTE: recipe vulkan-tools-1.3.268.0-r0: task do_recipe_qa: Succeeded
NOTE: Running task 1531 of 1549 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-graphics/vulkan/vulkan-tools_1.3.268.0.bb:do_fetch)
NOTE: recipe vulkan-tools-1.3.268.0-r0: task do_fetch: Started
NOTE: recipe vulkan-tools-1.3.268.0-r0: task do_fetch: Succeeded
NOTE: Running task 1532 of 1549 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-graphics/vulkan/vulkan-tools_1.3.268.0.bb:do_unpack)
NOTE: Running task 1533 of 1549 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-graphics/vulkan/vulkan-tools_1.3.268.0.bb:do_prepare_recipe_sysroot)
NOTE: recipe vulkan-tools-1.3.268.0-r0: task do_unpack: Started
NOTE: recipe vulkan-tools-1.3.268.0-r0: task do_prepare_recipe_sysroot: Started
NOTE: recipe vulkan-tools-1.3.268.0-r0: task do_unpack: Succeeded
NOTE: Running task 1534 of 1549 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-graphics/vulkan/vulkan-tools_1.3.268.0.bb:do_patch)
NOTE: Running task 1535 of 1549 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-graphics/vulkan/vulkan-tools_1.3.268.0.bb:do_collect_spdx_deps)
NOTE: recipe vulkan-tools-1.3.268.0-r0: task do_prepare_recipe_sysroot: 
Succeeded
NOTE: recipe vulkan-tools-1.3.268.0-r0: task do_patch: Started
NOTE: recipe vulkan-tools-1.3.268.0-r0: task do_collect_spdx_deps: 

[OE-core] [AUH] epiphany: upgrading to 45.0 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *epiphany* to *45.0* has 
Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-epiphany-upgrade-44.6-45.0.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 361a161b31315f98930109bb642544f8586a8dc1 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 12:07:24 +
Subject: [PATCH] epiphany: upgrade 44.6 -> 45.0

---
 .../epiphany/{epiphany_44.6.bb => epiphany_45.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-gnome/epiphany/{epiphany_44.6.bb => epiphany_45.0.bb} (94%)

diff --git a/meta/recipes-gnome/epiphany/epiphany_44.6.bb 
b/meta/recipes-gnome/epiphany/epiphany_45.0.bb
similarity index 94%
rename from meta/recipes-gnome/epiphany/epiphany_44.6.bb
rename to meta/recipes-gnome/epiphany/epiphany_45.0.bb
index d8dd3d6dae..e20a5e993e 100644
--- a/meta/recipes-gnome/epiphany/epiphany_44.6.bb
+++ b/meta/recipes-gnome/epiphany/epiphany_45.0.bb
@@ -32,7 +32,7 @@ SRC_URI = 
"${GNOME_MIRROR}/${GNOMEBN}/${@oe.utils.trim_version("${PV}", 1)}/${GN
file://migrator.patch \
file://distributor.patch \
"
-SRC_URI[archive.sha256sum] = 
"5335dd573581db61e126d854dc16ae519657a5b8790789a47d25e43e17cd3a43"
+SRC_URI[archive.sha256sum] = 
"0ba2443a3390d75d63271e30b9aa1c7b8f37c1bba37bd346a7fdd20bbdb34791"
 
 # Developer mode enables debugging
 PACKAGECONFIG[developer-mode] = "-Ddeveloper_mode=true,-Ddeveloper_mode=false"
-- 
2.39.2



0001-epiphany-upgrade-44.6-45.0.patch
Description: Binary data
Loading cache...done.
Loaded 1845 entries from dependency cache.
Parsing recipes...done.
Parsing of 911 .bb files complete (910 cached, 1 parsed). 1842 targets, 38 
skipped, 0 masked, 0 errors.
Removing 1 recipes from the core2-64 sysroot...done.
Removing 1 recipes from the qemux86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-8795064872a157a7d497372a40d7629cdff5e2d3"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:8795064872a157a7d497372a40d7629cdff5e2d3"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 113 Local 102 Mirrors 0 Missed 11 Current 1498 (90% 
match, 99% complete)
NOTE: Executing Tasks
NOTE: Setscene tasks completed
NOTE: Running task 3857 of 4375 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-gnome/epiphany/epiphany_45.0.bb:do_recipe_qa)
NOTE: Running task 4113 of 4375 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-gnome/epiphany/epiphany_45.0.bb:do_write_config)
NOTE: recipe epiphany-45.0-r0: task do_recipe_qa: Started
NOTE: recipe epiphany-45.0-r0: task do_write_config: Started
NOTE: recipe epiphany-45.0-r0: task do_recipe_qa: Succeeded
NOTE: Running task 4358 of 4375 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-gnome/epiphany/epiphany_45.0.bb:do_fetch)
NOTE: recipe epiphany-45.0-r0: task do_write_config: Succeeded
NOTE: recipe epiphany-45.0-r0: task do_fetch: Started
NOTE: recipe epiphany-45.0-r0: task do_fetch: Succeeded
NOTE: Running task 4359 of 4375 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-gnome/epiphany/epiphany_45.0.bb:do_unpack)
NOTE: Running task 4360 of 4375 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-gnome/epiphany/epiphany_45.0.bb:do_prepare_recipe_sysroot)
NOTE: recipe epiphany-45.0-r0: task do_unpack: Started
NOTE: recipe epiphany-45.0-r0: task do_prepare_recipe_sysroot: Started
NOTE: recipe epiphany-45.0-r0: task do_unpack: Succeeded
NOTE: Running task 4361 of 4375 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-gnome/epiphany/epiphany_45.0.bb:do_patch)
NOTE: Running task 4362 of 4375 

[OE-core] [AUH] debianutils: upgrading to 5.14 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *debianutils* to *5.14* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-debianutils-upgrade-5.13-5.14.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 565a89075cd9f56cef2d04d4c48da7a9f17fa781 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 14:01:08 +
Subject: [PATCH] debianutils: upgrade 5.13 -> 5.14

---
 ...ebianutils_5.13.bb => debianutils_5.14.bb} | 30 +--
 1 file changed, 28 insertions(+), 2 deletions(-)
 rename meta/recipes-support/debianutils/{debianutils_5.13.bb => 
debianutils_5.14.bb} (67%)

diff --git a/meta/recipes-support/debianutils/debianutils_5.13.bb 
b/meta/recipes-support/debianutils/debianutils_5.14.bb
similarity index 67%
rename from meta/recipes-support/debianutils/debianutils_5.13.bb
rename to meta/recipes-support/debianutils/debianutils_5.14.bb
index 915277b42c..a2e3fe4281 100644
--- a/meta/recipes-support/debianutils/debianutils_5.13.bb
+++ b/meta/recipes-support/debianutils/debianutils_5.14.bb
@@ -1,3 +1,29 @@
+# FIXME: the LIC_FILES_CHKSUM values have been updated by 'devtool upgrade'.
+# The following is the difference between the old and the new license text.
+# Please update the LICENSE value if needed, and summarize the changes in
+# the commit message via 'License-Update:' tag.
+# (example: 'License-Update: copyright years updated.')
+#
+# The changes:
+#
+# --- debian/copyright
+# +++ debian/copyright
+# @@ -39,10 +39,10 @@
+#   redistributed under the terms of the GNU GPL, Version 2 or later,
+#   found on Debian systems in the file /usr/share/common-licenses/GPL-2.
+#  
+# -Files: which
+# +Files: which.debianutils
+#  Copyright: public-domain
+#  License: public-domain
+# - which is in the public domain.
+# + which.debianutils is in the public domain.
+#  
+#  Files: savelog
+#  Copyright:
+# 
+#
+
 SUMMARY = "Miscellaneous utilities specific to Debian"
 DESCRIPTION = "Provides a number of small utilities which are used \
 primarily by the installation scripts of Debian packages, although \
@@ -6,12 +32,12 @@ HOMEPAGE = "https://packages.debian.org/sid/debianutils;
 BUGTRACKER = 
"https://bugs.debian.org/cgi-bin/pkgreport.cgi?pkg=debianutils;dist=unstable;
 SECTION = "base"
 LICENSE = "GPL-2.0-only & SMAIL_GPL"
-LIC_FILES_CHKSUM = 
"file://debian/copyright;md5=74765f57ae5dd2b10ffbc39528d98753"
+LIC_FILES_CHKSUM = 
"file://debian/copyright;md5=4b667f30411d21bc8fd7db85d502a8e9"
 
 SRC_URI = 
"git://salsa.debian.org/debian/debianutils.git;protocol=https;branch=master \
"
 
-SRCREV = "d49a78eb264c1b2ad3d0d6de8e1fb776bda9c943"
+SRCREV = "7e63b32ea4126c70a5da958f0106add267810a94"
 
 inherit autotools update-alternatives
 
-- 
2.39.2

packages/core2-64-poky-linux/debianutils/debianutils-dbg: PV changed from 
"5.13" to "5.14"
packages/core2-64-poky-linux/debianutils/debianutils-dbg: PKGV changed from 
5.13 [default] to 5.14 [default]
packages/core2-64-poky-linux/debianutils/debianutils-dbg: PKGSIZE changed from 
77696 to 78816 (+1%)
packages/core2-64-poky-linux/debianutils/debianutils-dev: PV changed from 
"5.13" to "5.14"
packages/core2-64-poky-linux/debianutils/debianutils-dev: PKGV changed from 
5.13 [default] to 5.14 [default]
packages/core2-64-poky-linux/debianutils/debianutils-doc: PV changed from 
"5.13" to "5.14"
packages/core2-64-poky-linux/debianutils/debianutils-doc: FILELIST: removed 
"/usr/share/man/man1/which.1.debianutils", added 
"/usr/share/man/man1/which.debianutils.1"
packages/core2-64-poky-linux/debianutils/debianutils-doc: PKGV changed from 
5.13 [default] to 5.14 [default]
packages/core2-64-poky-linux/debianutils/debianutils-doc: RDEPENDS: removed all 
items "update-alternatives-opkg"
packages/core2-64-poky-linux/debianutils/debianutils-locale: PV changed from 
"5.13" to "5.14"
packages/core2-64-poky-linux/debianutils/debianutils-locale: PKGV changed from 
5.13 [default] to 5.14 [default]
packages/core2-64-poky-linux/debianutils/debianutils-run-parts: PV changed from 
"5.13" to "5.14"
packages/core2-64-poky-linux/debianutils/debianutils-run-parts: PKGV changed 
from 5.13 [default] to 5.14 [default]
packages/core2-64-poky-linux/debianutils/debianutils-src: PV changed from 
"5.13" to "5.14"

[OE-core] [AUH] virglrenderer: upgrading to 1.0.0 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *virglrenderer* to *1.0.0* has 
Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-virglrenderer-upgrade-0.10.4-1.0.0.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 6129826faf5b1c5886c4482ff0e5f807c5f27bb5 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 13:06:35 +
Subject: [PATCH] virglrenderer: upgrade 0.10.4 -> 1.0.0

---
 ...1-meson.build-use-python3-directly-for-python.patch | 10 +-
 ...{virglrenderer_0.10.4.bb => virglrenderer_1.0.0.bb} |  4 ++--
 2 files changed, 7 insertions(+), 7 deletions(-)
 rename meta/recipes-graphics/virglrenderer/{virglrenderer_0.10.4.bb => 
virglrenderer_1.0.0.bb} (94%)

diff --git 
a/meta/recipes-graphics/virglrenderer/virglrenderer/0001-meson.build-use-python3-directly-for-python.patch
 
b/meta/recipes-graphics/virglrenderer/virglrenderer/0001-meson.build-use-python3-directly-for-python.patch
index 8230ba588b..d2c17b6df9 100644
--- 
a/meta/recipes-graphics/virglrenderer/virglrenderer/0001-meson.build-use-python3-directly-for-python.patch
+++ 
b/meta/recipes-graphics/virglrenderer/virglrenderer/0001-meson.build-use-python3-directly-for-python.patch
@@ -1,4 +1,4 @@
-From c853c9e5c44f1b23a15a7ba629ee02f7d8ec23a0 Mon Sep 17 00:00:00 2001
+From feeaf8e66c1b3ac80e429877bd69d65642761ed5 Mon Sep 17 00:00:00 2001
 From: Alexander Kanavin 
 Date: Mon, 6 Jan 2020 12:44:42 +0100
 Subject: [PATCH] meson.build: use 'python3' directly for python
@@ -14,15 +14,15 @@ Signed-off-by: Alexander Kanavin 
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/meson.build b/meson.build
-index 13d95bb..b241eb2 100644
+index de6d16b5..79cedbf6 100644
 --- a/meson.build
 +++ b/meson.build
-@@ -64,7 +64,7 @@ flags = [
+@@ -68,7 +68,7 @@ flags = [
  
  add_project_arguments(cc.get_supported_arguments(flags), language : 'c')
  
 -prog_python = import('python').find_installation('python3')
 +prog_python = 'python3'
  
- libdrm_dep = dependency('libdrm', version : '>=2.4.50')
- thread_dep = dependency('threads')
+ not_found = dependency('', required: false)
+ libdrm_dep = dependency('libdrm', version : '>=2.4.50', required: 
get_option('drm').enabled() or get_option('venus'))
diff --git a/meta/recipes-graphics/virglrenderer/virglrenderer_0.10.4.bb 
b/meta/recipes-graphics/virglrenderer/virglrenderer_1.0.0.bb
similarity index 94%
rename from meta/recipes-graphics/virglrenderer/virglrenderer_0.10.4.bb
rename to meta/recipes-graphics/virglrenderer/virglrenderer_1.0.0.bb
index f76e7cb1b9..7af0e9c8ee 100644
--- a/meta/recipes-graphics/virglrenderer/virglrenderer_0.10.4.bb
+++ b/meta/recipes-graphics/virglrenderer/virglrenderer_1.0.0.bb
@@ -9,8 +9,8 @@ LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=c81c08eeefd9418fca8f88309a76db10"
 
 DEPENDS = "libdrm libepoxy virtual/egl virtual/libgbm"
-SRCREV = "88b9fe3bfc64b23a701e4875006dbc0e769f14f6"
-SRC_URI = 
"git://gitlab.freedesktop.org/virgl/virglrenderer.git;branch=master;protocol=https
 \
+SRCREV = "9c9d55ecbe502e0d71ee99529709efcca69aac42"
+SRC_URI = 
"git://gitlab.freedesktop.org/virgl/virglrenderer.git;branch=main;protocol=https
 \
file://0001-meson.build-use-python3-directly-for-python.patch \
"
 
-- 
2.39.2

Loading cache...done.
Loaded 1844 entries from dependency cache.
Parsing recipes...done.
Parsing of 911 .bb files complete (910 cached, 1 parsed). 1842 targets, 38 
skipped, 0 masked, 0 errors.
Removing 1 recipes from the core2-64 sysroot...done.
Removing 1 recipes from the qemux86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-23565e9fc986364405bb13ff5092ffa28d58050a"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:23565e9fc986364405bb13ff5092ffa28d58050a"
workspace= 

[OE-core] [AUH] enchant2: upgrading to 2.6.2 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *enchant2* to *2.6.2* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-enchant2-upgrade-2.6.1-2.6.2.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 9a4170230288912dd69d14ced369e5d01eb27ee7 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 14:05:34 +
Subject: [PATCH] enchant2: upgrade 2.6.1 -> 2.6.2

---
 .../enchant/{enchant2_2.6.1.bb => enchant2_2.6.2.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-support/enchant/{enchant2_2.6.1.bb => enchant2_2.6.2.bb} 
(92%)

diff --git a/meta/recipes-support/enchant/enchant2_2.6.1.bb 
b/meta/recipes-support/enchant/enchant2_2.6.2.bb
similarity index 92%
rename from meta/recipes-support/enchant/enchant2_2.6.1.bb
rename to meta/recipes-support/enchant/enchant2_2.6.2.bb
index a3510a8705..38d3245d20 100644
--- a/meta/recipes-support/enchant/enchant2_2.6.1.bb
+++ b/meta/recipes-support/enchant/enchant2_2.6.2.bb
@@ -12,7 +12,7 @@ DEPENDS = "glib-2.0 groff-native"
 inherit autotools pkgconfig github-releases
 
 SRC_URI = "${GITHUB_BASE_URI}/download/v${PV}/enchant-${PV}.tar.gz"
-SRC_URI[sha256sum] = 
"f24e12469137ae1d03140bb9032a47a5947c36f4d1e2f12b929061005eb15279"
+SRC_URI[sha256sum] = 
"6686a728e56e760f8dee09a22f0fb53b46ee9dbe7d64cf9e5bb35a658bff7e1d"
 
 GITHUB_BASE_URI = "https://github.com/AbiWord/enchant/releases;
 
-- 
2.39.2



0001-enchant2-upgrade-2.6.1-2.6.2.patch
Description: Binary data
packages/core2-64-poky-linux/enchant2/enchant2-dbg: PKGV changed from 2.6.1 
[default] to 2.6.2 [default]
packages/core2-64-poky-linux/enchant2/enchant2-dbg: PV changed from "2.6.1" to 
"2.6.2"
packages/core2-64-poky-linux/enchant2/enchant2-dbg: FILELIST: removed 
"/usr/lib/.debug/libenchant-2.so.2.6.1", added 
"/usr/lib/.debug/libenchant-2.so.2.6.2"
packages/core2-64-poky-linux/enchant2/enchant2-dev: PKGV changed from 2.6.1 
[default] to 2.6.2 [default]
packages/core2-64-poky-linux/enchant2/enchant2-dev: PV changed from "2.6.1" to 
"2.6.2"
packages/core2-64-poky-linux/enchant2/enchant2-doc: PKGV changed from 2.6.1 
[default] to 2.6.2 [default]
packages/core2-64-poky-linux/enchant2/enchant2-doc: PV changed from "2.6.1" to 
"2.6.2"
packages/core2-64-poky-linux/enchant2/enchant2-doc: PKGSIZE changed from 21054 
to 21756 (+3%)
packages/core2-64-poky-linux/enchant2/enchant2-locale: PKGV changed from 2.6.1 
[default] to 2.6.2 [default]
packages/core2-64-poky-linux/enchant2/enchant2-locale: PV changed from "2.6.1" 
to "2.6.2"
packages/core2-64-poky-linux/enchant2/enchant2-src: PKGV changed from 2.6.1 
[default] to 2.6.2 [default]
packages/core2-64-poky-linux/enchant2/enchant2-src: PV changed from "2.6.1" to 
"2.6.2"
packages/core2-64-poky-linux/enchant2/enchant2-staticdev: PKGV changed from 
2.6.1 [default] to 2.6.2 [default]
packages/core2-64-poky-linux/enchant2/enchant2-staticdev: PV changed from 
"2.6.1" to "2.6.2"
packages/core2-64-poky-linux/enchant2/enchant2: PKGV changed from 2.6.1 
[default] to 2.6.2 [default]
packages/core2-64-poky-linux/enchant2/enchant2: PV changed from "2.6.1" to 
"2.6.2"
packages/core2-64-poky-linux/enchant2/enchant2: FILELIST: removed 
"/usr/lib/libenchant-2.so.2.6.1", added "/usr/lib/libenchant-2.so.2.6.2"
packages/core2-64-poky-linux/enchant2: PKGV changed from 2.6.1 [default] to 
2.6.2 [default]
packages/core2-64-poky-linux/enchant2: PV changed from "2.6.1" to "2.6.2"
packages/core2-64-poky-linux/enchant2: SRC_URI changed from 
"https://github.com/AbiWord/enchant/releases/download/v2.6.1/enchant-2.6.1.tar.gz;
 to 
"https://github.com/AbiWord/enchant/releases/download/v2.6.2/enchant-2.6.2.tar.gz;
Changes to packages/core2-64-poky-linux/enchant2 (sysroot):
  /usr/lib/libenchant-2.so.2 changed symlink target from libenchant-2.so.2.6.1 
to libenchant-2.so.2.6.2
  /usr/lib/libenchant-2.so changed symlink target from libenchant-2.so.2.6.1 to 
libenchant-2.so.2.6.2
  /usr/lib/libenchant-2.so.2.6.1 moved to /usr/lib/libenchant-2.so.2.6.2
packages/core2-64-poky-linux/enchant2/enchant2: FILELIST: removed 
"/usr/lib/libenchant-2.so.2.6.1", added "/usr/lib/libenchant-2.so.2.6.2"
Changes to packages/core2-64-poky-linux/enchant2 (sysroot):
  /usr/lib/libenchant-2.so.2 changed symlink 

[OE-core] [AUH] hwlatdetect: upgrading to 2.6 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *hwlatdetect* to *2.6* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-hwlatdetect-upgrade-2.5-2.6.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 4d58743055790a981c6b748c4d5056f50864d907 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 13:49:40 +
Subject: [PATCH] hwlatdetect: upgrade 2.5 -> 2.6

---
 meta/recipes-rt/rt-tests/rt-tests.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-rt/rt-tests/rt-tests.inc 
b/meta/recipes-rt/rt-tests/rt-tests.inc
index 527e14ad54..70315c4694 100644
--- a/meta/recipes-rt/rt-tests/rt-tests.inc
+++ b/meta/recipes-rt/rt-tests/rt-tests.inc
@@ -1,5 +1,5 @@
-SRCREV = "4579b9a6d85ae528f76e92421eb5e7b33cd26b17"
-PV = "2.5"
+SRCREV = "217cd8518c5fd490892aa9c765a6b2782cb5"
+PV = "2.6"
 PE = "1"
 
 SRC_URI = 
"git://git.kernel.org/pub/scm/utils/rt-tests/rt-tests.git;branch=main;protocol=https"
-- 
2.39.2

packages/core2-64-poky-linux/hwlatdetect/hwlatdetect-dbg: PV changed from "2.5" 
to "2.6"
packages/core2-64-poky-linux/hwlatdetect/hwlatdetect-dbg: PKGV changed from 2.5 
[default] to 2.6 [default]
packages/core2-64-poky-linux/hwlatdetect/hwlatdetect-dev: PV changed from "2.5" 
to "2.6"
packages/core2-64-poky-linux/hwlatdetect/hwlatdetect-dev: PKGV changed from 2.5 
[default] to 2.6 [default]
packages/core2-64-poky-linux/hwlatdetect/hwlatdetect-doc: PV changed from "2.5" 
to "2.6"
packages/core2-64-poky-linux/hwlatdetect/hwlatdetect-doc: PKGV changed from 2.5 
[default] to 2.6 [default]
packages/core2-64-poky-linux/hwlatdetect/hwlatdetect-locale: PV changed from 
"2.5" to "2.6"
packages/core2-64-poky-linux/hwlatdetect/hwlatdetect-locale: PKGV changed from 
2.5 [default] to 2.6 [default]
packages/core2-64-poky-linux/hwlatdetect/hwlatdetect-src: PV changed from "2.5" 
to "2.6"
packages/core2-64-poky-linux/hwlatdetect/hwlatdetect-src: PKGV changed from 2.5 
[default] to 2.6 [default]
packages/core2-64-poky-linux/hwlatdetect/hwlatdetect-staticdev: PV changed from 
"2.5" to "2.6"
packages/core2-64-poky-linux/hwlatdetect/hwlatdetect-staticdev: PKGV changed 
from 2.5 [default] to 2.6 [default]
packages/core2-64-poky-linux/hwlatdetect/hwlatdetect: PV changed from "2.5" to 
"2.6"
packages/core2-64-poky-linux/hwlatdetect/hwlatdetect: PKGSIZE changed from 
17162 to 17229 (+0%)
packages/core2-64-poky-linux/hwlatdetect/hwlatdetect: PKGV changed from 2.5 
[default] to 2.6 [default]
packages/core2-64-poky-linux/hwlatdetect: PV changed from "2.5" to "2.6"
packages/core2-64-poky-linux/hwlatdetect: PKGV changed from 2.5 [default] to 
2.6 [default]


0001-hwlatdetect-upgrade-2.5-2.6.patch
Description: Binary data

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#190026): 
https://lists.openembedded.org/g/openembedded-core/message/190026
Mute This Topic: https://lists.openembedded.org/mt/102320403/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [AUH] vulkan-validation-layers: upgrading to 1.3.268.0 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *vulkan-validation-layers* to 
*1.3.268.0* has Failed (devtool error).

Detailed error information:

Running 'devtool upgrade' for recipe vulkan-validation-layers failed.
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)... (13:20:19.344831)
Loading cache...done.
Loaded 1842 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-0c4169c2145802e0b88588951c8d5c4b5724c74c"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:0c4169c2145802e0b88588951c8d5c4b5724c74c"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 2 Local 2 Mirrors 0 Missed 0 Current 28 (100% match, 
100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 103 tasks of which 100 didn't need to be rerun 
and all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
INFO: Extracting current version source...
INFO: Extracting upgraded version source...
INFO: Rebasing devtool onto 3c64adb4e052062fc60b6580c365429fddfbcfbf
WARNING: Command 'git rebase 3c64adb4e052062fc60b6580c365429fddfbcfbf' failed:
Auto-merging tests/framework/binding.cpp
CONFLICT (content): Merge conflict in tests/framework/binding.cpp
Auto-merging tests/framework/binding.h
Auto-merging tests/framework/layer_validation_tests.h
CONFLICT (content): Merge conflict in tests/framework/layer_validation_tests.h
Auto-merging tests/framework/render.cpp
CONFLICT (content): Merge conflict in tests/framework/render.cpp
Auto-merging tests/framework/render.h
CONFLICT (content): Merge conflict in tests/framework/render.h
Auto-merging tests/unit/shader_object.cpp
CONFLICT (content): Merge conflict in tests/unit/shader_object.cpp
Auto-merging tests/unit/shader_object_positive.cpp
CONFLICT (content): Merge conflict in tests/unit/shader_object_positive.cpp

You will need to resolve conflicts in order to complete the upgrade.
INFO: Upgraded source extracted to 
/home/pokybuild/yocto-worker/auh/build/build/build/workspace/sources/vulkan-validation-layers
INFO: New recipe is 
/home/pokybuild/yocto-worker/auh/build/build/build/workspace/recipes/vulkan-validation-layers/vulkan-validation-layers_1.3.268.0.bb



Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#190019): 
https://lists.openembedded.org/g/openembedded-core/message/190019
Mute This Topic: https://lists.openembedded.org/mt/102320396/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [AUH] mpg123: upgrading to 1.32.3 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *mpg123* to *1.32.3* has 
Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-mpg123-upgrade-1.31.3-1.32.3.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 3b0e0cc52929d64e051bc834b55d81116b233fbf Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 13:43:54 +
Subject: [PATCH] mpg123: upgrade 1.31.3 -> 1.32.3

---
 .../mpg123/{mpg123_1.31.3.bb => mpg123_1.32.3.bb}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-multimedia/mpg123/{mpg123_1.31.3.bb => mpg123_1.32.3.bb} 
(96%)

diff --git a/meta/recipes-multimedia/mpg123/mpg123_1.31.3.bb 
b/meta/recipes-multimedia/mpg123/mpg123_1.32.3.bb
similarity index 96%
rename from meta/recipes-multimedia/mpg123/mpg123_1.31.3.bb
rename to meta/recipes-multimedia/mpg123/mpg123_1.32.3.bb
index b03ee9f71a..cc3906e207 100644
--- a/meta/recipes-multimedia/mpg123/mpg123_1.31.3.bb
+++ b/meta/recipes-multimedia/mpg123/mpg123_1.32.3.bb
@@ -10,7 +10,7 @@ LICENSE = "LGPL-2.1-only"
 LIC_FILES_CHKSUM = "file://COPYING;md5=e7b9c15fcfb986abb4cc5e8400a24169"
 
 SRC_URI = "https://www.mpg123.de/download/${BP}.tar.bz2;
-SRC_URI[sha256sum] = 
"1ca77d3a69a5ff845b7a0536f783fee554e1041139a6b978f6afe14f5814ad1a"
+SRC_URI[sha256sum] = 
"2d9913a57d4ee8f497a182c6e82582602409782a4fb481e989feebf4435867b4"
 
 UPSTREAM_CHECK_REGEX = "mpg123-(?P\d+(\.\d+)+)\.tar"
 
-- 
2.39.2

Loading cache...done.
Loaded 1843 entries from dependency cache.
Parsing recipes...done.
Parsing of 911 .bb files complete (910 cached, 1 parsed). 1842 targets, 38 
skipped, 0 masked, 0 errors.
Removing 1 recipes from the core2-64 sysroot...done.
Removing 1 recipes from the qemux86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-d87473c14aeefe27098cd8ee2fd4bb2e1f84f6bd"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:d87473c14aeefe27098cd8ee2fd4bb2e1f84f6bd"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 87 Local 77 Mirrors 0 Missed 10 Current 786 (88% match, 
98% complete)
NOTE: Executing Tasks
NOTE: Setscene tasks completed
NOTE: Running task 2211 of 2367 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-multimedia/mpg123/mpg123_1.32.3.bb:do_recipe_qa)
NOTE: recipe mpg123-1.32.3-r0: task do_recipe_qa: Started
NOTE: recipe mpg123-1.32.3-r0: task do_recipe_qa: Succeeded
NOTE: Running task 2350 of 2367 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-multimedia/mpg123/mpg123_1.32.3.bb:do_fetch)
NOTE: recipe mpg123-1.32.3-r0: task do_fetch: Started
NOTE: recipe mpg123-1.32.3-r0: task do_fetch: Succeeded
NOTE: Running task 2351 of 2367 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-multimedia/mpg123/mpg123_1.32.3.bb:do_unpack)
NOTE: Running task 2352 of 2367 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-multimedia/mpg123/mpg123_1.32.3.bb:do_prepare_recipe_sysroot)
NOTE: recipe mpg123-1.32.3-r0: task do_unpack: Started
NOTE: recipe mpg123-1.32.3-r0: task do_prepare_recipe_sysroot: Started
NOTE: recipe mpg123-1.32.3-r0: task do_unpack: Succeeded
NOTE: Running task 2353 of 2367 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-multimedia/mpg123/mpg123_1.32.3.bb:do_patch)
NOTE: Running task 2354 of 2367 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-multimedia/mpg123/mpg123_1.32.3.bb:do_collect_spdx_deps)
NOTE: recipe mpg123-1.32.3-r0: task do_patch: Started
NOTE: recipe mpg123-1.32.3-r0: task do_collect_spdx_deps: Started
NOTE: recipe mpg123-1.32.3-r0: task do_prepare_recipe_sysroot: Succeeded
NOTE: recipe mpg123-1.32.3-r0: task do_collect_spdx_deps: Succeeded
NOTE: recipe mpg123-1.32.3-r0: task do_patch: Succeeded
NOTE: Running task 2355 of 2367 

[OE-core] [AUH] libxrandr: upgrading to 1.5.4 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *libxrandr* to *1.5.4* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-libxrandr-upgrade-1.5.3-1.5.4.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 532f9a8c1e31c4d73c9ab289a137cc68766dd767 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 13:23:57 +
Subject: [PATCH] libxrandr: upgrade 1.5.3 -> 1.5.4

---
 .../xorg-lib/{libxrandr_1.5.3.bb => libxrandr_1.5.4.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-graphics/xorg-lib/{libxrandr_1.5.3.bb => 
libxrandr_1.5.4.bb} (87%)

diff --git a/meta/recipes-graphics/xorg-lib/libxrandr_1.5.3.bb 
b/meta/recipes-graphics/xorg-lib/libxrandr_1.5.4.bb
similarity index 87%
rename from meta/recipes-graphics/xorg-lib/libxrandr_1.5.3.bb
rename to meta/recipes-graphics/xorg-lib/libxrandr_1.5.4.bb
index 98572bd969..3e2825b916 100644
--- a/meta/recipes-graphics/xorg-lib/libxrandr_1.5.3.bb
+++ b/meta/recipes-graphics/xorg-lib/libxrandr_1.5.4.bb
@@ -19,4 +19,4 @@ XORG_PN = "libXrandr"
 
 BBCLASSEXTEND = "native nativesdk"
 
-SRC_URI[sha256sum] = 
"897639014a78e1497704d669c5dd5682d721931a4452c89a7ba62676064eb428"
+SRC_URI[sha256sum] = 
"1ad5b065375f4a85915aa60611cc6407c060492a214d7f9daf214be752c3b4d3"
-- 
2.39.2

packages/core2-64-poky-linux/libxrandr: PV changed from "1.5.3" to "1.5.4"
packages/core2-64-poky-linux/libxrandr: SRC_URI changed from 
"https://www.x.org/releases//individual/lib/libXrandr-1.5.3.tar.xz; to 
"https://www.x.org/releases//individual/lib/libXrandr-1.5.4.tar.xz;
packages/core2-64-poky-linux/libxrandr: PKGV changed from 1.5.3 [default] to 
1.5.4 [default]
packages/core2-64-poky-linux/libxrandr/libxrandr-dbg: PV changed from "1.5.3" 
to "1.5.4"
packages/core2-64-poky-linux/libxrandr/libxrandr-dbg: PKGSIZE changed from 
351216 to 351184 (-0%)
packages/core2-64-poky-linux/libxrandr/libxrandr-dbg: PKGV changed from 1.5.3 
[default] to 1.5.4 [default]
packages/core2-64-poky-linux/libxrandr/libxrandr-dev: PV changed from "1.5.3" 
to "1.5.4"
packages/core2-64-poky-linux/libxrandr/libxrandr-dev: PKGV changed from 1.5.3 
[default] to 1.5.4 [default]
packages/core2-64-poky-linux/libxrandr/libxrandr-doc: PV changed from "1.5.3" 
to "1.5.4"
packages/core2-64-poky-linux/libxrandr/libxrandr-doc: PKGV changed from 1.5.3 
[default] to 1.5.4 [default]
packages/core2-64-poky-linux/libxrandr/libxrandr-locale: PV changed from 
"1.5.3" to "1.5.4"
packages/core2-64-poky-linux/libxrandr/libxrandr-locale: PKGV changed from 
1.5.3 [default] to 1.5.4 [default]
packages/core2-64-poky-linux/libxrandr/libxrandr-src: PV changed from "1.5.3" 
to "1.5.4"
packages/core2-64-poky-linux/libxrandr/libxrandr-src: PKGSIZE changed from 
116726 to 116731 (+0%)
packages/core2-64-poky-linux/libxrandr/libxrandr-src: PKGV changed from 1.5.3 
[default] to 1.5.4 [default]
packages/core2-64-poky-linux/libxrandr/libxrandr-staticdev: PV changed from 
"1.5.3" to "1.5.4"
packages/core2-64-poky-linux/libxrandr/libxrandr-staticdev: PKGV changed from 
1.5.3 [default] to 1.5.4 [default]
packages/core2-64-poky-linux/libxrandr/libxrandr: PV changed from "1.5.3" to 
"1.5.4"
packages/core2-64-poky-linux/libxrandr/libxrandr: PKGV changed from 1.5.3 
[default] to 1.5.4 [default]


0001-libxrandr-upgrade-1.5.3-1.5.4.patch
Description: Binary data

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#190018): 
https://lists.openembedded.org/g/openembedded-core/message/190018
Mute This Topic: https://lists.openembedded.org/mt/102320395/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [AUH] cargo: upgrading to 1.73.0 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *cargo* to *1.73.0* has Failed 
(devtool error).

Detailed error information:

Running 'devtool upgrade' for recipe cargo failed.
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)... (09:47:30.165825)
Loading cache...done.
Loaded 1843 entries from dependency cache.
Removing 1 recipes from the x86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-6e38f57c8f0bc68ea564765af10ac63d64160ab3"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:6e38f57c8f0bc68ea564765af10ac63d64160ab3"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 2 Local 2 Mirrors 0 Missed 0 Current 31 (100% match, 
100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 113 tasks of which 110 didn't need to be rerun 
and all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
Loading cache...done.
Loaded 1843 entries from dependency cache.
Parsing recipes...done.
Parsing of 912 .bb files complete (910 cached, 2 parsed). 1843 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-6e38f57c8f0bc68ea564765af10ac63d64160ab3"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:6e38f57c8f0bc68ea564765af10ac63d64160ab3"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 3 Local 2 Mirrors 0 Missed 1 Current 25 (66% match, 96% 
complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 93 tasks of which 90 didn't need to be rerun and 
all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
DEBUG 5 [Errno 25] Inappropriate ioctl for device
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   0% || ETA:  0:07:18
Adding changed files:   0% || ETA:  0:05:08
Adding changed files:   0% || ETA:  0:04:22
Adding changed files:   0% || ETA:  0:04:08
Adding changed files:   0% || ETA:  0:03:57
Adding changed files:   0% || ETA:  0:03:47
Adding changed files:   1% || ETA:  0:03:43
Adding changed files:   1% || ETA:  0:03:36
Adding changed files:   1% || ETA:  0:03:34
Adding changed files:   1% || ETA:  0:03:33
Adding changed files:   1% || ETA:  0:03:31
Adding changed files:   1% || ETA:  0:03:29
Adding changed files:   2% || ETA:  0:03:27
Adding changed files:   2% || ETA:  0:03:26
Adding changed files:   2% || ETA:  0:03:24
Adding changed files:   2% || ETA:  0:03:23
Adding changed files:   2% || ETA:  0:03:21
Adding changed files:   2% |#   | ETA:  0:03:20
Adding changed files:   2% |#   | ETA:  0:03:19
Adding changed files:   3% |#   | ETA:  0:03:19
Adding changed files:   3% |#   | ETA:  0:03:18
Adding changed files:   3% |#   | ETA:  0:03:16
Adding changed files:   3% |#   | ETA:  0:03:15
Adding changed files:   3% |#   | ETA:  0:03:15
Adding changed files:   3% |#   | ETA:  0:03:14
Adding changed files:   4% |#   | ETA:  0:03:13
Adding changed files:   4% |#   | ETA:  0:03:12
Adding changed files:   4% |#   | 

[OE-core] [AUH] python3-sphinxcontrib-htmlhelp: upgrading to 2.0.4 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe 
*python3-sphinxcontrib-htmlhelp* to *2.0.4* has Failed (devtool error).

Detailed error information:

The following devtool command failed:  upgrade python3-sphinxcontrib-htmlhelp 
-V 2.0.4
NOTE: Starting bitbake server...
Loading cache...done.
Loaded 1844 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-bc44915620e6572561931642eb1c41aa00fdf750"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:bc44915620e6572561931642eb1c41aa00fdf750"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 2 Local 2 Mirrors 0 Missed 0 Current 28 (100% match, 
100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 103 tasks of which 100 didn't need to be rerun 
and all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
Loading cache...done.
Loaded 1844 entries from dependency cache.
Parsing recipes...done.
Parsing of 912 .bb files complete (910 cached, 2 parsed). 1843 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-bc44915620e6572561931642eb1c41aa00fdf750"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:bc44915620e6572561931642eb1c41aa00fdf750"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 1 Local 0 Mirrors 0 Missed 1 Current 0 (0% match, 0% 
complete)
NOTE: Executing Tasks
WARNING: Failed to fetch URL 
https://files.pythonhosted.org/packages/source/s/sphinxcontrib-htmlhelp/sphinxcontrib-htmlhelp-2.0.4.tar.gz;downloadfilename=sphinxcontrib-htmlhelp-2.0.4.tar.gz,
 attempting MIRRORS if available
NOTE: Tasks Summary: Attempted 2 tasks of which 0 didn't need to be rerun and 1 
failed.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 2 seconds

INFO: Extracting current version source...
INFO: Extracting upgraded version source...
INFO: Fetching 
https://files.pythonhosted.org/packages/source/s/sphinxcontrib-htmlhelp/sphinxcontrib-htmlhelp-2.0.4.tar.gz;downloadfilename=sphinxcontrib-htmlhelp-2.0.4.tar.gz...
ERROR: Fetcher failure: Fetch command export PSEUDO_DISABLED=1; export 
SSL_CERT_FILE="/home/pokybuild/yocto-worker/auh/build/buildtools/sysroots/x86_64-pokysdk-linux/etc/ssl/certs/ca-certificates.crt";
 export 
GIT_SSL_CAINFO="/home/pokybuild/yocto-worker/auh/build/buildtools/sysroots/x86_64-pokysdk-linux/etc/ssl/certs/ca-certificates.crt";
 export ftp_proxy="http://proxy.yocto.io:5187/;; export 
FTP_PROXY="http://proxy.yocto.io:5187/;; export 
PATH="/home/pokybuild/yocto-worker/auh/build/build/build/tmp/sysroots-uninative/x86_64-linux/usr/bin:/home/pokybuild/yocto-worker/auh/build/build/poky/scripts:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-4ci1nrr_/work/recipe-sysroot-native/usr/bin/x86_64-poky-linux:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-4ci1nrr_/work/recipe-sysroot/usr/bin/crossscripts:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-4ci1nrr_/work/recipe-sysroot-native/usr/sbin:/home/pokybuild/yocto-wor
 
ker/auh/build/build/build/tmp/work/recipetool-4ci1nrr_/work/recipe-sysroot-native/usr/bin:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-4ci1nrr_/work/recipe-sysroot-native/sbin:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-4ci1nrr_/work/recipe-sysroot-native/bin:/home/pokybuild/yocto-worker/auh/build/build/poky/bitbake/bin:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/hosttools";
 export HOME="/home/pokybuild"; /usr/bin/env wget -t 2 -T 30 --passive-ftp -O 
/home/pokybuild/yocto-worker/auh/build/build/build/downloads/sphinxcontrib-htmlhelp-2.0.4.tar.gz.tmp
 -P /home/pokybuild/yocto-worker/auh/build/build/build/downloads 
'https://files.pythonhosted.org/packages/source/s/sphinxcontrib-htmlhelp/sphinxcontrib-htmlhelp-2.0.4.tar.gz'
 --progress=dot -v failed with exit code 8, no output
ERROR: Bitbake Fetcher Error: FetchError('Unable to fetch URL from any 
source.', 

[OE-core] [AUH] rt-tests: upgrading to 2.6 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *rt-tests* to *2.6* has Failed 
(devtool error).

Detailed error information:

Running 'devtool upgrade' for recipe rt-tests failed.
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Previous bitbake instance shutting down?, waiting to retry... 
(13:51:55.177431)
NOTE: Directory listing: ['conf', 'cache', 'downloads', 'upgrade-helper', 
'buildhistory', 'tmp', 'sstate-cache', 'workspace', 'bitbake-cookerdaemon.log']
NOTE: Retrying server connection (#1)... (13:51:55.418722)
Loading cache...done.
Loaded 1842 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-b3862316b2c765c98d314f76489b6734da7f9dc8"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:b3862316b2c765c98d314f76489b6734da7f9dc8"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 2 Local 2 Mirrors 0 Missed 0 Current 28 (100% match, 
100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 103 tasks of which 100 didn't need to be rerun 
and all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
INFO: Extracting current version source...
INFO: Adding local source files to srctree...
INFO: Extracting upgraded version source...
INFO: Rebasing devtool onto 217cd8518c5fd490892aa9c765a6b2782cb5
WARNING: Command 'git rebase 217cd8518c5fd490892aa9c765a6b2782cb5' failed:
Auto-merging Makefile
CONFLICT (content): Merge conflict in Makefile

You will need to resolve conflicts in order to complete the upgrade.
INFO: Using source tree as build directory since that would be the default for 
this recipe
INFO: Upgraded source extracted to 
/home/pokybuild/yocto-worker/auh/build/build/build/workspace/sources/rt-tests
INFO: New recipe is 
/home/pokybuild/yocto-worker/auh/build/build/build/workspace/recipes/rt-tests/rt-tests_git.bb



Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#190027): 
https://lists.openembedded.org/g/openembedded-core/message/190027
Mute This Topic: https://lists.openembedded.org/mt/102320404/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [AUH] vulkan-headers: upgrading to 1.3.268.0 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *vulkan-headers* to 
*1.3.268.0* has Succeeded.

Next steps:
- apply the patch: git am 
0001-vulkan-headers-upgrade-1.3.261.1-1.3.268.0.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From bcc10be9900643c4163ded1d26e7c9885f07edc6 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 13:08:22 +
Subject: [PATCH] vulkan-headers: upgrade 1.3.261.1 -> 1.3.268.0

---
 ...{vulkan-headers_1.3.261.1.bb => vulkan-headers_1.3.268.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-graphics/vulkan/{vulkan-headers_1.3.261.1.bb => 
vulkan-headers_1.3.268.0.bb} (95%)

diff --git a/meta/recipes-graphics/vulkan/vulkan-headers_1.3.261.1.bb 
b/meta/recipes-graphics/vulkan/vulkan-headers_1.3.268.0.bb
similarity index 95%
rename from meta/recipes-graphics/vulkan/vulkan-headers_1.3.261.1.bb
rename to meta/recipes-graphics/vulkan/vulkan-headers_1.3.268.0.bb
index 01eb14b9fb..c26a54360b 100644
--- a/meta/recipes-graphics/vulkan/vulkan-headers_1.3.261.1.bb
+++ b/meta/recipes-graphics/vulkan/vulkan-headers_1.3.268.0.bb
@@ -11,7 +11,7 @@ LICENSE = "Apache-2.0 & MIT"
 LIC_FILES_CHKSUM = "file://LICENSE.md;md5=1bc355d8c4196f774c8b87ed1a8dd625"
 SRC_URI = 
"git://github.com/KhronosGroup/Vulkan-Headers.git;branch=main;protocol=https"
 
-SRCREV = "85c2334e92e215cce34e8e0ed8b2dce4700f4a50"
+SRCREV = "7b3466a1f47a9251ac1113efbe022ff016e2f95b"
 
 S = "${WORKDIR}/git"
 
-- 
2.39.2

packages/core2-64-poky-linux/vulkan-headers: PKGV changed from 1.3.261.1 
[default] to 1.3.268.0 [default]
packages/core2-64-poky-linux/vulkan-headers: PV changed from "1.3.261.1" to 
"1.3.268.0"
Changes to packages/core2-64-poky-linux/vulkan-headers (sysroot):
  /usr/include/vulkan/vulkan_hpp_macros.hpp was added
  /usr/include/vulkan/vulkan_shared.hpp was added
packages/core2-64-poky-linux/vulkan-headers/vulkan-headers-dbg: PKGV changed 
from 1.3.261.1 [default] to 1.3.268.0 [default]
packages/core2-64-poky-linux/vulkan-headers/vulkan-headers-dbg: PV changed from 
"1.3.261.1" to "1.3.268.0"
packages/core2-64-poky-linux/vulkan-headers/vulkan-headers-dev: PKGSIZE changed 
from 13556354 to 13847115 (+2%)
packages/core2-64-poky-linux/vulkan-headers/vulkan-headers-dev: FILELIST: added 
"/usr/include/vulkan/vulkan_hpp_macros.hpp 
/usr/include/vulkan/vulkan_shared.hpp"
packages/core2-64-poky-linux/vulkan-headers/vulkan-headers-dev: PKGV changed 
from 1.3.261.1 [default] to 1.3.268.0 [default]
packages/core2-64-poky-linux/vulkan-headers/vulkan-headers-dev: PV changed from 
"1.3.261.1" to "1.3.268.0"
packages/core2-64-poky-linux/vulkan-headers/vulkan-headers-doc: PKGV changed 
from 1.3.261.1 [default] to 1.3.268.0 [default]
packages/core2-64-poky-linux/vulkan-headers/vulkan-headers-doc: PV changed from 
"1.3.261.1" to "1.3.268.0"
packages/core2-64-poky-linux/vulkan-headers/vulkan-headers-locale: PKGV changed 
from 1.3.261.1 [default] to 1.3.268.0 [default]
packages/core2-64-poky-linux/vulkan-headers/vulkan-headers-locale: PV changed 
from "1.3.261.1" to "1.3.268.0"
packages/core2-64-poky-linux/vulkan-headers/vulkan-headers-src: PKGV changed 
from 1.3.261.1 [default] to 1.3.268.0 [default]
packages/core2-64-poky-linux/vulkan-headers/vulkan-headers-src: PV changed from 
"1.3.261.1" to "1.3.268.0"
packages/core2-64-poky-linux/vulkan-headers/vulkan-headers-staticdev: PKGV 
changed from 1.3.261.1 [default] to 1.3.268.0 [default]
packages/core2-64-poky-linux/vulkan-headers/vulkan-headers-staticdev: PV 
changed from "1.3.261.1" to "1.3.268.0"
packages/core2-64-poky-linux/vulkan-headers/vulkan-headers: PKGSIZE changed 
from 10546716 to 11675666 (+11%)
packages/core2-64-poky-linux/vulkan-headers/vulkan-headers: PKGV changed from 
1.3.261.1 [default] to 1.3.268.0 [default]
packages/core2-64-poky-linux/vulkan-headers/vulkan-headers: PV changed from 
"1.3.261.1" to "1.3.268.0"
Changes to packages/core2-64-poky-linux/vulkan-headers (sysroot):
  /usr/include/vulkan/vulkan_hpp_macros.hpp was added
  /usr/include/vulkan/vulkan_shared.hpp was added
packages/core2-64-poky-linux/vulkan-headers/vulkan-headers-dev: FILELIST: added 
"/usr/include/vulkan/vulkan_shared.hpp 
/usr/include/vulkan/vulkan_hpp_macros.hpp"

[OE-core] [AUH] librsvg: upgrading to 2.57.0 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *librsvg* to *2.57.0* has 
Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-librsvg-upgrade-2.56.3-2.57.0.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 9a4b3294eff10418df8ed5c32fcc511342a81e8e Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 12:15:16 +
Subject: [PATCH] librsvg: upgrade 2.56.3 -> 2.57.0

---
 meta/recipes-gnome/librsvg/librsvg-crates.inc | 300 --
 .../{librsvg_2.56.3.bb => librsvg_2.57.0.bb}  |   2 +-
 2 files changed, 1 insertion(+), 301 deletions(-)
 rename meta/recipes-gnome/librsvg/{librsvg_2.56.3.bb => librsvg_2.57.0.bb} 
(97%)

diff --git a/meta/recipes-gnome/librsvg/librsvg-crates.inc 
b/meta/recipes-gnome/librsvg/librsvg-crates.inc
index 5886f3dc93..57cb1a6791 100644
--- a/meta/recipes-gnome/librsvg/librsvg-crates.inc
+++ b/meta/recipes-gnome/librsvg/librsvg-crates.inc
@@ -304,303 +304,3 @@ SRC_URI += " \
 crate://crates.io/yeslogic-fontconfig-sys/4.0.1 \
 "
 
-SRC_URI[adler-1.0.2.sha256sum] = 
"f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
-SRC_URI[aho-corasick-1.0.2.sha256sum] = 
"43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41"
-SRC_URI[android-tzdata-0.1.1.sha256sum] = 
"e41b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
-SRC_URI[android_system_properties-0.1.5.sha256sum] = 
"819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
-SRC_URI[anes-0.1.6.sha256sum] = 
"4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
-SRC_URI[anstream-0.3.2.sha256sum] = 
"0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163"
-SRC_URI[anstyle-1.0.1.sha256sum] = 
"3a30da5c5f2d5e72842e00bcb57657162cdabef0931f40e2deb9b4140440cecd"
-SRC_URI[anstyle-parse-0.2.1.sha256sum] = 
"938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333"
-SRC_URI[anstyle-query-1.0.0.sha256sum] = 
"5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
-SRC_URI[anstyle-wincon-1.0.1.sha256sum] = 
"180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188"
-SRC_URI[anyhow-1.0.72.sha256sum] = 
"3b13c32d80ecc7ab747b80c3784bce54ee8a7a0cc4fbda9bf4cda2cf6fe90854"
-SRC_URI[approx-0.5.1.sha256sum] = 
"cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
-SRC_URI[assert_cmd-2.0.11.sha256sum] = 
"86d6b683edf8d1119fe420a94f8a7e389239666aa72e65495d91c00462510151"
-SRC_URI[atty-0.2.14.sha256sum] = 
"d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
-SRC_URI[autocfg-1.1.0.sha256sum] = 
"d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
-SRC_URI[base-x-0.2.11.sha256sum] = 
"4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270"
-SRC_URI[bit-set-0.5.3.sha256sum] = 
"0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
-SRC_URI[bit-vec-0.6.3.sha256sum] = 
"349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
-SRC_URI[bitflags-1.3.2.sha256sum] = 
"bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
-SRC_URI[bitflags-2.3.3.sha256sum] = 
"630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42"
-SRC_URI[block-0.1.6.sha256sum] = 
"0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
-SRC_URI[bstr-1.6.0.sha256sum] = 
"6798148dccfbff0fae41c7574d2fa8f1ef3492fba0face179de5d8d447d67b05"
-SRC_URI[bumpalo-3.13.0.sha256sum] = 
"a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
-SRC_URI[bytemuck-1.13.1.sha256sum] = 
"17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea"
-SRC_URI[byteorder-1.4.3.sha256sum] = 
"14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
-SRC_URI[cairo-rs-0.17.10.sha256sum] = 
"ab3603c4028a5e368d09b51c8b624b9a46edcd7c3778284077a6125af73c9f0a"
-SRC_URI[cairo-sys-rs-0.17.10.sha256sum] = 
"691d0c66b1fb4881be80a760cb8fe76ea97218312f9dfe2c9cc0f496ca279cb1"
-SRC_URI[cast-0.3.0.sha256sum] = 
"37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
-SRC_URI[cc-1.0.79.sha256sum] = 
"50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
-SRC_URI[cfg-expr-0.15.3.sha256sum] = 

[OE-core] [AUH] harfbuzz: upgrading to 8.2.2 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *harfbuzz* to *8.2.2* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-harfbuzz-upgrade-8.2.1-8.2.2.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From f407f7f22b0a6ac732534361a7bcbb80a1865582 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 12:24:00 +
Subject: [PATCH] harfbuzz: upgrade 8.2.1 -> 8.2.2

---
 .../harfbuzz/{harfbuzz_8.2.1.bb => harfbuzz_8.2.2.bb}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-graphics/harfbuzz/{harfbuzz_8.2.1.bb => harfbuzz_8.2.2.bb} 
(95%)

diff --git a/meta/recipes-graphics/harfbuzz/harfbuzz_8.2.1.bb 
b/meta/recipes-graphics/harfbuzz/harfbuzz_8.2.2.bb
similarity index 95%
rename from meta/recipes-graphics/harfbuzz/harfbuzz_8.2.1.bb
rename to meta/recipes-graphics/harfbuzz/harfbuzz_8.2.2.bb
index df41af29f9..ce1a6bed65 100644
--- a/meta/recipes-graphics/harfbuzz/harfbuzz_8.2.1.bb
+++ b/meta/recipes-graphics/harfbuzz/harfbuzz_8.2.2.bb
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=b98429b8e8e3c2a67cfef01e99e4893d \
 "
 
 SRC_URI = "${GITHUB_BASE_URI}/download/${PV}/${BPN}-${PV}.tar.xz"
-SRC_URI[sha256sum] = 
"0fec78f98c9c8faf228957a201c8846f809452c20f8445eb092a1ba6f22dbea5"
+SRC_URI[sha256sum] = 
"e433ad85fbdf57f680be29479b3f964577379aaf319f557eb76569f0ecbc90f3"
 
 DEPENDS += "glib-2.0-native"
 
-- 
2.39.2



0001-harfbuzz-upgrade-8.2.1-8.2.2.patch
Description: Binary data
packages/core2-64-poky-linux/harfbuzz/harfbuzz-bin: PKGV changed from 8.2.1 
[default] to 8.2.2 [default]
packages/core2-64-poky-linux/harfbuzz/harfbuzz-bin: PV changed from "8.2.1" to 
"8.2.2"
packages/core2-64-poky-linux/harfbuzz/harfbuzz-dbg: PKGV changed from 8.2.1 
[default] to 8.2.2 [default]
packages/core2-64-poky-linux/harfbuzz/harfbuzz-dbg: PV changed from "8.2.1" to 
"8.2.2"
packages/core2-64-poky-linux/harfbuzz/harfbuzz-dbg: FILELIST: removed 
"/usr/lib/.debug/libharfbuzz-icu.so.0.60821.0 
/usr/lib/.debug/libharfbuzz.so.0.60821.0 
/usr/lib/.debug/libharfbuzz-gobject.so.0.60821.0 
/usr/lib/.debug/libharfbuzz-subset.so.0.60821.0 
/usr/lib/.debug/libharfbuzz-cairo.so.0.60821.0", added 
"/usr/lib/.debug/libharfbuzz.so.0.60822.0 
/usr/lib/.debug/libharfbuzz-icu.so.0.60822.0 
/usr/lib/.debug/libharfbuzz-cairo.so.0.60822.0 
/usr/lib/.debug/libharfbuzz-gobject.so.0.60822.0 
/usr/lib/.debug/libharfbuzz-subset.so.0.60822.0"
packages/core2-64-poky-linux/harfbuzz/harfbuzz-dbg: PKGSIZE changed from 
61437176 to 62893456 (+2%)
packages/core2-64-poky-linux/harfbuzz/harfbuzz-dev: PKGV changed from 8.2.1 
[default] to 8.2.2 [default]
packages/core2-64-poky-linux/harfbuzz/harfbuzz-dev: PV changed from "8.2.1" to 
"8.2.2"
packages/core2-64-poky-linux/harfbuzz/harfbuzz-dev: PKGSIZE changed from 
1716216 to 1715666 (-0%)
packages/core2-64-poky-linux/harfbuzz/harfbuzz-doc: PKGV changed from 8.2.1 
[default] to 8.2.2 [default]
packages/core2-64-poky-linux/harfbuzz/harfbuzz-doc: PV changed from "8.2.1" to 
"8.2.2"
packages/core2-64-poky-linux/harfbuzz/harfbuzz-icu-dev: PKGV changed from 8.2.1 
[default] to 8.2.2 [default]
packages/core2-64-poky-linux/harfbuzz/harfbuzz-icu-dev: PV changed from "8.2.1" 
to "8.2.2"
packages/core2-64-poky-linux/harfbuzz/harfbuzz-icu: PKGV changed from 8.2.1 
[default] to 8.2.2 [default]
packages/core2-64-poky-linux/harfbuzz/harfbuzz-icu: PV changed from "8.2.1" to 
"8.2.2"
packages/core2-64-poky-linux/harfbuzz/harfbuzz-icu: FILELIST: removed 
"/usr/lib/libharfbuzz-icu.so.0.60821.0", added 
"/usr/lib/libharfbuzz-icu.so.0.60822.0"
packages/core2-64-poky-linux/harfbuzz/harfbuzz-locale: PKGV changed from 8.2.1 
[default] to 8.2.2 [default]
packages/core2-64-poky-linux/harfbuzz/harfbuzz-locale: PV changed from "8.2.1" 
to "8.2.2"
packages/core2-64-poky-linux/harfbuzz/harfbuzz-src: PKGV changed from 8.2.1 
[default] to 8.2.2 [default]
packages/core2-64-poky-linux/harfbuzz/harfbuzz-src: PV changed from "8.2.1" to 
"8.2.2"
packages/core2-64-poky-linux/harfbuzz/harfbuzz-src: PKGSIZE changed from 
4735770 to 4769996 (+1%)
packages/core2-64-poky-linux/harfbuzz/harfbuzz-staticdev: PKGV changed from 
8.2.1 [default] to 8.2.2 [default]
packages/core2-64-poky-linux/harfbuzz/harfbuzz-staticdev: PV 

[OE-core] [AUH] json-glib: upgrading to 1.8.0 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *json-glib* to *1.8.0* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-json-glib-upgrade-1.6.6-1.8.0.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 0e217ef48179656413ffe9d6543d37898cdb74a4 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 12:11:40 +
Subject: [PATCH] json-glib: upgrade 1.6.6 -> 1.8.0

---
 .../json-glib/{json-glib_1.6.6.bb => json-glib_1.8.0.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-gnome/json-glib/{json-glib_1.6.6.bb => json-glib_1.8.0.bb} 
(93%)

diff --git a/meta/recipes-gnome/json-glib/json-glib_1.6.6.bb 
b/meta/recipes-gnome/json-glib/json-glib_1.8.0.bb
similarity index 93%
rename from meta/recipes-gnome/json-glib/json-glib_1.6.6.bb
rename to meta/recipes-gnome/json-glib/json-glib_1.8.0.bb
index 9c34fb7f40..9b57de1c5e 100644
--- a/meta/recipes-gnome/json-glib/json-glib_1.6.6.bb
+++ b/meta/recipes-gnome/json-glib/json-glib_1.8.0.bb
@@ -19,7 +19,7 @@ GIDOCGEN_MESON_ENABLE_FLAG = 'enabled'
 GIDOCGEN_MESON_DISABLE_FLAG = 'disabled'
 
 SRC_URI += " file://run-ptest"
-SRC_URI[archive.sha256sum] = 
"96ec98be7a91f6dde33636720e3da2ff6ecbb90e76ccaa49497f31a6855a490e"
+SRC_URI[archive.sha256sum] = 
"97ef5eb92ca811039ad50a65f06633f1aae64792789307be7170795d8b319454"
 
 PACKAGECONFIG ??= "${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)}"
 PACKAGECONFIG[manpages] = "-Dman=true,-Dman=false,libxslt-native xmlto-native"
-- 
2.39.2

packages/core2-64-poky-linux/json-glib/json-glib-bin: PV changed from "1.6.6" 
to "1.8.0"
packages/core2-64-poky-linux/json-glib/json-glib-bin: PKGV changed from 1.6.6 
[default] to 1.8.0 [default]
packages/core2-64-poky-linux/json-glib/json-glib-dbg: PKGSIZE changed from 
1032456 to 1022216 (-1%)
packages/core2-64-poky-linux/json-glib/json-glib-dbg: PV changed from "1.6.6" 
to "1.8.0"
packages/core2-64-poky-linux/json-glib/json-glib-dbg: FILELIST: removed 
"/usr/lib/.debug/libjson-glib-1.0.so.0.600.6", added 
"/usr/lib/.debug/libjson-glib-1.0.so.0.800.0"
packages/core2-64-poky-linux/json-glib/json-glib-dbg: PKGV changed from 1.6.6 
[default] to 1.8.0 [default]
packages/core2-64-poky-linux/json-glib/json-glib-dev: PKGSIZE changed from 
450872 to 453371 (+1%)
packages/core2-64-poky-linux/json-glib/json-glib-dev: PV changed from "1.6.6" 
to "1.8.0"
packages/core2-64-poky-linux/json-glib/json-glib-dev: PKGV changed from 1.6.6 
[default] to 1.8.0 [default]
packages/core2-64-poky-linux/json-glib/json-glib-doc: PV changed from "1.6.6" 
to "1.8.0"
packages/core2-64-poky-linux/json-glib/json-glib-doc: PKGV changed from 1.6.6 
[default] to 1.8.0 [default]
packages/core2-64-poky-linux/json-glib/json-glib-locale-as: PV changed from 
"1.6.6" to "1.8.0"
packages/core2-64-poky-linux/json-glib/json-glib-locale-as: PKGV changed from 
1.6.6 [default] to 1.8.0 [default]
packages/core2-64-poky-linux/json-glib/json-glib-locale-be: PV changed from 
"1.6.6" to "1.8.0"
packages/core2-64-poky-linux/json-glib/json-glib-locale-be: PKGV changed from 
1.6.6 [default] to 1.8.0 [default]
packages/core2-64-poky-linux/json-glib/json-glib-locale-bg: PKGSIZE changed 
from 4478 to 6578 (+47%)
packages/core2-64-poky-linux/json-glib/json-glib-locale-bg: PV changed from 
"1.6.6" to "1.8.0"
packages/core2-64-poky-linux/json-glib/json-glib-locale-bg: PKGV changed from 
1.6.6 [default] to 1.8.0 [default]
packages/core2-64-poky-linux/json-glib/json-glib-locale-bn-in: PV changed from 
"1.6.6" to "1.8.0"
packages/core2-64-poky-linux/json-glib/json-glib-locale-bn-in: PKGV changed 
from 1.6.6 [default] to 1.8.0 [default]
packages/core2-64-poky-linux/json-glib/json-glib-locale-bs: PV changed from 
"1.6.6" to "1.8.0"
packages/core2-64-poky-linux/json-glib/json-glib-locale-bs: PKGV changed from 
1.6.6 [default] to 1.8.0 [default]
packages/core2-64-poky-linux/json-glib/json-glib-locale-ca+valencia: PV changed 
from "1.6.6" to "1.8.0"
packages/core2-64-poky-linux/json-glib/json-glib-locale-ca+valencia: PKGV 
changed from 1.6.6 [default] to 1.8.0 [default]
packages/core2-64-poky-linux/json-glib/json-glib-locale-ca: PV changed from 
"1.6.6" to "1.8.0"
packages/core2-64-poky-linux/json-glib/json-glib-locale-ca: PKGV changed from 

[OE-core] [AUH] python3-wheel: upgrading to 0.41.3 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *python3-wheel* to *0.41.3* 
has Succeeded.

Next steps:
- apply the patch: git am 0001-python3-wheel-upgrade-0.41.2-0.41.3.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From c9a78101df8d583a700b175107e1752527c621c1 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 09:42:28 +
Subject: [PATCH] python3-wheel: upgrade 0.41.2 -> 0.41.3

---
 .../python/{python3-wheel_0.41.2.bb => python3-wheel_0.41.3.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-wheel_0.41.2.bb => 
python3-wheel_0.41.3.bb} (85%)

diff --git a/meta/recipes-devtools/python/python3-wheel_0.41.2.bb 
b/meta/recipes-devtools/python/python3-wheel_0.41.3.bb
similarity index 85%
rename from meta/recipes-devtools/python/python3-wheel_0.41.2.bb
rename to meta/recipes-devtools/python/python3-wheel_0.41.3.bb
index d11c6a857a..bdba98b8d5 100644
--- a/meta/recipes-devtools/python/python3-wheel_0.41.2.bb
+++ b/meta/recipes-devtools/python/python3-wheel_0.41.3.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=7ffb0db04527cfe380e4f2726bd05ebf"
 
-SRC_URI[sha256sum] = 
"0c5ac5ff2afb79ac23ab82bab027a0be7b5dbcf2e54dc50efe4bf507de1f7985"
+SRC_URI[sha256sum] = 
"4d4987ce51a49370ea65c0bfd2234e8ce80a12780820d9dc462597a6e60d0841"
 
 inherit python_flit_core pypi
 
-- 
2.39.2



0001-python3-wheel-upgrade-0.41.2-0.41.3.patch
Description: Binary data
packages/core2-64-poky-linux/python3-wheel: PV changed from "0.41.2" to "0.41.3"
packages/core2-64-poky-linux/python3-wheel: PKGV changed from 0.41.2 [default] 
to 0.41.3 [default]
packages/core2-64-poky-linux/python3-wheel: SRC_URI changed from 
"https://files.pythonhosted.org/packages/source/w/wheel/wheel-0.41.2.tar.gz;downloadfilename=wheel-0.41.2.tar.gz;
 to 
"https://files.pythonhosted.org/packages/source/w/wheel/wheel-0.41.3.tar.gz;downloadfilename=wheel-0.41.3.tar.gz;
packages/core2-64-poky-linux/python3-wheel/python3-wheel-dbg: PV changed from 
"0.41.2" to "0.41.3"
packages/core2-64-poky-linux/python3-wheel/python3-wheel-dbg: PKGV changed from 
0.41.2 [default] to 0.41.3 [default]
packages/core2-64-poky-linux/python3-wheel/python3-wheel-dev: PV changed from 
"0.41.2" to "0.41.3"
packages/core2-64-poky-linux/python3-wheel/python3-wheel-dev: PKGV changed from 
0.41.2 [default] to 0.41.3 [default]
packages/core2-64-poky-linux/python3-wheel/python3-wheel-doc: PV changed from 
"0.41.2" to "0.41.3"
packages/core2-64-poky-linux/python3-wheel/python3-wheel-doc: PKGV changed from 
0.41.2 [default] to 0.41.3 [default]
packages/core2-64-poky-linux/python3-wheel/python3-wheel-locale: PV changed 
from "0.41.2" to "0.41.3"
packages/core2-64-poky-linux/python3-wheel/python3-wheel-locale: PKGV changed 
from 0.41.2 [default] to 0.41.3 [default]
packages/core2-64-poky-linux/python3-wheel/python3-wheel-src: PV changed from 
"0.41.2" to "0.41.3"
packages/core2-64-poky-linux/python3-wheel/python3-wheel-src: PKGV changed from 
0.41.2 [default] to 0.41.3 [default]
packages/core2-64-poky-linux/python3-wheel/python3-wheel-staticdev: PV changed 
from "0.41.2" to "0.41.3"
packages/core2-64-poky-linux/python3-wheel/python3-wheel-staticdev: PKGV 
changed from 0.41.2 [default] to 0.41.3 [default]
packages/core2-64-poky-linux/python3-wheel/python3-wheel: PV changed from 
"0.41.2" to "0.41.3"
packages/core2-64-poky-linux/python3-wheel/python3-wheel: PKGSIZE changed from 
467789 to 475454 (+2%)
packages/core2-64-poky-linux/python3-wheel/python3-wheel: PKGV changed from 
0.41.2 [default] to 0.41.3 [default]
Changes to packages/core2-64-poky-linux/python3-wheel (sysroot):
  /usr/lib/python3.11/site-packages/wheel-0.41.2.dist-info moved to 
/usr/lib/python3.11/site-packages/wheel-0.41.3.dist-info
Changes to packages/core2-64-poky-linux/python3-wheel (sysroot):
  /usr/lib/python3.11/site-packages/wheel-0.41.2.dist-info moved to 
/usr/lib/python3.11/site-packages/wheel-0.41.3.dist-info

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#189980): 
https://lists.openembedded.org/g/openembedded-core/message/189980
Mute This Topic: 

[OE-core] [AUH] vulkan-loader: upgrading to 1.3.268.0 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *vulkan-loader* to *1.3.268.0* 
has Failed (devtool error).

Detailed error information:

The following devtool command failed:  upgrade vulkan-loader -V 1.3.268.0 -S 
f4c838e2e7358fc450f8112119bbdbb5b03e03fa
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)... (13:09:12.826634)
Loading cache...done.
Loaded 1842 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-59734f71c2a6c7bc4624d2e2aeefa19c743e6444"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:59734f71c2a6c7bc4624d2e2aeefa19c743e6444"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 2 Local 2 Mirrors 0 Missed 0 Current 28 (100% match, 
100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 103 tasks of which 100 didn't need to be rerun 
and all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds

INFO: Extracting current version source...
INFO: Extracting upgraded version source...
ERROR: Revision f4c838e2e7358fc450f8112119bbdbb5b03e03fa was found on multiple 
branches: 
  stabilized_release_2023_10
  vulkan-sdk-1.3.268
Please provide the correct branch in the devtool command with "--srcbranch" or 
"-B" option.


Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#190010): 
https://lists.openembedded.org/g/openembedded-core/message/190010
Mute This Topic: https://lists.openembedded.org/mt/102320387/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [AUH] shaderc: upgrading to 2023.7 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *shaderc* to *2023.7* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-shaderc-upgrade-2023.6-2023.7.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From f374f7ca696e82cc2d56b0c7b329f0cb738f98dd Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 12:59:42 +
Subject: [PATCH] shaderc: upgrade 2023.6 -> 2023.7

---
 .../shaderc/{shaderc_2023.6.bb => shaderc_2023.7.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-graphics/shaderc/{shaderc_2023.6.bb => shaderc_2023.7.bb} 
(95%)

diff --git a/meta/recipes-graphics/shaderc/shaderc_2023.6.bb 
b/meta/recipes-graphics/shaderc/shaderc_2023.7.bb
similarity index 95%
rename from meta/recipes-graphics/shaderc/shaderc_2023.6.bb
rename to meta/recipes-graphics/shaderc/shaderc_2023.7.bb
index 5afdec5ce9..e4555af6d5 100644
--- a/meta/recipes-graphics/shaderc/shaderc_2023.6.bb
+++ b/meta/recipes-graphics/shaderc/shaderc_2023.7.bb
@@ -6,7 +6,7 @@ HOMEPAGE = "https://github.com/google/shaderc;
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
 
-SRCREV = "9547789ecfa1be140327057e766ba80666b66e21"
+SRCREV = "23cc2d78fd4f866b6ab527886a396bec36948605"
 SRC_URI = "git://github.com/google/shaderc.git;protocol=https;branch=main \
file://0001-cmake-disable-building-external-dependencies.patch \
file://0002-libshaderc_util-fix-glslang-header-file-location.patch \
-- 
2.39.2



0001-shaderc-upgrade-2023.6-2023.7.patch
Description: Binary data
packages/core2-64-poky-linux/shaderc: PKGV changed from 2023.6 [default] to 
2023.7 [default]
packages/core2-64-poky-linux/shaderc: PV changed from "2023.6" to "2023.7"
packages/core2-64-poky-linux/shaderc/shaderc-dbg: PKGV changed from 2023.6 
[default] to 2023.7 [default]
packages/core2-64-poky-linux/shaderc/shaderc-dbg: PV changed from "2023.6" to 
"2023.7"
packages/core2-64-poky-linux/shaderc/shaderc-dbg: PKGSIZE changed from 7026904 
to 7245600 (+3%)
packages/core2-64-poky-linux/shaderc/shaderc-dev: PKGV changed from 2023.6 
[default] to 2023.7 [default]
packages/core2-64-poky-linux/shaderc/shaderc-dev: PV changed from "2023.6" to 
"2023.7"
packages/core2-64-poky-linux/shaderc/shaderc-doc: PKGV changed from 2023.6 
[default] to 2023.7 [default]
packages/core2-64-poky-linux/shaderc/shaderc-doc: PV changed from "2023.6" to 
"2023.7"
packages/core2-64-poky-linux/shaderc/shaderc-locale: PKGV changed from 2023.6 
[default] to 2023.7 [default]
packages/core2-64-poky-linux/shaderc/shaderc-locale: PV changed from "2023.6" 
to "2023.7"
packages/core2-64-poky-linux/shaderc/shaderc-src: PKGV changed from 2023.6 
[default] to 2023.7 [default]
packages/core2-64-poky-linux/shaderc/shaderc-src: PV changed from "2023.6" to 
"2023.7"
packages/core2-64-poky-linux/shaderc/shaderc-staticdev: PKGV changed from 
2023.6 [default] to 2023.7 [default]
packages/core2-64-poky-linux/shaderc/shaderc-staticdev: PV changed from 
"2023.6" to "2023.7"
packages/core2-64-poky-linux/shaderc/shaderc-staticdev: PKGSIZE changed from 
4267336 to 4363592 (+2%)
packages/core2-64-poky-linux/shaderc/shaderc: PKGV changed from 2023.6 
[default] to 2023.7 [default]
packages/core2-64-poky-linux/shaderc/shaderc: PV changed from "2023.6" to 
"2023.7"

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#190009): 
https://lists.openembedded.org/g/openembedded-core/message/190009
Mute This Topic: https://lists.openembedded.org/mt/102320386/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [AUH] piglit: upgrading to 5760ed1f60b39574d8e3ee01d95127074865bf18 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *piglit* to 
*5760ed1f60b39574d8e3ee01d95127074865bf18* has Succeeded.

Next steps:
- apply the patch: git am 0001-piglit-upgrade-to-latest-revision.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 7f3a9948deae92acb3767a52f403f7beabcd99f3 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 12:56:08 +
Subject: [PATCH] piglit: upgrade to latest revision

---
 meta/recipes-graphics/piglit/piglit_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-graphics/piglit/piglit_git.bb 
b/meta/recipes-graphics/piglit/piglit_git.bb
index 69294c6c94..c80beb1ae7 100644
--- a/meta/recipes-graphics/piglit/piglit_git.bb
+++ b/meta/recipes-graphics/piglit/piglit_git.bb
@@ -13,7 +13,7 @@ SRC_URI = 
"git://gitlab.freedesktop.org/mesa/piglit.git;protocol=https;branch=ma
"
 UPSTREAM_CHECK_COMMITS = "1"
 
-SRCREV = "71c21b1157c4f9a96453bdfcb9f4dda091360afd"
+SRCREV = "5760ed1f60b39574d8e3ee01d95127074865bf18"
 # (when PV goes above 1.0 remove the trailing r)
 PV = "1.0+gitr"
 
-- 
2.39.2



0001-piglit-upgrade-to-latest-revision.patch
Description: Binary data
packages/core2-64-poky-linux/piglit/piglit-bash-completion: PKGV changed from 
1.0+gitr0+71c21b1157 to 1.0+gitr0+5760ed1f60
packages/core2-64-poky-linux/piglit/piglit-dbg: PKGV changed from 
1.0+gitr0+71c21b1157 to 1.0+gitr0+5760ed1f60
packages/core2-64-poky-linux/piglit/piglit-dev: PKGV changed from 
1.0+gitr0+71c21b1157 to 1.0+gitr0+5760ed1f60
packages/core2-64-poky-linux/piglit/piglit-doc: PKGV changed from 
1.0+gitr0+71c21b1157 to 1.0+gitr0+5760ed1f60
packages/core2-64-poky-linux/piglit/piglit-doc: PKGSIZE changed from 22650 to 
22661 (+0%)
packages/core2-64-poky-linux/piglit/piglit-locale: PKGV changed from 
1.0+gitr0+71c21b1157 to 1.0+gitr0+5760ed1f60
packages/core2-64-poky-linux/piglit/piglit-src: PKGV changed from 
1.0+gitr0+71c21b1157 to 1.0+gitr0+5760ed1f60
packages/core2-64-poky-linux/piglit/piglit-staticdev: PKGV changed from 
1.0+gitr0+71c21b1157 to 1.0+gitr0+5760ed1f60
packages/core2-64-poky-linux/piglit/piglit: PKGV changed from 
1.0+gitr0+71c21b1157 to 1.0+gitr0+5760ed1f60
packages/core2-64-poky-linux/piglit/piglit: FILELIST: added 
"/usr/lib/piglit/bin/ext_image_dma_buf_import-refcount-multithread 
/usr/lib/piglit/tests/spec/arb_tessellation_shader/execution/tesslevels-indirect.shader_test
 /usr/lib/piglit/bin/arb_copy_image-levels-copy 
/usr/lib/piglit/bin/ext_image_dma_buf_import-modifiers"
packages/core2-64-poky-linux/piglit/piglit: PKGSIZE changed from 2053290878 to 
2053363953 (+0%)
packages/core2-64-poky-linux/piglit/piglit-bash-completion: PKGV changed from 
1.0+gitr0+71c21b1157 to 1.0+gitr0+5760ed1f60
packages/core2-64-poky-linux/piglit/piglit-dbg: PKGV changed from 
1.0+gitr0+71c21b1157 to 1.0+gitr0+5760ed1f60
packages/core2-64-poky-linux/piglit/piglit-dev: PKGV changed from 
1.0+gitr0+71c21b1157 to 1.0+gitr0+5760ed1f60
packages/core2-64-poky-linux/piglit/piglit-doc: PKGV changed from 
1.0+gitr0+71c21b1157 to 1.0+gitr0+5760ed1f60
packages/core2-64-poky-linux/piglit/piglit-locale: PKGV changed from 
1.0+gitr0+71c21b1157 to 1.0+gitr0+5760ed1f60
packages/core2-64-poky-linux/piglit/piglit-src: PKGV changed from 
1.0+gitr0+71c21b1157 to 1.0+gitr0+5760ed1f60
packages/core2-64-poky-linux/piglit/piglit-staticdev: PKGV changed from 
1.0+gitr0+71c21b1157 to 1.0+gitr0+5760ed1f60
packages/core2-64-poky-linux/piglit/piglit: FILELIST: added 
"/usr/lib/piglit/bin/ext_image_dma_buf_import-refcount-multithread 
/usr/lib/piglit/bin/arb_copy_image-levels-copy 
/usr/lib/piglit/bin/ext_image_dma_buf_import-modifiers 
/usr/lib/piglit/tests/spec/arb_tessellation_shader/execution/tesslevels-indirect.shader_test"
packages/core2-64-poky-linux/piglit/piglit: PKGV changed from 
1.0+gitr0+71c21b1157 to 1.0+gitr0+5760ed1f60

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#189993): 
https://lists.openembedded.org/g/openembedded-core/message/189993
Mute This Topic: https://lists.openembedded.org/mt/102320370/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 

[OE-core] [AUH] libjpeg-turbo: upgrading to 3.0.1 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *libjpeg-turbo* to *3.0.1* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-libjpeg-turbo-upgrade-3.0.0-3.0.1.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From e71cd2dee89d95ccbec1362b7f80138a2f22c3a8 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 12:25:49 +
Subject: [PATCH] libjpeg-turbo: upgrade 3.0.0 -> 3.0.1

---
 .../jpeg/{libjpeg-turbo_3.0.0.bb => libjpeg-turbo_3.0.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-graphics/jpeg/{libjpeg-turbo_3.0.0.bb => 
libjpeg-turbo_3.0.1.bb} (97%)

diff --git a/meta/recipes-graphics/jpeg/libjpeg-turbo_3.0.0.bb 
b/meta/recipes-graphics/jpeg/libjpeg-turbo_3.0.1.bb
similarity index 97%
rename from meta/recipes-graphics/jpeg/libjpeg-turbo_3.0.0.bb
rename to meta/recipes-graphics/jpeg/libjpeg-turbo_3.0.1.bb
index 146d80008c..99ed82dac4 100644
--- a/meta/recipes-graphics/jpeg/libjpeg-turbo_3.0.0.bb
+++ b/meta/recipes-graphics/jpeg/libjpeg-turbo_3.0.1.bb
@@ -10,7 +10,7 @@ DEPENDS:append:x86:class-target = " nasm-native"
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz"
 
-SRC_URI[sha256sum] = 
"c77c65fcce3d33417b2e90432e7a0eb05f59a7fff884022a9d931775d583bfaa"
+SRC_URI[sha256sum] = 
"22429507714ae147b3acacd299e82099fce5d9f456882fc28e252e4579ba2a75"
 UPSTREAM_CHECK_URI = "http://sourceforge.net/projects/libjpeg-turbo/files/;
 UPSTREAM_CHECK_REGEX = "/libjpeg-turbo/files/(?P(\d+[\.\-_]*)+)/"
 
-- 
2.39.2



0001-libjpeg-turbo-upgrade-3.0.0-3.0.1.patch
Description: Binary data
packages/core2-64-poky-linux/libjpeg-turbo/jpeg-tools: PV changed from "3.0.0" 
to "3.0.1"
packages/core2-64-poky-linux/libjpeg-turbo/jpeg-tools: PKGV changed from 3.0.0 
[default] to 3.0.1 [default]
packages/core2-64-poky-linux/libjpeg-turbo: PV changed from "3.0.0" to "3.0.1"
packages/core2-64-poky-linux/libjpeg-turbo: SRC_URI changed from 
"https://downloads.sourceforge.net/libjpeg-turbo/libjpeg-turbo-3.0.0.tar.gz; to 
"https://downloads.sourceforge.net/libjpeg-turbo/libjpeg-turbo-3.0.1.tar.gz;
packages/core2-64-poky-linux/libjpeg-turbo: PKGV changed from 3.0.0 [default] 
to 3.0.1 [default]
packages/core2-64-poky-linux/libjpeg-turbo/libjpeg-turbo-dbg: PKGSIZE changed 
from 5480824 to 5482248 (+0%)
packages/core2-64-poky-linux/libjpeg-turbo/libjpeg-turbo-dbg: PV changed from 
"3.0.0" to "3.0.1"
packages/core2-64-poky-linux/libjpeg-turbo/libjpeg-turbo-dbg: PKGV changed from 
3.0.0 [default] to 3.0.1 [default]
packages/core2-64-poky-linux/libjpeg-turbo/libjpeg-turbo-dev: PKGSIZE changed 
from 191588 to 191714 (+0%)
packages/core2-64-poky-linux/libjpeg-turbo/libjpeg-turbo-dev: PV changed from 
"3.0.0" to "3.0.1"
packages/core2-64-poky-linux/libjpeg-turbo/libjpeg-turbo-dev: PKGV changed from 
3.0.0 [default] to 3.0.1 [default]
packages/core2-64-poky-linux/libjpeg-turbo/libjpeg-turbo-doc: PKGSIZE changed 
from 399910 to 401242 (+0%)
packages/core2-64-poky-linux/libjpeg-turbo/libjpeg-turbo-doc: PV changed from 
"3.0.0" to "3.0.1"
packages/core2-64-poky-linux/libjpeg-turbo/libjpeg-turbo-doc: PKGV changed from 
3.0.0 [default] to 3.0.1 [default]
packages/core2-64-poky-linux/libjpeg-turbo/libjpeg-turbo-locale: PV changed 
from "3.0.0" to "3.0.1"
packages/core2-64-poky-linux/libjpeg-turbo/libjpeg-turbo-locale: PKGV changed 
from 3.0.0 [default] to 3.0.1 [default]
packages/core2-64-poky-linux/libjpeg-turbo/libjpeg-turbo-src: PKGSIZE changed 
from 2336793 to 2337251 (+0%)
packages/core2-64-poky-linux/libjpeg-turbo/libjpeg-turbo-src: PV changed from 
"3.0.0" to "3.0.1"
packages/core2-64-poky-linux/libjpeg-turbo/libjpeg-turbo-src: PKGV changed from 
3.0.0 [default] to 3.0.1 [default]
packages/core2-64-poky-linux/libjpeg-turbo/libjpeg-turbo-staticdev: PV changed 
from "3.0.0" to "3.0.1"
packages/core2-64-poky-linux/libjpeg-turbo/libjpeg-turbo-staticdev: PKGV 
changed from 3.0.0 [default] to 3.0.1 [default]
packages/core2-64-poky-linux/libjpeg-turbo/libjpeg-turbo: PV changed from 
"3.0.0" to "3.0.1"
packages/core2-64-poky-linux/libjpeg-turbo/libjpeg-turbo: PKGV changed from 
3.0.0 [default] to 3.0.1 [default]
packages/core2-64-poky-linux/libjpeg-turbo/libturbojpeg: PV changed from 
"3.0.0" to "3.0.1"

[OE-core] [AUH] glslang: upgrading to 1.3.268.0 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *glslang* to *1.3.268.0* has 
Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-glslang-upgrade-1.3.261.1-1.3.268.0.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From ac0338da419bfb2afcd9be51b4097d8e3c826d77 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 12:19:25 +
Subject: [PATCH] glslang: upgrade 1.3.261.1 -> 1.3.268.0

---
 .../glslang/{glslang_1.3.261.1.bb => glslang_1.3.268.0.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-graphics/glslang/{glslang_1.3.261.1.bb => 
glslang_1.3.268.0.bb} (96%)

diff --git a/meta/recipes-graphics/glslang/glslang_1.3.261.1.bb 
b/meta/recipes-graphics/glslang/glslang_1.3.268.0.bb
similarity index 96%
rename from meta/recipes-graphics/glslang/glslang_1.3.261.1.bb
rename to meta/recipes-graphics/glslang/glslang_1.3.268.0.bb
index e607045148..668184ba62 100644
--- a/meta/recipes-graphics/glslang/glslang_1.3.261.1.bb
+++ b/meta/recipes-graphics/glslang/glslang_1.3.268.0.bb
@@ -8,7 +8,7 @@ HOMEPAGE = 
"https://www.khronos.org/opengles/sdk/tools/Reference-Compiler;
 LICENSE = "BSD-3-Clause & BSD-2-Clause & MIT & Apache-2.0 & 
GPL-3-with-bison-exception"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2a2b5acd7bc4844964cfda45fe807dc3"
 
-SRCREV = "76b52ebf77833908dc4c0dd6c70a9c357ac720bd"
+SRCREV = "36d08c0d940cf307a23928299ef52c7970d8cee6"
 SRC_URI = 
"git://github.com/KhronosGroup/glslang.git;protocol=https;branch=main \
file://0001-generate-glslang-pkg-config.patch \
"
-- 
2.39.2

Loading cache...done.
Loaded 1844 entries from dependency cache.
Parsing recipes...done.
Parsing of 911 .bb files complete (910 cached, 1 parsed). 1842 targets, 38 
skipped, 0 masked, 0 errors.
Removing 1 recipes from the core2-64 sysroot...done.
Removing 1 recipes from the qemux86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-b6658b82ff8a9270cc6d7789b8c81fa7c9c0565f"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:b6658b82ff8a9270cc6d7789b8c81fa7c9c0565f"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 32 Local 22 Mirrors 0 Missed 10 Current 261 (68% match, 
96% complete)
NOTE: Executing Tasks
NOTE: Setscene tasks completed
NOTE: Running task 766 of 871 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-graphics/glslang/glslang_1.3.268.0.bb:do_recipe_qa)
NOTE: recipe glslang-1_1.3.268.0-r0: task do_recipe_qa: Started
NOTE: recipe glslang-1_1.3.268.0-r0: task do_recipe_qa: Succeeded
NOTE: Running task 853 of 871 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-graphics/glslang/glslang_1.3.268.0.bb:do_fetch)
NOTE: recipe glslang-1_1.3.268.0-r0: task do_fetch: Started
NOTE: recipe glslang-1_1.3.268.0-r0: task do_fetch: Succeeded
NOTE: Running task 854 of 871 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-graphics/glslang/glslang_1.3.268.0.bb:do_unpack)
NOTE: Running task 855 of 871 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-graphics/glslang/glslang_1.3.268.0.bb:do_prepare_recipe_sysroot)
NOTE: recipe glslang-1_1.3.268.0-r0: task do_unpack: Started
NOTE: recipe glslang-1_1.3.268.0-r0: task do_prepare_recipe_sysroot: Started
NOTE: recipe glslang-1_1.3.268.0-r0: task do_prepare_recipe_sysroot: Succeeded
NOTE: recipe glslang-1_1.3.268.0-r0: task do_unpack: Succeeded
NOTE: Running task 856 of 871 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-graphics/glslang/glslang_1.3.268.0.bb:do_patch)
NOTE: Running task 857 of 871 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-graphics/glslang/glslang_1.3.268.0.bb:do_collect_spdx_deps)
NOTE: recipe glslang-1_1.3.268.0-r0: task do_patch: Started
NOTE: 

[OE-core] [AUH] cups: upgrading to 2.4.7 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *cups* to *2.4.7* has 
Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-cups-upgrade-2.4.6-2.4.7.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 1c7c79f6fa733dbf0c46284d8eded2276420d8a5 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 11:10:55 +
Subject: [PATCH] cups: upgrade 2.4.6 -> 2.4.7

---
 meta/recipes-extended/cups/cups.inc   |  1 -
 .../cups/cups/CVE-2023-4504.patch | 42 ---
 .../cups/{cups_2.4.6.bb => cups_2.4.7.bb} |  2 +-
 3 files changed, 1 insertion(+), 44 deletions(-)
 delete mode 100644 meta/recipes-extended/cups/cups/CVE-2023-4504.patch
 rename meta/recipes-extended/cups/{cups_2.4.6.bb => cups_2.4.7.bb} (51%)

diff --git a/meta/recipes-extended/cups/cups.inc 
b/meta/recipes-extended/cups/cups.inc
index fa32c38549..36feaddcf8 100644
--- a/meta/recipes-extended/cups/cups.inc
+++ b/meta/recipes-extended/cups/cups.inc
@@ -15,7 +15,6 @@ SRC_URI = 
"${GITHUB_BASE_URI}/download/v${PV}/cups-${PV}-source.tar.gz \
file://0004-cups-fix-multilib-install-file-conflicts.patch \
file://volatiles.99_cups \
file://cups-volatiles.conf \
-   file://CVE-2023-4504.patch \
"
 
 GITHUB_BASE_URI = "https://github.com/OpenPrinting/cups/releases;
diff --git a/meta/recipes-extended/cups/cups/CVE-2023-4504.patch 
b/meta/recipes-extended/cups/cups/CVE-2023-4504.patch
deleted file mode 100644
index e52e43a209..00
--- a/meta/recipes-extended/cups/cups/CVE-2023-4504.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-CVE: CVE-2023-4504
-Upstream-Status: Backport 
[https://github.com/OpenPrinting/cups/commit/2431caddb7e6a87f04ac90b5c6366ad268b6ff31
 ]
-Signed-off-by: Lee Chee Yang 
-
-From 2431caddb7e6a87f04ac90b5c6366ad268b6ff31 Mon Sep 17 00:00:00 2001
-From: Zdenek Dohnal 
-Date: Wed, 20 Sep 2023 14:45:17 +0200
-Subject: [PATCH] raster-interpret.c: Fix CVE-2023-4504
-
-We didn't check for end of buffer if it looks there is an escaped
-character - check for NULL terminator there and if found, return NULL
-as return value and in `ptr`, because a lone backslash is not
-a valid PostScript character.

- cups/raster-interpret.c | 14 +-
- 1 files changed, 13 insertions(+), 1 deletion(-)
-
-diff --git a/cups/raster-interpret.c b/cups/raster-interpret.c
-index 6fcf731b5..b8655c8c6 100644
 a/cups/raster-interpret.c
-+++ b/cups/raster-interpret.c
-@@ -1116,7 +1116,19 @@ scan_ps(_cups_ps_stack_t *st,   /* I  - Stack */
- 
-   cur ++;
- 
--if (*cur == 'b')
-+ /*
-+  * Return NULL if we reached NULL terminator, a lone backslash
-+  * is not a valid character in PostScript.
-+  */
-+
-+  if (!*cur)
-+  {
-+*ptr = NULL;
-+
-+return (NULL);
-+  }
-+
-+  if (*cur == 'b')
- *valptr++ = '\b';
-   else if (*cur == 'f')
- *valptr++ = '\f';
diff --git a/meta/recipes-extended/cups/cups_2.4.6.bb 
b/meta/recipes-extended/cups/cups_2.4.7.bb
similarity index 51%
rename from meta/recipes-extended/cups/cups_2.4.6.bb
rename to meta/recipes-extended/cups/cups_2.4.7.bb
index 58029fdbd4..f4b0282e4c 100644
--- a/meta/recipes-extended/cups/cups_2.4.6.bb
+++ b/meta/recipes-extended/cups/cups_2.4.7.bb
@@ -2,4 +2,4 @@ require cups.inc
 
 LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
 
-SRC_URI[sha256sum] = 
"58e970cf1955e1cc87d0847c32526d9c2ccee335e5f0e3882b283138ba0e7262"
+SRC_URI[sha256sum] = 
"dd54228dd903526428ce7e37961afaed230ad310788141da75cebaa08362cf6c"
-- 
2.39.2

Loading cache...done.
Loaded 1843 entries from dependency cache.
Parsing recipes...done.
Parsing of 911 .bb files complete (910 cached, 1 parsed). 1842 targets, 38 
skipped, 0 masked, 0 errors.
Removing 1 recipes from the core2-64 sysroot...done.
Removing 1 recipes from the qemux86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = 

[OE-core] [AUH] kmscube: upgrading to 96d63eb59e34c647cda1cbb489265f8c536ae055 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *kmscube* to 
*96d63eb59e34c647cda1cbb489265f8c536ae055* has Succeeded.

Next steps:
- apply the patch: git am 0001-kmscube-upgrade-to-latest-revision.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 8a412caf41bd2597301dc9f3118bb1000421fb63 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 12:27:29 +
Subject: [PATCH] kmscube: upgrade to latest revision

---
 meta/recipes-graphics/kmscube/kmscube_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-graphics/kmscube/kmscube_git.bb 
b/meta/recipes-graphics/kmscube/kmscube_git.bb
index 4cdc0f06bb..aab582281a 100644
--- a/meta/recipes-graphics/kmscube/kmscube_git.bb
+++ b/meta/recipes-graphics/kmscube/kmscube_git.bb
@@ -10,7 +10,7 @@ DEPENDS = "virtual/libgles3 virtual/libgles2 virtual/egl 
libdrm virtual/libgbm"
 
 LIC_FILES_CHKSUM = 
"file://kmscube.c;beginline=1;endline=23;md5=8b309d4ee67b7315ff7381270dd631fb"
 
-SRCREV = "ea6c5d1eeefbfb0a1c27ab74a6e4621f1d9adf4c"
+SRCREV = "96d63eb59e34c647cda1cbb489265f8c536ae055"
 SRC_URI = 
"git://gitlab.freedesktop.org/mesa/kmscube;branch=master;protocol=https"
 
 UPSTREAM_CHECK_COMMITS = "1"
-- 
2.39.2

packages/core2-64-poky-linux/kmscube/kmscube-dbg: PKGSIZE changed from 320616 
to 351240 (+10%)
packages/core2-64-poky-linux/kmscube/kmscube-src: FILELIST: added 
"/usr/src/debug/kmscube/git-r0/cube-gears.c"
packages/core2-64-poky-linux/kmscube/kmscube-src: PKGSIZE changed from 4583630 
to 4610159 (+1%)
packages/core2-64-poky-linux/kmscube/kmscube: PKGSIZE changed from 1565256 to 
1585736 (+1%)


0001-kmscube-upgrade-to-latest-revision.patch
Description: Binary data

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#190006): 
https://lists.openembedded.org/g/openembedded-core/message/190006
Mute This Topic: https://lists.openembedded.org/mt/102320383/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [AUH] texinfo: upgrading to 7.1 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *texinfo* to *7.1* has Failed 
(devtool error).

Detailed error information:

The following devtool command failed:  upgrade texinfo -V 7.1
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)... (11:41:31.919654)
Loading cache...done.
Loaded 1843 entries from dependency cache.
Removing 1 recipes from the x86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-8795064872a157a7d497372a40d7629cdff5e2d3"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:8795064872a157a7d497372a40d7629cdff5e2d3"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 2 Local 2 Mirrors 0 Missed 0 Current 28 (100% match, 
100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 103 tasks of which 100 didn't need to be rerun 
and all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
Loading cache...done.
Loaded 1843 entries from dependency cache.
Parsing recipes...done.
Parsing of 912 .bb files complete (910 cached, 2 parsed). 1843 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-8795064872a157a7d497372a40d7629cdff5e2d3"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:8795064872a157a7d497372a40d7629cdff5e2d3"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 1 Local 0 Mirrors 0 Missed 1 Current 0 (0% match, 0% 
complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 3 tasks of which 0 didn't need to be rerun and 
all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
DEBUG 5 [Errno 25] Inappropriate ioctl for device
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   1% || ETA:  0:00:09
Adding changed files:   3% |#   | ETA:  0:00:06
Adding changed files:   5% |##  | ETA:  0:00:05
Adding changed files:   7% |##  | ETA:  0:00:04
Adding changed files:   9% |### | ETA:  0:00:04
Adding changed files:  11% || ETA:  0:00:04
Adding changed files:  13% || ETA:  0:00:04
Adding changed files:  14% |#   | ETA:  0:00:03
Adding changed files:  16% |##  | ETA:  0:00:03
Adding changed files:  18% |##  | ETA:  0:00:03
Adding changed files:  20% |### | ETA:  0:00:03
Adding changed files:  22% || ETA:  0:00:03
INFO: Extracting current version source...
INFO: Extracting upgraded version source...
INFO: Fetching https://ftp.gnu.org/gnu/texinfo/texinfo-7.1.tar.gz...
ERROR: Execution of 'git add -f -A 
"tp/tests/customization/res_parser/sectioning_directions_split_chapter/First-node.html"
 
"tp/tests/customization/res_parser/sectioning_directions_split_chapter/Last-node-no-description.html"
 
"tp/tests/customization/res_parser/sectioning_directions_split_chapter/Second-node.html"
 
"tp/tests/customization/res_parser/sectioning_directions_split_chapter/Third-node-unnumbered.html"
 
"tp/tests/customization/res_parser/sectioning_directions_split_chapter/between-node.html"
 
"tp/tests/customization/res_parser/sectioning_directions_split_chapter/index.html"
 
"tp/tests/customization/res_parser/sectioning_directions_split_chapter/numbered-sub.html"
 
"tp/tests/customization/res_parser/sectioning_directions_split_chapter/numbered-sub2.html"
 
"tp/tests/customization/res_parser/sectioning_directions_split_chapter/numbered-sub3.html"
 
"tp/tests/customization/res_parser/sectioning_directions_split_chapter/numbered.html"
 "tp/tests/customization/res_parser/sectioning_directio
 ns_split_chapter/sectioning.1" 

[OE-core] [AUH] lighttpd: upgrading to 1.4.73 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *lighttpd* to *1.4.73* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-lighttpd-upgrade-1.4.72-1.4.73.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 78da77a0a2a2acf795bdd8f6a10a1d905f3c2c1b Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 11:28:51 +
Subject: [PATCH] lighttpd: upgrade 1.4.72 -> 1.4.73

---
 .../lighttpd/{lighttpd_1.4.72.bb => lighttpd_1.4.73.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-extended/lighttpd/{lighttpd_1.4.72.bb => 
lighttpd_1.4.73.bb} (97%)

diff --git a/meta/recipes-extended/lighttpd/lighttpd_1.4.72.bb 
b/meta/recipes-extended/lighttpd/lighttpd_1.4.73.bb
similarity index 97%
rename from meta/recipes-extended/lighttpd/lighttpd_1.4.72.bb
rename to meta/recipes-extended/lighttpd/lighttpd_1.4.73.bb
index 87058719f9..ea83a4b507 100644
--- a/meta/recipes-extended/lighttpd/lighttpd_1.4.72.bb
+++ b/meta/recipes-extended/lighttpd/lighttpd_1.4.73.bb
@@ -16,7 +16,7 @@ SRC_URI = 
"http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${PV}.t
file://lighttpd \
"
 
-SRC_URI[sha256sum] = 
"f7cade4d69b754a0748c01463c33cd8b456ca9cc03bb09e85a71bcbcd54e55ec"
+SRC_URI[sha256sum] = 
"818816d0b314b0aa8728a7076513435f6d5eb227f3b61323468e1f10dbe84ca8"
 
 DEPENDS = "virtual/crypt"
 
-- 
2.39.2

packages/core2-64-poky-linux/lighttpd: PKGV changed from 1.4.72 [default] to 
1.4.73 [default]
packages/core2-64-poky-linux/lighttpd: SRC_URI changed from 
"http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-1.4.72.tar.xz 
file://index.html.lighttpd file://lighttpd.conf file://lighttpd" to 
"http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-1.4.73.tar.xz 
file://index.html.lighttpd file://lighttpd.conf file://lighttpd"
packages/core2-64-poky-linux/lighttpd: PV changed from "1.4.72" to "1.4.73"
packages/core2-64-poky-linux/lighttpd/lighttpd-dbg: PKGV changed from 1.4.72 
[default] to 1.4.73 [default]
packages/core2-64-poky-linux/lighttpd/lighttpd-dbg: PKGSIZE changed from 
2631000 to 2632112 (+0%)
packages/core2-64-poky-linux/lighttpd/lighttpd-dbg: PV changed from "1.4.72" to 
"1.4.73"
packages/core2-64-poky-linux/lighttpd/lighttpd-dev: PKGV changed from 1.4.72 
[default] to 1.4.73 [default]
packages/core2-64-poky-linux/lighttpd/lighttpd-dev: PV changed from "1.4.72" to 
"1.4.73"
packages/core2-64-poky-linux/lighttpd/lighttpd-doc: PKGV changed from 1.4.72 
[default] to 1.4.73 [default]
packages/core2-64-poky-linux/lighttpd/lighttpd-doc: PV changed from "1.4.72" to 
"1.4.73"
packages/core2-64-poky-linux/lighttpd/lighttpd-locale: PKGV changed from 1.4.72 
[default] to 1.4.73 [default]
packages/core2-64-poky-linux/lighttpd/lighttpd-locale: PV changed from "1.4.72" 
to "1.4.73"
packages/core2-64-poky-linux/lighttpd/lighttpd-module-accesslog: PKGV changed 
from 1.4.72 [default] to 1.4.73 [default]
packages/core2-64-poky-linux/lighttpd/lighttpd-module-accesslog: PV changed 
from "1.4.72" to "1.4.73"
packages/core2-64-poky-linux/lighttpd/lighttpd-module-ajp13: PKGV changed from 
1.4.72 [default] to 1.4.73 [default]
packages/core2-64-poky-linux/lighttpd/lighttpd-module-ajp13: PV changed from 
"1.4.72" to "1.4.73"
packages/core2-64-poky-linux/lighttpd/lighttpd-module-auth: PKGV changed from 
1.4.72 [default] to 1.4.73 [default]
packages/core2-64-poky-linux/lighttpd/lighttpd-module-auth: PV changed from 
"1.4.72" to "1.4.73"
packages/core2-64-poky-linux/lighttpd/lighttpd-module-authn-file: PKGV changed 
from 1.4.72 [default] to 1.4.73 [default]
packages/core2-64-poky-linux/lighttpd/lighttpd-module-authn-file: PV changed 
from "1.4.72" to "1.4.73"
packages/core2-64-poky-linux/lighttpd/lighttpd-module-cgi: PKGV changed from 
1.4.72 [default] to 1.4.73 [default]
packages/core2-64-poky-linux/lighttpd/lighttpd-module-cgi: PV changed from 
"1.4.72" to "1.4.73"
packages/core2-64-poky-linux/lighttpd/lighttpd-module-deflate: PKGV changed 
from 1.4.72 [default] to 1.4.73 [default]
packages/core2-64-poky-linux/lighttpd/lighttpd-module-deflate: PV changed from 
"1.4.72" to "1.4.73"
packages/core2-64-poky-linux/lighttpd/lighttpd-module-dirlisting: PKGV changed 
from 1.4.72 [default] to 1.4.73 

[OE-core] [AUH] libdrm: upgrading to 2.4.117 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *libdrm* to *2.4.117* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-libdrm-upgrade-2.4.116-2.4.117.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 687dc4e9216a081f412ec9ce9222f6449279e2c6 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 12:17:48 +
Subject: [PATCH] libdrm: upgrade 2.4.116 -> 2.4.117

---
 .../drm/{libdrm_2.4.116.bb => libdrm_2.4.117.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-graphics/drm/{libdrm_2.4.116.bb => libdrm_2.4.117.bb} (97%)

diff --git a/meta/recipes-graphics/drm/libdrm_2.4.116.bb 
b/meta/recipes-graphics/drm/libdrm_2.4.117.bb
similarity index 97%
rename from meta/recipes-graphics/drm/libdrm_2.4.116.bb
rename to meta/recipes-graphics/drm/libdrm_2.4.117.bb
index f0aaf314c6..3e6fb16e15 100644
--- a/meta/recipes-graphics/drm/libdrm_2.4.116.bb
+++ b/meta/recipes-graphics/drm/libdrm_2.4.117.bb
@@ -13,7 +13,7 @@ DEPENDS = "libpthread-stubs"
 SRC_URI = "http://dri.freedesktop.org/libdrm/${BP}.tar.xz \
   "
 
-SRC_URI[sha256sum] = 
"46c53f40735ea3d26d614297f155f6131a510624a24274f654f6469ca905339a"
+SRC_URI[sha256sum] = 
"a2888d69e3eb1c8a77adc08a75a60fbae01f0d208d26f034d1a12e362361242b"
 
 inherit meson pkgconfig manpages
 
-- 
2.39.2

packages/core2-64-poky-linux/libdrm: SRC_URI changed from 
"http://dri.freedesktop.org/libdrm/libdrm-2.4.116.tar.xz; to 
"http://dri.freedesktop.org/libdrm/libdrm-2.4.117.tar.xz;
packages/core2-64-poky-linux/libdrm: PKGV changed from 2.4.116 [default] to 
2.4.117 [default]
packages/core2-64-poky-linux/libdrm: PV changed from "2.4.116" to "2.4.117"
packages/core2-64-poky-linux/libdrm/libdrm-amdgpu: PKGSIZE changed from 59888 
to 60138 (+0%)
packages/core2-64-poky-linux/libdrm/libdrm-amdgpu: PKGV changed from 2.4.116 
[default] to 2.4.117 [default]
packages/core2-64-poky-linux/libdrm/libdrm-amdgpu: PV changed from "2.4.116" to 
"2.4.117"
packages/core2-64-poky-linux/libdrm/libdrm-dbg: PKGSIZE changed from 1496512 to 
1508768 (+1%)
packages/core2-64-poky-linux/libdrm/libdrm-dbg: PKGV changed from 2.4.116 
[default] to 2.4.117 [default]
packages/core2-64-poky-linux/libdrm/libdrm-dbg: PV changed from "2.4.116" to 
"2.4.117"
packages/core2-64-poky-linux/libdrm/libdrm-dev: PKGSIZE changed from 746743 to 
751707 (+1%)
packages/core2-64-poky-linux/libdrm/libdrm-dev: PKGV changed from 2.4.116 
[default] to 2.4.117 [default]
packages/core2-64-poky-linux/libdrm/libdrm-dev: PV changed from "2.4.116" to 
"2.4.117"
packages/core2-64-poky-linux/libdrm/libdrm-doc: PKGV changed from 2.4.116 
[default] to 2.4.117 [default]
packages/core2-64-poky-linux/libdrm/libdrm-doc: PV changed from "2.4.116" to 
"2.4.117"
packages/core2-64-poky-linux/libdrm/libdrm-drivers: PKGV changed from 2.4.116 
[default] to 2.4.117 [default]
packages/core2-64-poky-linux/libdrm/libdrm-drivers: PV changed from "2.4.116" 
to "2.4.117"
packages/core2-64-poky-linux/libdrm/libdrm-etnaviv: PKGV changed from 2.4.116 
[default] to 2.4.117 [default]
packages/core2-64-poky-linux/libdrm/libdrm-etnaviv: PV changed from "2.4.116" 
to "2.4.117"
packages/core2-64-poky-linux/libdrm/libdrm-exynos: PKGV changed from 2.4.116 
[default] to 2.4.117 [default]
packages/core2-64-poky-linux/libdrm/libdrm-exynos: PV changed from "2.4.116" to 
"2.4.117"
packages/core2-64-poky-linux/libdrm/libdrm-freedreno: PKGV changed from 2.4.116 
[default] to 2.4.117 [default]
packages/core2-64-poky-linux/libdrm/libdrm-freedreno: PV changed from "2.4.116" 
to "2.4.117"
packages/core2-64-poky-linux/libdrm/libdrm-intel: PKGV changed from 2.4.116 
[default] to 2.4.117 [default]
packages/core2-64-poky-linux/libdrm/libdrm-intel: PV changed from "2.4.116" to 
"2.4.117"
packages/core2-64-poky-linux/libdrm/libdrm-locale: PKGV changed from 2.4.116 
[default] to 2.4.117 [default]
packages/core2-64-poky-linux/libdrm/libdrm-locale: PV changed from "2.4.116" to 
"2.4.117"
packages/core2-64-poky-linux/libdrm/libdrm-nouveau: PKGV changed from 2.4.116 
[default] to 2.4.117 [default]
packages/core2-64-poky-linux/libdrm/libdrm-nouveau: PV changed from "2.4.116" 
to "2.4.117"
packages/core2-64-poky-linux/libdrm/libdrm-omap: PKGV changed from 2.4.116 

[OE-core] [AUH] shadow: upgrading to 4.14.2 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *shadow* to *4.14.2* has 
Failed (devtool error).

Detailed error information:

Running 'devtool upgrade' for recipe shadow failed.
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)... (11:39:39.053343)
Loading cache...done.
Loaded 1842 entries from dependency cache.
Removing 1 recipes from the x86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-8795064872a157a7d497372a40d7629cdff5e2d3"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:8795064872a157a7d497372a40d7629cdff5e2d3"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 2 Local 2 Mirrors 0 Missed 0 Current 28 (100% match, 
100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 103 tasks of which 100 didn't need to be rerun 
and all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
Loading cache...done.
Loaded 1842 entries from dependency cache.
Parsing recipes...done.
Parsing of 912 .bb files complete (910 cached, 2 parsed). 1843 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-8795064872a157a7d497372a40d7629cdff5e2d3"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:8795064872a157a7d497372a40d7629cdff5e2d3"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 1 Local 0 Mirrors 0 Missed 1 Current 0 (0% match, 0% 
complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 3 tasks of which 0 didn't need to be rerun and 
all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
DEBUG 5 [Errno 25] Inappropriate ioctl for device
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:  13% || ETA:  0:00:00
Adding changed files:  26% |#   | ETA:  0:00:00
Adding changed files:  39% |##  | ETA:  0:00:00
Adding changed files:  52% |##  | ETA:  0:00:00
Adding changed files:  65% |### | ETA:  0:00:00
Adding changed files:  78% || ETA:  0:00:00
Adding changed files:  91% || ETA:  0:00:00
Adding changed files: 100% || Time: 0:00:00
INFO: Extracting current version source...
INFO: SRC_URI contains some conditional appends/prepends - will create branches 
to represent these
INFO: Adding local source files to srctree...
INFO: Extracting upgraded version source...
INFO: Fetching 
https://github.com/shadow-maint/shadow/releases/download/4.14.2/shadow-4.14.2.tar.gz...
INFO: Rebasing devtool onto 9554fe2adccdb268285ed93d0a563fca68877095
WARNING: Command 'git rebase 9554fe2adccdb268285ed93d0a563fca68877095' failed:
Auto-merging src/login.c
CONFLICT (content): Merge conflict in src/login.c

You will need to resolve conflicts in order to complete the upgrade.
INFO: Rebasing devtool-override-class-native onto 
9554fe2adccdb268285ed93d0a563fca68877095
WARNING: Command 'git rebase 9554fe2adccdb268285ed93d0a563fca68877095' failed:
Auto-merging src/login.c
CONFLICT (content): Merge conflict in src/login.c

You will need to resolve conflicts in order to complete the upgrade.
INFO: Rebasing devtool-override-class-nativesdk onto 
9554fe2adccdb268285ed93d0a563fca68877095
WARNING: Command 'git rebase 9554fe2adccdb268285ed93d0a563fca68877095' failed:
Auto-merging src/login.c
CONFLICT (content): Merge conflict in src/login.c

You will need to resolve conflicts in order to complete the upgrade.
INFO: Rebasing devtool-override-class-target onto 
9554fe2adccdb268285ed93d0a563fca68877095
WARNING: Command 'git rebase 9554fe2adccdb268285ed93d0a563fca68877095' failed:
Auto-merging src/login.c
CONFLICT (content): Merge conflict in src/login.c

You will need to resolve conflicts in order to complete the upgrade.
INFO: 

[OE-core] [AUH] go-helloworld: upgrading to 1d6d2400d4027025cb8edc86a139c9c581d672f7 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *go-helloworld* to 
*1d6d2400d4027025cb8edc86a139c9c581d672f7* has Failed (devtool error).

Detailed error information:

The following devtool command failed:  upgrade go-helloworld -S 
1d6d2400d4027025cb8edc86a139c9c581d672f7
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)... (11:11:32.922302)
Loading cache...done.
Loaded 1842 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-808d97b2d64aa3041d006ed8dc6207613564a10c"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:808d97b2d64aa3041d006ed8dc6207613564a10c"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 2 Local 2 Mirrors 0 Missed 0 Current 28 (100% match, 
100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 103 tasks of which 100 didn't need to be rerun 
and all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds

INFO: Extracting current version source...
INFO: Extracting upgraded version source...
ERROR: Execution of 'git checkout 1d6d2400d4027025cb8edc86a139c9c581d672f7' 
failed with exit code 128:
fatal: reference is not a tree: 1d6d2400d4027025cb8edc86a139c9c581d672f7



Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#189995): 
https://lists.openembedded.org/g/openembedded-core/message/189995
Mute This Topic: https://lists.openembedded.org/mt/102320372/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [AUH] vte: upgrading to 0.74.1 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *vte* to *0.74.1* has Failed 
(devtool error).

Detailed error information:

Running 'devtool upgrade' for recipe vte failed.
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)... (14:19:10.794803)
Loading cache...done.
Loaded 1842 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-762e0d9262b5b9cf39773c4e7dd601afd0b5daaf"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:762e0d9262b5b9cf39773c4e7dd601afd0b5daaf"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 2 Local 2 Mirrors 0 Missed 0 Current 31 (100% match, 
100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 113 tasks of which 110 didn't need to be rerun 
and all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
Loading cache...done.
Loaded 1842 entries from dependency cache.
Parsing recipes...done.
Parsing of 912 .bb files complete (910 cached, 2 parsed). 1843 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-762e0d9262b5b9cf39773c4e7dd601afd0b5daaf"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:762e0d9262b5b9cf39773c4e7dd601afd0b5daaf"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 3 Local 2 Mirrors 0 Missed 1 Current 25 (66% match, 96% 
complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 93 tasks of which 90 didn't need to be rerun and 
all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
DEBUG 5 [Errno 25] Inappropriate ioctl for device
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files: 100% || Time: 0:00:00
INFO: Extracting current version source...
INFO: Extracting upgraded version source...
INFO: Fetching 
https://download.gnome.org/sources//vte/0.74/vte-0.74.1.tar.xz;name=archive...
INFO: Rebasing devtool onto bdf0f9cc531b02007950daf361615655a4b9d586
WARNING: Command 'git rebase bdf0f9cc531b02007950daf361615655a4b9d586' failed:
Auto-merging src/missing.hh
CONFLICT (content): Merge conflict in src/missing.hh
Auto-merging src/widget.cc

You will need to resolve conflicts in order to complete the upgrade.
INFO: Upgraded source extracted to 
/home/pokybuild/yocto-worker/auh/build/build/build/workspace/sources/vte
INFO: New recipe is 
/home/pokybuild/yocto-worker/auh/build/build/build/workspace/recipes/vte/vte_0.74.1.bb



Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#190034): 
https://lists.openembedded.org/g/openembedded-core/message/190034
Mute This Topic: https://lists.openembedded.org/mt/102320411/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [AUH] valgrind: upgrading to 3.22.0 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *valgrind* to *3.22.0* has 
Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-valgrind-upgrade-3.21.0-3.22.0.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 8486f003637ff95c72dd12775b053ff2b0df6962 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 11:05:55 +
Subject: [PATCH] valgrind: upgrade 3.21.0 -> 3.22.0

---
 ...inux-seg_override.c-add-missing-incl.patch |  30 --
 ...020-Committing-changes-from-do_patch.patch | 332 ++
 ...{valgrind_3.21.0.bb => valgrind_3.22.0.bb} |   4 +-
 3 files changed, 334 insertions(+), 32 deletions(-)
 delete mode 100644 
meta/recipes-devtools/valgrind/valgrind/0001-none-tests-x86-linux-seg_override.c-add-missing-incl.patch
 create mode 100644 
meta/recipes-devtools/valgrind/valgrind/0020-Committing-changes-from-do_patch.patch
 rename meta/recipes-devtools/valgrind/{valgrind_3.21.0.bb => 
valgrind_3.22.0.bb} (98%)

diff --git 
a/meta/recipes-devtools/valgrind/valgrind/0001-none-tests-x86-linux-seg_override.c-add-missing-incl.patch
 
b/meta/recipes-devtools/valgrind/valgrind/0001-none-tests-x86-linux-seg_override.c-add-missing-incl.patch
deleted file mode 100644
index 5e36c28523..00
--- 
a/meta/recipes-devtools/valgrind/valgrind/0001-none-tests-x86-linux-seg_override.c-add-missing-incl.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 978d9ed7f857f2cdcd2a8632f3c2feb56b99c825 Mon Sep 17 00:00:00 2001
-From: Alexander Kanavin 
-Date: Mon, 8 May 2023 11:56:35 +0200
-Subject: [PATCH] none/tests/x86-linux/seg_override.c: add missing include for
- musl builds
-
-Otherwise SYS_modify_ldt is undefined.
-
-Upstream-Status: Submitted [https://bugs.kde.org/show_bug.cgi?id=382034]
-Signed-off-by: Alexander Kanavin 
-

- none/tests/x86-linux/seg_override.c | 4 
- 1 file changed, 4 insertions(+)
-
-diff --git a/none/tests/x86-linux/seg_override.c 
b/none/tests/x86-linux/seg_override.c
-index ca8fbfe..4ef4394 100644
 a/none/tests/x86-linux/seg_override.c
-+++ b/none/tests/x86-linux/seg_override.c
-@@ -3,6 +3,10 @@
- #include 
- #include 
- #include "../../../config.h"
-+#if defined(MUSL_LIBC)
-+#include 
-+#include 
-+#endif
- 
- 
- /* Stuff from Wine. */
diff --git 
a/meta/recipes-devtools/valgrind/valgrind/0020-Committing-changes-from-do_patch.patch
 
b/meta/recipes-devtools/valgrind/valgrind/0020-Committing-changes-from-do_patch.patch
new file mode 100644
index 00..0752dc26e8
--- /dev/null
+++ 
b/meta/recipes-devtools/valgrind/valgrind/0020-Committing-changes-from-do_patch.patch
@@ -0,0 +1,332 @@
+From de2beb17ebda7470ec6dc71ac839f8724745f98f Mon Sep 17 00:00:00 2001
+From: OpenEmbedded 
+Date: Wed, 1 Nov 2023 11:05:11 +
+Subject: [PATCH] Committing changes from do_patch
+
+---
+ memcheck/tests/badfree3.stderr.exp |   4 +-
+ memcheck/tests/varinfo5.stderr.exp | 216 ++---
+ 2 files changed, 110 insertions(+), 110 deletions(-)
+
+diff --git a/memcheck/tests/badfree3.stderr.exp 
b/memcheck/tests/badfree3.stderr.exp
+index 20e48a6..b518703 100644
+--- a/memcheck/tests/badfree3.stderr.exp
 b/memcheck/tests/badfree3.stderr.exp
+@@ -1,11 +1,11 @@
+ Invalid free() / delete / delete[] / realloc()
+at 0x: free (vg_replace_malloc.c:...)
+-   by 0x: main (tests/badfree.c:12)
++   by 0x: main (badfree.c:12)
+  Address 0x is not stack'd, malloc'd or (recently) free'd
+ 
+ Invalid free() / delete / delete[] / realloc()
+at 0x: free (vg_replace_malloc.c:...)
+-   by 0x: main (tests/badfree.c:15)
++   by 0x: main (badfree.c:15)
+  Address 0x is on thread 1's stack
+  in frame #1, created by main (badfree.c:7)
+ 
+diff --git a/memcheck/tests/varinfo5.stderr.exp 
b/memcheck/tests/varinfo5.stderr.exp
+index 1a10d03..0fd1190 100644
+--- a/memcheck/tests/varinfo5.stderr.exp
 b/memcheck/tests/varinfo5.stderr.exp
+@@ -1,191 +1,191 @@
+ Uninitialised byte(s) found during client check request
+-   at 0x: croak (tests/varinfo5so.c:29)
+-   by 0x: varinfo1_main (tests/varinfo5so.c:52)
+-   by 0x: varinfo5_main (tests/varinfo5so.c:154)
+-   by 0x: main 

[OE-core] [AUH] cairo: upgrading to 1.18.0 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *cairo* to *1.18.0* has Failed 
(devtool error).

Detailed error information:

Running 'devtool upgrade' for recipe cairo failed.
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)... (12:15:48.225321)
Loading cache...done.
Loaded 1842 entries from dependency cache.
Removing 1 recipes from the x86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-c54f4dc6989b95c0daa418d930ff606c980d8840"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:c54f4dc6989b95c0daa418d930ff606c980d8840"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 2 Local 2 Mirrors 0 Missed 0 Current 31 (100% match, 
100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 113 tasks of which 110 didn't need to be rerun 
and all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
Loading cache...done.
Loaded 1842 entries from dependency cache.
Parsing recipes...done.
Parsing of 912 .bb files complete (910 cached, 2 parsed). 1843 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-c54f4dc6989b95c0daa418d930ff606c980d8840"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:c54f4dc6989b95c0daa418d930ff606c980d8840"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 3 Local 2 Mirrors 0 Missed 1 Current 25 (66% match, 96% 
complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 93 tasks of which 90 didn't need to be rerun and 
all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
DEBUG 5 [Errno 25] Inappropriate ioctl for device
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   6% |##  | ETA:  0:00:02
Adding changed files:  13% || ETA:  0:00:01
Adding changed files:  20% |### | ETA:  0:00:01
Adding changed files:  26% |#   | ETA:  0:00:01
Adding changed files:  33% || ETA:  0:00:00
Adding changed files:  40% |##  | ETA:  0:00:00
Adding changed files:  46% || ETA:  0:00:00
Adding changed files:  53% |### | ETA:  0:00:00
Adding changed files:  60% |#   | ETA:  0:00:00
Adding changed files:  66% || ETA:  0:00:00
Adding changed files:  73% |##  | ETA:  0:00:00
Adding changed files:  80% || ETA:  0:00:00
Adding changed files:  86% |### | ETA:  0:00:00
Adding changed files:  93% |#   | ETA:  0:00:00
Adding changed files: 100% || Time: 0:00:01
INFO: Extracting current version source...
INFO: Extracting upgraded version source...
INFO: Fetching http://cairographics.org/releases/cairo-1.18.0.tar.xz...
INFO: Rebasing devtool onto 4032390b228f574b031aa3e884e6a442c381fcb8
WARNING: Command 'git rebase 4032390b228f574b031aa3e884e6a442c381fcb8' failed:
Auto-merging src/cairo-arc.c
CONFLICT (content): Merge conflict in src/cairo-arc.c

You will need to resolve conflicts in order to complete the upgrade.
INFO: Upgraded source extracted to 
/home/pokybuild/yocto-worker/auh/build/build/build/workspace/sources/cairo
INFO: New recipe is 
/home/pokybuild/yocto-worker/auh/build/build/build/workspace/recipes/cairo/cairo_1.18.0.bb



Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#189991): 

[OE-core] [AUH] libxkbcommon: upgrading to 1.6.0 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *libxkbcommon* to *1.6.0* has 
Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-libxkbcommon-upgrade-1.5.0-1.6.0.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 84d74402db143fbe9b850377ba06713f52750191 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 13:22:08 +
Subject: [PATCH] libxkbcommon: upgrade 1.5.0 -> 1.6.0

---
 .../xorg-lib/{libxkbcommon_1.5.0.bb => libxkbcommon_1.6.0.bb}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-graphics/xorg-lib/{libxkbcommon_1.5.0.bb => 
libxkbcommon_1.6.0.bb} (94%)

diff --git a/meta/recipes-graphics/xorg-lib/libxkbcommon_1.5.0.bb 
b/meta/recipes-graphics/xorg-lib/libxkbcommon_1.6.0.bb
similarity index 94%
rename from meta/recipes-graphics/xorg-lib/libxkbcommon_1.5.0.bb
rename to meta/recipes-graphics/xorg-lib/libxkbcommon_1.6.0.bb
index 62e9b158e4..4526c43a1d 100644
--- a/meta/recipes-graphics/xorg-lib/libxkbcommon_1.5.0.bb
+++ b/meta/recipes-graphics/xorg-lib/libxkbcommon_1.6.0.bb
@@ -9,7 +9,7 @@ DEPENDS = "flex-native bison-native"
 
 SRC_URI = "http://xkbcommon.org/download/${BPN}-${PV}.tar.xz;
 
-SRC_URI[sha256sum] = 
"560f11c4bbbca10f495f3ef7d3a6aa4ca62b4f8fb0b52e7d459d18a26e46e017"
+SRC_URI[sha256sum] = 
"0edc14eccdd391514458bc5f5a4b99863ed2d651e4dd761a90abf4f46ef99c2b"
 
 UPSTREAM_CHECK_URI = "http://xkbcommon.org/;
 
-- 
2.39.2

Loading cache...done.
Loaded 1844 entries from dependency cache.
Parsing recipes...done.
Parsing of 911 .bb files complete (910 cached, 1 parsed). 1842 targets, 38 
skipped, 0 masked, 0 errors.
Removing 1 recipes from the core2-64 sysroot...done.
Removing 1 recipes from the qemux86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-0c4169c2145802e0b88588951c8d5c4b5724c74c"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:0c4169c2145802e0b88588951c8d5c4b5724c74c"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 64 Local 54 Mirrors 0 Missed 10 Current 474 (84% match, 
98% complete)
NOTE: Executing Tasks
NOTE: Running setscene task 498 of 538 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-graphics/wayland/wayland-protocols_1.32.bb:do_create_spdx_setscene)
NOTE: Running setscene task 507 of 538 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-graphics/xorg-lib/xkeyboard-config_2.40.bb:do_create_spdx_setscene)
NOTE: recipe wayland-protocols-1.32-r0: task do_create_spdx_setscene: Started
NOTE: recipe xkeyboard-config-2.40-r0: task do_create_spdx_setscene: Started
NOTE: recipe wayland-protocols-1.32-r0: task do_create_spdx_setscene: Succeeded
NOTE: recipe xkeyboard-config-2.40-r0: task do_create_spdx_setscene: Succeeded
NOTE: Setscene tasks completed
NOTE: Running task 1349 of 1519 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-graphics/xorg-lib/libxkbcommon_1.6.0.bb:do_recipe_qa)
NOTE: Running task 1423 of 1519 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-graphics/xorg-lib/libxkbcommon_1.6.0.bb:do_write_config)
NOTE: recipe libxkbcommon-1.6.0-r0: task do_recipe_qa: Started
NOTE: recipe libxkbcommon-1.6.0-r0: task do_write_config: Started
NOTE: recipe libxkbcommon-1.6.0-r0: task do_write_config: Succeeded
NOTE: recipe libxkbcommon-1.6.0-r0: task do_recipe_qa: Succeeded
NOTE: Running task 1502 of 1519 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-graphics/xorg-lib/libxkbcommon_1.6.0.bb:do_fetch)
NOTE: recipe libxkbcommon-1.6.0-r0: task do_fetch: Started
NOTE: recipe libxkbcommon-1.6.0-r0: task do_fetch: Succeeded
NOTE: Running task 1503 of 1519 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-graphics/xorg-lib/libxkbcommon_1.6.0.bb:do_unpack)
NOTE: Running task 

[OE-core] [AUH] libstd-rs: upgrading to 1.73.0 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *libstd-rs* to *1.73.0* has 
Failed (devtool error).

Detailed error information:

Running 'devtool upgrade' for recipe libstd-rs failed.
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)... (09:57:13.566703)
Loading cache...done.
Loaded 1844 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-6e38f57c8f0bc68ea564765af10ac63d64160ab3"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:6e38f57c8f0bc68ea564765af10ac63d64160ab3"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 2 Local 2 Mirrors 0 Missed 0 Current 31 (100% match, 
100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 113 tasks of which 110 didn't need to be rerun 
and all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
Loading cache...done.
Loaded 1844 entries from dependency cache.
Parsing recipes...done.
Parsing of 912 .bb files complete (910 cached, 2 parsed). 1843 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-6e38f57c8f0bc68ea564765af10ac63d64160ab3"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:6e38f57c8f0bc68ea564765af10ac63d64160ab3"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 3 Local 2 Mirrors 0 Missed 1 Current 25 (66% match, 96% 
complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 93 tasks of which 90 didn't need to be rerun and 
all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
DEBUG 5 [Errno 25] Inappropriate ioctl for device
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   0% || ETA:  0:07:19
Adding changed files:   0% || ETA:  0:05:09
Adding changed files:   0% || ETA:  0:04:22
Adding changed files:   0% || ETA:  0:04:08
Adding changed files:   0% || ETA:  0:03:57
Adding changed files:   0% || ETA:  0:03:47
Adding changed files:   1% || ETA:  0:03:43
Adding changed files:   1% || ETA:  0:03:36
Adding changed files:   1% || ETA:  0:03:34
Adding changed files:   1% || ETA:  0:03:33
Adding changed files:   1% || ETA:  0:03:31
Adding changed files:   1% || ETA:  0:03:29
Adding changed files:   2% || ETA:  0:03:26
Adding changed files:   2% || ETA:  0:03:26
Adding changed files:   2% || ETA:  0:03:24
Adding changed files:   2% || ETA:  0:03:23
Adding changed files:   2% || ETA:  0:03:21
Adding changed files:   2% |#   | ETA:  0:03:20
Adding changed files:   2% |#   | ETA:  0:03:19
Adding changed files:   3% |#   | ETA:  0:03:18
Adding changed files:   3% |#   | ETA:  0:03:17
Adding changed files:   3% |#   | ETA:  0:03:16
Adding changed files:   3% |#   | ETA:  0:03:15
Adding changed files:   3% |#   | ETA:  0:03:15
Adding changed files:   3% |#   | ETA:  0:03:14
Adding changed files:   4% |#   | ETA:  0:03:13
Adding changed files:   4% |#   | ETA:  0:03:12
Adding changed files:   4% |#   | ETA:  0:03:11
Adding changed files:   4% |#

[OE-core] [AUH] spirv-headers: upgrading to 1.3.268.0 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *spirv-headers* to *1.3.268.0* 
has Succeeded.

Next steps:
- apply the patch: git am 
0001-spirv-headers-upgrade-1.3.261.1-1.3.268.0.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 5c4ff96c5906626cc00ba897ca99a4ef50feed7f Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 13:01:08 +
Subject: [PATCH] spirv-headers: upgrade 1.3.261.1 -> 1.3.268.0

---
 .../{spirv-headers_1.3.261.1.bb => spirv-headers_1.3.268.0.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-graphics/spir/{spirv-headers_1.3.261.1.bb => 
spirv-headers_1.3.268.0.bb} (92%)

diff --git a/meta/recipes-graphics/spir/spirv-headers_1.3.261.1.bb 
b/meta/recipes-graphics/spir/spirv-headers_1.3.268.0.bb
similarity index 92%
rename from meta/recipes-graphics/spir/spirv-headers_1.3.261.1.bb
rename to meta/recipes-graphics/spir/spirv-headers_1.3.268.0.bb
index 945f0879f5..c70845788e 100644
--- a/meta/recipes-graphics/spir/spirv-headers_1.3.261.1.bb
+++ b/meta/recipes-graphics/spir/spirv-headers_1.3.268.0.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "https://www.khronos.org/registry/spir-v;
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=c938b85bceb8fb26c1a807f28a52ae2d"
 
-SRCREV = "124a9665e464ef98b8b718d572d5f329311061eb"
+SRCREV = "e867c06631767a2d96424cbec530f9ee5e78180f"
 SRC_URI = 
"git://github.com/KhronosGroup/SPIRV-Headers;protocol=https;branch=main"
 PE = "1"
 # These recipes need to be updated in lockstep with each other:
-- 
2.39.2

packages/core2-64-poky-linux/spirv-headers: PKGV changed from 1.3.261.1 
[default] to 1.3.268.0 [default]
packages/core2-64-poky-linux/spirv-headers: PV changed from "1.3.261.1" to 
"1.3.268.0"
packages/core2-64-poky-linux/spirv-headers/spirv-headers-dbg: PKGV changed from 
1.3.261.1 [default] to 1.3.268.0 [default]
packages/core2-64-poky-linux/spirv-headers/spirv-headers-dbg: PV changed from 
"1.3.261.1" to "1.3.268.0"
packages/core2-64-poky-linux/spirv-headers/spirv-headers-dev: PKGSIZE changed 
from 2851522 to 2902543 (+2%)
packages/core2-64-poky-linux/spirv-headers/spirv-headers-dev: PKGV changed from 
1.3.261.1 [default] to 1.3.268.0 [default]
packages/core2-64-poky-linux/spirv-headers/spirv-headers-dev: PV changed from 
"1.3.261.1" to "1.3.268.0"
packages/core2-64-poky-linux/spirv-headers/spirv-headers-doc: PKGV changed from 
1.3.261.1 [default] to 1.3.268.0 [default]
packages/core2-64-poky-linux/spirv-headers/spirv-headers-doc: PV changed from 
"1.3.261.1" to "1.3.268.0"
packages/core2-64-poky-linux/spirv-headers/spirv-headers-locale: PKGV changed 
from 1.3.261.1 [default] to 1.3.268.0 [default]
packages/core2-64-poky-linux/spirv-headers/spirv-headers-locale: PV changed 
from "1.3.261.1" to "1.3.268.0"
packages/core2-64-poky-linux/spirv-headers/spirv-headers-src: PKGV changed from 
1.3.261.1 [default] to 1.3.268.0 [default]
packages/core2-64-poky-linux/spirv-headers/spirv-headers-src: PV changed from 
"1.3.261.1" to "1.3.268.0"
packages/core2-64-poky-linux/spirv-headers/spirv-headers-staticdev: PKGV 
changed from 1.3.261.1 [default] to 1.3.268.0 [default]
packages/core2-64-poky-linux/spirv-headers/spirv-headers-staticdev: PV changed 
from "1.3.261.1" to "1.3.268.0"
packages/core2-64-poky-linux/spirv-headers/spirv-headers: PKGV changed from 
1.3.261.1 [default] to 1.3.268.0 [default]
packages/core2-64-poky-linux/spirv-headers/spirv-headers: PV changed from 
"1.3.261.1" to "1.3.268.0"


0001-spirv-headers-upgrade-1.3.261.1-1.3.268.0.patch
Description: Binary data

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#189989): 
https://lists.openembedded.org/g/openembedded-core/message/189989
Mute This Topic: https://lists.openembedded.org/mt/102320365/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [AUH] webkitgtk: upgrading to 2.42.1 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *webkitgtk* to *2.42.1* has 
Failed (devtool error).

Detailed error information:

Running 'devtool upgrade' for recipe webkitgtk failed.
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Previous bitbake instance shutting down?, waiting to retry... 
(13:57:12.848837)
NOTE: Directory listing: ['conf', 'cache', 'downloads', 'upgrade-helper', 
'buildhistory', 'tmp', 'sstate-cache', 'workspace', 'bitbake-cookerdaemon.log']
NOTE: Retrying server connection (#1)... (13:57:13.090204)
Loading cache...done.
Loaded 1842 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-d93cc66c569d116ee8ac5cde7d214756159dff8d"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:d93cc66c569d116ee8ac5cde7d214756159dff8d"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 2 Local 2 Mirrors 0 Missed 0 Current 31 (100% match, 
100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 113 tasks of which 110 didn't need to be rerun 
and all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 2 seconds
Loading cache...done.
Loaded 1842 entries from dependency cache.
Parsing recipes...done.
Parsing of 912 .bb files complete (910 cached, 2 parsed). 1843 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-d93cc66c569d116ee8ac5cde7d214756159dff8d"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:d93cc66c569d116ee8ac5cde7d214756159dff8d"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 3 Local 2 Mirrors 0 Missed 1 Current 25 (66% match, 96% 
complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 93 tasks of which 90 didn't need to be rerun and 
all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
DEBUG 5 [Errno 25] Inappropriate ioctl for device
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   0% || ETA:  0:00:37
Adding changed files:   1% || ETA:  0:00:26
Adding changed files:   2% || ETA:  0:00:25
Adding changed files:   2% |#   | ETA:  0:00:23
Adding changed files:   3% |#   | ETA:  0:00:21
Adding changed files:   4% |#   | ETA:  0:00:20
Adding changed files:   5% |#   | ETA:  0:00:19
Adding changed files:   5% |##  | ETA:  0:00:19
Adding changed files:   6% |##  | ETA:  0:00:18
Adding changed files:   7% |##  | ETA:  0:00:18
Adding changed files:   7% |##  | ETA:  0:00:17
Adding changed files:   8% |### | ETA:  0:00:17
Adding changed files:   9% |### | ETA:  0:00:17
Adding changed files:  10% |### | ETA:  0:00:17
Adding changed files:  10% |### | ETA:  0:00:16
Adding changed files:  11% || ETA:  0:00:16
Adding changed files:  12% || ETA:  0:00:16
Adding changed files:  13% || ETA:  0:00:16
Adding changed files:  13% || ETA:  0:00:16
Adding changed files:  14% |#   | ETA:  0:00:16
Adding changed files:  15% |#   | ETA:  0:00:16
Adding changed files:  15% |#   | ETA:  0:00:16
Adding changed files:  16% |#   | ETA:  0:00:15
Adding changed files:  17% |##  | ETA:  0:00:15
Adding changed files:  18% |##  | ETA:  0:00:15
Adding changed files:  18% 

[OE-core] [AUH] bmap-tools: upgrading to 3.7 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *bmap-tools* to *3.7* has 
Failed (devtool error).

Detailed error information:

The following devtool command failed:  upgrade bmap-tools -V 3.7 -S 
d84a6fd202fe246a0bc19ed2082e41bcdd75fb13
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)... (13:59:22.578371)
Loading cache...done.
Loaded 1843 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-d93cc66c569d116ee8ac5cde7d214756159dff8d"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:d93cc66c569d116ee8ac5cde7d214756159dff8d"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 2 Local 2 Mirrors 0 Missed 0 Current 28 (100% match, 
100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 103 tasks of which 100 didn't need to be rerun 
and all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds

INFO: Extracting current version source...
INFO: Extracting upgraded version source...
ERROR: Revision d84a6fd202fe246a0bc19ed2082e41bcdd75fb13 was found on multiple 
branches: 
  
Please provide the correct branch in the devtool command with "--srcbranch" or 
"-B" option.


Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#190020): 
https://lists.openembedded.org/g/openembedded-core/message/190020
Mute This Topic: https://lists.openembedded.org/mt/102320397/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [AUH] rust-llvm: upgrading to 1.73.0 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *rust-llvm* to *1.73.0* has 
Failed (devtool error).

Detailed error information:

Running 'devtool upgrade' for recipe rust-llvm failed.
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)... (10:12:38.659856)
Loading cache...done.
Loaded 1845 entries from dependency cache.
Removing 1 recipes from the x86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-6e38f57c8f0bc68ea564765af10ac63d64160ab3"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:6e38f57c8f0bc68ea564765af10ac63d64160ab3"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 2 Local 2 Mirrors 0 Missed 0 Current 31 (100% match, 
100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 113 tasks of which 110 didn't need to be rerun 
and all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
Loading cache...done.
Loaded 1845 entries from dependency cache.
Parsing recipes...done.
Parsing of 912 .bb files complete (910 cached, 2 parsed). 1843 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-6e38f57c8f0bc68ea564765af10ac63d64160ab3"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:6e38f57c8f0bc68ea564765af10ac63d64160ab3"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 3 Local 2 Mirrors 0 Missed 1 Current 25 (66% match, 96% 
complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 93 tasks of which 90 didn't need to be rerun and 
all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
DEBUG 5 [Errno 25] Inappropriate ioctl for device
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   0% || ETA:  0:07:19
Adding changed files:   0% || ETA:  0:05:09
Adding changed files:   0% || ETA:  0:04:23
Adding changed files:   0% || ETA:  0:04:08
Adding changed files:   0% || ETA:  0:03:57
Adding changed files:   0% || ETA:  0:03:48
Adding changed files:   1% || ETA:  0:03:43
Adding changed files:   1% || ETA:  0:03:37
Adding changed files:   1% || ETA:  0:03:34
Adding changed files:   1% || ETA:  0:03:33
Adding changed files:   1% || ETA:  0:03:32
Adding changed files:   1% || ETA:  0:03:29
Adding changed files:   2% || ETA:  0:03:27
Adding changed files:   2% || ETA:  0:03:26
Adding changed files:   2% || ETA:  0:03:24
Adding changed files:   2% || ETA:  0:03:23
Adding changed files:   2% || ETA:  0:03:21
Adding changed files:   2% |#   | ETA:  0:03:20
Adding changed files:   2% |#   | ETA:  0:03:20
Adding changed files:   3% |#   | ETA:  0:03:19
Adding changed files:   3% |#   | ETA:  0:03:18
Adding changed files:   3% |#   | ETA:  0:03:17
Adding changed files:   3% |#   | ETA:  0:03:16
Adding changed files:   3% |#   | ETA:  0:03:15
Adding changed files:   3% |#   | ETA:  0:03:15
Adding changed files:   4% |#   | ETA:  0:03:15
Adding changed files:   4% |#   | ETA:  0:03:14
Adding changed files:   4% |# 

[OE-core] [AUH] iptables: upgrading to 1.8.10 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *iptables* to *1.8.10* has 
Failed (devtool error).

Detailed error information:

Running 'devtool upgrade' for recipe iptables failed.
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)... (11:12:00.543630)
Loading cache...done.
Loaded 1842 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-808d97b2d64aa3041d006ed8dc6207613564a10c"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:808d97b2d64aa3041d006ed8dc6207613564a10c"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 2 Local 2 Mirrors 0 Missed 0 Current 31 (100% match, 
100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 113 tasks of which 110 didn't need to be rerun 
and all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
Loading cache...done.
Loaded 1842 entries from dependency cache.
Parsing recipes...done.
Parsing of 912 .bb files complete (910 cached, 2 parsed). 1843 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-808d97b2d64aa3041d006ed8dc6207613564a10c"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:808d97b2d64aa3041d006ed8dc6207613564a10c"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 3 Local 2 Mirrors 0 Missed 1 Current 25 (66% match, 96% 
complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 93 tasks of which 90 didn't need to be rerun and 
all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
DEBUG 5 [Errno 25] Inappropriate ioctl for device
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:  96% |##  | ETA:  0:00:00
Adding changed files: 100% || Time: 0:00:00
INFO: Extracting current version source...
INFO: Adding local source files to srctree...
INFO: Extracting upgraded version source...
INFO: Fetching 
http://netfilter.org/projects/iptables/files/iptables-1.8.10.tar.xz...
INFO: Rebasing devtool onto 69d99f96021beae366c8d55e226721a1c085438c
WARNING: Command 'git rebase 69d99f96021beae366c8d55e226721a1c085438c' failed:
Auto-merging configure.ac
CONFLICT (content): Merge conflict in configure.ac

You will need to resolve conflicts in order to complete the upgrade.
INFO: Upgraded source extracted to 
/home/pokybuild/yocto-worker/auh/build/build/build/workspace/sources/iptables
INFO: New recipe is 
/home/pokybuild/yocto-worker/auh/build/build/build/workspace/recipes/iptables/iptables_1.8.10.bb



Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#189988): 
https://lists.openembedded.org/g/openembedded-core/message/189988
Mute This Topic: https://lists.openembedded.org/mt/102320364/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [AUH] rust: upgrading to 1.73.0 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *rust* to *1.73.0* has Failed 
(devtool error).

Detailed error information:

Running 'devtool upgrade' for recipe rust failed.
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)... (10:35:45.752096)
Loading cache...done.
Loaded 1846 entries from dependency cache.
Removing 1 recipes from the x86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-6e38f57c8f0bc68ea564765af10ac63d64160ab3"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:6e38f57c8f0bc68ea564765af10ac63d64160ab3"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 2 Local 2 Mirrors 0 Missed 0 Current 31 (100% match, 
100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 113 tasks of which 110 didn't need to be rerun 
and all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
Loading cache...done.
Loaded 1846 entries from dependency cache.
Parsing recipes...done.
Parsing of 912 .bb files complete (910 cached, 2 parsed). 1843 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-6e38f57c8f0bc68ea564765af10ac63d64160ab3"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:6e38f57c8f0bc68ea564765af10ac63d64160ab3"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 3 Local 2 Mirrors 0 Missed 1 Current 25 (66% match, 96% 
complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 93 tasks of which 90 didn't need to be rerun and 
all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
DEBUG 5 [Errno 25] Inappropriate ioctl for device
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   0% || ETA:  0:07:19
Adding changed files:   0% || ETA:  0:05:09
Adding changed files:   0% || ETA:  0:04:23
Adding changed files:   0% || ETA:  0:04:09
Adding changed files:   0% || ETA:  0:03:58
Adding changed files:   0% || ETA:  0:03:48
Adding changed files:   1% || ETA:  0:03:44
Adding changed files:   1% || ETA:  0:03:37
Adding changed files:   1% || ETA:  0:03:35
Adding changed files:   1% || ETA:  0:03:34
Adding changed files:   1% || ETA:  0:03:32
Adding changed files:   1% || ETA:  0:03:30
Adding changed files:   2% || ETA:  0:03:27
Adding changed files:   2% || ETA:  0:03:27
Adding changed files:   2% || ETA:  0:03:25
Adding changed files:   2% || ETA:  0:03:23
Adding changed files:   2% || ETA:  0:03:21
Adding changed files:   2% |#   | ETA:  0:03:20
Adding changed files:   2% |#   | ETA:  0:03:19
Adding changed files:   3% |#   | ETA:  0:03:18
Adding changed files:   3% |#   | ETA:  0:03:18
Adding changed files:   3% |#   | ETA:  0:03:16
Adding changed files:   3% |#   | ETA:  0:03:15
Adding changed files:   3% |#   | ETA:  0:03:15
Adding changed files:   3% |#   | ETA:  0:03:14
Adding changed files:   4% |#   | ETA:  0:03:14
Adding changed files:   4% |#   | ETA:  0:03:13
Adding changed files:   4% |#   | ETA:  

[OE-core] [AUH] nghttp2: upgrading to 1.58.0 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *nghttp2* to *1.58.0* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-nghttp2-upgrade-1.57.0-1.58.0.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 16118c515a43580512d5f338f56501c258b522dd Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 14:16:59 +
Subject: [PATCH] nghttp2: upgrade 1.57.0 -> 1.58.0

---
 .../nghttp2/{nghttp2_1.57.0.bb => nghttp2_1.58.0.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-support/nghttp2/{nghttp2_1.57.0.bb => nghttp2_1.58.0.bb} 
(91%)

diff --git a/meta/recipes-support/nghttp2/nghttp2_1.57.0.bb 
b/meta/recipes-support/nghttp2/nghttp2_1.58.0.bb
similarity index 91%
rename from meta/recipes-support/nghttp2/nghttp2_1.57.0.bb
rename to meta/recipes-support/nghttp2/nghttp2_1.58.0.bb
index 0cf1e3e34c..7b2ff4b778 100644
--- a/meta/recipes-support/nghttp2/nghttp2_1.57.0.bb
+++ b/meta/recipes-support/nghttp2/nghttp2_1.58.0.bb
@@ -8,7 +8,7 @@ SRC_URI = "\
 ${GITHUB_BASE_URI}/download/v${PV}/nghttp2-${PV}.tar.xz \
 file://0001-fetch-ocsp-response-use-python3.patch \
 "
-SRC_URI[sha256sum] = 
"9210b0113109f43be526ac5835d58a701411821a4d39e155c40d67c40f47a958"
+SRC_URI[sha256sum] = 
"4a68a3040da92fd9872c056d0f6b0cd60de8410de10b578f8ade9ecc14d297e0"
 
 inherit cmake manpages python3native github-releases
 PACKAGECONFIG[manpages] = ""
-- 
2.39.2

packages/core2-64-poky-linux/nghttp2: SRC_URI changed from 
"https://github.com/nghttp2/nghttp2/releases//download/v1.57.0/nghttp2-1.57.0.tar.xz
 file://0001-fetch-ocsp-response-use-python3.patch" to 
"https://github.com/nghttp2/nghttp2/releases//download/v1.58.0/nghttp2-1.58.0.tar.xz
 file://0001-fetch-ocsp-response-use-python3.patch"
packages/core2-64-poky-linux/nghttp2: PKGV changed from 1.57.0 [default] to 
1.58.0 [default]
packages/core2-64-poky-linux/nghttp2: PV changed from "1.57.0" to "1.58.0"
packages/core2-64-poky-linux/nghttp2/libnghttp2: FILELIST: removed 
"/usr/lib/libnghttp2.so.14.25.0", added "/usr/lib/libnghttp2.so.14.25.1"
packages/core2-64-poky-linux/nghttp2/libnghttp2: PKGV changed from 1.57.0 
[default] to 1.58.0 [default]
packages/core2-64-poky-linux/nghttp2/libnghttp2: PV changed from "1.57.0" to 
"1.58.0"
packages/core2-64-poky-linux/nghttp2/nghttp2-dbg: FILELIST: removed 
"/usr/lib/.debug/libnghttp2.so.14.25.0", added 
"/usr/lib/.debug/libnghttp2.so.14.25.1"
packages/core2-64-poky-linux/nghttp2/nghttp2-dbg: PKGV changed from 1.57.0 
[default] to 1.58.0 [default]
packages/core2-64-poky-linux/nghttp2/nghttp2-dbg: PV changed from "1.57.0" to 
"1.58.0"
packages/core2-64-poky-linux/nghttp2/nghttp2-dev: PKGV changed from 1.57.0 
[default] to 1.58.0 [default]
packages/core2-64-poky-linux/nghttp2/nghttp2-dev: PV changed from "1.57.0" to 
"1.58.0"
packages/core2-64-poky-linux/nghttp2/nghttp2-doc: PKGSIZE changed from 174430 
to 174307 (-0%)
packages/core2-64-poky-linux/nghttp2/nghttp2-doc: PKGV changed from 1.57.0 
[default] to 1.58.0 [default]
packages/core2-64-poky-linux/nghttp2/nghttp2-doc: PV changed from "1.57.0" to 
"1.58.0"
packages/core2-64-poky-linux/nghttp2/nghttp2-locale: PKGV changed from 1.57.0 
[default] to 1.58.0 [default]
packages/core2-64-poky-linux/nghttp2/nghttp2-locale: PV changed from "1.57.0" 
to "1.58.0"
packages/core2-64-poky-linux/nghttp2/nghttp2-proxy: PKGV changed from 1.57.0 
[default] to 1.58.0 [default]
packages/core2-64-poky-linux/nghttp2/nghttp2-proxy: PV changed from "1.57.0" to 
"1.58.0"
packages/core2-64-poky-linux/nghttp2/nghttp2-src: PKGSIZE changed from 1029395 
to 1029569 (+0%)
packages/core2-64-poky-linux/nghttp2/nghttp2-src: PKGV changed from 1.57.0 
[default] to 1.58.0 [default]
packages/core2-64-poky-linux/nghttp2/nghttp2-src: PV changed from "1.57.0" to 
"1.58.0"
packages/core2-64-poky-linux/nghttp2/nghttp2-staticdev: PKGV changed from 
1.57.0 [default] to 1.58.0 [default]
packages/core2-64-poky-linux/nghttp2/nghttp2-staticdev: PV changed from 
"1.57.0" to "1.58.0"
packages/core2-64-poky-linux/nghttp2/nghttp2: PKGV changed from 1.57.0 
[default] to 1.58.0 [default]
packages/core2-64-poky-linux/nghttp2/nghttp2: PV changed from "1.57.0" to 
"1.58.0"
Changes to packages/core2-64-poky-linux/nghttp2 

[OE-core] [AUH] python3-wcwidth: upgrading to 0.2.9 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *python3-wcwidth* to *0.2.9* 
has Succeeded.

Next steps:
- apply the patch: git am 0001-python3-wcwidth-upgrade-0.2.8-0.2.9.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 14d0e5bcecbc917dfed8699fd05b98532f884286 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 09:40:53 +
Subject: [PATCH] python3-wcwidth: upgrade 0.2.8 -> 0.2.9

---
 .../{python3-wcwidth_0.2.8.bb => python3-wcwidth_0.2.9.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-wcwidth_0.2.8.bb => 
python3-wcwidth_0.2.9.bb} (87%)

diff --git a/meta/recipes-devtools/python/python3-wcwidth_0.2.8.bb 
b/meta/recipes-devtools/python/python3-wcwidth_0.2.9.bb
similarity index 87%
rename from meta/recipes-devtools/python/python3-wcwidth_0.2.8.bb
rename to meta/recipes-devtools/python/python3-wcwidth_0.2.9.bb
index e906a6d73a..983852d07d 100644
--- a/meta/recipes-devtools/python/python3-wcwidth_0.2.8.bb
+++ b/meta/recipes-devtools/python/python3-wcwidth_0.2.9.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "https://github.com/jquast/wcwidth;
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=b15979c39a2543892fca8cd86b4b52cb"
 
-SRC_URI[sha256sum] = 
"8705c56ffbb4f6a87c6d1b80f324bd6db952f5eb0b95bc07517f4c1813d4"
+SRC_URI[sha256sum] = 
"a675d1a4a2d24ef67096a04b85b02deeecd8e226f57b5e3a72dbb9ed99d27da8"
 
 inherit pypi setuptools3 ptest
 
-- 
2.39.2



0001-python3-wcwidth-upgrade-0.2.8-0.2.9.patch
Description: Binary data
packages/core2-64-poky-linux/python3-wcwidth: PKGV changed from 0.2.8 [default] 
to 0.2.9 [default]
packages/core2-64-poky-linux/python3-wcwidth: PV changed from "0.2.8" to "0.2.9"
packages/core2-64-poky-linux/python3-wcwidth: SRC_URI changed from 
"https://files.pythonhosted.org/packages/source/w/wcwidth/wcwidth-0.2.8.tar.gz;downloadfilename=wcwidth-0.2.8.tar.gz
 file://run-ptest" to 
"https://files.pythonhosted.org/packages/source/w/wcwidth/wcwidth-0.2.9.tar.gz;downloadfilename=wcwidth-0.2.9.tar.gz
 file://run-ptest"
packages/core2-64-poky-linux/python3-wcwidth/python3-wcwidth-dbg: PKGV changed 
from 0.2.8 [default] to 0.2.9 [default]
packages/core2-64-poky-linux/python3-wcwidth/python3-wcwidth-dbg: PV changed 
from "0.2.8" to "0.2.9"
packages/core2-64-poky-linux/python3-wcwidth/python3-wcwidth-dev: PKGV changed 
from 0.2.8 [default] to 0.2.9 [default]
packages/core2-64-poky-linux/python3-wcwidth/python3-wcwidth-dev: PV changed 
from "0.2.8" to "0.2.9"
packages/core2-64-poky-linux/python3-wcwidth/python3-wcwidth-doc: PKGV changed 
from 0.2.8 [default] to 0.2.9 [default]
packages/core2-64-poky-linux/python3-wcwidth/python3-wcwidth-doc: PV changed 
from "0.2.8" to "0.2.9"
packages/core2-64-poky-linux/python3-wcwidth/python3-wcwidth-locale: PKGV 
changed from 0.2.8 [default] to 0.2.9 [default]
packages/core2-64-poky-linux/python3-wcwidth/python3-wcwidth-locale: PV changed 
from "0.2.8" to "0.2.9"
packages/core2-64-poky-linux/python3-wcwidth/python3-wcwidth-ptest: PKGSIZE 
changed from 8585 to 20803 (+142%)
packages/core2-64-poky-linux/python3-wcwidth/python3-wcwidth-ptest: PKGV 
changed from 0.2.8 [default] to 0.2.9 [default]
packages/core2-64-poky-linux/python3-wcwidth/python3-wcwidth-ptest: PV changed 
from "0.2.8" to "0.2.9"
packages/core2-64-poky-linux/python3-wcwidth/python3-wcwidth-src: PKGV changed 
from 0.2.8 [default] to 0.2.9 [default]
packages/core2-64-poky-linux/python3-wcwidth/python3-wcwidth-src: PV changed 
from "0.2.8" to "0.2.9"
packages/core2-64-poky-linux/python3-wcwidth/python3-wcwidth-staticdev: PKGV 
changed from 0.2.8 [default] to 0.2.9 [default]
packages/core2-64-poky-linux/python3-wcwidth/python3-wcwidth-staticdev: PV 
changed from "0.2.8" to "0.2.9"
packages/core2-64-poky-linux/python3-wcwidth/python3-wcwidth: PKGSIZE changed 
from 534989 to 534148 (-0%)
packages/core2-64-poky-linux/python3-wcwidth/python3-wcwidth: PKGV changed from 
0.2.8 [default] to 0.2.9 [default]
packages/core2-64-poky-linux/python3-wcwidth/python3-wcwidth: PV changed from 
"0.2.8" to "0.2.9"
Changes to packages/core2-64-poky-linux/python3-wcwidth (sysroot):
  /usr/lib/python3.11/site-packages/wcwidth-0.2.8.dist-info moved to 

[OE-core] [AUH] python3-sphinxcontrib-serializinghtml: upgrading to 1.1.9 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe 
*python3-sphinxcontrib-serializinghtml* to *1.1.9* has Failed (devtool error).

Detailed error information:

The following devtool command failed:  upgrade 
python3-sphinxcontrib-serializinghtml -V 1.1.9
NOTE: Starting bitbake server...
Loading cache...done.
Loaded 1846 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-bc44915620e6572561931642eb1c41aa00fdf750"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:bc44915620e6572561931642eb1c41aa00fdf750"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 2 Local 2 Mirrors 0 Missed 0 Current 28 (100% match, 
100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 103 tasks of which 100 didn't need to be rerun 
and all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
Loading cache...done.
Loaded 1846 entries from dependency cache.
Parsing recipes...done.
Parsing of 912 .bb files complete (910 cached, 2 parsed). 1843 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-bc44915620e6572561931642eb1c41aa00fdf750"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:bc44915620e6572561931642eb1c41aa00fdf750"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 1 Local 0 Mirrors 0 Missed 1 Current 0 (0% match, 0% 
complete)
NOTE: Executing Tasks
WARNING: Failed to fetch URL 
https://files.pythonhosted.org/packages/source/s/sphinxcontrib-serializinghtml/sphinxcontrib-serializinghtml-1.1.9.tar.gz;downloadfilename=sphinxcontrib-serializinghtml-1.1.9.tar.gz,
 attempting MIRRORS if available
NOTE: Tasks Summary: Attempted 2 tasks of which 0 didn't need to be rerun and 1 
failed.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds

INFO: Extracting current version source...
INFO: Extracting upgraded version source...
INFO: Fetching 
https://files.pythonhosted.org/packages/source/s/sphinxcontrib-serializinghtml/sphinxcontrib-serializinghtml-1.1.9.tar.gz;downloadfilename=sphinxcontrib-serializinghtml-1.1.9.tar.gz...
ERROR: Fetcher failure: Fetch command export PSEUDO_DISABLED=1; export 
SSL_CERT_FILE="/home/pokybuild/yocto-worker/auh/build/buildtools/sysroots/x86_64-pokysdk-linux/etc/ssl/certs/ca-certificates.crt";
 export 
GIT_SSL_CAINFO="/home/pokybuild/yocto-worker/auh/build/buildtools/sysroots/x86_64-pokysdk-linux/etc/ssl/certs/ca-certificates.crt";
 export ftp_proxy="http://proxy.yocto.io:5187/;; export 
FTP_PROXY="http://proxy.yocto.io:5187/;; export 
PATH="/home/pokybuild/yocto-worker/auh/build/build/build/tmp/sysroots-uninative/x86_64-linux/usr/bin:/home/pokybuild/yocto-worker/auh/build/build/poky/scripts:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-dcbdhn_6/work/recipe-sysroot-native/usr/bin/x86_64-poky-linux:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-dcbdhn_6/work/recipe-sysroot/usr/bin/crossscripts:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-dcbdhn_6/work/recipe-sysroot-native/usr/sbin:/home/pokybuild/yocto-wor
 
ker/auh/build/build/build/tmp/work/recipetool-dcbdhn_6/work/recipe-sysroot-native/usr/bin:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-dcbdhn_6/work/recipe-sysroot-native/sbin:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-dcbdhn_6/work/recipe-sysroot-native/bin:/home/pokybuild/yocto-worker/auh/build/build/poky/bitbake/bin:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/hosttools";
 export HOME="/home/pokybuild"; /usr/bin/env wget -t 2 -T 30 --passive-ftp -O 
/home/pokybuild/yocto-worker/auh/build/build/build/downloads/sphinxcontrib-serializinghtml-1.1.9.tar.gz.tmp
 -P /home/pokybuild/yocto-worker/auh/build/build/build/downloads 
'https://files.pythonhosted.org/packages/source/s/sphinxcontrib-serializinghtml/sphinxcontrib-serializinghtml-1.1.9.tar.gz'
 --progress=dot -v failed with exit code 8, no output
ERROR: Bitbake Fetcher Error: FetchError('Unable to fetch URL from any 
source.', 

[OE-core] [AUH] libical: upgrading to 3.0.17 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *libical* to *3.0.17* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-libical-upgrade-3.0.16-3.0.17.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From e74adde868b555e090e943e6e6776fea94e767da Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 14:12:39 +
Subject: [PATCH] libical: upgrade 3.0.16 -> 3.0.17

---
 .../libical/{libical_3.0.16.bb => libical_3.0.17.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-support/libical/{libical_3.0.16.bb => libical_3.0.17.bb} 
(96%)

diff --git a/meta/recipes-support/libical/libical_3.0.16.bb 
b/meta/recipes-support/libical/libical_3.0.17.bb
similarity index 96%
rename from meta/recipes-support/libical/libical_3.0.16.bb
rename to meta/recipes-support/libical/libical_3.0.17.bb
index 61599b20dd..b91912b048 100644
--- a/meta/recipes-support/libical/libical_3.0.16.bb
+++ b/meta/recipes-support/libical/libical_3.0.17.bb
@@ -15,7 +15,7 @@ SECTION = "libs"
 SRC_URI = "${GITHUB_BASE_URI}/download/v${PV}/${BP}.tar.gz \
file://0001-cmake-Do-not-export-CC-into-gir-compiler.patch \
   "
-SRC_URI[sha256sum] = 
"b44705dd71ca4538c86fb16248483ab4b48978524fb1da5097bd76aa2e0f0c33"
+SRC_URI[sha256sum] = 
"bcda9a6db6870240328752854d1ea475af9bbc6356e6771018200e475e5f781b"
 
 inherit cmake pkgconfig gobject-introspection vala github-releases
 
-- 
2.39.2

packages/core2-64-poky-linux/libical: PV changed from "3.0.16" to "3.0.17"
packages/core2-64-poky-linux/libical: SRC_URI changed from 
"https://github.com/libical/libical/releases//download/v3.0.16/libical-3.0.16.tar.gz
 file://0001-cmake-Do-not-export-CC-into-gir-compiler.patch" to 
"https://github.com/libical/libical/releases//download/v3.0.17/libical-3.0.17.tar.gz
 file://0001-cmake-Do-not-export-CC-into-gir-compiler.patch"
packages/core2-64-poky-linux/libical: PKGV changed from 3.0.16 [default] to 
3.0.17 [default]
packages/core2-64-poky-linux/libical/libical-dbg: PV changed from "3.0.16" to 
"3.0.17"
packages/core2-64-poky-linux/libical/libical-dbg: PKGSIZE changed from 3102560 
to 3152128 (+2%)
packages/core2-64-poky-linux/libical/libical-dbg: FILELIST: removed 
"/usr/lib/.debug/libicalvcal.so.3.0.16 /usr/lib/.debug/libical-glib.so.3.0.16 
/usr/lib/.debug/libicalss_cxx.so.3.0.16 /usr/lib/.debug/libical_cxx.so.3.0.16 
/usr/lib/.debug/libical.so.3.0.16 /usr/lib/.debug/libicalss.so.3.0.16", added 
"/usr/lib/.debug/libicalvcal.so.3.0.17 /usr/lib/.debug/libical-glib.so.3.0.17 
/usr/lib/.debug/libicalss_cxx.so.3.0.17 /usr/lib/.debug/libical_cxx.so.3.0.17 
/usr/lib/.debug/libical.so.3.0.17 /usr/lib/.debug/libicalss.so.3.0.17"
packages/core2-64-poky-linux/libical/libical-dbg: PKGV changed from 3.0.16 
[default] to 3.0.17 [default]
packages/core2-64-poky-linux/libical/libical-dev: PV changed from "3.0.16" to 
"3.0.17"
packages/core2-64-poky-linux/libical/libical-dev: PKGSIZE changed from 2980655 
to 2984259 (+0%)
packages/core2-64-poky-linux/libical/libical-dev: PKGV changed from 3.0.16 
[default] to 3.0.17 [default]
packages/core2-64-poky-linux/libical/libical-doc: PV changed from "3.0.16" to 
"3.0.17"
packages/core2-64-poky-linux/libical/libical-doc: PKGV changed from 3.0.16 
[default] to 3.0.17 [default]
packages/core2-64-poky-linux/libical/libical-locale: PV changed from "3.0.16" 
to "3.0.17"
packages/core2-64-poky-linux/libical/libical-locale: PKGV changed from 3.0.16 
[default] to 3.0.17 [default]
packages/core2-64-poky-linux/libical/libical-src: PV changed from "3.0.16" to 
"3.0.17"
packages/core2-64-poky-linux/libical/libical-src: PKGSIZE changed from 3057925 
to 3062458 (+0%)
packages/core2-64-poky-linux/libical/libical-src: PKGV changed from 3.0.16 
[default] to 3.0.17 [default]
packages/core2-64-poky-linux/libical/libical-staticdev: PV changed from 
"3.0.16" to "3.0.17"
packages/core2-64-poky-linux/libical/libical-staticdev: PKGV changed from 
3.0.16 [default] to 3.0.17 [default]
packages/core2-64-poky-linux/libical/libical: PV changed from "3.0.16" to 
"3.0.17"
packages/core2-64-poky-linux/libical/libical: PKGSIZE changed from 1589219 to 
1589519 (+0%)
packages/core2-64-poky-linux/libical/libical: FILELIST: removed 

[OE-core] [AUH] python3-sphinxcontrib-devhelp: upgrading to 1.0.5 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe 
*python3-sphinxcontrib-devhelp* to *1.0.5* has Failed (devtool error).

Detailed error information:

The following devtool command failed:  upgrade python3-sphinxcontrib-devhelp -V 
1.0.5
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)... (09:33:36.292407)
Loading cache...done.
Loaded 1843 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-bc44915620e6572561931642eb1c41aa00fdf750"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:bc44915620e6572561931642eb1c41aa00fdf750"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 2 Local 2 Mirrors 0 Missed 0 Current 28 (100% match, 
100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 103 tasks of which 100 didn't need to be rerun 
and all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
Loading cache...done.
Loaded 1843 entries from dependency cache.
Parsing recipes...done.
Parsing of 912 .bb files complete (910 cached, 2 parsed). 1843 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-bc44915620e6572561931642eb1c41aa00fdf750"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:bc44915620e6572561931642eb1c41aa00fdf750"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 1 Local 0 Mirrors 0 Missed 1 Current 0 (0% match, 0% 
complete)
NOTE: Executing Tasks
WARNING: Failed to fetch URL 
https://files.pythonhosted.org/packages/source/s/sphinxcontrib-devhelp/sphinxcontrib-devhelp-1.0.5.tar.gz;downloadfilename=sphinxcontrib-devhelp-1.0.5.tar.gz,
 attempting MIRRORS if available
NOTE: Tasks Summary: Attempted 2 tasks of which 0 didn't need to be rerun and 1 
failed.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds

INFO: Extracting current version source...
INFO: Extracting upgraded version source...
INFO: Fetching 
https://files.pythonhosted.org/packages/source/s/sphinxcontrib-devhelp/sphinxcontrib-devhelp-1.0.5.tar.gz;downloadfilename=sphinxcontrib-devhelp-1.0.5.tar.gz...
ERROR: Fetcher failure: Fetch command export PSEUDO_DISABLED=1; export 
SSL_CERT_FILE="/home/pokybuild/yocto-worker/auh/build/buildtools/sysroots/x86_64-pokysdk-linux/etc/ssl/certs/ca-certificates.crt";
 export 
GIT_SSL_CAINFO="/home/pokybuild/yocto-worker/auh/build/buildtools/sysroots/x86_64-pokysdk-linux/etc/ssl/certs/ca-certificates.crt";
 export ftp_proxy="http://proxy.yocto.io:5187/;; export 
FTP_PROXY="http://proxy.yocto.io:5187/;; export 
PATH="/home/pokybuild/yocto-worker/auh/build/build/build/tmp/sysroots-uninative/x86_64-linux/usr/bin:/home/pokybuild/yocto-worker/auh/build/build/poky/scripts:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-rljeky04/work/recipe-sysroot-native/usr/bin/x86_64-poky-linux:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-rljeky04/work/recipe-sysroot/usr/bin/crossscripts:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-rljeky04/work/recipe-sysroot-native/usr/sbin:/home/pokybuild/yocto-wor
 
ker/auh/build/build/build/tmp/work/recipetool-rljeky04/work/recipe-sysroot-native/usr/bin:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-rljeky04/work/recipe-sysroot-native/sbin:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-rljeky04/work/recipe-sysroot-native/bin:/home/pokybuild/yocto-worker/auh/build/build/poky/bitbake/bin:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/hosttools";
 export HOME="/home/pokybuild"; /usr/bin/env wget -t 2 -T 30 --passive-ftp -O 
/home/pokybuild/yocto-worker/auh/build/build/build/downloads/sphinxcontrib-devhelp-1.0.5.tar.gz.tmp
 -P /home/pokybuild/yocto-worker/auh/build/build/build/downloads 
'https://files.pythonhosted.org/packages/source/s/sphinxcontrib-devhelp/sphinxcontrib-devhelp-1.0.5.tar.gz'
 --progress=dot -v failed with exit code 8, no output
ERROR: Bitbake Fetcher Error: FetchError('Unable to fetch URL from any 
source.', 

[OE-core] [AUH] python3-setuptools-scm: upgrading to 8.0.4 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *python3-setuptools-scm* to 
*8.0.4* has Failed (devtool error).

Detailed error information:

The following devtool command failed:  upgrade python3-setuptools-scm -V 8.0.4
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)... (09:30:21.350815)
Loading cache...done.
Loaded 1842 entries from dependency cache.
Removing 1 recipes from the x86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-28450663fa7c2a40f6e3c5ee594dc0a8a57e9483"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:28450663fa7c2a40f6e3c5ee594dc0a8a57e9483"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 2 Local 2 Mirrors 0 Missed 0 Current 28 (100% match, 
100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 103 tasks of which 100 didn't need to be rerun 
and all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
Loading cache...done.
Loaded 1842 entries from dependency cache.
Parsing recipes...done.
Parsing of 912 .bb files complete (910 cached, 2 parsed). 1843 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-28450663fa7c2a40f6e3c5ee594dc0a8a57e9483"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:28450663fa7c2a40f6e3c5ee594dc0a8a57e9483"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 1 Local 0 Mirrors 0 Missed 1 Current 0 (0% match, 0% 
complete)
NOTE: Executing Tasks
WARNING: Failed to fetch URL 
https://files.pythonhosted.org/packages/source/s/setuptools_scm/setuptools_scm-8.0.4.tar.gz;downloadfilename=setuptools_scm-8.0.4.tar.gz,
 attempting MIRRORS if available
NOTE: Tasks Summary: Attempted 2 tasks of which 0 didn't need to be rerun and 1 
failed.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds

INFO: Extracting current version source...
INFO: Extracting upgraded version source...
INFO: Fetching 
https://files.pythonhosted.org/packages/source/s/setuptools_scm/setuptools_scm-8.0.4.tar.gz;downloadfilename=setuptools_scm-8.0.4.tar.gz...
ERROR: Fetcher failure: Fetch command export PSEUDO_DISABLED=1; export 
SSL_CERT_FILE="/home/pokybuild/yocto-worker/auh/build/buildtools/sysroots/x86_64-pokysdk-linux/etc/ssl/certs/ca-certificates.crt";
 export 
GIT_SSL_CAINFO="/home/pokybuild/yocto-worker/auh/build/buildtools/sysroots/x86_64-pokysdk-linux/etc/ssl/certs/ca-certificates.crt";
 export ftp_proxy="http://proxy.yocto.io:5187/;; export 
FTP_PROXY="http://proxy.yocto.io:5187/;; export 
PATH="/home/pokybuild/yocto-worker/auh/build/build/build/tmp/sysroots-uninative/x86_64-linux/usr/bin:/home/pokybuild/yocto-worker/auh/build/build/poky/scripts:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-00wc20z1/work/recipe-sysroot-native/usr/bin/x86_64-poky-linux:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-00wc20z1/work/recipe-sysroot/usr/bin/crossscripts:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-00wc20z1/work/recipe-sysroot-native/usr/sbin:/home/pokybuild/yocto-wor
 
ker/auh/build/build/build/tmp/work/recipetool-00wc20z1/work/recipe-sysroot-native/usr/bin:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-00wc20z1/work/recipe-sysroot-native/sbin:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-00wc20z1/work/recipe-sysroot-native/bin:/home/pokybuild/yocto-worker/auh/build/build/poky/bitbake/bin:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/hosttools";
 export HOME="/home/pokybuild"; /usr/bin/env wget -t 2 -T 30 --passive-ftp -O 
/home/pokybuild/yocto-worker/auh/build/build/build/downloads/setuptools_scm-8.0.4.tar.gz.tmp
 -P /home/pokybuild/yocto-worker/auh/build/build/build/downloads 
'https://files.pythonhosted.org/packages/source/s/setuptools_scm/setuptools_scm-8.0.4.tar.gz'
 --progress=dot -v failed with exit code 8, no output
ERROR: Bitbake Fetcher Error: FetchError('Unable to fetch URL from any 
source.', 

[OE-core] [AUH] python3-beartype: upgrading to 0.16.4 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *python3-beartype* to *0.16.4* 
has Succeeded.

Next steps:
- apply the patch: git am 0001-python3-beartype-upgrade-0.16.2-0.16.4.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 4cbe4b69d72c839e612c3c629784ad9720c41b49 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 08:09:30 +
Subject: [PATCH] python3-beartype: upgrade 0.16.2 -> 0.16.4

---
 .../{python3-beartype_0.16.2.bb => python3-beartype_0.16.4.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-beartype_0.16.2.bb => 
python3-beartype_0.16.4.bb} (75%)

diff --git a/meta/recipes-devtools/python/python3-beartype_0.16.2.bb 
b/meta/recipes-devtools/python/python3-beartype_0.16.4.bb
similarity index 75%
rename from meta/recipes-devtools/python/python3-beartype_0.16.2.bb
rename to meta/recipes-devtools/python/python3-beartype_0.16.4.bb
index 20a5b92c61..ad4462e0e2 100644
--- a/meta/recipes-devtools/python/python3-beartype_0.16.2.bb
+++ b/meta/recipes-devtools/python/python3-beartype_0.16.4.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "https://beartype.readthedocs.io;
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=e40b52d8eb5553aa8f705cdd3f979d69"
 
-SRC_URI[sha256sum] = 
"47ec1c8c3be3f999f4f9f829e8913f65926aa7e85b180d9ffd305dc78d3e7d7b"
+SRC_URI[sha256sum] = 
"1ada89cf2d6eb30eb6e156eed2eb5493357782937910d74380918e53c2eae0bf"
 
 inherit setuptools3 pypi
 
-- 
2.39.2

packages/core2-64-poky-linux/python3-beartype: SRC_URI changed from 
"https://files.pythonhosted.org/packages/source/b/beartype/beartype-0.16.2.tar.gz;downloadfilename=beartype-0.16.2.tar.gz;
 to 
"https://files.pythonhosted.org/packages/source/b/beartype/beartype-0.16.4.tar.gz;downloadfilename=beartype-0.16.4.tar.gz;
packages/core2-64-poky-linux/python3-beartype: PV changed from "0.16.2" to 
"0.16.4"
packages/core2-64-poky-linux/python3-beartype: PKGV changed from 0.16.2 
[default] to 0.16.4 [default]
packages/core2-64-poky-linux/python3-beartype/python3-beartype-dbg: PV changed 
from "0.16.2" to "0.16.4"
packages/core2-64-poky-linux/python3-beartype/python3-beartype-dbg: PKGV 
changed from 0.16.2 [default] to 0.16.4 [default]
packages/core2-64-poky-linux/python3-beartype/python3-beartype-dev: PV changed 
from "0.16.2" to "0.16.4"
packages/core2-64-poky-linux/python3-beartype/python3-beartype-dev: PKGV 
changed from 0.16.2 [default] to 0.16.4 [default]
packages/core2-64-poky-linux/python3-beartype/python3-beartype-doc: PV changed 
from "0.16.2" to "0.16.4"
packages/core2-64-poky-linux/python3-beartype/python3-beartype-doc: PKGV 
changed from 0.16.2 [default] to 0.16.4 [default]
packages/core2-64-poky-linux/python3-beartype/python3-beartype-locale: PV 
changed from "0.16.2" to "0.16.4"
packages/core2-64-poky-linux/python3-beartype/python3-beartype-locale: PKGV 
changed from 0.16.2 [default] to 0.16.4 [default]
packages/core2-64-poky-linux/python3-beartype/python3-beartype-src: PV changed 
from "0.16.2" to "0.16.4"
packages/core2-64-poky-linux/python3-beartype/python3-beartype-src: PKGV 
changed from 0.16.2 [default] to 0.16.4 [default]
packages/core2-64-poky-linux/python3-beartype/python3-beartype-staticdev: PV 
changed from "0.16.2" to "0.16.4"
packages/core2-64-poky-linux/python3-beartype/python3-beartype-staticdev: PKGV 
changed from 0.16.2 [default] to 0.16.4 [default]
packages/core2-64-poky-linux/python3-beartype/python3-beartype: PV changed from 
"0.16.2" to "0.16.4"
packages/core2-64-poky-linux/python3-beartype/python3-beartype: PKGSIZE changed 
from 4238284 to 4271177 (+1%)
packages/core2-64-poky-linux/python3-beartype/python3-beartype: FILELIST: 
directory renamed /usr/lib/python3.11/site-packages/beartype-0.16.2.dist-info 
-> /usr/lib/python3.11/site-packages/beartype-0.16.4.dist-info, removed 
"/usr/lib/python3.11/site-packages/beartype/_decor/_decormore.py 
/usr/lib/python3.11/site-packages/beartype/_decor/__pycache__/_decormore.cpython-311.pyc",
 added 
"/usr/lib/python3.11/site-packages/beartype/_util/cls/__pycache__/utilclsset.cpython-311.pyc
 
/usr/lib/python3.11/site-packages/beartype/_decor/__pycache__/_decortype.cpython-311.pyc
 /usr/lib/python3.11/site-packages/beartype/_util/cls/utilclsset.py 

[OE-core] [AUH] python3: upgrading to 3.12.0 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *python3* to *3.12.0* has 
Failed (devtool error).

Detailed error information:

The following devtool command failed:  upgrade python3 -V 3.12.0
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)... (09:43:40.410246)
Loading cache...done.
Loaded 1842 entries from dependency cache.
Removing 1 recipes from the x86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-6e38f57c8f0bc68ea564765af10ac63d64160ab3"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:6e38f57c8f0bc68ea564765af10ac63d64160ab3"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 2 Local 2 Mirrors 0 Missed 0 Current 31 (100% match, 
100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 113 tasks of which 110 didn't need to be rerun 
and all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
Loading cache...done.
Loaded 1842 entries from dependency cache.
Parsing recipes...done.
Parsing of 912 .bb files complete (910 cached, 2 parsed). 1843 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-6e38f57c8f0bc68ea564765af10ac63d64160ab3"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:6e38f57c8f0bc68ea564765af10ac63d64160ab3"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 3 Local 2 Mirrors 0 Missed 1 Current 25 (66% match, 96% 
complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 93 tasks of which 90 didn't need to be rerun and 
all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
DEBUG 5 [Errno 25] Inappropriate ioctl for device
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   4% |#   | ETA:  0:00:04
Adding changed files:   8% |### | ETA:  0:00:03
Adding changed files:  12% || ETA:  0:00:02
Adding changed files:  16% |##  | ETA:  0:00:02
Adding changed files:  21% |### | ETA:  0:00:02
Adding changed files:  25% |#   | ETA:  0:00:01
Adding changed files:  29% |##  | ETA:  0:00:01
Adding changed files:  33% || ETA:  0:00:01
Adding changed files:  37% |#   | ETA:  0:00:01
Adding changed files:  42% |### | ETA:  0:00:01
Adding changed files:  46% || ETA:  0:00:01
Adding changed files:  50% |##  | ETA:  0:00:01
Adding changed files:  54% |### | ETA:  0:00:01
Adding changed files:  59% |#   | ETA:  0:00:00
Adding changed files:  63% |##  | ETA:  0:00:00
Adding changed files:  67% || ETA:  0:00:00
Adding changed files:  71% |#   | ETA:  0:00:00
Adding changed files:  75% |### | ETA:  0:00:00
Adding changed files:  80% || ETA:  0:00:00
Adding changed files:  84% |##  | ETA:  0:00:00
Adding changed files:  88% |### | ETA:  0:00:00
Adding changed files:  92% |#   | ETA:  0:00:00
Adding changed files:  97% |##  | ETA:  0:00:00
Adding changed files: 100% || Time: 0:00:02

INFO: Extracting current version source...
INFO: SRC_URI contains some conditional appends/prepends - will create branches 
to represent these
INFO: Adding local source files to srctree...
INFO: Extracting upgraded version source...
INFO: Fetching 

[OE-core] [AUH] libnewt: upgrading to 0.52.24 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *libnewt* to *0.52.24* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-libnewt-upgrade-0.52.23-0.52.24.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 86f7b6895226054085524277404c6f75559f3fd2 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 11:39:02 +
Subject: [PATCH] libnewt: upgrade 0.52.23 -> 0.52.24

---
 .../newt/{libnewt_0.52.23.bb => libnewt_0.52.24.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-extended/newt/{libnewt_0.52.23.bb => libnewt_0.52.24.bb} 
(94%)

diff --git a/meta/recipes-extended/newt/libnewt_0.52.23.bb 
b/meta/recipes-extended/newt/libnewt_0.52.24.bb
similarity index 94%
rename from meta/recipes-extended/newt/libnewt_0.52.23.bb
rename to meta/recipes-extended/newt/libnewt_0.52.24.bb
index cd3731cf74..1e39a1c5ca 100644
--- a/meta/recipes-extended/newt/libnewt_0.52.23.bb
+++ b/meta/recipes-extended/newt/libnewt_0.52.24.bb
@@ -23,7 +23,7 @@ SRC_URI = "https://releases.pagure.org/newt/newt-${PV}.tar.gz 
\
file://0001-detect-gold-as-GNU-linker-too.patch \
"
 
-SRC_URI[sha256sum] = 
"caa372907b14ececfe298f0d512a62f41d33b290610244a58aed07bbc5ada12a"
+SRC_URI[sha256sum] = 
"5ded7e221f85f642521c49b1826c8de19845aa372baf5d630a51774b544fbdbb"
 
 S = "${WORKDIR}/newt-${PV}"
 
-- 
2.39.2

packages/core2-64-poky-linux/libnewt: SRC_URI changed from 
"https://releases.pagure.org/newt/newt-0.52.23.tar.gz file://cross_ar.patch 
file://Makefile.in-Add-tinfo-library-to-the-linking-librari.patch 
file://0001-detect-gold-as-GNU-linker-too.patch" to 
"https://releases.pagure.org/newt/newt-0.52.24.tar.gz file://cross_ar.patch 
file://Makefile.in-Add-tinfo-library-to-the-linking-librari.patch 
file://0001-detect-gold-as-GNU-linker-too.patch"
packages/core2-64-poky-linux/libnewt: PV changed from "0.52.23" to "0.52.24"
packages/core2-64-poky-linux/libnewt: PKGV changed from 0.52.23 [default] to 
0.52.24 [default]
packages/core2-64-poky-linux/libnewt/libnewt-dbg: FILELIST: removed 
"/usr/lib/.debug/libnewt.so.0.52.23", added "/usr/lib/.debug/libnewt.so.0.52.24"
packages/core2-64-poky-linux/libnewt/libnewt-dbg: PKGSIZE changed from 368480 
to 368408 (-0%)
packages/core2-64-poky-linux/libnewt/libnewt-dbg: PV changed from "0.52.23" to 
"0.52.24"
packages/core2-64-poky-linux/libnewt/libnewt-dbg: PKGV changed from 0.52.23 
[default] to 0.52.24 [default]
packages/core2-64-poky-linux/libnewt/libnewt-dev: PV changed from "0.52.23" to 
"0.52.24"
packages/core2-64-poky-linux/libnewt/libnewt-dev: PKGV changed from 0.52.23 
[default] to 0.52.24 [default]
packages/core2-64-poky-linux/libnewt/libnewt-doc: PV changed from "0.52.23" to 
"0.52.24"
packages/core2-64-poky-linux/libnewt/libnewt-doc: PKGV changed from 0.52.23 
[default] to 0.52.24 [default]
packages/core2-64-poky-linux/libnewt/libnewt-locale-ar: PV changed from 
"0.52.23" to "0.52.24"
packages/core2-64-poky-linux/libnewt/libnewt-locale-ar: PKGV changed from 
0.52.23 [default] to 0.52.24 [default]
packages/core2-64-poky-linux/libnewt/libnewt-locale-as: PV changed from 
"0.52.23" to "0.52.24"
packages/core2-64-poky-linux/libnewt/libnewt-locale-as: PKGV changed from 
0.52.23 [default] to 0.52.24 [default]
packages/core2-64-poky-linux/libnewt/libnewt-locale-ast: PV changed from 
"0.52.23" to "0.52.24"
packages/core2-64-poky-linux/libnewt/libnewt-locale-ast: PKGV changed from 
0.52.23 [default] to 0.52.24 [default]
packages/core2-64-poky-linux/libnewt/libnewt-locale-bal: PV changed from 
"0.52.23" to "0.52.24"
packages/core2-64-poky-linux/libnewt/libnewt-locale-bal: PKGV changed from 
0.52.23 [default] to 0.52.24 [default]
packages/core2-64-poky-linux/libnewt/libnewt-locale-bg: PV changed from 
"0.52.23" to "0.52.24"
packages/core2-64-poky-linux/libnewt/libnewt-locale-bg: PKGV changed from 
0.52.23 [default] to 0.52.24 [default]
packages/core2-64-poky-linux/libnewt/libnewt-locale-bn-in: PV changed from 
"0.52.23" to "0.52.24"
packages/core2-64-poky-linux/libnewt/libnewt-locale-bn-in: PKGV changed from 
0.52.23 [default] to 0.52.24 [default]
packages/core2-64-poky-linux/libnewt/libnewt-locale-bn: PV changed from 
"0.52.23" to "0.52.24"

[OE-core] [AUH] libtirpc: upgrading to 1.3.4 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *libtirpc* to *1.3.4* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-libtirpc-upgrade-1.3.3-1.3.4.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 47478c626cd0288a0ceac3bea4e89497237a65c7 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 11:26:42 +
Subject: [PATCH] libtirpc: upgrade 1.3.3 -> 1.3.4

---
 .../libtirpc/{libtirpc_1.3.3.bb => libtirpc_1.3.4.bb}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-extended/libtirpc/{libtirpc_1.3.3.bb => libtirpc_1.3.4.bb} 
(93%)

diff --git a/meta/recipes-extended/libtirpc/libtirpc_1.3.3.bb 
b/meta/recipes-extended/libtirpc/libtirpc_1.3.4.bb
similarity index 93%
rename from meta/recipes-extended/libtirpc/libtirpc_1.3.3.bb
rename to meta/recipes-extended/libtirpc/libtirpc_1.3.4.bb
index 898a952a8b..16c7a6007a 100644
--- a/meta/recipes-extended/libtirpc/libtirpc_1.3.3.bb
+++ b/meta/recipes-extended/libtirpc/libtirpc_1.3.4.bb
@@ -14,7 +14,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BP}.tar.bz2 \
 "
 UPSTREAM_CHECK_URI = 
"https://sourceforge.net/projects/libtirpc/files/libtirpc/;
 UPSTREAM_CHECK_REGEX = "(?P\d+(\.\d+)+)/"
-SRC_URI[sha256sum] = 
"6474e98851d9f6f33871957ddee9714fdcd9d8a5ee9abb5a98d63ea2e60e12f3"
+SRC_URI[sha256sum] = 
"1e0b0c7231c5fa122e06c0609a76723664d068b0dba3b8219b63e6340b347860"
 
 CVE_STATUS[CVE-2021-46828] = "fixed-version: fixed in 1.3.3rc1 so not present 
in 1.3.3"
 
-- 
2.39.2

packages/core2-64-poky-linux/libtirpc: PV changed from "1.3.3" to "1.3.4"
packages/core2-64-poky-linux/libtirpc: SRC_URI changed from 
"https://downloads.sourceforge.net/libtirpc/libtirpc-1.3.3.tar.bz2 
file://ipv6.patch" to 
"https://downloads.sourceforge.net/libtirpc/libtirpc-1.3.4.tar.bz2 
file://ipv6.patch"
packages/core2-64-poky-linux/libtirpc: PKGV changed from 1.3.3 [default] to 
1.3.4 [default]
packages/core2-64-poky-linux/libtirpc/libtirpc-dbg: PV changed from "1.3.3" to 
"1.3.4"
packages/core2-64-poky-linux/libtirpc/libtirpc-dbg: PKGV changed from 1.3.3 
[default] to 1.3.4 [default]
packages/core2-64-poky-linux/libtirpc/libtirpc-dbg: PKGSIZE changed from 615392 
to 617664 (+0%)
packages/core2-64-poky-linux/libtirpc/libtirpc-dev: PV changed from "1.3.3" to 
"1.3.4"
packages/core2-64-poky-linux/libtirpc/libtirpc-dev: PKGV changed from 1.3.3 
[default] to 1.3.4 [default]
packages/core2-64-poky-linux/libtirpc/libtirpc-doc: PV changed from "1.3.3" to 
"1.3.4"
packages/core2-64-poky-linux/libtirpc/libtirpc-doc: PKGV changed from 1.3.3 
[default] to 1.3.4 [default]
packages/core2-64-poky-linux/libtirpc/libtirpc-locale: PV changed from "1.3.3" 
to "1.3.4"
packages/core2-64-poky-linux/libtirpc/libtirpc-locale: PKGV changed from 1.3.3 
[default] to 1.3.4 [default]
packages/core2-64-poky-linux/libtirpc/libtirpc-src: PV changed from "1.3.3" to 
"1.3.4"
packages/core2-64-poky-linux/libtirpc/libtirpc-src: PKGV changed from 1.3.3 
[default] to 1.3.4 [default]
packages/core2-64-poky-linux/libtirpc/libtirpc-src: PKGSIZE changed from 672330 
to 674982 (+0%)
packages/core2-64-poky-linux/libtirpc/libtirpc-staticdev: PV changed from 
"1.3.3" to "1.3.4"
packages/core2-64-poky-linux/libtirpc/libtirpc-staticdev: PKGV changed from 
1.3.3 [default] to 1.3.4 [default]
packages/core2-64-poky-linux/libtirpc/libtirpc: PV changed from "1.3.3" to 
"1.3.4"
packages/core2-64-poky-linux/libtirpc/libtirpc: PKGV changed from 1.3.3 
[default] to 1.3.4 [default]


0001-libtirpc-upgrade-1.3.3-1.3.4.patch
Description: Binary data

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#19): 
https://lists.openembedded.org/g/openembedded-core/message/19
Mute This Topic: https://lists.openembedded.org/mt/102320377/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [AUH] python3-pyrsistent: upgrading to 0.20.0 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *python3-pyrsistent* to 
*0.20.0* has Succeeded.

Next steps:
- apply the patch: git am 
0001-python3-pyrsistent-upgrade-0.19.3-0.20.0.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 102c6f7ad3969d7d163db2ff79762b139f2342f9 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 09:24:26 +
Subject: [PATCH] python3-pyrsistent: upgrade 0.19.3 -> 0.20.0

---
 ...0.19.3.bb => python3-pyrsistent_0.20.0.bb} | 23 +--
 1 file changed, 21 insertions(+), 2 deletions(-)
 rename meta/recipes-devtools/python/{python3-pyrsistent_0.19.3.bb => 
python3-pyrsistent_0.20.0.bb} (25%)

diff --git a/meta/recipes-devtools/python/python3-pyrsistent_0.19.3.bb 
b/meta/recipes-devtools/python/python3-pyrsistent_0.20.0.bb
similarity index 25%
rename from meta/recipes-devtools/python/python3-pyrsistent_0.19.3.bb
rename to meta/recipes-devtools/python/python3-pyrsistent_0.20.0.bb
index 05654c348d..ba09fd0b25 100644
--- a/meta/recipes-devtools/python/python3-pyrsistent_0.19.3.bb
+++ b/meta/recipes-devtools/python/python3-pyrsistent_0.20.0.bb
@@ -1,9 +1,28 @@
+# FIXME: the LIC_FILES_CHKSUM values have been updated by 'devtool upgrade'.
+# The following is the difference between the old and the new license text.
+# Please update the LICENSE value if needed, and summarize the changes in
+# the commit message via 'License-Update:' tag.
+# (example: 'License-Update: copyright years updated.')
+#
+# The changes:
+#
+# --- LICENSE.mit
+# +++ LICENSE.mit
+# @@ -1,4 +1,4 @@
+# -Copyright (c) 2022 Tobias Gustafsson
+# +Copyright (c) 2023 Tobias Gustafsson
+#  
+#  Permission is hereby granted, free of charge, to any person
+#  obtaining a copy of this software and associated documentation
+# 
+#
+
 SUMMARY = "Persistent/Immutable/Functional data structures for Python"
 HOMEPAGE = "https://github.com/tobgu/pyrsistent;
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE.mit;md5=b695eb9c6e7a6fb1b1bc2d193c42776e"
+LIC_FILES_CHKSUM = "file://LICENSE.mit;md5=f798dc4222a29fea881fa998cdf4a8c8"
 
-SRC_URI[sha256sum] = 
"1a2994773706bbb4995c31a97bc94f1418314923bd1048c6d964837040376440"
+SRC_URI[sha256sum] = 
"4c48f78f62ab596c679086084d0dd13254ae4f3d6c72a83ffdf5ebdef8f265a4"
 
 inherit pypi python_setuptools_build_meta
 
-- 
2.39.2



0001-python3-pyrsistent-upgrade-0.19.3-0.20.0.patch
Description: Binary data
packages/core2-64-poky-linux/python3-pyrsistent: PKGV changed from 0.19.3 
[default] to 0.20.0 [default]
packages/core2-64-poky-linux/python3-pyrsistent: PV changed from "0.19.3" to 
"0.20.0"
packages/core2-64-poky-linux/python3-pyrsistent: SRC_URI changed from 
"https://files.pythonhosted.org/packages/source/p/pyrsistent/pyrsistent-0.19.3.tar.gz;downloadfilename=pyrsistent-0.19.3.tar.gz;
 to 
"https://files.pythonhosted.org/packages/source/p/pyrsistent/pyrsistent-0.20.0.tar.gz;downloadfilename=pyrsistent-0.20.0.tar.gz;
packages/core2-64-poky-linux/python3-pyrsistent/python3-pyrsistent-dbg: PKGV 
changed from 0.19.3 [default] to 0.20.0 [default]
packages/core2-64-poky-linux/python3-pyrsistent/python3-pyrsistent-dbg: PV 
changed from "0.19.3" to "0.20.0"
packages/core2-64-poky-linux/python3-pyrsistent/python3-pyrsistent-dbg: PKGSIZE 
changed from 83520 to 83608 (+0%)
packages/core2-64-poky-linux/python3-pyrsistent/python3-pyrsistent-dev: PKGV 
changed from 0.19.3 [default] to 0.20.0 [default]
packages/core2-64-poky-linux/python3-pyrsistent/python3-pyrsistent-dev: PV 
changed from "0.19.3" to "0.20.0"
packages/core2-64-poky-linux/python3-pyrsistent/python3-pyrsistent-doc: PKGV 
changed from 0.19.3 [default] to 0.20.0 [default]
packages/core2-64-poky-linux/python3-pyrsistent/python3-pyrsistent-doc: PV 
changed from "0.19.3" to "0.20.0"
packages/core2-64-poky-linux/python3-pyrsistent/python3-pyrsistent-locale: PKGV 
changed from 0.19.3 [default] to 0.20.0 [default]
packages/core2-64-poky-linux/python3-pyrsistent/python3-pyrsistent-locale: PV 
changed from "0.19.3" to "0.20.0"
packages/core2-64-poky-linux/python3-pyrsistent/python3-pyrsistent-src: PKGV 
changed from 0.19.3 [default] to 0.20.0 [default]
packages/core2-64-poky-linux/python3-pyrsistent/python3-pyrsistent-src: PV 
changed from "0.19.3" to "0.20.0"

[OE-core] [AUH] cronie: upgrading to 1.7.0 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *cronie* to *1.7.0* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-cronie-upgrade-1.6.1-1.7.0.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 46dc7d92a8856fd21c80e77a8f98d943128a5e04 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 11:07:54 +
Subject: [PATCH] cronie: upgrade 1.6.1 -> 1.7.0

---
 .../cronie/{cronie_1.6.1.bb => cronie_1.7.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-extended/cronie/{cronie_1.6.1.bb => cronie_1.7.0.bb} (97%)

diff --git a/meta/recipes-extended/cronie/cronie_1.6.1.bb 
b/meta/recipes-extended/cronie/cronie_1.7.0.bb
similarity index 97%
rename from meta/recipes-extended/cronie/cronie_1.6.1.bb
rename to meta/recipes-extended/cronie/cronie_1.7.0.bb
index 1b31bf0db2..24c419b1c5 100644
--- a/meta/recipes-extended/cronie/cronie_1.6.1.bb
+++ b/meta/recipes-extended/cronie/cronie_1.7.0.bb
@@ -25,7 +25,7 @@ SRC_URI = 
"${GITHUB_BASE_URI}/download/cronie-${PV}/cronie-${PV}.tar.gz \
 PAM_SRC_URI = "file://crond_pam_config.patch"
 PAM_DEPS = "libpam libpam-runtime pam-plugin-access pam-plugin-loginuid"
 
-SRC_URI[sha256sum] = 
"2cd0f0dd1680e6b9c39bf1e3a5e7ad6df76aa940de1ee90a453633aa59984e62"
+SRC_URI[sha256sum] = 
"6827f5a47760cc64afeef0a60d3cb5376f52569109fc9a73957dd5e9fdae7619"
 
 inherit autotools update-rc.d useradd systemd github-releases
 UPSTREAM_CHECK_REGEX = "releases/tag/cronie-(?P\d+(\.\d+)+)"
-- 
2.39.2

packages/core2-64-poky-linux/cronie/cronie-dbg: PV changed from "1.6.1" to 
"1.7.0"
packages/core2-64-poky-linux/cronie/cronie-dbg: PKGSIZE changed from 421616 to 
430632 (+2%)
packages/core2-64-poky-linux/cronie/cronie-dbg: PKGV changed from 1.6.1 
[default] to 1.7.0 [default]
packages/core2-64-poky-linux/cronie/cronie-dev: PV changed from "1.6.1" to 
"1.7.0"
packages/core2-64-poky-linux/cronie/cronie-dev: PKGV changed from 1.6.1 
[default] to 1.7.0 [default]
packages/core2-64-poky-linux/cronie/cronie-doc: PV changed from "1.6.1" to 
"1.7.0"
packages/core2-64-poky-linux/cronie/cronie-doc: PKGSIZE changed from 30759 to 
31997 (+4%)
packages/core2-64-poky-linux/cronie/cronie-doc: PKGV changed from 1.6.1 
[default] to 1.7.0 [default]
packages/core2-64-poky-linux/cronie/cronie-locale: PV changed from "1.6.1" to 
"1.7.0"
packages/core2-64-poky-linux/cronie/cronie-locale: PKGV changed from 1.6.1 
[default] to 1.7.0 [default]
packages/core2-64-poky-linux/cronie/cronie-src: PV changed from "1.6.1" to 
"1.7.0"
packages/core2-64-poky-linux/cronie/cronie-src: PKGSIZE changed from 183093 to 
188710 (+3%)
packages/core2-64-poky-linux/cronie/cronie-src: PKGV changed from 1.6.1 
[default] to 1.7.0 [default]
packages/core2-64-poky-linux/cronie/cronie-staticdev: PV changed from "1.6.1" 
to "1.7.0"
packages/core2-64-poky-linux/cronie/cronie-staticdev: PKGV changed from 1.6.1 
[default] to 1.7.0 [default]
packages/core2-64-poky-linux/cronie/cronie: PV changed from "1.6.1" to "1.7.0"
packages/core2-64-poky-linux/cronie/cronie: PKGSIZE changed from 166417 to 
174609 (+5%)
packages/core2-64-poky-linux/cronie/cronie: PKGV changed from 1.6.1 [default] 
to 1.7.0 [default]
packages/core2-64-poky-linux/cronie: PV changed from "1.6.1" to "1.7.0"
packages/core2-64-poky-linux/cronie: SRC_URI changed from 
"https://github.com/cronie-crond/cronie/releases//download/cronie-1.6.1/cronie-1.6.1.tar.gz
 file://crond.init file://crontab file://crond.service 
file://crond_pam_config.patch" to 
"https://github.com/cronie-crond/cronie/releases//download/cronie-1.7.0/cronie-1.7.0.tar.gz
 file://crond.init file://crontab file://crond.service 
file://crond_pam_config.patch"
packages/core2-64-poky-linux/cronie: PKGV changed from 1.6.1 [default] to 1.7.0 
[default]


0001-cronie-upgrade-1.6.1-1.7.0.patch
Description: Binary data

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#189985): 
https://lists.openembedded.org/g/openembedded-core/message/189985
Mute This Topic: https://lists.openembedded.org/mt/102320361/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]

[OE-core] [AUH] gsettings-desktop-schemas: upgrading to 45.0 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *gsettings-desktop-schemas* to 
*45.0* has Succeeded.

Next steps:
- apply the patch: git am 
0001-gsettings-desktop-schemas-upgrade-44.0-45.0.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 0a00c299ea1bca4bbe6b5e62909ee2c43f33b51e Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 12:09:32 +
Subject: [PATCH] gsettings-desktop-schemas: upgrade 44.0 -> 45.0

---
 ...esktop-schemas_44.0.bb => gsettings-desktop-schemas_45.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename 
meta/recipes-gnome/gsettings-desktop-schemas/{gsettings-desktop-schemas_44.0.bb 
=> gsettings-desktop-schemas_45.0.bb} (85%)

diff --git 
a/meta/recipes-gnome/gsettings-desktop-schemas/gsettings-desktop-schemas_44.0.bb
 
b/meta/recipes-gnome/gsettings-desktop-schemas/gsettings-desktop-schemas_45.0.bb
similarity index 85%
rename from 
meta/recipes-gnome/gsettings-desktop-schemas/gsettings-desktop-schemas_44.0.bb
rename to 
meta/recipes-gnome/gsettings-desktop-schemas/gsettings-desktop-schemas_45.0.bb
index 8e30d5e524..a46f47944c 100644
--- 
a/meta/recipes-gnome/gsettings-desktop-schemas/gsettings-desktop-schemas_44.0.bb
+++ 
b/meta/recipes-gnome/gsettings-desktop-schemas/gsettings-desktop-schemas_45.0.bb
@@ -13,4 +13,4 @@ GNOMEBASEBUILDCLASS = "meson"
 
 inherit gnomebase gsettings gobject-introspection gettext
 
-SRC_URI[archive.sha256sum] = 
"eb2de45cad905994849e642a623adeb75d41b21b0626d40d2a07b8ea281fec0e"
+SRC_URI[archive.sha256sum] = 
"365c8d04daf79b38c8b3dc9626349a024f9e4befdd31fede74b42f7a9fbe0ae2"
-- 
2.39.2



0001-gsettings-desktop-schemas-upgrade-44.0-45.0.patch
Description: Binary data
packages/core2-64-poky-linux/gsettings-desktop-schemas/gsettings-desktop-schemas-dbg:
 PV changed from "44.0" to "45.0"
packages/core2-64-poky-linux/gsettings-desktop-schemas/gsettings-desktop-schemas-dbg:
 PKGV changed from 44.0 [default] to 45.0 [default]
packages/core2-64-poky-linux/gsettings-desktop-schemas/gsettings-desktop-schemas-dev:
 PV changed from "44.0" to "45.0"
packages/core2-64-poky-linux/gsettings-desktop-schemas/gsettings-desktop-schemas-dev:
 PKGV changed from 44.0 [default] to 45.0 [default]
packages/core2-64-poky-linux/gsettings-desktop-schemas/gsettings-desktop-schemas-doc:
 PV changed from "44.0" to "45.0"
packages/core2-64-poky-linux/gsettings-desktop-schemas/gsettings-desktop-schemas-doc:
 PKGV changed from 44.0 [default] to 45.0 [default]
packages/core2-64-poky-linux/gsettings-desktop-schemas/gsettings-desktop-schemas-locale-ab:
 PKGSIZE changed from 5482 to 7828 (+43%)
packages/core2-64-poky-linux/gsettings-desktop-schemas/gsettings-desktop-schemas-locale-ab:
 PV changed from "44.0" to "45.0"
packages/core2-64-poky-linux/gsettings-desktop-schemas/gsettings-desktop-schemas-locale-ab:
 PKGV changed from 44.0 [default] to 45.0 [default]
packages/core2-64-poky-linux/gsettings-desktop-schemas/gsettings-desktop-schemas-locale-as:
 PV changed from "44.0" to "45.0"
packages/core2-64-poky-linux/gsettings-desktop-schemas/gsettings-desktop-schemas-locale-as:
 PKGV changed from 44.0 [default] to 45.0 [default]
packages/core2-64-poky-linux/gsettings-desktop-schemas/gsettings-desktop-schemas-locale-bg:
 PKGSIZE changed from 150974 to 150976 (+0%)
packages/core2-64-poky-linux/gsettings-desktop-schemas/gsettings-desktop-schemas-locale-bg:
 PV changed from "44.0" to "45.0"
packages/core2-64-poky-linux/gsettings-desktop-schemas/gsettings-desktop-schemas-locale-bg:
 PKGV changed from 44.0 [default] to 45.0 [default]
packages/core2-64-poky-linux/gsettings-desktop-schemas/gsettings-desktop-schemas-locale-bs:
 PV changed from "44.0" to "45.0"
packages/core2-64-poky-linux/gsettings-desktop-schemas/gsettings-desktop-schemas-locale-bs:
 PKGV changed from 44.0 [default] to 45.0 [default]
packages/core2-64-poky-linux/gsettings-desktop-schemas/gsettings-desktop-schemas-locale-ca+valencia:
 PV changed from "44.0" to "45.0"
packages/core2-64-poky-linux/gsettings-desktop-schemas/gsettings-desktop-schemas-locale-ca+valencia:
 PKGV changed from 44.0 [default] to 45.0 [default]
packages/core2-64-poky-linux/gsettings-desktop-schemas/gsettings-desktop-schemas-locale-ca:
 PV changed from "44.0" to "45.0"

[OE-core] [AUH] waffle: upgrading to 1.8.0 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *waffle* to *1.8.0* has Failed 
(devtool error).

Detailed error information:

Running 'devtool upgrade' for recipe waffle failed.
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)... (13:20:55.951565)
Loading cache...done.
Loaded 1842 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-0c4169c2145802e0b88588951c8d5c4b5724c74c"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:0c4169c2145802e0b88588951c8d5c4b5724c74c"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 2 Local 2 Mirrors 0 Missed 0 Current 28 (100% match, 
100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 103 tasks of which 100 didn't need to be rerun 
and all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
INFO: Extracting current version source...
INFO: Extracting upgraded version source...
INFO: Rebasing devtool onto 580b912a30085528886603942c100c7b309b3bdb
WARNING: Command 'git rebase 580b912a30085528886603942c100c7b309b3bdb' failed:
Auto-merging meson.build
CONFLICT (content): Merge conflict in meson.build
Auto-merging src/waffle/meson.build
CONFLICT (content): Merge conflict in src/waffle/meson.build

You will need to resolve conflicts in order to complete the upgrade.
INFO: Upgraded source extracted to 
/home/pokybuild/yocto-worker/auh/build/build/build/workspace/sources/waffle
INFO: New recipe is 
/home/pokybuild/yocto-worker/auh/build/build/build/workspace/recipes/waffle/waffle_1.8.0.bb



Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#190002): 
https://lists.openembedded.org/g/openembedded-core/message/190002
Mute This Topic: https://lists.openembedded.org/mt/102320379/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [AUH] python3-setuptools-rust: upgrading to 1.8.1 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *python3-setuptools-rust* to 
*1.8.1* has Succeeded.

Next steps:
- apply the patch: git am 
0001-python3-setuptools-rust-upgrade-1.7.0-1.8.1.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From fa450c336f9265321c82944a33fa253cef7c2c5c Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 09:29:49 +
Subject: [PATCH] python3-setuptools-rust: upgrade 1.7.0 -> 1.8.1

---
 ...etuptools-rust_1.7.0.bb => python3-setuptools-rust_1.8.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-setuptools-rust_1.7.0.bb => 
python3-setuptools-rust_1.8.1.bb} (93%)

diff --git a/meta/recipes-devtools/python/python3-setuptools-rust_1.7.0.bb 
b/meta/recipes-devtools/python/python3-setuptools-rust_1.8.1.bb
similarity index 93%
rename from meta/recipes-devtools/python/python3-setuptools-rust_1.7.0.bb
rename to meta/recipes-devtools/python/python3-setuptools-rust_1.8.1.bb
index 6392a4dead..db5c6c449c 100644
--- a/meta/recipes-devtools/python/python3-setuptools-rust_1.7.0.bb
+++ b/meta/recipes-devtools/python/python3-setuptools-rust_1.8.1.bb
@@ -12,7 +12,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=011cd92e702dd9e6b1a26157b6fd53f5"
 SRC_URI = "${PYPI_SRC_URI} \

https://files.pythonhosted.org/packages/67/08/e1aa2c582c62ac76e4d60f8e454bd3bba933781a06a88b4e38797445822a/setuptools-rust-${PV}.tar.gz
 \
"
-SRC_URI[sha256sum] = 
"c710048235a38ae7e555fe199aa66c253dc384b125f5d85473bf81eae3a3"
+SRC_URI[sha256sum] = 
"94b1dd5d5308b3138d5b933c3a2b55e6d6927d1a22632e509fcea9ddd0f7e486"
 
 inherit cargo pypi python_setuptools_build_meta
 
-- 
2.39.2

packages/core2-64-poky-linux/python3-setuptools-rust: PV changed from "1.7.0" 
to "1.8.1"
packages/core2-64-poky-linux/python3-setuptools-rust: SRC_URI changed from 
"https://files.pythonhosted.org/packages/source/s/setuptools-rust/setuptools-rust-1.7.0.tar.gz;downloadfilename=setuptools-rust-1.7.0.tar.gz
 
https://files.pythonhosted.org/packages/source/s/setuptools-rust/setuptools-rust-1.7.0.tar.gz;downloadfilename=setuptools-rust-1.7.0.tar.gz
 
https://files.pythonhosted.org/packages/67/08/e1aa2c582c62ac76e4d60f8e454bd3bba933781a06a88b4e38797445822a/setuptools-rust-1.7.0.tar.gz;
 to 
"https://files.pythonhosted.org/packages/source/s/setuptools-rust/setuptools-rust-1.8.1.tar.gz;downloadfilename=setuptools-rust-1.8.1.tar.gz
 
https://files.pythonhosted.org/packages/source/s/setuptools-rust/setuptools-rust-1.8.1.tar.gz;downloadfilename=setuptools-rust-1.8.1.tar.gz
 
https://files.pythonhosted.org/packages/67/08/e1aa2c582c62ac76e4d60f8e454bd3bba933781a06a88b4e38797445822a/setuptools-rust-1.8.1.tar.gz;
packages/core2-64-poky-linux/python3-setuptools-rust: PKGV changed from 1.7.0 
[default] to 1.8.1 [default]
packages/core2-64-poky-linux/python3-setuptools-rust/python3-setuptools-rust-dbg:
 PV changed from "1.7.0" to "1.8.1"
packages/core2-64-poky-linux/python3-setuptools-rust/python3-setuptools-rust-dbg:
 PKGV changed from 1.7.0 [default] to 1.8.1 [default]
packages/core2-64-poky-linux/python3-setuptools-rust/python3-setuptools-rust-dev:
 PV changed from "1.7.0" to "1.8.1"
packages/core2-64-poky-linux/python3-setuptools-rust/python3-setuptools-rust-dev:
 PKGV changed from 1.7.0 [default] to 1.8.1 [default]
packages/core2-64-poky-linux/python3-setuptools-rust/python3-setuptools-rust-doc:
 PV changed from "1.7.0" to "1.8.1"
packages/core2-64-poky-linux/python3-setuptools-rust/python3-setuptools-rust-doc:
 PKGV changed from 1.7.0 [default] to 1.8.1 [default]
packages/core2-64-poky-linux/python3-setuptools-rust/python3-setuptools-rust-locale:
 PV changed from "1.7.0" to "1.8.1"
packages/core2-64-poky-linux/python3-setuptools-rust/python3-setuptools-rust-locale:
 PKGV changed from 1.7.0 [default] to 1.8.1 [default]
packages/core2-64-poky-linux/python3-setuptools-rust/python3-setuptools-rust-src:
 PV changed from "1.7.0" to "1.8.1"
packages/core2-64-poky-linux/python3-setuptools-rust/python3-setuptools-rust-src:
 PKGV changed from 1.7.0 [default] to 1.8.1 [default]
packages/core2-64-poky-linux/python3-setuptools-rust/python3-setuptools-rust-staticdev:
 PV changed from "1.7.0" to "1.8.1"

[OE-core] [AUH] python3-markdown: upgrading to 3.5.1 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *python3-markdown* to *3.5.1* 
has Succeeded.

Next steps:
- apply the patch: git am 0001-python3-markdown-upgrade-3.5-3.5.1.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From bf5736788b485b7333e377245a5b44d5f8ae9090 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 08:54:32 +
Subject: [PATCH] python3-markdown: upgrade 3.5 -> 3.5.1

---
 .../{python3-markdown_3.5.bb => python3-markdown_3.5.1.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-markdown_3.5.bb => 
python3-markdown_3.5.1.bb} (81%)

diff --git a/meta/recipes-devtools/python/python3-markdown_3.5.bb 
b/meta/recipes-devtools/python/python3-markdown_3.5.1.bb
similarity index 81%
rename from meta/recipes-devtools/python/python3-markdown_3.5.bb
rename to meta/recipes-devtools/python/python3-markdown_3.5.1.bb
index 1ad3f7828d..ccd8ccfc7e 100644
--- a/meta/recipes-devtools/python/python3-markdown_3.5.bb
+++ b/meta/recipes-devtools/python/python3-markdown_3.5.1.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSE.md;md5=745aaad0c69c60039e638bff9ffc59ed"
 inherit pypi python_setuptools_build_meta
 
 PYPI_PACKAGE = "Markdown"
-SRC_URI[sha256sum] = 
"a807eb2e4778d9156c8f07876c6e4d50b5494c5665c4834f67b06459dfd877b3"
+SRC_URI[sha256sum] = 
"b65d7beb248dc22f2e8a31fb706d93798093c308dc1aba295aedeb9d41a813bd"
 
 BBCLASSEXTEND = "native nativesdk"
 
-- 
2.39.2



0001-python3-markdown-upgrade-3.5-3.5.1.patch
Description: Binary data
packages/core2-64-poky-linux/python3-markdown: SRC_URI changed from 
"https://files.pythonhosted.org/packages/source/M/Markdown/Markdown-3.5.tar.gz;downloadfilename=Markdown-3.5.tar.gz;
 to 
"https://files.pythonhosted.org/packages/source/M/Markdown/Markdown-3.5.1.tar.gz;downloadfilename=Markdown-3.5.1.tar.gz;
packages/core2-64-poky-linux/python3-markdown: PKGV changed from 3.5 [default] 
to 3.5.1 [default]
packages/core2-64-poky-linux/python3-markdown: PV changed from "3.5" to "3.5.1"
packages/core2-64-poky-linux/python3-markdown/python3-markdown-dbg: PKGV 
changed from 3.5 [default] to 3.5.1 [default]
packages/core2-64-poky-linux/python3-markdown/python3-markdown-dbg: PV changed 
from "3.5" to "3.5.1"
packages/core2-64-poky-linux/python3-markdown/python3-markdown-dev: PKGV 
changed from 3.5 [default] to 3.5.1 [default]
packages/core2-64-poky-linux/python3-markdown/python3-markdown-dev: PV changed 
from "3.5" to "3.5.1"
packages/core2-64-poky-linux/python3-markdown/python3-markdown-doc: PKGV 
changed from 3.5 [default] to 3.5.1 [default]
packages/core2-64-poky-linux/python3-markdown/python3-markdown-doc: PV changed 
from "3.5" to "3.5.1"
packages/core2-64-poky-linux/python3-markdown/python3-markdown-locale: PKGV 
changed from 3.5 [default] to 3.5.1 [default]
packages/core2-64-poky-linux/python3-markdown/python3-markdown-locale: PV 
changed from "3.5" to "3.5.1"
packages/core2-64-poky-linux/python3-markdown/python3-markdown-src: PKGV 
changed from 3.5 [default] to 3.5.1 [default]
packages/core2-64-poky-linux/python3-markdown/python3-markdown-src: PV changed 
from "3.5" to "3.5.1"
packages/core2-64-poky-linux/python3-markdown/python3-markdown-staticdev: PKGV 
changed from 3.5 [default] to 3.5.1 [default]
packages/core2-64-poky-linux/python3-markdown/python3-markdown-staticdev: PV 
changed from "3.5" to "3.5.1"
packages/core2-64-poky-linux/python3-markdown/python3-markdown: PKGSIZE changed 
from 681387 to 685353 (+1%)
packages/core2-64-poky-linux/python3-markdown/python3-markdown: PKGV changed 
from 3.5 [default] to 3.5.1 [default]
packages/core2-64-poky-linux/python3-markdown/python3-markdown: PV changed from 
"3.5" to "3.5.1"
Changes to packages/core2-64-poky-linux/python3-markdown (sysroot):
  /usr/lib/python3.11/site-packages/Markdown-3.5.1.dist-info was added
  /usr/lib/python3.11/site-packages/Markdown-3.5.1.dist-info/entry_points.txt 
was added
  /usr/lib/python3.11/site-packages/Markdown-3.5.1.dist-info/LICENSE.md was 
added
  /usr/lib/python3.11/site-packages/Markdown-3.5.1.dist-info/METADATA was added
  /usr/lib/python3.11/site-packages/Markdown-3.5.1.dist-info/RECORD was added
  

[OE-core] [AUH] spirv-tools: upgrading to 1.3.268.0 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *spirv-tools* to *1.3.268.0* 
has Succeeded.

Next steps:
- apply the patch: git am 0001-spirv-tools-upgrade-1.3.261.1-1.3.268.0.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 4ece8ce402c9f89d57012e7a5aed77863616d7b8 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 13:05:13 +
Subject: [PATCH] spirv-tools: upgrade 1.3.261.1 -> 1.3.268.0

---
 .../spir/{spirv-tools_1.3.261.1.bb => spirv-tools_1.3.268.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-graphics/spir/{spirv-tools_1.3.261.1.bb => 
spirv-tools_1.3.268.0.bb} (96%)

diff --git a/meta/recipes-graphics/spir/spirv-tools_1.3.261.1.bb 
b/meta/recipes-graphics/spir/spirv-tools_1.3.268.0.bb
similarity index 96%
rename from meta/recipes-graphics/spir/spirv-tools_1.3.261.1.bb
rename to meta/recipes-graphics/spir/spirv-tools_1.3.268.0.bb
index 6904288299..3cf5b28088 100644
--- a/meta/recipes-graphics/spir/spirv-tools_1.3.261.1.bb
+++ b/meta/recipes-graphics/spir/spirv-tools_1.3.268.0.bb
@@ -7,7 +7,7 @@ SECTION = "graphics"
 LICENSE  = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
 
-SRCREV = "e553b884c7c9febaa4e52334f683641fb5f196a0"
+SRCREV = "360d469b9eac54d6c6e20f609f9ec35e3a5380ad"
 SRC_URI = 
"git://github.com/KhronosGroup/SPIRV-Tools.git;branch=main;protocol=https"
 PE = "1"
 # These recipes need to be updated in lockstep with each other:
-- 
2.39.2



0001-spirv-tools-upgrade-1.3.261.1-1.3.268.0.patch
Description: Binary data
packages/core2-64-poky-linux/spirv-tools: PKGV changed from 1.3.261.1 [default] 
to 1.3.268.0 [default]
packages/core2-64-poky-linux/spirv-tools: PV changed from "1.3.261.1" to 
"1.3.268.0"
packages/core2-64-poky-linux/spirv-tools/spirv-tools-dbg: PKGSIZE changed from 
314352200 to 317455984 (+1%)
packages/core2-64-poky-linux/spirv-tools/spirv-tools-dbg: PKGV changed from 
1.3.261.1 [default] to 1.3.268.0 [default]
packages/core2-64-poky-linux/spirv-tools/spirv-tools-dbg: PV changed from 
"1.3.261.1" to "1.3.268.0"
packages/core2-64-poky-linux/spirv-tools/spirv-tools-dev: PKGSIZE changed from 
174558 to 170071 (-3%)
packages/core2-64-poky-linux/spirv-tools/spirv-tools-dev: PKGV changed from 
1.3.261.1 [default] to 1.3.268.0 [default]
packages/core2-64-poky-linux/spirv-tools/spirv-tools-dev: PV changed from 
"1.3.261.1" to "1.3.268.0"
packages/core2-64-poky-linux/spirv-tools/spirv-tools-doc: PKGV changed from 
1.3.261.1 [default] to 1.3.268.0 [default]
packages/core2-64-poky-linux/spirv-tools/spirv-tools-doc: PV changed from 
"1.3.261.1" to "1.3.268.0"
packages/core2-64-poky-linux/spirv-tools/spirv-tools-lesspipe: PKGV changed 
from 1.3.261.1 [default] to 1.3.268.0 [default]
packages/core2-64-poky-linux/spirv-tools/spirv-tools-lesspipe: PV changed from 
"1.3.261.1" to "1.3.268.0"
packages/core2-64-poky-linux/spirv-tools/spirv-tools-locale: PKGV changed from 
1.3.261.1 [default] to 1.3.268.0 [default]
packages/core2-64-poky-linux/spirv-tools/spirv-tools-locale: PV changed from 
"1.3.261.1" to "1.3.268.0"
packages/core2-64-poky-linux/spirv-tools/spirv-tools-src: PKGSIZE changed from 
5692210 to 5693876 (+0%)
packages/core2-64-poky-linux/spirv-tools/spirv-tools-src: FILELIST: directory 
renamed /usr/src/debug/spirv-tools/1_1.3.261.1-r0/tools/val -> 
/usr/src/debug/spirv-tools/1_1.3.268.0-r0/tools/val, directory renamed 
/usr/src/debug/spirv-tools/1_1.3.261.1-r0/tools/cfg -> 
/usr/src/debug/spirv-tools/1_1.3.268.0-r0/tools/cfg, directory renamed 
/usr/src/debug/spirv-tools/1_1.3.261.1-r0/tools/as -> 
/usr/src/debug/spirv-tools/1_1.3.268.0-r0/tools/as, directory renamed 
/usr/src/debug/spirv-tools/1_1.3.261.1-r0 -> 
/usr/src/debug/spirv-tools/1_1.3.268.0-r0, directory renamed 
/usr/src/debug/spirv-tools/1_1.3.261.1-r0/source/util -> 
/usr/src/debug/spirv-tools/1_1.3.268.0-r0/source/util, directory renamed 
/usr/src/debug/spirv-tools/1_1.3.261.1-r0/include/spirv-tools -> 
/usr/src/debug/spirv-tools/1_1.3.268.0-r0/include/spirv-tools, directory 
renamed /usr/src/debug/spirv-tools/1_1.3.261.1-r0/tools -> 
/usr/src/debug/spirv-tools/1_1.3.268.0-r0/tools, directory renamed 
/usr/src/debug/spirv-tools/1_1.3.261
 .1-r0/tools/util -> 

[OE-core] [AUH] python3-hypothesis: upgrading to 6.88.1 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *python3-hypothesis* to 
*6.88.1* has Succeeded.

Next steps:
- apply the patch: git am 
0001-python3-hypothesis-upgrade-6.87.4-6.88.1.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 40783bcd0b76a8ee4c028cefb32abb8f127d02b7 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 08:51:10 +
Subject: [PATCH] python3-hypothesis: upgrade 6.87.4 -> 6.88.1

---
 ...ython3-hypothesis_6.87.4.bb => python3-hypothesis_6.88.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-hypothesis_6.87.4.bb => 
python3-hypothesis_6.88.1.bb} (91%)

diff --git a/meta/recipes-devtools/python/python3-hypothesis_6.87.4.bb 
b/meta/recipes-devtools/python/python3-hypothesis_6.88.1.bb
similarity index 91%
rename from meta/recipes-devtools/python/python3-hypothesis_6.87.4.bb
rename to meta/recipes-devtools/python/python3-hypothesis_6.88.1.bb
index 4f41e2ab1a..e6703f103b 100644
--- a/meta/recipes-devtools/python/python3-hypothesis_6.87.4.bb
+++ b/meta/recipes-devtools/python/python3-hypothesis_6.88.1.bb
@@ -13,7 +13,7 @@ SRC_URI += " \
 file://test_rle.py \
 "
 
-SRC_URI[sha256sum] = 
"c508779be66e266c45dbf9c1b2713e560dfd89abb044d92eafe91e8b2728af01"
+SRC_URI[sha256sum] = 
"f4c2c004b9ec3e0e25332ad2cb6b91eba477a87a7b5c6e79068809ff8b51"
 
 RDEPENDS:${PN} += " \
 python3-attrs \
-- 
2.39.2

packages/core2-64-poky-linux/python3-hypothesis: SRC_URI changed from 
"https://files.pythonhosted.org/packages/source/h/hypothesis/hypothesis-6.87.4.tar.gz;downloadfilename=hypothesis-6.87.4.tar.gz
 file://run-ptest file://test_binary_search.py file://test_rle.py" to 
"https://files.pythonhosted.org/packages/source/h/hypothesis/hypothesis-6.88.1.tar.gz;downloadfilename=hypothesis-6.88.1.tar.gz
 file://run-ptest file://test_binary_search.py file://test_rle.py"
packages/core2-64-poky-linux/python3-hypothesis: PKGV changed from 6.87.4 
[default] to 6.88.1 [default]
packages/core2-64-poky-linux/python3-hypothesis: PV changed from "6.87.4" to 
"6.88.1"
packages/core2-64-poky-linux/python3-hypothesis/python3-hypothesis-dbg: PKGV 
changed from 6.87.4 [default] to 6.88.1 [default]
packages/core2-64-poky-linux/python3-hypothesis/python3-hypothesis-dbg: PV 
changed from "6.87.4" to "6.88.1"
packages/core2-64-poky-linux/python3-hypothesis/python3-hypothesis-dev: PKGV 
changed from 6.87.4 [default] to 6.88.1 [default]
packages/core2-64-poky-linux/python3-hypothesis/python3-hypothesis-dev: PV 
changed from "6.87.4" to "6.88.1"
packages/core2-64-poky-linux/python3-hypothesis/python3-hypothesis-doc: PKGV 
changed from 6.87.4 [default] to 6.88.1 [default]
packages/core2-64-poky-linux/python3-hypothesis/python3-hypothesis-doc: PV 
changed from "6.87.4" to "6.88.1"
packages/core2-64-poky-linux/python3-hypothesis/python3-hypothesis-locale: PKGV 
changed from 6.87.4 [default] to 6.88.1 [default]
packages/core2-64-poky-linux/python3-hypothesis/python3-hypothesis-locale: PV 
changed from "6.87.4" to "6.88.1"
packages/core2-64-poky-linux/python3-hypothesis/python3-hypothesis-ptest: PKGV 
changed from 6.87.4 [default] to 6.88.1 [default]
packages/core2-64-poky-linux/python3-hypothesis/python3-hypothesis-ptest: PV 
changed from "6.87.4" to "6.88.1"
packages/core2-64-poky-linux/python3-hypothesis/python3-hypothesis-src: PKGV 
changed from 6.87.4 [default] to 6.88.1 [default]
packages/core2-64-poky-linux/python3-hypothesis/python3-hypothesis-src: PV 
changed from "6.87.4" to "6.88.1"
packages/core2-64-poky-linux/python3-hypothesis/python3-hypothesis-staticdev: 
PKGV changed from 6.87.4 [default] to 6.88.1 [default]
packages/core2-64-poky-linux/python3-hypothesis/python3-hypothesis-staticdev: 
PV changed from "6.87.4" to "6.88.1"
packages/core2-64-poky-linux/python3-hypothesis/python3-hypothesis: PKGV 
changed from 6.87.4 [default] to 6.88.1 [default]
packages/core2-64-poky-linux/python3-hypothesis/python3-hypothesis: PKGSIZE 
changed from 2919672 to 2922652 (+0%)
packages/core2-64-poky-linux/python3-hypothesis/python3-hypothesis: PV changed 
from "6.87.4" to "6.88.1"
Changes to packages/core2-64-poky-linux/python3-hypothesis (sysroot):
  

[OE-core] [AUH] libnsl2: upgrading to 2.0.1 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *libnsl2* to *2.0.1* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-libnsl2-upgrade-2.0.0-2.0.1.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 413e960e6f81409ad2b6fdf0146716071a55e781 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 11:19:18 +
Subject: [PATCH] libnsl2: upgrade 2.0.0 -> 2.0.1

---
 meta/recipes-extended/libnsl/libnsl2_git.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-extended/libnsl/libnsl2_git.bb 
b/meta/recipes-extended/libnsl/libnsl2_git.bb
index 7919ef9b24..8cc1f7cec3 100644
--- a/meta/recipes-extended/libnsl/libnsl2_git.bb
+++ b/meta/recipes-extended/libnsl/libnsl2_git.bb
@@ -10,9 +10,9 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=4fbd65380cdd255951079008b364516c"
 SECTION = "libs"
 DEPENDS = "libtirpc"
 
-PV = "2.0.0"
+PV = "2.0.1"
 
-SRCREV = "82245c0c58add79a8e34ab0917358217a70e5100"
+SRCREV = "d4b22e54b5e6637a69b26eab5faad2a326c9b182"
 
 SRC_URI = "git://github.com/thkukuk/libnsl;branch=master;protocol=https \
   "
-- 
2.39.2

packages/core2-64-poky-linux/libnsl2: PKGV changed from 2.0.0 [default] to 
2.0.1 [default]
packages/core2-64-poky-linux/libnsl2: PV changed from "2.0.0" to "2.0.1"
packages/core2-64-poky-linux/libnsl2/libnsl2-dbg: PKGV changed from 2.0.0 
[default] to 2.0.1 [default]
packages/core2-64-poky-linux/libnsl2/libnsl2-dbg: PV changed from "2.0.0" to 
"2.0.1"
packages/core2-64-poky-linux/libnsl2/libnsl2-dbg: PKGSIZE changed from 100880 
to 100840 (-0%)
packages/core2-64-poky-linux/libnsl2/libnsl2-dev: PKGV changed from 2.0.0 
[default] to 2.0.1 [default]
packages/core2-64-poky-linux/libnsl2/libnsl2-dev: PV changed from "2.0.0" to 
"2.0.1"
packages/core2-64-poky-linux/libnsl2/libnsl2-doc: PKGV changed from 2.0.0 
[default] to 2.0.1 [default]
packages/core2-64-poky-linux/libnsl2/libnsl2-doc: PV changed from "2.0.0" to 
"2.0.1"
packages/core2-64-poky-linux/libnsl2/libnsl2-locale: PKGV changed from 2.0.0 
[default] to 2.0.1 [default]
packages/core2-64-poky-linux/libnsl2/libnsl2-locale: PV changed from "2.0.0" to 
"2.0.1"
packages/core2-64-poky-linux/libnsl2/libnsl2-src: PKGV changed from 2.0.0 
[default] to 2.0.1 [default]
packages/core2-64-poky-linux/libnsl2/libnsl2-src: PV changed from "2.0.0" to 
"2.0.1"
packages/core2-64-poky-linux/libnsl2/libnsl2-staticdev: PKGV changed from 2.0.0 
[default] to 2.0.1 [default]
packages/core2-64-poky-linux/libnsl2/libnsl2-staticdev: PV changed from "2.0.0" 
to "2.0.1"
packages/core2-64-poky-linux/libnsl2/libnsl2: PKGV changed from 2.0.0 [default] 
to 2.0.1 [default]
packages/core2-64-poky-linux/libnsl2/libnsl2: PV changed from "2.0.0" to "2.0.1"


0001-libnsl2-upgrade-2.0.0-2.0.1.patch
Description: Binary data

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#189990): 
https://lists.openembedded.org/g/openembedded-core/message/189990
Mute This Topic: https://lists.openembedded.org/mt/102320367/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [AUH] dhcpcd: upgrading to 10.0.4 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *dhcpcd* to *10.0.4* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-dhcpcd-upgrade-10.0.3-10.0.4.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 322585aed68976ce89240bd3167e5abb5897f21f Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 05:45:07 +
Subject: [PATCH] dhcpcd: upgrade 10.0.3 -> 10.0.4

---
 .../dhcpcd/{dhcpcd_10.0.3.bb => dhcpcd_10.0.4.bb}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-connectivity/dhcpcd/{dhcpcd_10.0.3.bb => dhcpcd_10.0.4.bb} 
(97%)

diff --git a/meta/recipes-connectivity/dhcpcd/dhcpcd_10.0.3.bb 
b/meta/recipes-connectivity/dhcpcd/dhcpcd_10.0.4.bb
similarity index 97%
rename from meta/recipes-connectivity/dhcpcd/dhcpcd_10.0.3.bb
rename to meta/recipes-connectivity/dhcpcd/dhcpcd_10.0.4.bb
index cc0fb382df..fbc3e03d2d 100644
--- a/meta/recipes-connectivity/dhcpcd/dhcpcd_10.0.3.bb
+++ b/meta/recipes-connectivity/dhcpcd/dhcpcd_10.0.4.bb
@@ -17,7 +17,7 @@ SRC_URI = 
"git://github.com/NetworkConfiguration/dhcpcd;protocol=https;branch=ma
file://0001-dhcpcd.8-Fix-conflict-error-when-enable-multilib.patch \
"
 
-SRCREV = "45fb8fd8dd281d2228c7abaddff7877d27e67146"
+SRCREV = "3cb242656546acfe88f6201f8b3dbe261ffd1a3e"
 S = "${WORKDIR}/git"
 
 inherit pkgconfig autotools-brokensep systemd useradd
-- 
2.39.2

packages/core2-64-poky-linux/dhcpcd/dhcpcd-dbg: PKGV changed from 10.0.3 
[default] to 10.0.4 [default]
packages/core2-64-poky-linux/dhcpcd/dhcpcd-dbg: PKGSIZE changed from 1208048 to 
1210480 (+0%)
packages/core2-64-poky-linux/dhcpcd/dhcpcd-dbg: PV changed from "10.0.3" to 
"10.0.4"
packages/core2-64-poky-linux/dhcpcd/dhcpcd-dev: PKGV changed from 10.0.3 
[default] to 10.0.4 [default]
packages/core2-64-poky-linux/dhcpcd/dhcpcd-dev: PV changed from "10.0.3" to 
"10.0.4"
packages/core2-64-poky-linux/dhcpcd/dhcpcd-doc: PKGV changed from 10.0.3 
[default] to 10.0.4 [default]
packages/core2-64-poky-linux/dhcpcd/dhcpcd-doc: PV changed from "10.0.3" to 
"10.0.4"
packages/core2-64-poky-linux/dhcpcd/dhcpcd-locale: PKGV changed from 10.0.3 
[default] to 10.0.4 [default]
packages/core2-64-poky-linux/dhcpcd/dhcpcd-locale: PV changed from "10.0.3" to 
"10.0.4"
packages/core2-64-poky-linux/dhcpcd/dhcpcd-src: PKGV changed from 10.0.3 
[default] to 10.0.4 [default]
packages/core2-64-poky-linux/dhcpcd/dhcpcd-src: PKGSIZE changed from 1094606 to 
1096434 (+0%)
packages/core2-64-poky-linux/dhcpcd/dhcpcd-src: PV changed from "10.0.3" to 
"10.0.4"
packages/core2-64-poky-linux/dhcpcd/dhcpcd-staticdev: PKGV changed from 10.0.3 
[default] to 10.0.4 [default]
packages/core2-64-poky-linux/dhcpcd/dhcpcd-staticdev: PV changed from "10.0.3" 
to "10.0.4"
packages/core2-64-poky-linux/dhcpcd/dhcpcd: PKGV changed from 10.0.3 [default] 
to 10.0.4 [default]
packages/core2-64-poky-linux/dhcpcd/dhcpcd: PKGSIZE changed from 424220 to 
424236 (+0%)
packages/core2-64-poky-linux/dhcpcd/dhcpcd: PV changed from "10.0.3" to "10.0.4"
packages/core2-64-poky-linux/dhcpcd: PKGV changed from 10.0.3 [default] to 
10.0.4 [default]
packages/core2-64-poky-linux/dhcpcd: PV changed from "10.0.3" to "10.0.4"


0001-dhcpcd-upgrade-10.0.3-10.0.4.patch
Description: Binary data

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#189918): 
https://lists.openembedded.org/g/openembedded-core/message/189918
Mute This Topic: https://lists.openembedded.org/mt/102320293/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [AUH] python3-sphinxcontrib-applehelp: upgrading to 1.0.7 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe 
*python3-sphinxcontrib-applehelp* to *1.0.7* has Failed (devtool error).

Detailed error information:

The following devtool command failed:  upgrade python3-sphinxcontrib-applehelp 
-V 1.0.7
NOTE: Starting bitbake server...
Loading cache...done.
Loaded 1842 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-bc44915620e6572561931642eb1c41aa00fdf750"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:bc44915620e6572561931642eb1c41aa00fdf750"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 2 Local 2 Mirrors 0 Missed 0 Current 28 (100% match, 
100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 103 tasks of which 100 didn't need to be rerun 
and all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
Loading cache...done.
Loaded 1842 entries from dependency cache.
Parsing recipes...done.
Parsing of 912 .bb files complete (910 cached, 2 parsed). 1843 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-bc44915620e6572561931642eb1c41aa00fdf750"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:bc44915620e6572561931642eb1c41aa00fdf750"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 1 Local 0 Mirrors 0 Missed 1 Current 0 (0% match, 0% 
complete)
NOTE: Executing Tasks
WARNING: Failed to fetch URL 
https://files.pythonhosted.org/packages/source/s/sphinxcontrib-applehelp/sphinxcontrib-applehelp-1.0.7.tar.gz;downloadfilename=sphinxcontrib-applehelp-1.0.7.tar.gz,
 attempting MIRRORS if available
NOTE: Tasks Summary: Attempted 2 tasks of which 0 didn't need to be rerun and 1 
failed.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds

INFO: Extracting current version source...
INFO: Extracting upgraded version source...
INFO: Fetching 
https://files.pythonhosted.org/packages/source/s/sphinxcontrib-applehelp/sphinxcontrib-applehelp-1.0.7.tar.gz;downloadfilename=sphinxcontrib-applehelp-1.0.7.tar.gz...
ERROR: Fetcher failure: Fetch command export PSEUDO_DISABLED=1; export 
SSL_CERT_FILE="/home/pokybuild/yocto-worker/auh/build/buildtools/sysroots/x86_64-pokysdk-linux/etc/ssl/certs/ca-certificates.crt";
 export 
GIT_SSL_CAINFO="/home/pokybuild/yocto-worker/auh/build/buildtools/sysroots/x86_64-pokysdk-linux/etc/ssl/certs/ca-certificates.crt";
 export ftp_proxy="http://proxy.yocto.io:5187/;; export 
FTP_PROXY="http://proxy.yocto.io:5187/;; export 
PATH="/home/pokybuild/yocto-worker/auh/build/build/build/tmp/sysroots-uninative/x86_64-linux/usr/bin:/home/pokybuild/yocto-worker/auh/build/build/poky/scripts:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-74s94o3x/work/recipe-sysroot-native/usr/bin/x86_64-poky-linux:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-74s94o3x/work/recipe-sysroot/usr/bin/crossscripts:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-74s94o3x/work/recipe-sysroot-native/usr/sbin:/home/pokybuild/yocto-wor
 
ker/auh/build/build/build/tmp/work/recipetool-74s94o3x/work/recipe-sysroot-native/usr/bin:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-74s94o3x/work/recipe-sysroot-native/sbin:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-74s94o3x/work/recipe-sysroot-native/bin:/home/pokybuild/yocto-worker/auh/build/build/poky/bitbake/bin:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/hosttools";
 export HOME="/home/pokybuild"; /usr/bin/env wget -t 2 -T 30 --passive-ftp -O 
/home/pokybuild/yocto-worker/auh/build/build/build/downloads/sphinxcontrib-applehelp-1.0.7.tar.gz.tmp
 -P /home/pokybuild/yocto-worker/auh/build/build/build/downloads 
'https://files.pythonhosted.org/packages/source/s/sphinxcontrib-applehelp/sphinxcontrib-applehelp-1.0.7.tar.gz'
 --progress=dot -v failed with exit code 8, no output
ERROR: Bitbake Fetcher Error: FetchError('Unable to fetch URL from any 
source.', 

[OE-core] [AUH] python3-trove-classifiers: upgrading to 2023.10.18 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *python3-trove-classifiers* to 
*2023.10.18* has Succeeded.

Next steps:
- apply the patch: git am 
0001-python3-trove-classifiers-upgrade-2023.9.19-2023.10..patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 5b2b51a1a23982351ada4856554e0edb492a4c9f Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 09:39:13 +
Subject: [PATCH] python3-trove-classifiers: upgrade 2023.9.19 -> 2023.10.18

---
 ...ers_2023.9.19.bb => python3-trove-classifiers_2023.10.18.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-trove-classifiers_2023.9.19.bb => 
python3-trove-classifiers_2023.10.18.bb} (87%)

diff --git 
a/meta/recipes-devtools/python/python3-trove-classifiers_2023.9.19.bb 
b/meta/recipes-devtools/python/python3-trove-classifiers_2023.10.18.bb
similarity index 87%
rename from meta/recipes-devtools/python/python3-trove-classifiers_2023.9.19.bb
rename to meta/recipes-devtools/python/python3-trove-classifiers_2023.10.18.bb
index aa062f659b..b0c1b84cc5 100644
--- a/meta/recipes-devtools/python/python3-trove-classifiers_2023.9.19.bb
+++ b/meta/recipes-devtools/python/python3-trove-classifiers_2023.10.18.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/pypa/trove-classifiers;
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
 
-SRC_URI[sha256sum] = 
"3e700af445c802f251ce2b741ee78d2e5dfa5ab8115b933b89ca631b414691c9"
+SRC_URI[sha256sum] = 
"2cdfcc7f31f7ffdd57666a9957296089ac72daad4d11ab5005060e5cd7e29939"
 
 inherit pypi python_setuptools_build_meta ptest
 
-- 
2.39.2



0001-python3-trove-classifiers-upgrade-2023.9.19-2023.10..patch
Description: Binary data
packages/core2-64-poky-linux/python3-trove-classifiers: SRC_URI changed from 
"https://files.pythonhosted.org/packages/source/t/trove-classifiers/trove-classifiers-2023.9.19.tar.gz;downloadfilename=trove-classifiers-2023.9.19.tar.gz
 file://run-ptest" to 
"https://files.pythonhosted.org/packages/source/t/trove-classifiers/trove-classifiers-2023.10.18.tar.gz;downloadfilename=trove-classifiers-2023.10.18.tar.gz
 file://run-ptest"
packages/core2-64-poky-linux/python3-trove-classifiers: PKGV changed from 
2023.9.19 [default] to 2023.10.18 [default]
packages/core2-64-poky-linux/python3-trove-classifiers: PV changed from 
"2023.9.19" to "2023.10.18"
packages/core2-64-poky-linux/python3-trove-classifiers/python3-trove-classifiers-dbg:
 PKGV changed from 2023.9.19 [default] to 2023.10.18 [default]
packages/core2-64-poky-linux/python3-trove-classifiers/python3-trove-classifiers-dbg:
 PV changed from "2023.9.19" to "2023.10.18"
packages/core2-64-poky-linux/python3-trove-classifiers/python3-trove-classifiers-dev:
 PKGV changed from 2023.9.19 [default] to 2023.10.18 [default]
packages/core2-64-poky-linux/python3-trove-classifiers/python3-trove-classifiers-dev:
 PV changed from "2023.9.19" to "2023.10.18"
packages/core2-64-poky-linux/python3-trove-classifiers/python3-trove-classifiers-doc:
 PKGV changed from 2023.9.19 [default] to 2023.10.18 [default]
packages/core2-64-poky-linux/python3-trove-classifiers/python3-trove-classifiers-doc:
 PV changed from "2023.9.19" to "2023.10.18"
packages/core2-64-poky-linux/python3-trove-classifiers/python3-trove-classifiers-locale:
 PKGV changed from 2023.9.19 [default] to 2023.10.18 [default]
packages/core2-64-poky-linux/python3-trove-classifiers/python3-trove-classifiers-locale:
 PV changed from "2023.9.19" to "2023.10.18"
packages/core2-64-poky-linux/python3-trove-classifiers/python3-trove-classifiers-ptest:
 PKGV changed from 2023.9.19 [default] to 2023.10.18 [default]
packages/core2-64-poky-linux/python3-trove-classifiers/python3-trove-classifiers-ptest:
 PV changed from "2023.9.19" to "2023.10.18"
packages/core2-64-poky-linux/python3-trove-classifiers/python3-trove-classifiers-src:
 PKGV changed from 2023.9.19 [default] to 2023.10.18 [default]
packages/core2-64-poky-linux/python3-trove-classifiers/python3-trove-classifiers-src:
 PV changed from "2023.9.19" to "2023.10.18"
packages/core2-64-poky-linux/python3-trove-classifiers/python3-trove-classifiers-staticdev:
 PKGV changed from 2023.9.19 [default] to 2023.10.18 

[OE-core] [AUH] python3-cryptography: upgrading to 41.0.5 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *python3-cryptography* to 
*41.0.5* has Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 
0001-python3-cryptography-upgrade-41.0.4-41.0.5.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 4e2c9d304affe97c4e911956acb1c1f6f971dfb6 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 08:33:01 +
Subject: [PATCH] python3-cryptography: upgrade 41.0.4 -> 41.0.5

---
 .../python/python3-cryptography-crates.inc| 53 ---
 0.4.bb => python3-cryptography_41.0.5.bb} |  2 +-
 2 files changed, 1 insertion(+), 54 deletions(-)
 rename meta/recipes-devtools/python/{python3-cryptography_41.0.4.bb => 
python3-cryptography_41.0.5.bb} (95%)

diff --git a/meta/recipes-devtools/python/python3-cryptography-crates.inc 
b/meta/recipes-devtools/python/python3-cryptography-crates.inc
index da0a3f2ee8..ac112ffdad 100644
--- a/meta/recipes-devtools/python/python3-cryptography-crates.inc
+++ b/meta/recipes-devtools/python/python3-cryptography-crates.inc
@@ -57,56 +57,3 @@ SRC_URI += " \
 crate://crates.io/windows_x86_64_msvc/0.42.2 \
 "
 
-SRC_URI[Inflector-0.11.4.sha256sum] = 
"fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3"
-SRC_URI[aliasable-0.1.3.sha256sum] = 
"250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd"
-SRC_URI[asn1-0.15.2.sha256sum] = 
"28c19b9324de5b815b6487e0f8098312791b09de0dbf3d5c2db1fe2d95bab973"
-SRC_URI[asn1_derive-0.15.2.sha256sum] = 
"a045c3ccad89f244a86bd1e6cf1a7bf645296e7692698b056399b6efd4639407"
-SRC_URI[autocfg-1.1.0.sha256sum] = 
"d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
-SRC_URI[base64-0.13.1.sha256sum] = 
"9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
-SRC_URI[bitflags-1.3.2.sha256sum] = 
"bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
-SRC_URI[cc-1.0.79.sha256sum] = 
"50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
-SRC_URI[cfg-if-1.0.0.sha256sum] = 
"baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
-SRC_URI[foreign-types-0.3.2.sha256sum] = 
"f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
-SRC_URI[foreign-types-shared-0.1.1.sha256sum] = 
"00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
-SRC_URI[indoc-1.0.9.sha256sum] = 
"bfa799dd5ed20a7e349f3b4639aa80d74549c81716d9ec4f994c9b5815598306"
-SRC_URI[libc-0.2.144.sha256sum] = 
"2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1"
-SRC_URI[lock_api-0.4.9.sha256sum] = 
"435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
-SRC_URI[memoffset-0.8.0.sha256sum] = 
"d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1"
-SRC_URI[once_cell-1.17.2.sha256sum] = 
"9670a07f94779e00908f3e686eab508878ebb390ba6e604d3a284c00e8d0487b"
-SRC_URI[openssl-0.10.54.sha256sum] = 
"69b3f656a17a6cbc115b5c7a40c616947d213ba182135b014d6051b73ab6f019"
-SRC_URI[openssl-macros-0.1.1.sha256sum] = 
"a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
-SRC_URI[openssl-sys-0.9.88.sha256sum] = 
"c2ce0f250f34a308dcfdbb351f511359857d4ed2134ba715a4eadd46e1ffd617"
-SRC_URI[ouroboros-0.15.6.sha256sum] = 
"e1358bd1558bd2a083fed428ffeda486fbfb323e698cdda7794259d592ca72db"
-SRC_URI[ouroboros_macro-0.15.6.sha256sum] = 
"5f7d21ccd03305a674437ee1248f3ab5d4b1db095cf1caf49f1713ddf61956b7"
-SRC_URI[parking_lot-0.12.1.sha256sum] = 
"3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
-SRC_URI[parking_lot_core-0.9.7.sha256sum] = 
"9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
-SRC_URI[pem-1.1.1.sha256sum] = 
"a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8"
-SRC_URI[pkg-config-0.3.27.sha256sum] = 
"26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
-SRC_URI[proc-macro-error-1.0.4.sha256sum] = 
"da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
-SRC_URI[proc-macro-error-attr-1.0.4.sha256sum] = 
"a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
-SRC_URI[proc-macro2-1.0.64.sha256sum] = 
"78803b62cbf1f46fde80d7c0e803111524b9877184cfe7c3033659490ac7a7da"
-SRC_URI[pyo3-0.18.3.sha256sum] = 

[OE-core] [AUH] python3-subunit: upgrading to 1.4.3 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *python3-subunit* to *1.4.3* 
has Succeeded.

Next steps:
- apply the patch: git am 0001-python3-subunit-upgrade-1.4.2-1.4.3.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From d30a4b798d5be8f29742da2aed88138c40e19f05 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 09:37:24 +
Subject: [PATCH] python3-subunit: upgrade 1.4.2 -> 1.4.3

---
 ...unit_1.4.2.bb => python3-subunit_1.4.3.bb} | 26 +--
 1 file changed, 24 insertions(+), 2 deletions(-)
 rename meta/recipes-devtools/python/{python3-subunit_1.4.2.bb => 
python3-subunit_1.4.3.bb} (31%)

diff --git a/meta/recipes-devtools/python/python3-subunit_1.4.2.bb 
b/meta/recipes-devtools/python/python3-subunit_1.4.3.bb
similarity index 31%
rename from meta/recipes-devtools/python/python3-subunit_1.4.2.bb
rename to meta/recipes-devtools/python/python3-subunit_1.4.3.bb
index a018ef1dc8..6558d31aec 100644
--- a/meta/recipes-devtools/python/python3-subunit_1.4.2.bb
+++ b/meta/recipes-devtools/python/python3-subunit_1.4.3.bb
@@ -1,12 +1,34 @@
+# FIXME: the LIC_FILES_CHKSUM values have been updated by 'devtool upgrade'.
+# The following is the difference between the old and the new license text.
+# Please update the LICENSE value if needed, and summarize the changes in
+# the commit message via 'License-Update:' tag.
+# (example: 'License-Update: copyright years updated.')
+#
+# The changes:
+#
+# --- README.rst
+# +++ README.rst
+# @@ -15,6 +15,6 @@
+#  
+#See the COPYING file for full details on the licensing of Subunit.
+#  
+# -  subunit reuses iso8601 by Michael Twomey, distributed under an MIT style
+# -  licence - see python/iso8601/LICENSE for details.
+# +Subunit
+# +---
+#  
+# 
+#
+
 SUMMARY = "Python implementation of subunit test streaming protocol"
 HOMEPAGE = "https://pypi.org/project/python-subunit/;
 SECTION = "devel/python"
 LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = 
"file://README.rst;beginline=1;endline=20;md5=909c08e291647fd985fbe5d9836d51b6"
+LIC_FILES_CHKSUM = 
"file://README.rst;beginline=1;endline=20;md5=571e2d702e247b9d8a7745b3b54315ed"
 
 PYPI_PACKAGE = "python-subunit"
 
-SRC_URI[sha256sum] = 
"2988d324d55ec35dd037e502e3f74ac38f4e457bd44ee0edf5e898f7ee1134d4"
+SRC_URI[sha256sum] = 
"9ee76092d5b0a02055219763f1aa9e28835f2dd722f03ea9fd8d68e4066b3378"
 
 inherit pypi setuptools3
 
-- 
2.39.2



0001-python3-subunit-upgrade-1.4.2-1.4.3.patch
Description: Binary data
packages/core2-64-poky-linux/python3-subunit: PV changed from "1.4.2" to "1.4.3"
packages/core2-64-poky-linux/python3-subunit: PKGV changed from 1.4.2 [default] 
to 1.4.3 [default]
packages/core2-64-poky-linux/python3-subunit: SRC_URI changed from 
"https://files.pythonhosted.org/packages/source/p/python-subunit/python-subunit-1.4.2.tar.gz;downloadfilename=python-subunit-1.4.2.tar.gz;
 to 
"https://files.pythonhosted.org/packages/source/p/python-subunit/python-subunit-1.4.3.tar.gz;downloadfilename=python-subunit-1.4.3.tar.gz;
packages/core2-64-poky-linux/python3-subunit/python3-subunit-dbg: PV changed 
from "1.4.2" to "1.4.3"
packages/core2-64-poky-linux/python3-subunit/python3-subunit-dbg: PKGV changed 
from 1.4.2 [default] to 1.4.3 [default]
packages/core2-64-poky-linux/python3-subunit/python3-subunit-dev: PV changed 
from "1.4.2" to "1.4.3"
packages/core2-64-poky-linux/python3-subunit/python3-subunit-dev: PKGV changed 
from 1.4.2 [default] to 1.4.3 [default]
packages/core2-64-poky-linux/python3-subunit/python3-subunit-doc: PV changed 
from "1.4.2" to "1.4.3"
packages/core2-64-poky-linux/python3-subunit/python3-subunit-doc: PKGV changed 
from 1.4.2 [default] to 1.4.3 [default]
packages/core2-64-poky-linux/python3-subunit/python3-subunit-locale: PV changed 
from "1.4.2" to "1.4.3"
packages/core2-64-poky-linux/python3-subunit/python3-subunit-locale: PKGV 
changed from 1.4.2 [default] to 1.4.3 [default]
packages/core2-64-poky-linux/python3-subunit/python3-subunit-src: PV changed 
from "1.4.2" to "1.4.3"
packages/core2-64-poky-linux/python3-subunit/python3-subunit-src: PKGV changed 
from 1.4.2 [default] to 1.4.3 [default]
packages/core2-64-poky-linux/python3-subunit/python3-subunit-staticdev: PV 
changed from "1.4.2" to "1.4.3"

[OE-core] [AUH] python3-pytest: upgrading to 7.4.3 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *python3-pytest* to *7.4.3* 
has Succeeded.

Next steps:
- apply the patch: git am 0001-python3-pytest-upgrade-7.4.2-7.4.3.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 5bea64d30175d805fc46d05d635459d5307ff0ec Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 09:26:13 +
Subject: [PATCH] python3-pytest: upgrade 7.4.2 -> 7.4.3

---
 .../python/{python3-pytest_7.4.2.bb => python3-pytest_7.4.3.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-pytest_7.4.2.bb => 
python3-pytest_7.4.3.bb} (93%)

diff --git a/meta/recipes-devtools/python/python3-pytest_7.4.2.bb 
b/meta/recipes-devtools/python/python3-pytest_7.4.3.bb
similarity index 93%
rename from meta/recipes-devtools/python/python3-pytest_7.4.2.bb
rename to meta/recipes-devtools/python/python3-pytest_7.4.3.bb
index 710aa51716..6fa0febd88 100644
--- a/meta/recipes-devtools/python/python3-pytest_7.4.2.bb
+++ b/meta/recipes-devtools/python/python3-pytest_7.4.3.bb
@@ -5,7 +5,7 @@ DESCRIPTION = "The pytest framework makes it easy to write 
small tests, yet scal
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=bd27e41b6550fe0fc45356d1d81ee37c"
 
-SRC_URI[sha256sum] = 
"a766259cfab564a2ad52cb1aae1b881a75c3eb7e34ca3779697c23ed47c47069"
+SRC_URI[sha256sum] = 
"d989d136982de4e3b29dabcc838ad581c64e8ed52c11fbe86ddebd9da0818cd5"
 
 DEPENDS += "python3-setuptools-scm-native"
 
-- 
2.39.2

packages/core2-64-poky-linux/python3-pytest: SRC_URI changed from 
"https://files.pythonhosted.org/packages/source/p/pytest/pytest-7.4.2.tar.gz;downloadfilename=pytest-7.4.2.tar.gz;
 to 
"https://files.pythonhosted.org/packages/source/p/pytest/pytest-7.4.3.tar.gz;downloadfilename=pytest-7.4.3.tar.gz;
packages/core2-64-poky-linux/python3-pytest: PKGV changed from 7.4.2 [default] 
to 7.4.3 [default]
packages/core2-64-poky-linux/python3-pytest: PV changed from "7.4.2" to "7.4.3"
packages/core2-64-poky-linux/python3-pytest/python3-pytest-dbg: PKGV changed 
from 7.4.2 [default] to 7.4.3 [default]
packages/core2-64-poky-linux/python3-pytest/python3-pytest-dbg: PV changed from 
"7.4.2" to "7.4.3"
packages/core2-64-poky-linux/python3-pytest/python3-pytest-dev: PKGV changed 
from 7.4.2 [default] to 7.4.3 [default]
packages/core2-64-poky-linux/python3-pytest/python3-pytest-dev: PV changed from 
"7.4.2" to "7.4.3"
packages/core2-64-poky-linux/python3-pytest/python3-pytest-doc: PKGV changed 
from 7.4.2 [default] to 7.4.3 [default]
packages/core2-64-poky-linux/python3-pytest/python3-pytest-doc: PV changed from 
"7.4.2" to "7.4.3"
packages/core2-64-poky-linux/python3-pytest/python3-pytest-locale: PKGV changed 
from 7.4.2 [default] to 7.4.3 [default]
packages/core2-64-poky-linux/python3-pytest/python3-pytest-locale: PV changed 
from "7.4.2" to "7.4.3"
packages/core2-64-poky-linux/python3-pytest/python3-pytest-src: PKGV changed 
from 7.4.2 [default] to 7.4.3 [default]
packages/core2-64-poky-linux/python3-pytest/python3-pytest-src: PV changed from 
"7.4.2" to "7.4.3"
packages/core2-64-poky-linux/python3-pytest/python3-pytest-staticdev: PKGV 
changed from 7.4.2 [default] to 7.4.3 [default]
packages/core2-64-poky-linux/python3-pytest/python3-pytest-staticdev: PV 
changed from "7.4.2" to "7.4.3"
packages/core2-64-poky-linux/python3-pytest/python3-pytest: PKGV changed from 
7.4.2 [default] to 7.4.3 [default]
packages/core2-64-poky-linux/python3-pytest/python3-pytest: PKGSIZE changed 
from 2671928 to 2675091 (+0%)
packages/core2-64-poky-linux/python3-pytest/python3-pytest: PV changed from 
"7.4.2" to "7.4.3"
Changes to packages/core2-64-poky-linux/python3-pytest (sysroot):
  /usr/lib/python3.11/site-packages/pytest-7.4.2.dist-info moved to 
/usr/lib/python3.11/site-packages/pytest-7.4.3.dist-info
Changes to packages/core2-64-poky-linux/python3-pytest (sysroot):
  /usr/lib/python3.11/site-packages/pytest-7.4.2.dist-info moved to 
/usr/lib/python3.11/site-packages/pytest-7.4.3.dist-info


0001-python3-pytest-upgrade-7.4.2-7.4.3.patch
Description: Binary data

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#189957): 

[OE-core] [AUH] rpm: upgrading to 4.19.0 FAILED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *rpm* to *4.19.0* has Failed 
(devtool error).

Detailed error information:

Running 'devtool upgrade' for recipe rpm failed.
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)... (09:45:07.964747)
Loading cache...done.
Loaded 1843 entries from dependency cache.
Removing 1 recipes from the x86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-6e38f57c8f0bc68ea564765af10ac63d64160ab3"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:6e38f57c8f0bc68ea564765af10ac63d64160ab3"
workspace= "master:3a7b408178439482d49d573113cc61a69fb28147"

Initialising tasks...done.
Sstate summary: Wanted 2 Local 2 Mirrors 0 Missed 0 Current 28 (100% match, 
100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 103 tasks of which 100 didn't need to be rerun 
and all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
INFO: Extracting current version source...
INFO: Extracting upgraded version source...
INFO: Rebasing devtool onto 66ac70a597ba95517dfb8495e9e1a9ef254c37ea
WARNING: Command 'git rebase 66ac70a597ba95517dfb8495e9e1a9ef254c37ea' failed:
Auto-merging python/header-py.c
CONFLICT (content): Merge conflict in python/header-py.c
Auto-merging python/rpmds-py.c
CONFLICT (content): Merge conflict in python/rpmds-py.c
CONFLICT (modify/delete): python/rpmfi-py.c deleted in HEAD and modified in 
84cda9af2 (Add bunch of deprecation/obsoletion warnings to python bindings).  
Version 84cda9af2 (Add bunch of deprecation/obsoletion warnings to python 
bindings) of python/rpmfi-py.c left in tree.
Auto-merging python/rpmmodule.c
CONFLICT (content): Merge conflict in python/rpmmodule.c
Auto-merging python/rpmts-py.c
CONFLICT (content): Merge conflict in python/rpmts-py.c

You will need to resolve conflicts in order to complete the upgrade.
INFO: Upgraded source extracted to 
/home/pokybuild/yocto-worker/auh/build/build/build/workspace/sources/rpm
INFO: New recipe is 
/home/pokybuild/yocto-worker/auh/build/build/build/workspace/recipes/rpm/rpm_4.19.0.bb



Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#189969): 
https://lists.openembedded.org/g/openembedded-core/message/189969
Mute This Topic: https://lists.openembedded.org/mt/102320345/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [AUH] python3-ruamel-yaml: upgrading to 0.18.3 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *python3-ruamel-yaml* to 
*0.18.3* has Succeeded.

Next steps:
- apply the patch: git am 
0001-python3-ruamel-yaml-upgrade-0.17.35-0.18.3.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 8afa914789b45eda17b2160be34bd24a8fc6492c Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 09:27:51 +
Subject: [PATCH] python3-ruamel-yaml: upgrade 0.17.35 -> 0.18.3

---
 ...on3-ruamel-yaml_0.17.35.bb => python3-ruamel-yaml_0.18.3.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-ruamel-yaml_0.17.35.bb => 
python3-ruamel-yaml_0.18.3.bb} (85%)

diff --git a/meta/recipes-devtools/python/python3-ruamel-yaml_0.17.35.bb 
b/meta/recipes-devtools/python/python3-ruamel-yaml_0.18.3.bb
similarity index 85%
rename from meta/recipes-devtools/python/python3-ruamel-yaml_0.17.35.bb
rename to meta/recipes-devtools/python/python3-ruamel-yaml_0.18.3.bb
index 1760fec7ee..0ec804667a 100644
--- a/meta/recipes-devtools/python/python3-ruamel-yaml_0.17.35.bb
+++ b/meta/recipes-devtools/python/python3-ruamel-yaml_0.18.3.bb
@@ -8,7 +8,7 @@ PYPI_PACKAGE = "ruamel.yaml"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = 
"801046a9caacb1b43acc118969b49b96b65e8847f29029563b29ac61d02db61b"
+SRC_URI[sha256sum] = 
"36dbbe90390d977f957436570d2bd540bfd600e6ec5a1ea42bcdb9fc7963d802"
 
 RDEPENDS:${PN} += "\
 ${PYTHON_PN}-shell \
-- 
2.39.2

packages/core2-64-poky-linux/python3-ruamel-yaml: PKGV changed from 0.17.35 
[default] to 0.18.3 [default]
packages/core2-64-poky-linux/python3-ruamel-yaml: PV changed from "0.17.35" to 
"0.18.3"
packages/core2-64-poky-linux/python3-ruamel-yaml: SRC_URI changed from 
"https://files.pythonhosted.org/packages/source/r/ruamel.yaml/ruamel.yaml-0.17.35.tar.gz;downloadfilename=ruamel.yaml-0.17.35.tar.gz;
 to 
"https://files.pythonhosted.org/packages/source/r/ruamel.yaml/ruamel.yaml-0.18.3.tar.gz;downloadfilename=ruamel.yaml-0.18.3.tar.gz;
packages/core2-64-poky-linux/python3-ruamel-yaml/python3-ruamel-yaml-dbg: PV 
changed from "0.17.35" to "0.18.3"
packages/core2-64-poky-linux/python3-ruamel-yaml/python3-ruamel-yaml-dbg: PKGV 
changed from 0.17.35 [default] to 0.18.3 [default]
packages/core2-64-poky-linux/python3-ruamel-yaml/python3-ruamel-yaml-dev: PV 
changed from "0.17.35" to "0.18.3"
packages/core2-64-poky-linux/python3-ruamel-yaml/python3-ruamel-yaml-dev: PKGV 
changed from 0.17.35 [default] to 0.18.3 [default]
packages/core2-64-poky-linux/python3-ruamel-yaml/python3-ruamel-yaml-doc: PV 
changed from "0.17.35" to "0.18.3"
packages/core2-64-poky-linux/python3-ruamel-yaml/python3-ruamel-yaml-doc: PKGV 
changed from 0.17.35 [default] to 0.18.3 [default]
packages/core2-64-poky-linux/python3-ruamel-yaml/python3-ruamel-yaml-locale: PV 
changed from "0.17.35" to "0.18.3"
packages/core2-64-poky-linux/python3-ruamel-yaml/python3-ruamel-yaml-locale: 
PKGV changed from 0.17.35 [default] to 0.18.3 [default]
packages/core2-64-poky-linux/python3-ruamel-yaml/python3-ruamel-yaml-src: PV 
changed from "0.17.35" to "0.18.3"
packages/core2-64-poky-linux/python3-ruamel-yaml/python3-ruamel-yaml-src: PKGV 
changed from 0.17.35 [default] to 0.18.3 [default]
packages/core2-64-poky-linux/python3-ruamel-yaml/python3-ruamel-yaml-staticdev: 
PV changed from "0.17.35" to "0.18.3"
packages/core2-64-poky-linux/python3-ruamel-yaml/python3-ruamel-yaml-staticdev: 
PKGV changed from 0.17.35 [default] to 0.18.3 [default]
packages/core2-64-poky-linux/python3-ruamel-yaml/python3-ruamel-yaml: PKGSIZE 
changed from 1228939 to 1226995 (-0%)
packages/core2-64-poky-linux/python3-ruamel-yaml/python3-ruamel-yaml: PV 
changed from "0.17.35" to "0.18.3"
packages/core2-64-poky-linux/python3-ruamel-yaml/python3-ruamel-yaml: PKGV 
changed from 0.17.35 [default] to 0.18.3 [default]
Changes to packages/core2-64-poky-linux/python3-ruamel-yaml (sysroot):
  /usr/lib/python3.11/site-packages/ruamel.yaml-0.18.3.dist-info was added
  /usr/lib/python3.11/site-packages/ruamel.yaml-0.18.3.dist-info/LICENSE was 
added
  /usr/lib/python3.11/site-packages/ruamel.yaml-0.18.3.dist-info/METADATA was 
added
  /usr/lib/python3.11/site-packages/ruamel.yaml-0.18.3.dist-info/RECORD was 
added
  

[OE-core] [AUH] python3-pycairo: upgrading to 1.25.1 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *python3-pycairo* to *1.25.1* 
has Succeeded.

Next steps:
- apply the patch: git am 0001-python3-pycairo-upgrade-1.25.0-1.25.1.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 30d2fabb16fa8b1faf23de1db0043f14eadf56df Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 09:20:49 +
Subject: [PATCH] python3-pycairo: upgrade 1.25.0 -> 1.25.1

---
 .../{python3-pycairo_1.25.0.bb => python3-pycairo_1.25.1.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-pycairo_1.25.0.bb => 
python3-pycairo_1.25.1.bb} (90%)

diff --git a/meta/recipes-devtools/python/python3-pycairo_1.25.0.bb 
b/meta/recipes-devtools/python/python3-pycairo_1.25.1.bb
similarity index 90%
rename from meta/recipes-devtools/python/python3-pycairo_1.25.0.bb
rename to meta/recipes-devtools/python/python3-pycairo_1.25.1.bb
index a9e89b0f7a..1599f6d39e 100644
--- a/meta/recipes-devtools/python/python3-pycairo_1.25.0.bb
+++ b/meta/recipes-devtools/python/python3-pycairo_1.25.1.bb
@@ -13,7 +13,7 @@ DEPENDS = "cairo python3"
 SRC_URI = "${GITHUB_BASE_URI}/download/v${PV}/pycairo-${PV}.tar.gz"
 GITHUB_BASE_URI = "https://github.com/pygobject/pycairo/releases/;
 
-SRC_URI[sha256sum] = 
"37842b9bfa6339c45a5025f752e1d78d5840b1a0f82303bdd5610846ad8b5c4f"
+SRC_URI[sha256sum] = 
"7e2be4fbc3b4536f16db7a11982cbf713e75069a4d73d44fe5a49b68423f5c0c"
 
 S = "${WORKDIR}/pycairo-${PV}"
 
-- 
2.39.2



0001-python3-pycairo-upgrade-1.25.0-1.25.1.patch
Description: Binary data
packages/core2-64-poky-linux/python3-pycairo: PKGV changed from 1.25.0 
[default] to 1.25.1 [default]
packages/core2-64-poky-linux/python3-pycairo: SRC_URI changed from 
"https://github.com/pygobject/pycairo/releases//download/v1.25.0/pycairo-1.25.0.tar.gz;
 to 
"https://github.com/pygobject/pycairo/releases//download/v1.25.1/pycairo-1.25.1.tar.gz;
packages/core2-64-poky-linux/python3-pycairo: PV changed from "1.25.0" to 
"1.25.1"
packages/core2-64-poky-linux/python3-pycairo/python3-pycairo-dbg: PKGV changed 
from 1.25.0 [default] to 1.25.1 [default]
packages/core2-64-poky-linux/python3-pycairo/python3-pycairo-dbg: PV changed 
from "1.25.0" to "1.25.1"
packages/core2-64-poky-linux/python3-pycairo/python3-pycairo-dev: PKGV changed 
from 1.25.0 [default] to 1.25.1 [default]
packages/core2-64-poky-linux/python3-pycairo/python3-pycairo-dev: PV changed 
from "1.25.0" to "1.25.1"
packages/core2-64-poky-linux/python3-pycairo/python3-pycairo-doc: PKGV changed 
from 1.25.0 [default] to 1.25.1 [default]
packages/core2-64-poky-linux/python3-pycairo/python3-pycairo-doc: PV changed 
from "1.25.0" to "1.25.1"
packages/core2-64-poky-linux/python3-pycairo/python3-pycairo-locale: PKGV 
changed from 1.25.0 [default] to 1.25.1 [default]
packages/core2-64-poky-linux/python3-pycairo/python3-pycairo-locale: PV changed 
from "1.25.0" to "1.25.1"
packages/core2-64-poky-linux/python3-pycairo/python3-pycairo-src: PKGV changed 
from 1.25.0 [default] to 1.25.1 [default]
packages/core2-64-poky-linux/python3-pycairo/python3-pycairo-src: PV changed 
from "1.25.0" to "1.25.1"
packages/core2-64-poky-linux/python3-pycairo/python3-pycairo-src: PKGSIZE 
changed from 365516 to 365514 (-0%)
packages/core2-64-poky-linux/python3-pycairo/python3-pycairo-staticdev: PKGV 
changed from 1.25.0 [default] to 1.25.1 [default]
packages/core2-64-poky-linux/python3-pycairo/python3-pycairo-staticdev: PV 
changed from "1.25.0" to "1.25.1"
packages/core2-64-poky-linux/python3-pycairo/python3-pycairo: PKGV changed from 
1.25.0 [default] to 1.25.1 [default]
packages/core2-64-poky-linux/python3-pycairo/python3-pycairo: PV changed from 
"1.25.0" to "1.25.1"
packages/core2-64-poky-linux/python3-pycairo/python3-pycairo: FILELIST: removed 
"/usr/lib/python3.11/site-packages/pycairo-1.25.0.egg-info", added 
"/usr/lib/python3.11/site-packages/pycairo-1.25.1.egg-info"
Changes to packages/core2-64-poky-linux/python3-pycairo (sysroot):
  /usr/lib/python3.11/site-packages/pycairo-1.25.0.egg-info moved to 
/usr/lib/python3.11/site-packages/pycairo-1.25.1.egg-info
packages/core2-64-poky-linux/python3-pycairo/python3-pycairo: FILELIST: removed 

[OE-core] [AUH] libtest-warnings-perl: upgrading to 0.032 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *libtest-warnings-perl* to 
*0.032* has Succeeded.

Next steps:
- apply the patch: git am 
0001-libtest-warnings-perl-upgrade-0.031-0.032.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From f46a67e03b585f07340a57f70a7304353f57dca8 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 08:05:10 +
Subject: [PATCH] libtest-warnings-perl: upgrade 0.031 -> 0.032

---
 .../perl/libtest-warnings-perl_0.031.bb   |  39 ---
 .../perl/libtest-warnings-perl_0.032.bb   | 286 ++
 2 files changed, 286 insertions(+), 39 deletions(-)
 delete mode 100644 meta/recipes-devtools/perl/libtest-warnings-perl_0.031.bb
 create mode 100644 meta/recipes-devtools/perl/libtest-warnings-perl_0.032.bb

diff --git a/meta/recipes-devtools/perl/libtest-warnings-perl_0.031.bb 
b/meta/recipes-devtools/perl/libtest-warnings-perl_0.031.bb
deleted file mode 100644
index e03deaf15f..00
--- a/meta/recipes-devtools/perl/libtest-warnings-perl_0.031.bb
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright (C) 2020 Jens Rehsack 
-# Released under the MIT license (see COPYING.MIT for the terms)
-
-SUMMARY = "Test::Warnings - Test for warnings and the lack of them"
-DESCRIPTION = "If you've ever tried to use Test::NoWarnings to confirm there 
are no \
-warnings generated by your tests, combined with the convenience of \
-\\"done_testing\\" to not have to declare a test count, you'll have discovered 
\
-that these two features do not play well together, as the test count will \
-be calculated *before* the warnings test is run, resulting in a TAP error. \
-(See "examples/test_nowarnings.pl" in this distribution for a \
-demonstration.)"
-HOMEPAGE = "https://github.com/karenetheridge/Test-Warnings;
-BUGTRACKER = "https://rt.cpan.org/Public/Dist/Display.html?Name=Test-Warnings;
-SECTION = "libs"
-LICENSE = "Artistic-1.0 | GPL-1.0-or-later"
-
-LIC_FILES_CHKSUM = "file://LICENCE;md5=6f2b02f39e7d359efd9525fbc56c84a1"
-
-SRC_URI = "${CPAN_MIRROR}/authors/id/E/ET/ETHER/Test-Warnings-${PV}.tar.gz"
-
-SRC_URI[sha256sum] = 
"1e542909fef305e45563e9878ea1c3b0c7cef1b28bb7ae07eba2e1efabec477b"
-
-S = "${WORKDIR}/Test-Warnings-${PV}"
-
-inherit cpan ptest-perl
-
-RDEPENDS:${PN} += "\
-perl-module-test-builder \
-"
-
-# Many hidden dependencies and mysterious failures occur without full 
perl-modules
-RDEPENDS:${PN}-ptest += "perl-modules"
-
-do_install_ptest_perl:append () {
-cp -r ${B}/t/lib ${D}${PTEST_PATH}/t/
-chown -R root:root ${D}${PTEST_PATH}/t/lib
-}
-
-BBCLASSEXTEND = "native nativesdk"
diff --git a/meta/recipes-devtools/perl/libtest-warnings-perl_0.032.bb 
b/meta/recipes-devtools/perl/libtest-warnings-perl_0.032.bb
new file mode 100644
index 00..ff199cb63b
--- /dev/null
+++ b/meta/recipes-devtools/perl/libtest-warnings-perl_0.032.bb
@@ -0,0 +1,286 @@
+# FIXME: the LIC_FILES_CHKSUM values have been updated by 'devtool upgrade'.
+# The following is the difference between the old and the new license text.
+# Please update the LICENSE value if needed, and summarize the changes in
+# the commit message via 'License-Update:' tag.
+# (example: 'License-Update: copyright years updated.')
+#
+# The changes:
+#
+# --- LICENCE
+# +++ LICENCE
+# @@ -270,110 +270,143 @@
+#  That's all there is to it!
+#  
+#  
+#  The Artistic License 1.0 ---
+# +--- The Perl Artistic License 1.0 ---
+#  
+#  This software is Copyright (c) 2013 by Karen Etheridge.
+#  
+#  This is free software, licensed under:
+#  
+# -  The Artistic License 1.0
+# -
+# -The Artistic License
+# -
+# -Preamble
+# -
+# -The intent of this document is to state the conditions under which a Package
+# -may be copied, such that the Copyright Holder maintains some semblance of
+# -artistic control over the development of the package, while giving the 
users of
+# -the package the right to use and distribute the Package in a more-or-less
+# -customary fashion, plus the right to make reasonable modifications.
+# +  The Perl Artistic License 1.0
+# +
+# +
+# +
+# +
+# +
+# + The "Artistic License"
+# +
+# +Preamble
+# +
+# +The intent of this document is to state the conditions under which a

[OE-core] [AUH] python3-spdx-tools: upgrading to 0.8.2 SUCCEEDED

2023-11-01 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *python3-spdx-tools* to 
*0.8.2* has Succeeded.

Next steps:
- apply the patch: git am 0001-python3-spdx-tools-upgrade-0.8.1-0.8.2.patch
- check the changes to upstream patches and summarize them in the commit 
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 31b64b0025d97c3adb46e34b27c6d87d9dfcae97 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 1 Nov 2023 09:32:23 +
Subject: [PATCH] python3-spdx-tools: upgrade 0.8.1 -> 0.8.2

---
 ...{python3-spdx-tools_0.8.1.bb => python3-spdx-tools_0.8.2.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-spdx-tools_0.8.1.bb => 
python3-spdx-tools_0.8.2.bb} (88%)

diff --git a/meta/recipes-devtools/python/python3-spdx-tools_0.8.1.bb 
b/meta/recipes-devtools/python/python3-spdx-tools_0.8.2.bb
similarity index 88%
rename from meta/recipes-devtools/python/python3-spdx-tools_0.8.1.bb
rename to meta/recipes-devtools/python/python3-spdx-tools_0.8.2.bb
index f58a138430..53263ca032 100644
--- a/meta/recipes-devtools/python/python3-spdx-tools_0.8.1.bb
+++ b/meta/recipes-devtools/python/python3-spdx-tools_0.8.2.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "https://github.com/spdx/tools-python;
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=dc7f21ccff0f672f2a7cd6f412ae627d"
 
-SRC_URI[sha256sum] = 
"c83652cd65b5726058dcbdaab85839dbe484c43ea6f61046137516aa1b8428ae"
+SRC_URI[sha256sum] = 
"aea4ac9c2c375e7f439b1cef5ff32ef34914c083de0f61e08ed67cd3d9deb2a9"
 
 BBCLASSEXTEND = "native nativesdk"
 
-- 
2.39.2

packages/core2-64-poky-linux/python3-spdx-tools: PKGV changed from 0.8.1 
[default] to 0.8.2 [default]
packages/core2-64-poky-linux/python3-spdx-tools: PV changed from "0.8.1" to 
"0.8.2"
packages/core2-64-poky-linux/python3-spdx-tools: SRC_URI changed from 
"https://files.pythonhosted.org/packages/source/s/spdx-tools/spdx-tools-0.8.1.tar.gz;downloadfilename=spdx-tools-0.8.1.tar.gz;
 to 
"https://files.pythonhosted.org/packages/source/s/spdx-tools/spdx-tools-0.8.2.tar.gz;downloadfilename=spdx-tools-0.8.2.tar.gz;
packages/core2-64-poky-linux/python3-spdx-tools/python3-spdx-tools-dbg: PKGV 
changed from 0.8.1 [default] to 0.8.2 [default]
packages/core2-64-poky-linux/python3-spdx-tools/python3-spdx-tools-dbg: PV 
changed from "0.8.1" to "0.8.2"
packages/core2-64-poky-linux/python3-spdx-tools/python3-spdx-tools-dev: PKGV 
changed from 0.8.1 [default] to 0.8.2 [default]
packages/core2-64-poky-linux/python3-spdx-tools/python3-spdx-tools-dev: PV 
changed from "0.8.1" to "0.8.2"
packages/core2-64-poky-linux/python3-spdx-tools/python3-spdx-tools-doc: PKGV 
changed from 0.8.1 [default] to 0.8.2 [default]
packages/core2-64-poky-linux/python3-spdx-tools/python3-spdx-tools-doc: PV 
changed from "0.8.1" to "0.8.2"
packages/core2-64-poky-linux/python3-spdx-tools/python3-spdx-tools-locale: PKGV 
changed from 0.8.1 [default] to 0.8.2 [default]
packages/core2-64-poky-linux/python3-spdx-tools/python3-spdx-tools-locale: PV 
changed from "0.8.1" to "0.8.2"
packages/core2-64-poky-linux/python3-spdx-tools/python3-spdx-tools-src: PKGV 
changed from 0.8.1 [default] to 0.8.2 [default]
packages/core2-64-poky-linux/python3-spdx-tools/python3-spdx-tools-src: PV 
changed from "0.8.1" to "0.8.2"
packages/core2-64-poky-linux/python3-spdx-tools/python3-spdx-tools-staticdev: 
PKGV changed from 0.8.1 [default] to 0.8.2 [default]
packages/core2-64-poky-linux/python3-spdx-tools/python3-spdx-tools-staticdev: 
PV changed from "0.8.1" to "0.8.2"
packages/core2-64-poky-linux/python3-spdx-tools/python3-spdx-tools: PKGV 
changed from 0.8.1 [default] to 0.8.2 [default]
packages/core2-64-poky-linux/python3-spdx-tools/python3-spdx-tools: PV changed 
from "0.8.1" to "0.8.2"
packages/core2-64-poky-linux/python3-spdx-tools/python3-spdx-tools: PKGSIZE 
changed from 1664188 to 1666903 (+0%)
Loading cache...done.
Loaded 0 entries from dependency cache.
Parsing recipes...done.
Parsing of 911 .bb files complete (0 cached, 911 parsed). 1843 targets, 67 
skipped, 0 masked, 0 errors.
Removing 1 recipes from the cortexa15t2hf-neon sysroot...done.
Removing 1 recipes from the qemuarm sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.6.0"
BUILD_SYS= "x86_64-linux"

  1   2   >