Re: [OE-core][PATCH v2] glibc: correct license

2024-05-15 Thread Martin Jansa
Hi Peter,

what about BSD-4-Clause-UC, BSD-3-Clause, ISC licenses included in glibc.

I've suggested to add them long time ago in:
https://lists.openembedded.org/g/openembedded-core/topic/91285771#msg166005
which resulted in:
https://sourceware.org/bugzilla/show_bug.cgi?id=28007
https://sourceware.org/pipermail/libc-alpha/2022-May/139167.html
but the discussion upstream stopped shortly after and the oe-core
change was never merged because of that. Maybe it's time to re-check
and ping upstream again after 2 years.

Cheers,

On Mon, May 6, 2024 at 9:46 AM Peter Marko via lists.openembedded.org
 wrote:
>
> From: Peter Marko 
>
> The license per [1] is LGPL-2.1-or-later and
> [2] converted last LGPL-2.1-only references.
>
> License-Update: corrected from LGPL-2.1-only to LGPL-2.1-or-later based on 
> [1] and [2]
>
> [1] https://www.gnu.org/software/libc/
> [2] 
> https://sourceware.org/git/?p=glibc.git;a=commitdiff;h=273a835fe7c685cc54266bb8b502787bad5e9bae
>
> Signed-off-by: Peter Marko 
> ---
>  meta/recipes-core/glibc/glibc-common.inc | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta/recipes-core/glibc/glibc-common.inc 
> b/meta/recipes-core/glibc/glibc-common.inc
> index b9516e77f0..91a3f5bcd5 100644
> --- a/meta/recipes-core/glibc/glibc-common.inc
> +++ b/meta/recipes-core/glibc/glibc-common.inc
> @@ -2,7 +2,7 @@ SUMMARY = "GLIBC (GNU C Library)"
>  DESCRIPTION = "The GNU C Library is used as the system C library in most 
> systems with the Linux kernel."
>  HOMEPAGE = "http://www.gnu.org/software/libc/libc.html;
>  SECTION = "libs"
> -LICENSE = "GPL-2.0-only & LGPL-2.1-only"
> +LICENSE = "GPL-2.0-only & LGPL-2.1-or-later"
>
>  LIC_FILES_CHKSUM ?= "file://LICENSES;md5=f77e878d320e99e94ae9a4aea7f491d1 \
>file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
> --
> 2.30.2
>
>
> 
>

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#199437): 
https://lists.openembedded.org/g/openembedded-core/message/199437
Mute This Topic: https://lists.openembedded.org/mt/105935723/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] kexec-tools: Fix build with GCC-14 on musl

2024-05-15 Thread Khem Raj
Signed-off-by: Khem Raj 
---
 ...linux-setup.c-Use-POSIX-basename-API.patch | 54 +++
 .../kexec/kexec-tools_2.0.28.bb   |  1 +
 2 files changed, 55 insertions(+)
 create mode 100644 
meta/recipes-kernel/kexec/kexec-tools/0001-x86-linux-setup.c-Use-POSIX-basename-API.patch

diff --git 
a/meta/recipes-kernel/kexec/kexec-tools/0001-x86-linux-setup.c-Use-POSIX-basename-API.patch
 
b/meta/recipes-kernel/kexec/kexec-tools/0001-x86-linux-setup.c-Use-POSIX-basename-API.patch
new file mode 100644
index 000..e223f45998c
--- /dev/null
+++ 
b/meta/recipes-kernel/kexec/kexec-tools/0001-x86-linux-setup.c-Use-POSIX-basename-API.patch
@@ -0,0 +1,54 @@
+From 32c8ffa7ace6f1b7e63f9ddffab00b00c36a7b57 Mon Sep 17 00:00:00 2001
+From: Khem Raj 
+Date: Wed, 15 May 2024 21:18:08 -0700
+Subject: [PATCH] x86-linux-setup.c: Use POSIX basename API
+
+Musl C library only supports POSIX basename function. while glibc has
+both GNU extention as well as POSIX basename implemented. Switch to
+using posix version, so it can work across musl and glibc
+
+basename prototype has been removed from string.h from latest musl [1]
+compilers e.g. clang-18/GCC-14 flags the absense of prototype as error.
+therefore include libgen.h for providing it.
+
+[1] 
https://git.musl-libc.org/cgit/musl/commit/?id=725e17ed6dff4d0cd22487bb64470881e86a92e7
+
+Upstream-Status: Submitted 
[https://lists.infradead.org/pipermail/kexec/2024-May/030034.html]
+Signed-off-by: Khem Raj 
+---
+ kexec/arch/i386/x86-linux-setup.c | 9 ++---
+ 1 file changed, 6 insertions(+), 3 deletions(-)
+
+diff --git a/kexec/arch/i386/x86-linux-setup.c 
b/kexec/arch/i386/x86-linux-setup.c
+index 9a281dc..73251b9 100644
+--- a/kexec/arch/i386/x86-linux-setup.c
 b/kexec/arch/i386/x86-linux-setup.c
+@@ -14,6 +14,7 @@
+  *
+  */
+ #define _GNU_SOURCE
++#include 
+ #include 
+ #include 
+ #include 
+@@ -329,12 +330,14 @@ static int add_edd_entry(struct x86_linux_param_header 
*real_mode,
+   memset(edd_info, 0, sizeof(struct edd_info));
+ 
+   /* extract the device number */
+-  if (sscanf(basename(sysfs_name), "int13_dev%hhx", ) != 1) {
++  char* sysfs_name_copy = strdup(sysfs_name);
++  if (sscanf(basename(sysfs_name_copy), "int13_dev%hhx", ) != 1) {
+   fprintf(stderr, "Invalid format of int13_dev dir "
+-  "entry: %s\n", basename(sysfs_name));
++  "entry: %s\n", basename(sysfs_name_copy));
++  free(sysfs_name_copy);
+   return -1;
+   }
+-
++  free(sysfs_name_copy);
+   /* if there's a MBR signature, then add it */
+   if (file_scanf(sysfs_name, "mbr_signature", "0x%x", _sig) == 1) {
+   real_mode->edd_mbr_sig_buffer[*current_mbr] = mbr_sig;
+-- 
+2.45.1
+
diff --git a/meta/recipes-kernel/kexec/kexec-tools_2.0.28.bb 
b/meta/recipes-kernel/kexec/kexec-tools_2.0.28.bb
index c39fff834d0..b60c51df4a1 100644
--- a/meta/recipes-kernel/kexec/kexec-tools_2.0.28.bb
+++ b/meta/recipes-kernel/kexec/kexec-tools_2.0.28.bb
@@ -18,6 +18,7 @@ SRC_URI = 
"${KERNELORG_MIRROR}/linux/utils/kernel/kexec/kexec-tools-${PV}.tar.gz
file://0005-Disable-PIE-during-link.patch \

file://0001-arm64-kexec-disabled-check-if-kaslr-seed-dtb-propert.patch \
file://Fix-building-on-x86_64-with-binutils-2.41.patch \
+   file://0001-x86-linux-setup.c-Use-POSIX-basename-API.patch \
"
 
 SRC_URI[sha256sum] = 
"f33d2660b3e38d25a127e87097978e0f7a9a73ab5151a29eb80974d169ff6a29"
-- 
2.45.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#199436): 
https://lists.openembedded.org/g/openembedded-core/message/199436
Mute This Topic: https://lists.openembedded.org/mt/106129045/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 v4] ipk/rootfs: run sanity test of multilib in parallel

2024-05-15 Thread Seungkyun Kim
From: "seungkyun.kim" 

For multilib type packages, there is an additional temporary
installation before the actual installation. It makes almost doubles
the do_rootfs time if having many multilib type packages.
To avoid this overhead, run sanity test in parallel.
Installing package groups through opkg takes much more time than
copying directory.

- Changes in V2:
Fix FileNotFoundError exception when copying rootfs
- Changes in V3:
Removed unnecessary test call
- Changes in V4:
Fix invalid argument when create Process
Keep the temporary rootfs directory after sanity check

Signed-off-by: seungkyun.kim 
---
 meta/lib/oe/package_manager/ipk/rootfs.py | 34 +--
 1 file changed, 32 insertions(+), 2 deletions(-)

diff --git a/meta/lib/oe/package_manager/ipk/rootfs.py 
b/meta/lib/oe/package_manager/ipk/rootfs.py
index ba93eb62ea..a3842a6264 100644
--- a/meta/lib/oe/package_manager/ipk/rootfs.py
+++ b/meta/lib/oe/package_manager/ipk/rootfs.py
@@ -6,7 +6,9 @@
 
 import re
 import filecmp
+import multiprocessing
 import shutil
+import stat
 from oe.rootfs import Rootfs
 from oe.manifest import Manifest
 from oe.utils import execute_pre_post_process
@@ -197,11 +199,34 @@ class PkgRootfs(DpkgOpkgRootfs):
 files[key] = item
 
 def _multilib_test_install(self, pkgs):
+def _copy_rootfs(src, dst):
+if os.path.islink(src):
+linkto = os.readlink(src)
+if os.path.isabs(linkto):
+linkto = 
os.path.normpath(os.path.join(os.path.dirname(dst),
+   
os.path.relpath(linkto, src)))
+os.symlink(linkto, dst)
+elif os.path.isfile(src):
+shutil.copy2(src, dst)
+elif stat.S_ISFIFO(os.stat(src).st_mode):
+os.mkfifo(dst)
+else:
+bb.warn("Skip unsupported file type: %s" % src)
+
 ml_temp = self.d.getVar("MULTILIB_TEMP_ROOTFS")
+rootfs_temp = os.path.join(ml_temp, "rootfs")
 bb.utils.mkdirhier(ml_temp)
+bb.utils.remove(rootfs_temp, True)
 
-dirs = [self.image_rootfs]
+if os.path.exists(self.image_rootfs):
+shutil.copytree(self.image_rootfs, rootfs_temp, 
copy_function=_copy_rootfs)
+else:
+bb.utils.mkdirhier(rootfs_temp)
+dirs = [rootfs_temp]
+return multiprocessing.Process(target=self._multilib_test_pkg_install,
+   args=(pkgs, ml_temp, dirs,))
 
+def _multilib_test_pkg_install(self, pkgs, ml_temp, dirs):
 for variant in self.d.getVar("MULTILIB_VARIANTS").split():
 ml_target_rootfs = os.path.join(ml_temp, variant)
 
@@ -300,15 +325,20 @@ class PkgRootfs(DpkgOpkgRootfs):
 
 for pkg_type in self.install_order:
 if pkg_type in pkgs_to_install:
+sanity_test = None
 # For multilib, we perform a sanity test before final install
 # If sanity test fails, it will automatically do a bb.fatal()
 # and the installation will stop
 if pkg_type == Manifest.PKG_TYPE_MULTILIB:
-self._multilib_test_install(pkgs_to_install[pkg_type])
+sanity_test= 
self._multilib_test_install(pkgs_to_install[pkg_type])
+sanity_test.start()
 
 self.pm.install(pkgs_to_install[pkg_type],
 [False, True][pkg_type == 
Manifest.PKG_TYPE_ATTEMPT_ONLY])
 
+if sanity_test is not None:
+sanity_test.join()
+
 if self.progress_reporter:
 self.progress_reporter.next_stage()
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#199435): 
https://lists.openembedded.org/g/openembedded-core/message/199435
Mute This Topic: https://lists.openembedded.org/mt/106125799/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] [PATCH v8 0/3] pkg-database and systemd-sysext image

2024-05-15 Thread Johannes Schneider via lists.openembedded.org
Hoi Alexandre,


and thanks again for patiently pointing out the autobuilder problems :-)

"only" the test_image_gen_pkgdbfs_{ipk,deb,rpm} fail, the 
test_image_use_pkgdbfs succeeds

picking apart the yocto-autobuilder-helper/config.json showed the difference: 
basically all oe-selftest-* use
 "MACHINE" : "qemux86-64"
**but** oe-selftest-armhost sets:
"MACHINE": "qemuarm64"

the test_image_gen_pkgdbfs_ checks to sanity check the packagamanager state 
looked for a "kernel-image" package in the listing... but for quemuarm64 
"packagegroup-core-boot" replaces that

v9 of the patchstack adapts that particular assert(s) to look for either the 
kernel-image or core-boot depending on the set MACHINE


gruß
Johannes


From: Alexandre Belloni 
Sent: Wednesday, May 15, 2024 21:09
To: SCHNEIDER Johannes
Cc: openembedded-core@lists.openembedded.org; 
richard.pur...@linuxfoundation.org; alex.kana...@gmail.com
Subject: Re: [OE-core] [PATCH v8 0/3] pkg-database and systemd-sysext image

This email is not from Hexagon’s Office 365 instance. Please be careful while 
clicking links, opening attachments, or replying to this email.


Hello,

It seems that this reliably fails oe-selftest-armhost. I didn't really
pay attention until now beause we had other issues but in this build,
those are the only failing tests:

https://autobuilder.yoctoproject.org/typhoon/#/builders/127/builds/3322/steps/15/logs/stdio

On 12/05/2024 08:31:56+0200, Johannes Schneider via lists.openembedded.org 
wrote:
> systemd-sysext allows to overlay another image (or multiple) ontop of
> a "base-image" = the current rootfs, via the use of overlayfs; to add
> tools and features meant for development purposes.
>
> To quote the documentation on systemd-sysext:
> " ...addition in order to make debugging/development easier). System
> extension images should not be misunderstood as a generic software
> packaging framework, ..."
>
> To build a lean image, that only holds packages that are not already
> part of the base-image, a snapshot of the package-database is taken
> after the installation of the base-rootfs is done, and picked up again
> when collecting the rootfs of such a extension image.
>
> with all this in place an example usage could look like this:
> some-core-image.bb
>   inherit core-image
>   IMAGE_GEN_PKGDBFS = "1"
>
> extending-image.bb
>   inherit image-sysext
>   IMAGE_FSTYPES = "squashfs"
>   IMAGE_BASE_PKGDB = "some-core-image"
>   # the above pointing at a package-db similar to:
>   # 
> build/deploy/images/$MACHINE/some-core-image-$MACHINE-20240210172305-pkgdb.rootfs.tar.gz
>
> then on the device, running some-core-image, with the extension image placed 
> at FN:
> $> ln -s "$FN" /run/extensions/$(basename $FN).raw
> $> systemd-sysext list
> $> SYSTEMD_LOG_LEVEL=debug systemd-sysext merge
>
> As long as the VERSION_ID of the extension image matches the os-release
> in the base image, the above commands return sucessfully;
> for details on the compativility check see the docs for systemd-sysext.
>
> =
>
> changes with v2:
> rebase from 'kirkstone' onto 'master'
>
> changes with v3:
>   incorporate review suggestions for simplification
>   add task dependency handling
>   add oe-selftest for the pkgdb handling
>   add variable documentation and
>   some more comments, and examples in the commit-msg
>
> changes with v4:
>   rebase onto 'master' => no functional changes
>   fixed patchtest findings
>
> changes with v5:
> rebase onto 'master'
>   add '.sysext' to the deployed symlink name
> sidenote on the tests and autobuilder failure: run locally they 
> succeed, e.g.:
>   #> oe-selftest --verbose -r 
> imagefeatures.ImageFeatures.test_image_gen_pkgdbfs
>
> changes with v6:
>   tests: restructure to call 'bitbake' only once in the testcase itself
> (in hopes of solving the autobuilder problem; local test runs succeed)
>
> changes with v7:
> tests: undo the restructuring of done in v6, in favour of explicitly 
> forcing steps:
> '-c rootfs -f'.  since concurrency of the autobuilder, and reusing 
> artifacts/sstate-caching is probably the issue?
>
> changes with v8:
> tests: fixed missing feature=PACKAGE_CLASSES during 
> 'test_image_gen_pkgdbfs'
>  which is now split into three, one for each of the three available 
> packagemanager: ipk, deb, rpm

>
> 
>


--
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com/

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#199434): 
https://lists.openembedded.org/g/openembedded-core/message/199434
Mute This Topic: https://lists.openembedded.org/mt/106051545/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 v9 3/3] classes: add a systemd-sysext image class

2024-05-15 Thread Johannes Schneider via lists.openembedded.org
systemd-sysext can load a raw-image containing usr/ and opt/ folders
to mount them as RO overlay over the rootfs, to "extend" the systems.

This class provides the necessary changes/additions to the enclosed
file-system so that systemd-sysext accepts the extension for "merge"
into the rootfs.

With such an created image, placed into the correct folder (see [1]),
`systemd-sysext list` should be able to list the "extension" and
`systemd-sysext merge` should enable the overlay. On both commands a
preceding "SYSTEMD_LOG_LEVEL=debug" can aide in figuring out what is
amiss.

The strict name checking systemd-sysext does against the name of
extension-release.NAME file, is disabled, as there is only one such in
the resulting image. This is done to allow a user to freely rename the
resulting image file.
Note that for e.g. squashfs, the kernel needs CONFIG_SQUASHFS_XATTR=y

Link: 
https://www.freedesktop.org/software/systemd/man/latest/systemd-sysext.html
Link: 
https://0pointer.net/blog/testing-my-system-code-in-usr-without-modifying-usr.html
Signed-off-by: Johannes Schneider 
---
 meta/classes-recipe/image-sysext.bbclass | 43 
 1 file changed, 43 insertions(+)
 create mode 100644 meta/classes-recipe/image-sysext.bbclass

diff --git a/meta/classes-recipe/image-sysext.bbclass 
b/meta/classes-recipe/image-sysext.bbclass
new file mode 100644
index 00..bc3e4d52b5
--- /dev/null
+++ b/meta/classes-recipe/image-sysext.bbclass
@@ -0,0 +1,43 @@
+# SPDX-License-Identifier: MIT
+#
+# Copyright Leica Geosystems AG
+#
+
+# systemd-sysext [1] has a simple mechanism for version compatibility:
+# the extension to be loaded has to contain a
+# /usr/lib/extension-release.d/extension-release.NAME
+# with "NAME" *exactly* matching the filename of the extensions
+# raw-device filename/
+#
+# from the extension-release file the "ID" and "VERSION_ID" fields are
+# matched against the etc/os-release and the extension is only "merged"
+# if no mismatches between NAME, ID, and VERSION_ID.
+#
+# Link: 
https://www.freedesktop.org/software/systemd/man/latest/systemd-sysext.html
+
+inherit image
+
+IMAGE_NAME_SUFFIX = ".sysext"
+EXTENSION_NAME = "${IMAGE_NAME}${IMAGE_NAME_SUFFIX}.${IMAGE_FSTYPES}"
+IMAGE_LINK_NAME:append = ".sysext"
+
+DEPENDS += " os-release"
+
+sysext_image_mangle_rootfs() {
+R=${IMAGE_ROOTFS}
+
+# pull a copy of the rootfs version information, which systemd-sysext 
matches against
+cp -av ${RECIPE_SYSROOT}/${nonarch_libdir}/os-release 
${WORKDIR}/extension-release.base
+
+echo 'EXTENSION_RELOAD_MANAGER=1' >> ${WORKDIR}/extension-release.base
+
+install -d $R${nonarch_libdir}/extension-release.d
+install -m 0644 ${WORKDIR}/extension-release.base \
+
$R${nonarch_libdir}/extension-release.d/extension-release.${EXTENSION_NAME}
+
+# disable systemd-sysext's strict name checking, so that the image file 
can be renamed, while still being 'merge'-able
+setfattr -n user.extension-release.strict -v false \
+
$R${nonarch_libdir}/extension-release.d/extension-release.${EXTENSION_NAME}
+}
+
+ROOTFS_POSTPROCESS_COMMAND += " sysext_image_mangle_rootfs; "
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#199433): 
https://lists.openembedded.org/g/openembedded-core/message/199433
Mute This Topic: https://lists.openembedded.org/mt/106124370/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 v9 2/3] image.bbclass/rootfs: set and unpack package-database

2024-05-15 Thread Johannes Schneider via lists.openembedded.org
set the package-database of a "lower image" to unpack and build upon
when installing packages for the current image. This way a lean image
will be created, which only holds the packages that are not already
present in the lower image.

An image build such could then be used with overlayfs or systemd-
sysext to extend the "lower image" on demand; for development purposes
on a device running the "lower image" in RO mode for example.

A configuration could look as follows:
  some-core-image.bb
inherit image
IMAGE_GEN_PKGDBFS = "1"

  extending-image.bb
inherit image
IMAGE_BASE_PKGDB = "some-core-image"

Signed-off-by: Johannes Schneider 
---
 meta/classes-recipe/image.bbclass | 23 ++--
 meta/conf/documentation.conf  |  3 +-
 meta/lib/oe/package_manager/deb/rootfs.py |  2 +
 meta/lib/oe/package_manager/ipk/rootfs.py |  6 ++-
 meta/lib/oe/package_manager/rpm/rootfs.py |  7 ++-
 meta/lib/oe/rootfs.py | 18 +++
 meta/lib/oeqa/selftest/cases/imagefeatures.py | 52 ++-
 7 files changed, 102 insertions(+), 9 deletions(-)

diff --git a/meta/classes-recipe/image.bbclass 
b/meta/classes-recipe/image.bbclass
index 3ccaaa17b8..c573c37cd8 100644
--- a/meta/classes-recipe/image.bbclass
+++ b/meta/classes-recipe/image.bbclass
@@ -42,8 +42,16 @@ IMAGE_FEATURES ?= ""
 IMAGE_FEATURES[type] = "list"
 IMAGE_FEATURES[validitems] += "debug-tweaks read-only-rootfs 
read-only-rootfs-delayed-postinsts stateless-rootfs empty-root-password 
allow-empty-password allow-root-login serial-autologin-root 
post-install-logging overlayfs-etc"
 
-# Generate snapshot of the package database?
+# Image layering:
+# a "base image" would create a snapshot of the package-database after the
+# installation of all packages into the rootfs is done. The next/other image
+# "layered on-top" of the former would then import that database and install
+# further packages; without reinstalling packages/dependencies that are already
+# installed in the layer below.
+# Set to '1' in a "base image" recipe, to preserve a snapshot of the package 
database.
 IMAGE_GEN_PKGDBFS ?= "0"
+# "PN" of a "base image", upon which the current image is to be built upon.
+IMAGE_BASE_PKGDB ?= ""
 
 # Generate companion debugfs?
 IMAGE_GEN_DEBUGFS ?= "0"
@@ -118,6 +126,15 @@ do_rootfs[depends] += " \
 "
 do_rootfs[recrdeptask] += "do_packagedata"
 
+python () {
+# make sure that the 'base image' has been queued in before this
+# image wants to unpack and build upon the formers pgkdb
+base_image = d.getVar('IMAGE_BASE_PKGDB')
+pn = d.getVar('PN')
+if base_image and base_image != pn:
+d.appendVarFlag("do_rootfs", 'depends', ' '+ base_image + 
':do_image_complete')
+}
+
 def rootfs_command_variables(d):
 return 
['ROOTFS_POSTPROCESS_COMMAND','ROOTFS_PREPROCESS_COMMAND','ROOTFS_POSTINSTALL_COMMAND','ROOTFS_POSTUNINSTALL_COMMAND','OPKG_PREPROCESS_COMMANDS','OPKG_POSTPROCESS_COMMANDS','IMAGE_POSTPROCESS_COMMAND',
 
'IMAGE_PREPROCESS_COMMAND','RPM_PREPROCESS_COMMANDS','RPM_POSTPROCESS_COMMANDS','DEB_PREPROCESS_COMMANDS','DEB_POSTPROCESS_COMMANDS']
@@ -134,8 +151,8 @@ def rootfs_variables(d):
  
'IMAGE_ROOTFS_MAXSIZE','IMAGE_NAME','IMAGE_LINK_NAME','IMAGE_MANIFEST','DEPLOY_DIR_IMAGE','IMAGE_FSTYPES','IMAGE_INSTALL_COMPLEMENTARY','IMAGE_LINGUAS',
 'IMAGE_LINGUAS_COMPLEMENTARY', 'IMAGE_LOCALES_ARCHIVE',
  
'MULTILIBRE_ALLOW_REP','MULTILIB_TEMP_ROOTFS','MULTILIB_VARIANTS','MULTILIBS','ALL_MULTILIB_PACKAGE_ARCHS','MULTILIB_GLOBAL_VARIANTS','BAD_RECOMMENDATIONS','NO_RECOMMENDATIONS',
  
'PACKAGE_ARCHS','PACKAGE_CLASSES','TARGET_VENDOR','TARGET_ARCH','TARGET_OS','OVERRIDES','BBEXTENDVARIANT','FEED_DEPLOYDIR_BASE_URI','INTERCEPT_DIR','USE_DEVFS',
- 'CONVERSIONTYPES', 'IMAGE_GEN_PKGDBFS', 'IMAGE_GEN_DEBUGFS', 
'ROOTFS_RO_UNNEEDED', 'IMGDEPLOYDIR', 'PACKAGE_EXCLUDE_COMPLEMENTARY', 
'REPRODUCIBLE_TIMESTAMP_ROOTFS',
- 'IMAGE_INSTALL_DEBUGFS']
+ 'CONVERSIONTYPES', 'IMAGE_GEN_PKGDBFS', 'IMAGE_BASE_PKGDB', 
'IMAGE_GEN_DEBUGFS', 'ROOTFS_RO_UNNEEDED', 'IMGDEPLOYDIR', 
'PACKAGE_EXCLUDE_COMPLEMENTARY',
+ 'REPRODUCIBLE_TIMESTAMP_ROOTFS', 'IMAGE_INSTALL_DEBUGFS']
 variables.extend(rootfs_command_variables(d))
 variables.extend(variable_depends(d))
 return " ".join(variables)
diff --git a/meta/conf/documentation.conf b/meta/conf/documentation.conf
index 36aebb59ab..9f493cfe96 100644
--- a/meta/conf/documentation.conf
+++ b/meta/conf/documentation.conf
@@ -208,6 +208,7 @@ ICECC_PATH[doc] = "The location of the icecc binary."
 ICECC_CLASS_DISABLE[doc] = "Identifies user classes that you do not want the 
Icecream distributed compile support to consider."
 ICECC_RECIPE_DISABLE[doc] = "Identifies user recipes that you do not want the 
Icecream distributed compile support to consider."
 ICECC_RECIPE_ENABLE[doc] = "Identifies user recipes that use 

[OE-core] [PATCH v9 1/3] image.bbclass/rootfs: archive and deploy package database

2024-05-15 Thread Johannes Schneider via lists.openembedded.org
archive the package database after the rootfs has been put together as
*rootfs-pkdbfs.tar.gz, and put it into the deploy folder.

This creates a snapshot of the package mangers state at the point in
time when all dependencies have been resolved and installed; which
could be used by "extension images" to built upon.

Signed-off-by: Johannes Schneider 
---
 meta/classes-recipe/image.bbclass |  44 -
 meta/classes-recipe/image_types.bbclass   |   1 +
 meta/conf/documentation.conf  |   1 +
 meta/lib/oe/package_manager/deb/rootfs.py |   1 +
 meta/lib/oe/package_manager/ipk/rootfs.py |   1 +
 meta/lib/oe/package_manager/rpm/rootfs.py |   1 +
 meta/lib/oe/rootfs.py |  20 +++
 meta/lib/oeqa/selftest/cases/imagefeatures.py | 159 ++
 8 files changed, 227 insertions(+), 1 deletion(-)

diff --git a/meta/classes-recipe/image.bbclass 
b/meta/classes-recipe/image.bbclass
index 28be6c6362..3ccaaa17b8 100644
--- a/meta/classes-recipe/image.bbclass
+++ b/meta/classes-recipe/image.bbclass
@@ -42,6 +42,9 @@ IMAGE_FEATURES ?= ""
 IMAGE_FEATURES[type] = "list"
 IMAGE_FEATURES[validitems] += "debug-tweaks read-only-rootfs 
read-only-rootfs-delayed-postinsts stateless-rootfs empty-root-password 
allow-empty-password allow-root-login serial-autologin-root 
post-install-logging overlayfs-etc"
 
+# Generate snapshot of the package database?
+IMAGE_GEN_PKGDBFS ?= "0"
+
 # Generate companion debugfs?
 IMAGE_GEN_DEBUGFS ?= "0"
 
@@ -131,7 +134,8 @@ def rootfs_variables(d):
  
'IMAGE_ROOTFS_MAXSIZE','IMAGE_NAME','IMAGE_LINK_NAME','IMAGE_MANIFEST','DEPLOY_DIR_IMAGE','IMAGE_FSTYPES','IMAGE_INSTALL_COMPLEMENTARY','IMAGE_LINGUAS',
 'IMAGE_LINGUAS_COMPLEMENTARY', 'IMAGE_LOCALES_ARCHIVE',
  
'MULTILIBRE_ALLOW_REP','MULTILIB_TEMP_ROOTFS','MULTILIB_VARIANTS','MULTILIBS','ALL_MULTILIB_PACKAGE_ARCHS','MULTILIB_GLOBAL_VARIANTS','BAD_RECOMMENDATIONS','NO_RECOMMENDATIONS',
  
'PACKAGE_ARCHS','PACKAGE_CLASSES','TARGET_VENDOR','TARGET_ARCH','TARGET_OS','OVERRIDES','BBEXTENDVARIANT','FEED_DEPLOYDIR_BASE_URI','INTERCEPT_DIR','USE_DEVFS',
- 'CONVERSIONTYPES', 'IMAGE_GEN_DEBUGFS', 'ROOTFS_RO_UNNEEDED', 
'IMGDEPLOYDIR', 'PACKAGE_EXCLUDE_COMPLEMENTARY', 
'REPRODUCIBLE_TIMESTAMP_ROOTFS', 'IMAGE_INSTALL_DEBUGFS']
+ 'CONVERSIONTYPES', 'IMAGE_GEN_PKGDBFS', 'IMAGE_GEN_DEBUGFS', 
'ROOTFS_RO_UNNEEDED', 'IMGDEPLOYDIR', 'PACKAGE_EXCLUDE_COMPLEMENTARY', 
'REPRODUCIBLE_TIMESTAMP_ROOTFS',
+ 'IMAGE_INSTALL_DEBUGFS']
 variables.extend(rootfs_command_variables(d))
 variables.extend(variable_depends(d))
 return " ".join(variables)
@@ -337,6 +341,17 @@ python do_image_qa_setscene () {
 }
 addtask do_image_qa_setscene
 
+def setup_pkgdbfs_variables(d):
+d.appendVar('IMAGE_ROOTFS', '-pkgdb')
+if d.getVar('IMAGE_LINK_NAME'):
+d.appendVar('IMAGE_LINK_NAME', '-pkgdb')
+d.appendVar('IMAGE_NAME','-pkgdb')
+d.setVar('IMAGE_FSTYPES', 'tar.gz')
+
+python setup_pkgdbfs () {
+setup_pkgdbfs_variables(d)
+}
+
 def setup_debugfs_variables(d):
 d.appendVar('IMAGE_ROOTFS', '-dbg')
 if d.getVar('IMAGE_LINK_NAME'):
@@ -381,6 +396,11 @@ python () {
 alltypes = d.getVar('IMAGE_FSTYPES').split()
 typedeps = {}
 
+if d.getVar('IMAGE_GEN_PKGDBFS') == "1":
+pkgdbfs_fstypes = ['tar.gz']
+for t in pkgdbfs_fstypes:
+alltypes.append("pkgdbfs_" + t)
+
 if d.getVar('IMAGE_GEN_DEBUGFS') == "1":
 debugfs_fstypes = d.getVar('IMAGE_FSTYPES_DEBUGFS').split()
 for t in debugfs_fstypes:
@@ -393,6 +413,10 @@ python () {
 basetypes[baset]= []
 if t not in basetypes[baset]:
 basetypes[baset].append(t)
+pkgdb = ""
+if t.startswith("pkgdbfs_"):
+t = t[8:]
+pkgdb = "pkgdbfs_"
 debug = ""
 if t.startswith("debugfs_"):
 t = t[8:]
@@ -401,6 +425,13 @@ python () {
 vardeps.add('IMAGE_TYPEDEP:' + t)
 if baset not in typedeps:
 typedeps[baset] = set()
+deps = [pkgdb + dep for dep in deps]
+for dep in deps:
+if dep not in alltypes:
+alltypes.append(dep)
+_add_type(dep)
+basedep = _image_base_type(dep)
+typedeps[baset].add(basedep)
 deps = [debug + dep for dep in deps]
 for dep in deps:
 if dep not in alltypes:
@@ -419,6 +450,7 @@ python () {
 
 maskedtypes = (d.getVar('IMAGE_TYPES_MASKED') or "").split()
 maskedtypes = [dbg + t for t in maskedtypes for dbg in ("", "debugfs_")]
+maskedtypes = [pkgdb + t for t in maskedtypes for pkgdb in ("", 
"pkgdbfs_")]
 
 for t in basetypes:
 vardeps = set()
@@ -430,6 +462,11 @@ python () {
 continue
 
 localdata = bb.data.createCopy(d)
+pkgdb = ""
+if t.startswith("pkgdbfs_"):
+

[OE-core] [PATCH v9 0/3] pkg-database and systemd-sysext image

2024-05-15 Thread Johannes Schneider via lists.openembedded.org
systemd-sysext allows to overlay another image (or multiple) ontop of
a "base-image" = the current rootfs, via the use of overlayfs; to add
tools and features meant for development purposes.

To quote the documentation on systemd-sysext:
" ...addition in order to make debugging/development easier). System
extension images should not be misunderstood as a generic software
packaging framework, ..."

To build a lean image, that only holds packages that are not already
part of the base-image, a snapshot of the package-database is taken
after the installation of the base-rootfs is done, and picked up again
when collecting the rootfs of such a extension image.

with all this in place an example usage could look like this:
some-core-image.bb
  inherit core-image
  IMAGE_GEN_PKGDBFS = "1"

extending-image.bb
  inherit image-sysext
  IMAGE_FSTYPES = "squashfs"
  IMAGE_BASE_PKGDB = "some-core-image"
  # the above pointing at a package-db similar to:
  # 
build/deploy/images/$MACHINE/some-core-image-$MACHINE-20240210172305-pkgdb.rootfs.tar.gz

then on the device, running some-core-image, with the extension image placed at 
FN:
$> ln -s "$FN" /run/extensions/$(basename $FN).raw
$> systemd-sysext list
$> SYSTEMD_LOG_LEVEL=debug systemd-sysext merge

As long as the VERSION_ID of the extension image matches the os-release
in the base image, the above commands return sucessfully;
for details on the compativility check see the docs for systemd-sysext.

=

changes with v2:
rebase from 'kirkstone' onto 'master'

changes with v3:
incorporate review suggestions for simplification
add task dependency handling
add oe-selftest for the pkgdb handling
add variable documentation and
some more comments, and examples in the commit-msg

changes with v4:
rebase onto 'master' => no functional changes
fixed patchtest findings

changes with v5:
rebase onto 'master'
add '.sysext' to the deployed symlink name
sidenote on the tests and autobuilder failure: run locally they 
succeed, e.g.:
  #> oe-selftest --verbose -r 
imagefeatures.ImageFeatures.test_image_gen_pkgdbfs

changes with v6:
tests: restructure to call 'bitbake' only once in the testcase itself
  (in hopes of solving the autobuilder problem; local test runs succeed)

changes with v7:
tests: undo the restructuring of done in v6, in favour of explicitly 
forcing steps:
  '-c rootfs -f'.  since concurrency of the autobuilder, and reusing 
artifacts/sstate-caching is probably the issue?

changes with v8:
tests: fixed missing feature=PACKAGE_CLASSES during 
'test_image_gen_pkgdbfs'
   which is now split into three, one for each of the three available 
packagemanager: ipk, deb, rpm
   
changes with v9:
tests: fix singular failure in 'oe-selftest-armhost'
   which was due to the built image not containing a 'kernel-image...', 
which the gen-pkgdb sanity
   check expected, but 'packagegroup-core-boot' instead

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#199430): 
https://lists.openembedded.org/g/openembedded-core/message/199430
Mute This Topic: https://lists.openembedded.org/mt/106124365/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] [PATCH v8 0/3] pkg-database and systemd-sysext image

2024-05-15 Thread Alexandre Belloni via lists.openembedded.org
Hello,

It seems that this reliably fails oe-selftest-armhost. I didn't really
pay attention until now beause we had other issues but in this build,
those are the only failing tests:

https://autobuilder.yoctoproject.org/typhoon/#/builders/127/builds/3322/steps/15/logs/stdio

On 12/05/2024 08:31:56+0200, Johannes Schneider via lists.openembedded.org 
wrote:
> systemd-sysext allows to overlay another image (or multiple) ontop of
> a "base-image" = the current rootfs, via the use of overlayfs; to add
> tools and features meant for development purposes.
> 
> To quote the documentation on systemd-sysext:
> " ...addition in order to make debugging/development easier). System
> extension images should not be misunderstood as a generic software
> packaging framework, ..."
> 
> To build a lean image, that only holds packages that are not already
> part of the base-image, a snapshot of the package-database is taken
> after the installation of the base-rootfs is done, and picked up again
> when collecting the rootfs of such a extension image.
> 
> with all this in place an example usage could look like this:
> some-core-image.bb
>   inherit core-image
>   IMAGE_GEN_PKGDBFS = "1"
> 
> extending-image.bb
>   inherit image-sysext
>   IMAGE_FSTYPES = "squashfs"
>   IMAGE_BASE_PKGDB = "some-core-image"
>   # the above pointing at a package-db similar to:
>   # 
> build/deploy/images/$MACHINE/some-core-image-$MACHINE-20240210172305-pkgdb.rootfs.tar.gz
> 
> then on the device, running some-core-image, with the extension image placed 
> at FN:
> $> ln -s "$FN" /run/extensions/$(basename $FN).raw
> $> systemd-sysext list
> $> SYSTEMD_LOG_LEVEL=debug systemd-sysext merge
> 
> As long as the VERSION_ID of the extension image matches the os-release
> in the base image, the above commands return sucessfully;
> for details on the compativility check see the docs for systemd-sysext.
> 
> =
> 
> changes with v2:
> rebase from 'kirkstone' onto 'master'
> 
> changes with v3:
>   incorporate review suggestions for simplification
>   add task dependency handling
>   add oe-selftest for the pkgdb handling
>   add variable documentation and
>   some more comments, and examples in the commit-msg
> 
> changes with v4:
>   rebase onto 'master' => no functional changes
>   fixed patchtest findings
> 
> changes with v5:
> rebase onto 'master'
>   add '.sysext' to the deployed symlink name
> sidenote on the tests and autobuilder failure: run locally they 
> succeed, e.g.:
>   #> oe-selftest --verbose -r 
> imagefeatures.ImageFeatures.test_image_gen_pkgdbfs
> 
> changes with v6:
>   tests: restructure to call 'bitbake' only once in the testcase itself
> (in hopes of solving the autobuilder problem; local test runs succeed)
> 
> changes with v7:
> tests: undo the restructuring of done in v6, in favour of explicitly 
> forcing steps:
> '-c rootfs -f'.  since concurrency of the autobuilder, and reusing 
> artifacts/sstate-caching is probably the issue?
> 
> changes with v8:
> tests: fixed missing feature=PACKAGE_CLASSES during 
> 'test_image_gen_pkgdbfs'
>  which is now split into three, one for each of the three available 
> packagemanager: ipk, deb, rpm

> 
> 
> 


-- 
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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



[OE-core] [scarthgap][PATCH 1/2] devtool: standard: update-recipe/finish: fix update localfile in another layer

2024-05-15 Thread Jeff Harris
From: Julien Stephan 

When trying to use devtool update-recipe/finish on another layer, with modified
local file we have the following error:

  Traceback (most recent call last):
File "<..>/poky/scripts/devtool", line 350, in 
  ret = main()
^^
File "<..>/poky/scripts/devtool", line 337, in main
  ret = args.func(args, config, basepath, workspace)

File "<..>/poky/scripts/lib/devtool/standard.py", line 1968, in 
update_recipe
  updated, _, _ = _update_recipe(args.recipename, workspace, rd, args.mode, 
args.append, args.wildcard_version, args.no_remove, args.initial_rev, 
dry_run_outdir=dry_run_outdir, no_overrides=args.no_overrides, 
force_patch_refresh=args.force_patch_refresh)
  

File "<..>/poky/scripts/lib/devtool/standard.py", line 1930, in 
_update_recipe
  updated, appendf, removed = _update_recipe_patch(recipename, workspace, 
srctree, crd, appendlayerdir, wildcard_version, no_remove, no_report_remove, 
initial_rev, dry_run_outdir, force_patch_refresh)
  
^^
File "<..>/poky/scripts/lib/devtool/standard.py", line 1747, in 
_update_recipe_patch
  patchdir = param.get('patchdir', ".")
 ^
  AttributeError: 'str' object has no attribute 'get'

This was introduced when adding support for git submodules.
No selftest case exists to catch this, so a selftest will be
added in another commit.

(From OE-Core rev: de7ca9f800e15e10271502da7e51e3ae08e0c85b)

Signed-off-by: Julien Stephan 
Signed-off-by: Alexandre Belloni 
Signed-off-by: Richard Purdie 
Signed-off-by: Jeff Harris 
---
 scripts/lib/devtool/standard.py | 23 ++-
 1 file changed, 14 insertions(+), 9 deletions(-)

diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py
index 6674e67267..10d0cd3b7c 100644
--- a/scripts/lib/devtool/standard.py
+++ b/scripts/lib/devtool/standard.py
@@ -1452,8 +1452,10 @@ def _export_local_files(srctree, rd, destdir, 
srctreebase):
  1. updated - files that already exist in SRCURI
  2. added - new files files that don't exist in SRCURI
  3  removed - files that exist in SRCURI but not in exported files
-  In each dict the key is the 'basepath' of the URI and value is the
-  absolute path to the existing file in recipe space (if any).
+   In each dict the key is the 'basepath' of the URI and value is:
+ - for updated and added dicts, a dict with 1 optionnal key:
+   - 'path': the absolute path to the existing file in recipe space 
(if any)
+ - for removed dict, the absolute path to the existing file in recipe 
space
 """
 import oe.recipeutils
 
@@ -1535,9 +1537,9 @@ def _export_local_files(srctree, rd, destdir, 
srctreebase):
 origpath = existing_files.pop(fname)
 workpath = os.path.join(local_files_dir, fname)
 if not filecmp.cmp(origpath, workpath):
-updated[fname] = origpath
+updated[fname] = {'path' : origpath}
 elif fname != '.gitignore':
-added[fname] = None
+added[fname] = {}
 
 workdir = rd.getVar('WORKDIR')
 s = rd.getVar('S')
@@ -1554,7 +1556,7 @@ def _export_local_files(srctree, rd, destdir, 
srctreebase):
 if os.path.exists(fpath):
 origpath = existing_files.pop(fname)
 if not filecmp.cmp(origpath, fpath):
-updated[fpath] = origpath
+updated[fpath] = {'path' : origpath}
 
 removed = existing_files
 return (updated, added, removed)
@@ -1640,7 +1642,8 @@ def _update_recipe_srcrev(recipename, workspace, srctree, 
rd, appendlayerdir, wi
 redirect_output=dry_run_outdir)
 else:
 files_dir = _determine_files_dir(rd)
-for basepath, path in upd_f.items():
+for basepath, param in upd_f.items():
+path = param['path']
 logger.info('Updating file %s%s' % (basepath, dry_run_suffix))
 if os.path.isabs(basepath):
 # Original file (probably with subdir pointing inside 
source tree)
@@ -1650,7 +1653,8 @@ def _update_recipe_srcrev(recipename, workspace, srctree, 
rd, appendlayerdir, wi
 _move_file(os.path.join(local_files_dir, basepath), path,
dry_run_outdir=dry_run_outdir, 

[OE-core] [scarthgap][PATCH 2/2] oeqa/selftest/devtool: add test for updating local files into another layer

2024-05-15 Thread Jeff Harris
From: Julien Stephan 

We don't have a test to check if we can correctly devtool update-recipe/finish
into another layer. So update the existing 
test_devtool_update_recipe_local_files
to also check the updates into another layer.

(From OE-Core rev: bd44c895d36e246a25c7a6e40bf9f4089dc7a297)

Signed-off-by: Julien Stephan 
Signed-off-by: Alexandre Belloni 
Signed-off-by: Richard Purdie 
Signed-off-by: Jeff Harris 
---
 meta/lib/oeqa/selftest/cases/devtool.py | 20 ++--
 1 file changed, 18 insertions(+), 2 deletions(-)

diff --git a/meta/lib/oeqa/selftest/cases/devtool.py 
b/meta/lib/oeqa/selftest/cases/devtool.py
index bc1e40ef83..51949e3c93 100644
--- a/meta/lib/oeqa/selftest/cases/devtool.py
+++ b/meta/lib/oeqa/selftest/cases/devtool.py
@@ -1405,14 +1405,30 @@ class DevtoolUpdateTests(DevtoolBase):
 runCmd('echo "Bar" > new-file', cwd=tempdir)
 runCmd('git add new-file', cwd=tempdir)
 runCmd('git commit -m "Add new file"', cwd=tempdir)
-self.add_command_to_tearDown('cd %s; git clean -fd .; git checkout .' %
- os.path.dirname(recipefile))
 runCmd('devtool update-recipe %s' % testrecipe)
 expected_status = [(' M', '.*/%s$' % os.path.basename(recipefile)),
(' M', '.*/makedevs/makedevs.c$'),
('??', '.*/makedevs/new-local$'),
('??', '.*/makedevs/0001-Add-new-file.patch$')]
 self._check_repo_status(os.path.dirname(recipefile), expected_status)
+# Now try to update recipe in another layer, so first, clean it
+runCmd('cd %s; git clean -fd .; git checkout .' % 
os.path.dirname(recipefile))
+# Create a temporary layer and add it to bblayers.conf
+self._create_temp_layer(templayerdir, True, 'templayer')
+# Update recipe in templayer
+result = runCmd('devtool update-recipe %s -a %s' % (testrecipe, 
templayerdir))
+self.assertNotIn('WARNING:', result.output)
+# Check recipe is still clean
+self._check_repo_status(os.path.dirname(recipefile), [])
+splitpath = os.path.dirname(recipefile).split(os.sep)
+appenddir = os.path.join(templayerdir, splitpath[-2], splitpath[-1])
+bbappendfile = self._check_bbappend(testrecipe, recipefile, appenddir)
+patchfile = os.path.join(appenddir, testrecipe, 
'0001-Add-new-file.patch')
+new_local_file = os.path.join(appenddir, testrecipe, 'new_local')
+local_file = os.path.join(appenddir, testrecipe, 'makedevs.c')
+self.assertExists(patchfile, 'Patch file 0001-Add-new-file.patch not 
created')
+self.assertExists(local_file, 'File makedevs.c not created')
+self.assertExists(patchfile, 'File new_local not created')
 
 def test_devtool_update_recipe_local_files_2(self):
 """Check local source files support when oe-local-files is in Git"""
-- 
2.45.0


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



[OE-core] [scarthgap][PATCH 0/2] Port devtool update-recipe/finish fix to scarthgap

2024-05-15 Thread Jeff Harris
Cherry-pick the fixes by Julien Stephan in master to the scarthgap branch.

Verified 'oe-selftest -r devtool' succeeds

Julien Stephan (2):
  devtool: standard: update-recipe/finish: fix update localfile in
another layer
  oeqa/selftest/devtool: add test for updating local files into another
layer

 meta/lib/oeqa/selftest/cases/devtool.py | 20 ++--
 scripts/lib/devtool/standard.py | 23 ++-
 2 files changed, 32 insertions(+), 11 deletions(-)

-- 
2.45.0


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#199426): 
https://lists.openembedded.org/g/openembedded-core/message/199426
Mute This Topic: https://lists.openembedded.org/mt/106120455/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] [PATCH] devtool: modify: Catch git submodule error for go code

2024-05-15 Thread Richard Purdie
On Wed, 2024-05-15 at 17:55 +, Peter Kjellerstedt via 
lists.openembedded.org wrote:
> Steve, please cherry-pick this to Scarthgap.
> 
> //Peter
> 
> > -Original Message-
> > From: openembedded-core@lists.openembedded.org 
> >  On Behalf Of Ola x Nilsson
> > Sent: den 14 maj 2024 11:56
> > To: openembedded-core@lists.openembedded.org
> > Cc: Ola x Nilsson 
> > Subject: [OE-core] [PATCH] devtool: modify: Catch git submodule error for 
> > go code
> > 
> > From: Anton Almqvist 
> > 
> > One of the git submodule commands failed for source extracted for
> > recipes using go.bbclass.  The root cause is probably the path set up
> > by go_do_unpack which makes S and gitroot not match.
> > 
> > This patch does not fix the root problem, but at least it is no worse
> > than before the git submodule support.
> > 
> > The extracted source will still have two .git folders, one in S
> > created by devtool and one in the go path which will contain the tru
> > git history.
> > 
> > [ YOCTO #15483 ]
> > 
> > Signed-off-by: Anton Almqvist 
> > Signed-off-by: Ola x Nilsson 
> > ---
> >  scripts/lib/devtool/standard.py | 5 -
> >  1 file changed, 4 insertions(+), 1 deletion(-)
> > 
> > diff --git a/scripts/lib/devtool/standard.py 
> > b/scripts/lib/devtool/standard.py
> > index bd009f44b1..05161942b7 100644
> > --- a/scripts/lib/devtool/standard.py
> > +++ b/scripts/lib/devtool/standard.py
> > @@ -904,7 +904,10 @@ def modify(args, config, basepath, workspace):
> >  (stdout, _) = bb.process.run('git rev-list --reverse 
> > %s..HEAD' % initial_revs["."], cwd=srctree)
> >  commits["."] = stdout.split()
> >  check_commits = True
> > -    (stdout, _) = bb.process.run('git submodule --quiet 
> > foreach --recursive  \'echo `git rev-parse devtool-base` $PWD\'', 
> > cwd=srctree)
> > +    try:
> > +    (stdout, _) = bb.process.run('git submodule --quiet 
> > foreach --recursive  \'echo `git rev-parse devtool-base` $PWD\'', 
> > cwd=srctree)
> > +    except bb.process.ExecutionError:
> > +    stdout = ""
> >  for line in stdout.splitlines():
> >  (rev, submodule_path) = line.split()
> >  submodule = os.path.relpath(submodule_path, srctree)

FWIW I was in two minds whether to merge this. Making things silently
ignore failures is bad and by merging it I've removed any leverage I
had on trying to get this fixed properly. There is also no test case.

I only merged it as I can't face yet another discussion/argument about
why we should try and do things properly. Nobody else appears to want
to do this kind of review or push for that kind of quality and I'm
growing weary of trying :(

Cheers,

Richard






-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#199425): 
https://lists.openembedded.org/g/openembedded-core/message/199425
Mute This Topic: https://lists.openembedded.org/mt/106091660/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] [PATCH 05/10] base: Switch UNPACKDIR to a subdir of WORKDIR

2024-05-15 Thread Richard Purdie
On Wed, 2024-05-15 at 17:42 +, Peter Kjellerstedt wrote:
> > -Original Message-
> > From: openembedded-core@lists.openembedded.org 
> >  On Behalf Of Richard Purdie
> > Sent: den 15 maj 2024 13:56
> > To: openembedded-core@lists.openembedded.org
> > Subject: [OE-core] [PATCH 05/10] base: Switch UNPACKDIR to a subdir of 
> > WORKDIR
> > 
> > Change do_unpack to unpack files to a subdirectory of WORKDIR instead of 
> > WORKDIR
> > itself. There are several good reasons for this but it is mainly about 
> > being able
> > to isolate the output of the unpack task and tell the files apart from 
> > other things
> > which are created in workdir (logs, sysroots, temp dirs and more).
> > 
> > This means that when the do_unpack task reruns, we can clean UNPACKDIR and 
> > know
> > we have a standard point to start builds from.
> > 
> > It also makes code in tools like devtool and recipetool easier.
> > 
> > To reduce the impact to users, if a subdirectory under UNPACKDIR matches
> > the first subdirectory under WORKDIR of S, that directory is moved into 
> > position
> > inside WORKDIR. This preserves the behaviour of S = "${WORKDIR}/git",
> > S = "${WORKDIR}/${BPN}" and other commonly used source directory setups.
> > 
> > The directory is moved since sadly many autotools based projects can't cope 
> > with
> > symlinks in their paths.
> 
> Would it be an option to create a symbolic link by default, and instead 
> let the autotools bbclass replace it with a moved directory? If it is
> in fact only autotools based projects that have this problem.

Maybe. I've reached the point with this where I really didn't want to
try and explore that particular set of problems and I'd rather things
were consistent.

I'm not going to rule out trying to clean up and improve this somehow
in the future but for now, it works, it solves the original major
problem (cleanup of obsolete sources) and we have most of the major
pieces like devtool working. It also doesn't look as different to users
as moving S would from a documentation perspective.

I'm a bit torn on what the end result for S should look like. I'm happy
enough with the changes so far and I think the best thing to do is
merge these, then consider if we do want to go further or not.

> > Signed-off-by: Richard Purdie 
> > ---
> >  meta/classes-global/base.bbclass | 21 ++---
> >  meta/conf/bitbake.conf   |  2 +-
> >  2 files changed, 19 insertions(+), 4 deletions(-)
> > 
> > diff --git a/meta/classes-global/base.bbclass b/meta/classes-
> > global/base.bbclass
> > index 066f3848f7c..cdce0538273 100644
> > --- a/meta/classes-global/base.bbclass
> > +++ b/meta/classes-global/base.bbclass
> > @@ -153,20 +153,35 @@ python base_do_fetch() {
> >  }
> > 
> >  addtask unpack after do_fetch
> > -do_unpack[dirs] = "${UNPACKDIR}"
> > -
> > -do_unpack[cleandirs] = "${@d.getVar('S') if 
> > os.path.normpath(d.getVar('S')) != os.path.normpath(d.getVar('WORKDIR')) 
> > else os.path.join('${S}', 'patches')}"
> > +do_unpack[cleandirs] = "${UNPACKDIR}"
> > 
> >  python base_do_unpack() {
> > +    import shutil
> > +
> >  src_uri = (d.getVar('SRC_URI') or "").split()
> >  if not src_uri:
> >  return
> > 
> > +    sourcedir = d.getVar('S')
> > +    basedir = None
> > +    workdir = d.getVar('WORKDIR')
> > +    unpackdir = d.getVar('UNPACKDIR')
> > +    if sourcedir.startswith(workdir) and not 
> > sourcedir.startswith(unpackdir):
> > +    basedir = sourcedir.replace(workdir, '').strip("/").split('/')[0]
> > +    bb.utils.remove(sourcedir, True)
> 
> This remove() seems wrong and should not be needed. There are two 
> cases here:
> 
> 1) either ${S} == ${WORKDIR}, in which case the above will remove 
>    ${WORKDIR}, which is sure to lead to problems, or

Which is why S = WORKDIR has to become a hard error. We have to drop
support for it.

> 2) ${S} == ${WORKDIR}/foo[/...], in which case the removal of 
>    workdir + '/' + basedir below will also remove ${S} as 
>    basedir == "foo".

You're right. This code did go through several iterations as I found
all the weird corner cases this needs to support. Ultimately, I suspect
it should probably unconditionally remove ${S}. I'd need yet another
test run to try and identify if that causes any new weird issues
though.

> 
> > +    if basedir:
> > +    bb.utils.remove(workdir + '/' + basedir, True)
> > +
> >  try:
> >  fetcher = bb.fetch2.Fetch(src_uri, d)
> >  fetcher.unpack(d.getVar('UNPACKDIR'))
> >  except bb.fetch2.BBFetchException as e:
> >  bb.fatal("Bitbake Fetcher Error: " + repr(e))
> > +
> > +    if basedir and os.path.exists(unpackdir + '/' + basedir):
> > +    # Compatibility magic to ensure ${WORKDIR}/git and ${WORKDIR}/${BP}
> > +    # as often used in S work as expected.
> > +    shutil.move(unpackdir + '/' + basedir, workdir + '/' + basedir)
> >  }
> > 
> >  SSTATETASKS += "do_deploy_source_date_epoch"
> > diff --git 

Re: [OE-core] [PATCH] devtool: modify: Catch git submodule error for go code

2024-05-15 Thread Peter Kjellerstedt
Steve, please cherry-pick this to Scarthgap.

//Peter

> -Original Message-
> From: openembedded-core@lists.openembedded.org 
>  On Behalf Of Ola x Nilsson
> Sent: den 14 maj 2024 11:56
> To: openembedded-core@lists.openembedded.org
> Cc: Ola x Nilsson 
> Subject: [OE-core] [PATCH] devtool: modify: Catch git submodule error for go 
> code
> 
> From: Anton Almqvist 
> 
> One of the git submodule commands failed for source extracted for
> recipes using go.bbclass.  The root cause is probably the path set up
> by go_do_unpack which makes S and gitroot not match.
> 
> This patch does not fix the root problem, but at least it is no worse
> than before the git submodule support.
> 
> The extracted source will still have two .git folders, one in S
> created by devtool and one in the go path which will contain the tru
> git history.
> 
> [ YOCTO #15483 ]
> 
> Signed-off-by: Anton Almqvist 
> Signed-off-by: Ola x Nilsson 
> ---
>  scripts/lib/devtool/standard.py | 5 -
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py
> index bd009f44b1..05161942b7 100644
> --- a/scripts/lib/devtool/standard.py
> +++ b/scripts/lib/devtool/standard.py
> @@ -904,7 +904,10 @@ def modify(args, config, basepath, workspace):
>  (stdout, _) = bb.process.run('git rev-list --reverse 
> %s..HEAD' % initial_revs["."], cwd=srctree)
>  commits["."] = stdout.split()
>  check_commits = True
> -(stdout, _) = bb.process.run('git submodule --quiet foreach 
> --recursive  \'echo `git rev-parse devtool-base` $PWD\'', cwd=srctree)
> +try:
> +(stdout, _) = bb.process.run('git submodule --quiet 
> foreach --recursive  \'echo `git rev-parse devtool-base` $PWD\'', cwd=srctree)
> +except bb.process.ExecutionError:
> +stdout = ""
>  for line in stdout.splitlines():
>  (rev, submodule_path) = line.split()
>  submodule = os.path.relpath(submodule_path, srctree)
> --
> 2.39.2


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#199423): 
https://lists.openembedded.org/g/openembedded-core/message/199423
Mute This Topic: https://lists.openembedded.org/mt/106091660/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] [PATCH 05/10] base: Switch UNPACKDIR to a subdir of WORKDIR

2024-05-15 Thread Peter Kjellerstedt
> -Original Message-
> From: openembedded-core@lists.openembedded.org 
>  On Behalf Of Richard Purdie
> Sent: den 15 maj 2024 13:56
> To: openembedded-core@lists.openembedded.org
> Subject: [OE-core] [PATCH 05/10] base: Switch UNPACKDIR to a subdir of WORKDIR
> 
> Change do_unpack to unpack files to a subdirectory of WORKDIR instead of 
> WORKDIR
> itself. There are several good reasons for this but it is mainly about being 
> able
> to isolate the output of the unpack task and tell the files apart from other 
> things
> which are created in workdir (logs, sysroots, temp dirs and more).
> 
> This means that when the do_unpack task reruns, we can clean UNPACKDIR and 
> know
> we have a standard point to start builds from.
> 
> It also makes code in tools like devtool and recipetool easier.
> 
> To reduce the impact to users, if a subdirectory under UNPACKDIR matches
> the first subdirectory under WORKDIR of S, that directory is moved into 
> position
> inside WORKDIR. This preserves the behaviour of S = "${WORKDIR}/git",
> S = "${WORKDIR}/${BPN}" and other commonly used source directory setups.
> 
> The directory is moved since sadly many autotools based projects can't cope 
> with
> symlinks in their paths.

Would it be an option to create a symbolic link by default, and instead 
let the autotools bbclass replace it with a moved directory? If it is 
in fact only autotools based projects that have this problem.

> 
> Signed-off-by: Richard Purdie 
> ---
>  meta/classes-global/base.bbclass | 21 ++---
>  meta/conf/bitbake.conf   |  2 +-
>  2 files changed, 19 insertions(+), 4 deletions(-)
> 
> diff --git a/meta/classes-global/base.bbclass b/meta/classes-
> global/base.bbclass
> index 066f3848f7c..cdce0538273 100644
> --- a/meta/classes-global/base.bbclass
> +++ b/meta/classes-global/base.bbclass
> @@ -153,20 +153,35 @@ python base_do_fetch() {
>  }
> 
>  addtask unpack after do_fetch
> -do_unpack[dirs] = "${UNPACKDIR}"
> -
> -do_unpack[cleandirs] = "${@d.getVar('S') if os.path.normpath(d.getVar('S')) 
> != os.path.normpath(d.getVar('WORKDIR')) else os.path.join('${S}', 
> 'patches')}"
> +do_unpack[cleandirs] = "${UNPACKDIR}"
> 
>  python base_do_unpack() {
> +import shutil
> +
>  src_uri = (d.getVar('SRC_URI') or "").split()
>  if not src_uri:
>  return
> 
> +sourcedir = d.getVar('S')
> +basedir = None
> +workdir = d.getVar('WORKDIR')
> +unpackdir = d.getVar('UNPACKDIR')
> +if sourcedir.startswith(workdir) and not sourcedir.startswith(unpackdir):
> +basedir = sourcedir.replace(workdir, '').strip("/").split('/')[0]
> +bb.utils.remove(sourcedir, True)

This remove() seems wrong and should not be needed. There are two 
cases here:

1) either ${S} == ${WORKDIR}, in which case the above will remove 
   ${WORKDIR}, which is sure to lead to problems, or
2) ${S} == ${WORKDIR}/foo[/...], in which case the removal of 
   workdir + '/' + basedir below will also remove ${S} as 
   basedir == "foo".

> +if basedir:
> +bb.utils.remove(workdir + '/' + basedir, True)
> +
>  try:
>  fetcher = bb.fetch2.Fetch(src_uri, d)
>  fetcher.unpack(d.getVar('UNPACKDIR'))
>  except bb.fetch2.BBFetchException as e:
>  bb.fatal("Bitbake Fetcher Error: " + repr(e))
> +
> +if basedir and os.path.exists(unpackdir + '/' + basedir):
> +# Compatibility magic to ensure ${WORKDIR}/git and ${WORKDIR}/${BP}
> +# as often used in S work as expected.
> +shutil.move(unpackdir + '/' + basedir, workdir + '/' + basedir)
>  }
> 
>  SSTATETASKS += "do_deploy_source_date_epoch"
> diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
> index b2c500d8739..75c850760f6 100644
> --- a/meta/conf/bitbake.conf
> +++ b/meta/conf/bitbake.conf
> @@ -405,7 +405,7 @@ STAMP =
> "${STAMPS_DIR}/${MULTIMACH_TARGET_SYS}/${PN}/${PV}"
>  STAMPCLEAN = "${STAMPS_DIR}/${MULTIMACH_TARGET_SYS}/${PN}/*-*"
>  BASE_WORKDIR ?= "${TMPDIR}/work"
>  WORKDIR = "${BASE_WORKDIR}/${MULTIMACH_TARGET_SYS}/${PN}/${PV}"
> -UNPACKDIR ??= "${WORKDIR}"
> +UNPACKDIR ??= "${WORKDIR}/sources-unpack"

"sources-unpack" does not exactly fall off the tongue.
Would "unpack" or "unpacked" be alternatives?

>  T = "${WORKDIR}/temp"
>  D = "${WORKDIR}/image"
>  S = "${WORKDIR}/${BP}"
> --
> 2.40.1

//Peter


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#199422): 
https://lists.openembedded.org/g/openembedded-core/message/199422
Mute This Topic: https://lists.openembedded.org/mt/106112374/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] libgit2: upgrading to 1.8.0 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

Running 'devtool upgrade' for recipe libgit2 failed.
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1879 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 10 Local 10 Mirrors 0 Missed 0 Current 20 (100% match, 
100% complete)
done.
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: 5 seconds
INFO: Extracting current version source...
INFO: Extracting upgraded version source...
INFO: Rebasing devtool onto d74d491481831ddcd23575d376e56d2197e95910
WARNING: Command 'git rebase d74d491481831ddcd23575d376e56d2197e95910' failed:
Auto-merging docs/changelog.md
CONFLICT (content): Merge conflict in docs/changelog.md

You will need to resolve conflicts in order to complete the upgrade.
INFO: Upgraded source extracted to 
/home/pokybuild/yocto-worker/auh/build/build/workspace/sources/libgit2
INFO: New recipe is 
/home/pokybuild/yocto-worker/auh/build/build/workspace/recipes/libgit2/libgit2_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 (#199412): 
https://lists.openembedded.org/g/openembedded-core/message/199412
Mute This Topic: https://lists.openembedded.org/mt/106118906/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] boost: upgrading to 1.85.0 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

Running 'devtool upgrade' for recipe boost failed.
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1879 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 10 Local 10 Mirrors 0 Missed 0 Current 20 (100% match, 
100% complete)
done.
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: 3 seconds
Loading cache...done.
Loaded 1879 entries from dependency cache.
Parsing recipes...done.
Parsing of 922 .bb files complete (920 cached, 2 parsed). 1880 targets, 35 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 1 Local 0 Mirrors 0 Missed 1 Current 0 (0% match, 0% 
complete)
done.
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: 3 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:01:57
Adding changed files:   1% || ETA:  0:01:25
Adding changed files:   1% || ETA:  0:01:15
Adding changed files:   2% || ETA:  0:01:12
Adding changed files:   2% |#   | ETA:  0:01:07
Adding changed files:   3% |#   | ETA:  0:01:05
Adding changed files:   4% |#   | ETA:  0:01:02
Adding changed files:   4% |#   | ETA:  0:01:01
Adding changed files:   5% |#   | ETA:  0:01:00
Adding changed files:   5% |##  | ETA:  0:00:59
Adding changed files:   6% |##  | ETA:  0:00:57
Adding changed files:   7% |##  | ETA:  0:00:57
Adding changed files:   7% |##  | ETA:  0:00:56
Adding changed files:   8% |### | ETA:  0:00:56
Adding changed files:   8% |### | ETA:  0:00:55
Adding changed files:   9% |### | ETA:  0:00:55
Adding changed files:  10% |### | ETA:  0:00:54
Adding changed files:  10% |### | ETA:  0:00:53
Adding changed files:  11% || ETA:  0:00:52
Adding changed files:  11% || ETA:  0:00:50
Adding changed files:  12% || ETA:  0:00:49
Adding changed files:  13% || ETA:  0:00:48
Adding changed files:  13% || ETA:  0:00:47
Adding changed files:  14% |#   | ETA:  0:00:46
Adding changed files:  14% |#   | ETA:  0:00:45
Adding changed files:  15% |#   | ETA:  0:00:44
Adding changed files:  16% |#   | ETA:  0:00:44
Adding changed files:  16% |##  | ETA:  0:00:43
Adding changed files:  17% |##

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

2024-05-15 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.7.3* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-enchant2-upgrade-2.7.2-2.7.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 696ed16ab960a357388dc91cfcb7116f07354520 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 16:27:04 +
Subject: [PATCH] enchant2: upgrade 2.7.2 -> 2.7.3

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

diff --git a/meta/recipes-support/enchant/enchant2_2.7.2.bb 
b/meta/recipes-support/enchant/enchant2_2.7.3.bb
similarity index 91%
rename from meta/recipes-support/enchant/enchant2_2.7.2.bb
rename to meta/recipes-support/enchant/enchant2_2.7.3.bb
index 08998dd48f..d5073b6f31 100644
--- a/meta/recipes-support/enchant/enchant2_2.7.2.bb
+++ b/meta/recipes-support/enchant/enchant2_2.7.3.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] = 
"7cc3400a6657974a740b6e3c2568e2935c70e5302f07fadb2095366b75ecad6f"
+SRC_URI[sha256sum] = 
"fe6ad4cbe8c71b9384ffdef962be52d4d2bd5ebfb6351435bb390543d4f78b1e"
 
 GITHUB_BASE_URI = "https://github.com/AbiWord/enchant/releases;
 
-- 
2.44.0



0001-enchant2-upgrade-2.7.2-2.7.3.patch
Description: Binary data
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 0 entries from dependency cache.
Parsing recipes...done.
Parsing of 921 .bb files complete (0 cached, 921 parsed). 1880 targets, 46 
skipped, 0 masked, 0 errors.
Removing 31 recipes from the core2-64 sysroot...done.
Removing 32 recipes from the qemux86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 306 Local 297 Mirrors 0 Missed 9 Current 233 (97% match, 
98% complete)
Removing 5 stale sstate objects for arch x86_64...done.
NOTE: Executing Tasks
NOTE: Running setscene task 239 of 539 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/aspell/aspell_0.60.8.1.bb:do_package_write_deb_setscene)
NOTE: Running setscene task 240 of 539 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/aspell/aspell_0.60.8.1.bb:do_package_write_ipk_setscene)
NOTE: Running setscene task 241 of 539 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/aspell/aspell_0.60.8.1.bb:do_package_write_rpm_setscene)
NOTE: Running setscene task 244 of 539 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-core/glib-2.0/glib-2.0_2.80.0.bb:do_create_spdx_setscene)
NOTE: Running setscene task 245 of 539 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/aspell/aspell_0.60.8.1.bb:do_create_spdx_setscene)
NOTE: Running setscene task 252 of 539 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/enchant/enchant2_2.7.3.bb:do_populate_lic_setscene)
NOTE: Running setscene task 254 of 539 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-core/glib-2.0/glib-2.0_2.80.0.bb:do_populate_sysroot_setscene)
NOTE: Running setscene task 255 of 539 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/aspell/aspell_0.60.8.1.bb:do_populate_sysroot_setscene)
NOTE: Running setscene task 256 of 539 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/enchant/enchant2_2.7.3.bb:do_deploy_source_date_epoch_setscene)
NOTE: recipe aspell-0.60.8.1-r0: task do_package_write_deb_setscene: Started
NOTE: recipe aspell-0.60.8.1-r0: task 

[OE-core] [AUH] gstreamer1.0-rtsp-server: upgrading to 1.24.3 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *gstreamer1.0-rtsp-server* to 
*1.24.3* has Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 
0001-gstreamer1.0-rtsp-server-upgrade-1.22.11-1.24.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 7f7a6e8cf7e4edc8674110fe479759c06d4d03df Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 15:51:24 +
Subject: [PATCH] gstreamer1.0-rtsp-server: upgrade 1.22.11 -> 1.24.3

---
 ...tsp-server_1.22.11.bb => gstreamer1.0-rtsp-server_1.24.3.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-rtsp-server_1.22.11.bb 
=> gstreamer1.0-rtsp-server_1.24.3.bb} (90%)

diff --git 
a/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.22.11.bb 
b/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.24.3.bb
similarity index 90%
rename from 
meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.22.11.bb
rename to meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.24.3.bb
index 554ed9ec8f..f63d61b2c9 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.22.11.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.24.3.bb
@@ -10,7 +10,7 @@ PNREAL = "gst-rtsp-server"
 
 SRC_URI = 
"https://gstreamer.freedesktop.org/src/${PNREAL}/${PNREAL}-${PV}.tar.xz;
 
-SRC_URI[sha256sum] = 
"ec49d474750a6ff6729c85b448abc607fb6840b21717ad7abc967e2adbf07a24"
+SRC_URI[sha256sum] = 
"62628ecca78b8f5b51c59a4d602c65e9205ffc50c3c83cd61fab1f6348b63565"
 
 S = "${WORKDIR}/${PNREAL}-${PV}"
 
-- 
2.44.0



0001-gstreamer1.0-rtsp-server-upgrade-1.22.11-1.24.3.patch
Description: Binary data
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1880 entries from dependency cache.
Parsing recipes...done.
Parsing of 921 .bb files complete (920 cached, 1 parsed). 1879 targets, 35 
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.9.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "5.0+snapshot-e19b9dac38f7b82e9c58487edcec5883d7b5ea43"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:e19b9dac38f7b82e9c58487edcec5883d7b5ea43"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 339 Local 328 Mirrors 0 Missed 11 Current 580 (96% 
match, 98% complete)
done.
NOTE: Executing Tasks
NOTE: Running setscene task 773 of 919 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.24.3.bb:do_recipe_qa_setscene)
NOTE: recipe gstreamer1.0-rtsp-server-1.24.3-r0: task do_recipe_qa_setscene: 
Started
NOTE: recipe gstreamer1.0-rtsp-server-1.24.3-r0: task do_recipe_qa_setscene: 
Succeeded
NOTE: Setscene tasks completed
NOTE: Running task 2311 of 2553 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.24.3.bb:do_fetch)
NOTE: Running task 2414 of 2553 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.24.3.bb:do_write_config)
NOTE: recipe gstreamer1.0-rtsp-server-1.24.3-r0: task do_fetch: Started
NOTE: recipe gstreamer1.0-rtsp-server-1.24.3-r0: task do_fetch: Succeeded
NOTE: Running task 2535 of 2553 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.24.3.bb:do_unpack)
NOTE: Running task 2536 of 2553 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.24.3.bb:do_prepare_recipe_sysroot)
NOTE: recipe gstreamer1.0-rtsp-server-1.24.3-r0: task do_write_config: Started
NOTE: recipe gstreamer1.0-rtsp-server-1.24.3-r0: task do_write_config: Succeeded
NOTE: recipe 

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

2024-05-15 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.13* 
has Succeeded.

Next steps:
- apply the patch: git am 0001-xserver-xorg-upgrade-21.1.12-21.1.13.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 cadf5444eeb8749f9f2487fc1ab8aead3d57b4bb Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 14:55:51 +
Subject: [PATCH] xserver-xorg: upgrade 21.1.12 -> 21.1.13

---
 .../0001-Avoid-duplicate-definitions-of-IOPortBase.patch | 3 +--
 ...ciBus.c-use-Intel-ddx-only-for-pre-gen4-hardwar.patch | 9 +++--
 .../{xserver-xorg_21.1.12.bb => xserver-xorg_21.1.13.bb} | 2 +-
 3 files changed, 5 insertions(+), 9 deletions(-)
 rename meta/recipes-graphics/xorg-xserver/{xserver-xorg_21.1.12.bb => 
xserver-xorg_21.1.13.bb} (92%)

diff --git 
a/meta/recipes-graphics/xorg-xserver/xserver-xorg/0001-Avoid-duplicate-definitions-of-IOPortBase.patch
 
b/meta/recipes-graphics/xorg-xserver/xserver-xorg/0001-Avoid-duplicate-definitions-of-IOPortBase.patch
index 11d5546537..e9cbc9b4da 100644
--- 
a/meta/recipes-graphics/xorg-xserver/xserver-xorg/0001-Avoid-duplicate-definitions-of-IOPortBase.patch
+++ 
b/meta/recipes-graphics/xorg-xserver/xserver-xorg/0001-Avoid-duplicate-definitions-of-IOPortBase.patch
@@ -1,4 +1,4 @@
-From ce3b8a230a3805c9b557c1f106795675bd034860 Mon Sep 17 00:00:00 2001
+From cedc797e1a0850039a25b7e387b342e54fffcc97 Mon Sep 17 00:00:00 2001
 From: Khem Raj 
 Date: Mon, 17 Aug 2020 10:50:51 -0700
 Subject: [PATCH] Avoid duplicate definitions of IOPortBase
@@ -10,7 +10,6 @@ compiler.h:528: multiple definition of `IOPortBase';
 
 Upstream-Status: Pending
 Signed-off-by: Khem Raj 
-
 ---
  hw/xfree86/os-support/linux/lnx_video.c | 1 +
  1 file changed, 1 insertion(+)
diff --git 
a/meta/recipes-graphics/xorg-xserver/xserver-xorg/0001-xf86pciBus.c-use-Intel-ddx-only-for-pre-gen4-hardwar.patch
 
b/meta/recipes-graphics/xorg-xserver/xserver-xorg/0001-xf86pciBus.c-use-Intel-ddx-only-for-pre-gen4-hardwar.patch
index d05eec5bb9..d1516c2f52 100644
--- 
a/meta/recipes-graphics/xorg-xserver/xserver-xorg/0001-xf86pciBus.c-use-Intel-ddx-only-for-pre-gen4-hardwar.patch
+++ 
b/meta/recipes-graphics/xorg-xserver/xserver-xorg/0001-xf86pciBus.c-use-Intel-ddx-only-for-pre-gen4-hardwar.patch
@@ -1,4 +1,4 @@
-From d77cdc5e1eee26821ab98c947abea53fb7b18fe5 Mon Sep 17 00:00:00 2001
+From ad8967de36e6e2a185b71ce1d701448cda4ef3e2 Mon Sep 17 00:00:00 2001
 From: California Sullivan 
 Date: Fri, 16 Mar 2018 17:23:11 -0700
 Subject: [PATCH] xf86pciBus.c: use Intel ddx only for pre-gen4 hardware
@@ -20,10 +20,10 @@ Signed-off-by: California Sullivan 

  1 file changed, 17 insertions(+), 1 deletion(-)
 
 diff --git a/hw/xfree86/common/xf86pciBus.c b/hw/xfree86/common/xf86pciBus.c
-index e61ae0cd4..d70c99197 100644
+index aeeed8b..db705bf 100644
 --- a/hw/xfree86/common/xf86pciBus.c
 +++ b/hw/xfree86/common/xf86pciBus.c
-@@ -1173,7 +1173,23 @@ xf86VideoPtrToDriverList(struct pci_device *dev,
+@@ -1174,7 +1174,23 @@ xf86VideoPtrToDriverList(struct pci_device *dev, 
XF86MatchedDrivers *md)
case 0x0bef:
/* Use fbdev/vesa driver on Oaktrail, Medfield, CDV */
break;
@@ -48,6 +48,3 @@ index e61ae0cd4..d70c99197 100644
driverList[0] = "intel";
break;
  }
--- 
-2.14.3
-
diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xorg_21.1.12.bb 
b/meta/recipes-graphics/xorg-xserver/xserver-xorg_21.1.13.bb
similarity index 92%
rename from meta/recipes-graphics/xorg-xserver/xserver-xorg_21.1.12.bb
rename to meta/recipes-graphics/xorg-xserver/xserver-xorg_21.1.13.bb
index 570e08d5ae..1f18c22fa8 100644
--- a/meta/recipes-graphics/xorg-xserver/xserver-xorg_21.1.12.bb
+++ b/meta/recipes-graphics/xorg-xserver/xserver-xorg_21.1.13.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] = 
"1e016e2be1b5ccdd65eac3ea08e54bd13ce8f4f6c3fb32ad6fdac4e71729a90f"
+SRC_URI[sha256sum] = 
"b45a02d5943f72236a360d3cc97e75134aa4f63039ff88c04686b508a3dc740c"
 
 # These extensions are 

[OE-core] [AUH] gst-devtools: upgrading to 1.24.3 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-gst-devtools-upgrade-1.22.11-1.24.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 9d8f5dfde021fee73da624e7f7bc7b27f8d11f56 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 15:28:36 +
Subject: [PATCH] gst-devtools: upgrade 1.22.11 -> 1.24.3

---
 .../0001-connect-has-a-different-signature-on-musl.patch   | 3 +--
 .../{gst-devtools_1.22.11.bb => gst-devtools_1.24.3.bb}| 2 +-
 2 files changed, 2 insertions(+), 3 deletions(-)
 rename meta/recipes-multimedia/gstreamer/{gst-devtools_1.22.11.bb => 
gst-devtools_1.24.3.bb} (95%)

diff --git 
a/meta/recipes-multimedia/gstreamer/gst-devtools/0001-connect-has-a-different-signature-on-musl.patch
 
b/meta/recipes-multimedia/gstreamer/gst-devtools/0001-connect-has-a-different-signature-on-musl.patch
index 21e30d6d46..8520567f17 100644
--- 
a/meta/recipes-multimedia/gstreamer/gst-devtools/0001-connect-has-a-different-signature-on-musl.patch
+++ 
b/meta/recipes-multimedia/gstreamer/gst-devtools/0001-connect-has-a-different-signature-on-musl.patch
@@ -1,4 +1,4 @@
-From 0c73b8131efba63c5cd37ea8c7551434c3b57304 Mon Sep 17 00:00:00 2001
+From c20894a5e6f52aa9fe3437e733a228b1a0eb6428 Mon Sep 17 00:00:00 2001
 From: Khem Raj 
 Date: Sun, 9 Sep 2018 17:38:10 -0700
 Subject: [PATCH] connect has a different signature on musl
@@ -11,7 +11,6 @@ typcasted to struct sockaddr_in* type inside the function 
before use
 Upstream-Status: Pending
 
 Signed-off-by: Khem Raj 
-
 ---
  validate/plugins/fault_injection/socket_interposer.c | 7 ++-
  1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/meta/recipes-multimedia/gstreamer/gst-devtools_1.22.11.bb 
b/meta/recipes-multimedia/gstreamer/gst-devtools_1.24.3.bb
similarity index 95%
rename from meta/recipes-multimedia/gstreamer/gst-devtools_1.22.11.bb
rename to meta/recipes-multimedia/gstreamer/gst-devtools_1.24.3.bb
index 2be406192f..9df802afe9 100644
--- a/meta/recipes-multimedia/gstreamer/gst-devtools_1.22.11.bb
+++ b/meta/recipes-multimedia/gstreamer/gst-devtools_1.24.3.bb
@@ -12,7 +12,7 @@ SRC_URI = 
"https://gstreamer.freedesktop.org/src/gst-devtools/gst-devtools-${PV}
file://0001-connect-has-a-different-signature-on-musl.patch \
"
 
-SRC_URI[sha256sum] = 
"07766425ecb5bf857ab5ad3962321c55cd89f9386b720843f9df71c0a455eb9b"
+SRC_URI[sha256sum] = 
"b91114a2fd958f42acf441186e87e2bec93538ef35a9f824897360ffb237"
 
 DEPENDS = "json-glib glib-2.0 glib-2.0-native gstreamer1.0 
gstreamer1.0-plugins-base"
 RRECOMMENDS:${PN} = "git"
-- 
2.44.0



0001-gst-devtools-upgrade-1.22.11-1.24.3.patch
Description: Binary data
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1881 entries from dependency cache.
Parsing recipes...done.
Parsing of 921 .bb files complete (920 cached, 1 parsed). 1879 targets, 35 
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.9.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "5.0+snapshot-f95809543d113c605ce3c4c8b4a12b008e26f629"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:f95809543d113c605ce3c4c8b4a12b008e26f629"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 364 Local 353 Mirrors 0 Missed 11 Current 595 (96% 
match, 98% complete)
done.
NOTE: Executing Tasks
NOTE: Running setscene task 791 of 959 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-multimedia/gstreamer/gst-devtools_1.24.3.bb:do_recipe_qa_setscene)
NOTE: recipe gst-devtools-1.24.3-r0: task do_recipe_qa_setscene: Started
NOTE: recipe gst-devtools-1.24.3-r0: 

[OE-core] [AUH] gstreamer1.0-plugins-bad: upgrading to 1.24.3 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *gstreamer1.0-plugins-bad* to 
*1.24.3* has Failed (devtool error).

Detailed error information:

Running 'devtool upgrade' for recipe gstreamer1.0-plugins-bad failed.
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1879 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 11 Local 11 Mirrors 0 Missed 0 Current 22 (100% match, 
100% complete)
done.
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: 3 seconds
Loading cache...done.
Loaded 1879 entries from dependency cache.
Parsing recipes...done.
Parsing of 922 .bb files complete (920 cached, 2 parsed). 1880 targets, 35 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 10 Local 9 Mirrors 0 Missed 1 Current 18 (90% match, 96% 
complete)
done.
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: 3 seconds
DEBUG 5 [Errno 25] Inappropriate ioctl for device
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   7% |##  | ETA:  0:00:01
Adding changed files:  15% |#   | ETA:  0:00:01
Adding changed files:  23% || ETA:  0:00:00
Adding changed files:  31% |### | ETA:  0:00:01
Adding changed files:  39% |##  | ETA:  0:00:00
Adding changed files:  47% |#   | ETA:  0:00:00
Adding changed files:  55% |### | ETA:  0:00:00
Adding changed files:  63% |##  | ETA:  0:00:00
Adding changed files:  70% |#   | ETA:  0:00:00
Adding changed files:  78% || ETA:  0:00:00
Adding changed files:  86% |### | ETA:  0:00:00
Adding changed files:  94% |##  | ETA:  0:00:00
Adding changed files: 100% || Time: 0:00:01
INFO: Extracting current version source...
INFO: Extracting upgraded version source...
INFO: Fetching 
https://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-1.24.3.tar.xz...
INFO: Rebasing devtool onto 9ac51cb319a0080db2d971ef02d0e6ac3003b03a
WARNING: Command 'git rebase 9ac51cb319a0080db2d971ef02d0e6ac3003b03a' failed:
Auto-merging ext/opencv/meson.build
CONFLICT (content): Merge conflict in ext/opencv/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/workspace/sources/gstreamer1.0-plugins-bad
INFO: New recipe is 
/home/pokybuild/yocto-worker/auh/build/build/workspace/recipes/gstreamer1.0-plugins-bad/gstreamer1.0-plugins-bad_1.24.3.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 (#199409): 
https://lists.openembedded.org/g/openembedded-core/message/199409
Mute This Topic: 

[OE-core] [AUH] gstreamer1.0-plugins-ugly: upgrading to 1.24.3 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *gstreamer1.0-plugins-ugly* to 
*1.24.3* has Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 
0001-gstreamer1.0-plugins-ugly-upgrade-1.22.11-1.24.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 b1f51fa1c49968c46cd707642d973134c20d7824 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 15:46:34 +
Subject: [PATCH] gstreamer1.0-plugins-ugly: upgrade 1.22.11 -> 1.24.3

---
 ...gins-ugly_1.22.11.bb => gstreamer1.0-plugins-ugly_1.24.3.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-plugins-ugly_1.22.11.bb 
=> gstreamer1.0-plugins-ugly_1.24.3.bb} (94%)

diff --git 
a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.22.11.bb 
b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.24.3.bb
similarity index 94%
rename from 
meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.22.11.bb
rename to meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.24.3.bb
index 99f41d4f3d..a6a29605d6 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.22.11.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.24.3.bb
@@ -15,7 +15,7 @@ SRC_URI = " \
 
https://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-${PV}.tar.xz
 \
 "
 
-SRC_URI[sha256sum] = 
"7758b7decfd20c00cae5700822bcbbf03f98c723e33e17634db2e07ca1da60bf"
+SRC_URI[sha256sum] = 
"4c951341c4c648630b6fe1234ec113d81dd2d248529bf2b5478e0ad077c80ed3"
 
 S = "${WORKDIR}/gst-plugins-ugly-${PV}"
 
-- 
2.44.0

NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1880 entries from dependency cache.
Parsing recipes...done.
Parsing of 921 .bb files complete (920 cached, 1 parsed). 1879 targets, 35 
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.9.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "5.0+snapshot-fe9ab9517091c12e4f801a32e8600e217feac200"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:fe9ab9517091c12e4f801a32e8600e217feac200"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 342 Local 331 Mirrors 0 Missed 11 Current 577 (96% 
match, 98% complete)
done.
NOTE: Executing Tasks
NOTE: Running setscene task 771 of 919 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.24.3.bb:do_recipe_qa_setscene)
NOTE: recipe gstreamer1.0-plugins-ugly-1.24.3-r0: task do_recipe_qa_setscene: 
Started
NOTE: recipe gstreamer1.0-plugins-ugly-1.24.3-r0: task do_recipe_qa_setscene: 
Succeeded
NOTE: Setscene tasks completed
NOTE: Running task 2311 of 2553 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.24.3.bb:do_fetch)
NOTE: Running task 2414 of 2553 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.24.3.bb:do_write_config)
NOTE: recipe gstreamer1.0-plugins-ugly-1.24.3-r0: task do_fetch: Started
NOTE: recipe gstreamer1.0-plugins-ugly-1.24.3-r0: task do_fetch: Succeeded
NOTE: Running task 2535 of 2553 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.24.3.bb:do_unpack)
NOTE: Running task 2536 of 2553 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.24.3.bb:do_prepare_recipe_sysroot)
NOTE: recipe gstreamer1.0-plugins-ugly-1.24.3-r0: task do_write_config: Started
NOTE: recipe gstreamer1.0-plugins-ugly-1.24.3-r0: task do_write_config: 
Succeeded
NOTE: recipe gstreamer1.0-plugins-ugly-1.24.3-r0: task do_unpack: 

[OE-core] [AUH] gstreamer1.0-libav: upgrading to 1.24.3 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *gstreamer1.0-libav* to 
*1.24.3* has Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 
0001-gstreamer1.0-libav-upgrade-1.22.11-1.24.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 4e045037bf95fb6a39768281153e747b20b8ef10 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 15:30:48 +
Subject: [PATCH] gstreamer1.0-libav: upgrade 1.22.11 -> 1.24.3

---
 ...treamer1.0-libav_1.22.11.bb => gstreamer1.0-libav_1.24.3.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-libav_1.22.11.bb => 
gstreamer1.0-libav_1.24.3.bb} (91%)

diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_1.22.11.bb 
b/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_1.24.3.bb
similarity index 91%
rename from meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_1.22.11.bb
rename to meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_1.24.3.bb
index f3287efa96..d468f2983c 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_1.22.11.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_1.24.3.bb
@@ -12,7 +12,7 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=69333daa044cb77e486cc36129f7a770 \
 "
 
 SRC_URI = 
"https://gstreamer.freedesktop.org/src/gst-libav/gst-libav-${PV}.tar.xz;
-SRC_URI[sha256sum] = 
"6b13dcc9332ef27a7c1e7005c0196883874f91622f8aa6e52f218b05b15d2bf5"
+SRC_URI[sha256sum] = 
"d9c5b152468a45c1fa8351410422090a7192707ad74d2e1a4367f5254e188d91"
 
 S = "${WORKDIR}/gst-libav-${PV}"
 
-- 
2.44.0

NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1880 entries from dependency cache.
Parsing recipes...done.
Parsing of 921 .bb files complete (920 cached, 1 parsed). 1879 targets, 35 
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.9.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "5.0+snapshot-38d0a9e7514535100187a9f0b5b632d470a8ac65"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:38d0a9e7514535100187a9f0b5b632d470a8ac65"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 340 Local 329 Mirrors 0 Missed 11 Current 585 (96% 
match, 98% complete)
done.
NOTE: Executing Tasks
NOTE: Running setscene task 778 of 925 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_1.24.3.bb:do_recipe_qa_setscene)
NOTE: recipe gstreamer1.0-libav-1.24.3-r0: task do_recipe_qa_setscene: Started
NOTE: recipe gstreamer1.0-libav-1.24.3-r0: task do_recipe_qa_setscene: Succeeded
NOTE: Setscene tasks completed
NOTE: Running task 2318 of 2567 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_1.24.3.bb:do_fetch)
NOTE: Running task 2426 of 2567 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_1.24.3.bb:do_write_config)
NOTE: recipe gstreamer1.0-libav-1.24.3-r0: task do_fetch: Started
NOTE: recipe gstreamer1.0-libav-1.24.3-r0: task do_fetch: Succeeded
NOTE: Running task 2549 of 2567 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_1.24.3.bb:do_unpack)
NOTE: Running task 2550 of 2567 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_1.24.3.bb:do_prepare_recipe_sysroot)
NOTE: recipe gstreamer1.0-libav-1.24.3-r0: task do_write_config: Started
NOTE: recipe gstreamer1.0-libav-1.24.3-r0: task do_write_config: Succeeded
NOTE: recipe gstreamer1.0-libav-1.24.3-r0: task do_unpack: Started
NOTE: recipe gstreamer1.0-libav-1.24.3-r0: task do_prepare_recipe_sysroot: 
Started
NOTE: recipe 

[OE-core] [AUH] gstreamer1.0-plugins-good: upgrading to 1.24.3 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *gstreamer1.0-plugins-good* to 
*1.24.3* has Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 
0001-gstreamer1.0-plugins-good-upgrade-1.22.11-1.24.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 181f0d7f9d83c79dc0913cf28c4daf6c700c4f8a Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 15:44:24 +
Subject: [PATCH] gstreamer1.0-plugins-good: upgrade 1.22.11 -> 1.24.3

---
 ...ine-ioctl_req_t-for-posix-linux-case.patch | 38 ---
 ...bb => gstreamer1.0-plugins-good_1.24.3.bb} |  5 +--
 2 files changed, 2 insertions(+), 41 deletions(-)
 delete mode 100644 
meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-v4l2-Define-ioctl_req_t-for-posix-linux-case.patch
 rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-plugins-good_1.22.11.bb 
=> gstreamer1.0-plugins-good_1.24.3.bb} (95%)

diff --git 
a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-v4l2-Define-ioctl_req_t-for-posix-linux-case.patch
 
b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-v4l2-Define-ioctl_req_t-for-posix-linux-case.patch
deleted file mode 100644
index 33bd4200f6..00
--- 
a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-v4l2-Define-ioctl_req_t-for-posix-linux-case.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From b77d4806fd5de50d0b017a3e6a19c5bfdef7b3e4 Mon Sep 17 00:00:00 2001
-From: Khem Raj 
-Date: Mon, 13 Feb 2023 12:47:31 -0800
-Subject: [PATCH] v4l2: Define ioctl_req_t for posix/linux case
-
-this is an issue seen with musl based linux distros e.g. alpine [1]
-musl is not going to change this since it breaks ABI/API interfaces
-Newer compilers are stringent ( e.g. clang16 ) which can now detect
-signature mismatches in function pointers too, existing code warned but
-did not error with older clang
-
-Fixes
-gstv4l2object.c:544:23: error: incompatible function pointer types assigning 
to 'gint (*)(gint, ioctl_req_t, ...)' (aka 'int (*)(int, unsigned long, ...)') 
from 'int (int, int, ...)' [-Wincompatible-function-pointer-types]
-v4l2object->ioctl = ioctl;
-  ^ ~
-
-[1] https://gitlab.alpinelinux.org/alpine/aports/-/issues/7580
-
-Upstream-Status: Submitted 
[https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3950]
-Signed-off-by: Khem Raj 
-

- sys/v4l2/gstv4l2object.h | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/sys/v4l2/gstv4l2object.h b/sys/v4l2/gstv4l2object.h
-index d95b375..5223cbb 100644
 a/sys/v4l2/gstv4l2object.h
-+++ b/sys/v4l2/gstv4l2object.h
-@@ -76,6 +76,8 @@ typedef gboolean  (*GstV4l2UpdateFpsFunction) (GstV4l2Object 
* v4l2object);
-  * 'unsigned long' for the 2nd parameter */
- #ifdef __ANDROID__
- typedef unsigned ioctl_req_t;
-+#elif defined(__linux__) && !defined(__GLIBC__) /* musl/linux */
-+typedef int ioctl_req_t;
- #else
- typedef gulong ioctl_req_t;
- #endif
diff --git 
a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.22.11.bb 
b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.24.3.bb
similarity index 95%
rename from 
meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.22.11.bb
rename to meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.24.3.bb
index 9ce3f73f7c..34af618f00 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.22.11.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.24.3.bb
@@ -4,10 +4,9 @@ SUMMARY = "'Good' GStreamer plugins"
 HOMEPAGE = "https://gstreamer.freedesktop.org/;
 BUGTRACKER = 
"https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/issues;
 
-SRC_URI = 
"https://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-${PV}.tar.xz
 \
-   file://0001-v4l2-Define-ioctl_req_t-for-posix-linux-case.patch"
+SRC_URI = 
"https://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-${PV}.tar.xz;
 
-SRC_URI[sha256sum] = 
"6ddd032381827d31820540735f0004b429436b0bdac19aaeab44fa22faad52e2"
+SRC_URI[sha256sum] = 
"150f914e61dc05600b68b88ca103c7cc227130158e389ea9ea159f4050a2ebb0"
 
 S = "${WORKDIR}/gst-plugins-good-${PV}"
 
-- 
2.44.0


[OE-core] [AUH] gstreamer1.0-python: upgrading to 1.24.3 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *gstreamer1.0-python* to 
*1.24.3* has Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 
0001-gstreamer1.0-python-upgrade-1.22.11-1.24.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 2c897a746df141cb46591c426fde6c3bb032243c Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 15:49:04 +
Subject: [PATCH] gstreamer1.0-python: upgrade 1.22.11 -> 1.24.3

---
 ...eamer1.0-python_1.22.11.bb => gstreamer1.0-python_1.24.3.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-python_1.22.11.bb => 
gstreamer1.0-python_1.24.3.bb} (91%)

diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.22.11.bb 
b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.24.3.bb
similarity index 91%
rename from meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.22.11.bb
rename to meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.24.3.bb
index 0fbb03f757..5fbf860741 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.22.11.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.24.3.bb
@@ -8,7 +8,7 @@ LICENSE = "LGPL-2.1-or-later"
 LIC_FILES_CHKSUM = "file://COPYING;md5=c34deae4e395ca07e725ab0076a5f740"
 
 SRC_URI = 
"https://gstreamer.freedesktop.org/src/${PNREAL}/${PNREAL}-${PV}.tar.xz;
-SRC_URI[sha256sum] = 
"f7a5450d93fd81bf46060dca7f4a048d095b6717961fec211731a11a994c99a7"
+SRC_URI[sha256sum] = 
"ecdb3e2ba94ea2c82b93a8c715d5a7e04f9726a8838c0a6b17694928fd1e8595"
 
 DEPENDS = "gstreamer1.0 gstreamer1.0-plugins-base python3-pygobject"
 RDEPENDS:${PN} += "gstreamer1.0 gstreamer1.0-plugins-base python3-pygobject"
-- 
2.44.0

NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1880 entries from dependency cache.
Parsing recipes...done.
Parsing of 921 .bb files complete (920 cached, 1 parsed). 1879 targets, 35 
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.9.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "5.0+snapshot-9a65b79376f802cfebdcd891f33edb58262a560a"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:9a65b79376f802cfebdcd891f33edb58262a560a"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 472 Local 461 Mirrors 0 Missed 11 Current 694 (97% 
match, 99% complete)
done.
NOTE: Executing Tasks
NOTE: Running setscene task 951 of 1166 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.24.3.bb:do_recipe_qa_setscene)
NOTE: recipe gstreamer1.0-python-1.24.3-r0: task do_recipe_qa_setscene: Started
NOTE: recipe gstreamer1.0-python-1.24.3-r0: task do_recipe_qa_setscene: 
Succeeded
NOTE: Setscene tasks completed
NOTE: Running task 2593 of 3210 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.24.3.bb:do_fetch)
NOTE: Running task 2825 of 3210 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.24.3.bb:do_write_config)
NOTE: recipe gstreamer1.0-python-1.24.3-r0: task do_fetch: Started
NOTE: recipe gstreamer1.0-python-1.24.3-r0: task do_fetch: Succeeded
NOTE: Running task 2919 of 3210 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.24.3.bb:do_unpack)
NOTE: Running task 2920 of 3210 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.24.3.bb:do_prepare_recipe_sysroot)
NOTE: recipe gstreamer1.0-python-1.24.3-r0: task do_write_config: Started
NOTE: recipe gstreamer1.0-python-1.24.3-r0: task do_unpack: Started
NOTE: recipe gstreamer1.0-python-1.24.3-r0: task 

[OE-core] [AUH] systemtap: upgrading to 5.1 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-systemtap-upgrade-5.0-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 76f0b2c3d65eb1a1bfb4d1e10a2420edacd9ebd0 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 15:19:18 +
Subject: [PATCH] systemtap: upgrade 5.0 -> 5.1

---
 ...gure-write-a-python-location-into-th.patch |  7 +--
 ...ython-modules-to-correct-library-dir.patch |  7 +--
 ...ve-runtime-linux-uprobes-and-runtime.patch | 40 ---
 ...x-fix-build-against-upcoming-gcc-14-.patch | 40 ---
 ...-broken-libdebuginfod-library-auto-d.patch | 51 ---
 ...rove-reproducibility-for-c-compiling.patch |  7 +--
 .../0001-prerelease-datestamp-fixes.patch | 23 -
 ...staprun-address-ncurses-6.3-failures.patch | 11 ++--
 ...d-against-upcoming-gcc-14-Werror-cal.patch | 36 -
 ...-don-t-support-installing-a-non-root.patch | 17 +++
 .../recipes-kernel/systemtap/systemtap_git.bb |  5 +-
 .../systemtap/systemtap_git.inc   |  4 +-
 12 files changed, 24 insertions(+), 224 deletions(-)
 delete mode 100644 
meta/recipes-kernel/systemtap/systemtap/0001-Makefile.am-remove-runtime-linux-uprobes-and-runtime.patch
 delete mode 100644 
meta/recipes-kernel/systemtap/systemtap/0001-bpf-translate.cxx-fix-build-against-upcoming-gcc-14-.patch
 delete mode 100644 
meta/recipes-kernel/systemtap/systemtap/0001-configure.ac-fix-broken-libdebuginfod-library-auto-d.patch
 delete mode 100644 
meta/recipes-kernel/systemtap/systemtap/0001-prerelease-datestamp-fixes.patch
 delete mode 100644 
meta/recipes-kernel/systemtap/systemtap/0001-staprun-fix-build-against-upcoming-gcc-14-Werror-cal.patch

diff --git 
a/meta/recipes-kernel/systemtap/systemtap/0001-Do-not-let-configure-write-a-python-location-into-th.patch
 
b/meta/recipes-kernel/systemtap/systemtap/0001-Do-not-let-configure-write-a-python-location-into-th.patch
index 742b1187fc..aafc48205e 100644
--- 
a/meta/recipes-kernel/systemtap/systemtap/0001-Do-not-let-configure-write-a-python-location-into-th.patch
+++ 
b/meta/recipes-kernel/systemtap/systemtap/0001-Do-not-let-configure-write-a-python-location-into-th.patch
@@ -1,4 +1,4 @@
-From ab29615ed6c2e779b472903564dc683dc1015de7 Mon Sep 17 00:00:00 2001
+From 7e59c028e99f7a6a6a5bca59075b4f1a2899a73e Mon Sep 17 00:00:00 2001
 From: Alexander Kanavin 
 Date: Wed, 22 Feb 2017 13:37:33 +0200
 Subject: [PATCH] Do not let configure write a python location into the dtrace
@@ -11,7 +11,7 @@ Signed-off-by: Alexander Kanavin 
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/dtrace.in b/dtrace.in
-index 5e1cf8079..a24229cbc 100644
+index 73a6f22e2..870999e36 100644
 --- a/dtrace.in
 +++ b/dtrace.in
 @@ -1,4 +1,4 @@
@@ -20,6 +20,3 @@ index 5e1cf8079..a24229cbc 100644
  # vim: et sta sts=4 sw=4 ts=8
  
  # This handles the systemtap equivalent of
--- 
-2.11.0
-
diff --git 
a/meta/recipes-kernel/systemtap/systemtap/0001-Install-python-modules-to-correct-library-dir.patch
 
b/meta/recipes-kernel/systemtap/systemtap/0001-Install-python-modules-to-correct-library-dir.patch
index 48cf4aee85..8cdbf166c2 100644
--- 
a/meta/recipes-kernel/systemtap/systemtap/0001-Install-python-modules-to-correct-library-dir.patch
+++ 
b/meta/recipes-kernel/systemtap/systemtap/0001-Install-python-modules-to-correct-library-dir.patch
@@ -1,4 +1,4 @@
-From 2ada22f05460223924efe54080cb4419e2b4c276 Mon Sep 17 00:00:00 2001
+From 236c670783d9081846716971c2da9102854f9049 Mon Sep 17 00:00:00 2001
 From: Alexander Kanavin 
 Date: Fri, 24 Feb 2017 17:53:02 +0200
 Subject: [PATCH] Install python modules to correct library dir.
@@ -19,7 +19,7 @@ Signed-off-by: Hongxu Jia 
  1 file changed, 6 insertions(+), 2 deletions(-)
 
 diff --git a/python/Makefile.am b/python/Makefile.am
-index a254480..578602f 100644
+index a254480f9..578602fdd 100644
 --- a/python/Makefile.am
 +++ b/python/Makefile.am
 @@ -8,6 +8,10 @@ AUTOMAKE_OPTIONS = subdir-objects
@@ -51,6 +51,3 @@ index a254480..578602f 100644
 --single-version-externally-managed \
 --record $(shell readlink -f 

[OE-core] [AUH] vulkan-utility-libraries: upgrading to 1.3.283.0 SUCCEEDED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Next steps:
- apply the patch: git am 
0001-vulkan-utility-libraries-upgrade-1.3.280.0-1.3.283.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 2512c5dc9e74c32f806231d786c4e6ba84d5fd21 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 14:28:54 +
Subject: [PATCH] vulkan-utility-libraries: upgrade 1.3.280.0 -> 1.3.283.0

---
 ...aries_1.3.280.0.bb => vulkan-utility-libraries_1.3.283.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-graphics/vulkan/{vulkan-utility-libraries_1.3.280.0.bb => 
vulkan-utility-libraries_1.3.283.0.bb} (95%)

diff --git a/meta/recipes-graphics/vulkan/vulkan-utility-libraries_1.3.280.0.bb 
b/meta/recipes-graphics/vulkan/vulkan-utility-libraries_1.3.283.0.bb
similarity index 95%
rename from meta/recipes-graphics/vulkan/vulkan-utility-libraries_1.3.280.0.bb
rename to meta/recipes-graphics/vulkan/vulkan-utility-libraries_1.3.283.0.bb
index 3ab31af96a..5fb63327a8 100644
--- a/meta/recipes-graphics/vulkan/vulkan-utility-libraries_1.3.280.0.bb
+++ b/meta/recipes-graphics/vulkan/vulkan-utility-libraries_1.3.283.0.bb
@@ -10,7 +10,7 @@ LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE.md;md5=4ca2d6799091aaa98a8520f1b793939b"
 
 SRC_URI = 
"git://github.com/KhronosGroup/Vulkan-Utility-Libraries.git;branch=main;protocol=https"
-SRCREV = "a4140c5fd47dcf3a030726a60b293db61cfb54a3"
+SRCREV = "ad7f699a7b2b5deb66eb3de19f24aa33597ed65b"
 
 S = "${WORKDIR}/git"
 
-- 
2.44.0

NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 0 entries from dependency cache.
Parsing recipes...done.
Parsing of 921 .bb files complete (0 cached, 921 parsed). 1880 targets, 46 
skipped, 0 masked, 0 errors.
Removing 40 recipes from the core2-64 sysroot...done.
Removing 47 recipes from the qemux86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.9.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux-musl"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "5.0+snapshot-52dead40536f1ebf0524f488fac726670f140390"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:52dead40536f1ebf0524f488fac726670f140390"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 132 Local 120 Mirrors 0 Missed 12 Current 182 (90% 
match, 96% complete)
Removing 5 stale sstate objects for arch x86_64...done.
NOTE: Executing Tasks
NOTE: Running setscene task 190 of 314 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-graphics/vulkan/vulkan-headers_1.3.280.0.bb:do_create_spdx_setscene)
NOTE: Running setscene task 199 of 314 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-graphics/vulkan/vulkan-headers_1.3.280.0.bb:do_populate_sysroot_setscene)
NOTE: Running task 633 of 936 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-graphics/vulkan/vulkan-utility-libraries_1.3.283.0.bb:do_recipe_qa)
NOTE: recipe vulkan-headers-1.3.280.0-r0: task do_create_spdx_setscene: Started
NOTE: recipe vulkan-headers-1.3.280.0-r0: task do_populate_sysroot_setscene: 
Started
NOTE: recipe vulkan-utility-libraries-1.3.283.0-r0: task do_recipe_qa: Started
NOTE: recipe vulkan-headers-1.3.280.0-r0: task do_create_spdx_setscene: 
Succeeded
NOTE: Running setscene task 260 of 314 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/gcc/gcc-runtime_13.2.bb:do_create_spdx_setscene)
NOTE: Running setscene task 261 of 314 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-graphics/vulkan/vulkan-headers_1.3.280.0.bb:do_packagedata_setscene)
NOTE: recipe vulkan-headers-1.3.280.0-r0: task do_populate_sysroot_setscene: 
Succeeded
NOTE: recipe vulkan-headers-1.3.280.0-r0: task do_packagedata_setscene: Started
NOTE: recipe gcc-runtime-13.2.0-r0: task do_create_spdx_setscene: Started
NOTE: recipe gcc-runtime-13.2.0-r0: task do_create_spdx_setscene: 

[OE-core] [AUH] diffoscope: upgrading to 266 SUCCEEDED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Next steps:
- apply the patch: git am 0001-diffoscope-upgrade-265-266.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 2f6de9ec1e1e8a00729b58d79b29f50515694412 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 16:21:57 +
Subject: [PATCH] diffoscope: upgrade 265 -> 266

---
 .../diffoscope/{diffoscope_265.bb => diffoscope_266.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-support/diffoscope/{diffoscope_265.bb => 
diffoscope_266.bb} (93%)

diff --git a/meta/recipes-support/diffoscope/diffoscope_265.bb 
b/meta/recipes-support/diffoscope/diffoscope_266.bb
similarity index 93%
rename from meta/recipes-support/diffoscope/diffoscope_265.bb
rename to meta/recipes-support/diffoscope/diffoscope_266.bb
index 6af5abc974..1032c9a7cc 100644
--- a/meta/recipes-support/diffoscope/diffoscope_265.bb
+++ b/meta/recipes-support/diffoscope/diffoscope_266.bb
@@ -12,7 +12,7 @@ PYPI_PACKAGE = "diffoscope"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = 
"7bdcbd7fc5bc4c821bf6ab5ffbbeb265103b04e6908ea4bb12144d7e5ca002ff"
+SRC_URI[sha256sum] = 
"47a93aa20f1644d090a131986be50feb3e645d9e8a892bb04c4c11da216769d9"
 
 RDEPENDS:${PN} += "\
 binutils \
-- 
2.44.0

NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 0 entries from dependency cache.
Parsing recipes...done.
Parsing of 921 .bb files complete (0 cached, 921 parsed). 1880 targets, 46 
skipped, 0 masked, 0 errors.
Removing 101 recipes from the core2-64 sysroot...done.
Removing 129 recipes from the qemux86_64 sysroot...done.

Summary: There was 1 ERROR message, returning a non-zero exit code.
ERROR: Nothing PROVIDES 'diffoscope'
diffoscope was skipped: incompatible with host x86_64-poky-linux-musl (not in 
COMPATIBLE_HOST)
diffoscope was skipped: incompatible with host x86_64-poky-linux-musl (not in 
COMPATIBLE_HOST)
packages/core2-64-poky-linux/diffoscope/diffoscope-dbg: PV changed from "265" 
to "266"
packages/core2-64-poky-linux/diffoscope/diffoscope-dbg: PKGV changed from 265 
[default] to 266 [default]
packages/core2-64-poky-linux/diffoscope/diffoscope-dev: PV changed from "265" 
to "266"
packages/core2-64-poky-linux/diffoscope/diffoscope-dev: PKGV changed from 265 
[default] to 266 [default]
packages/core2-64-poky-linux/diffoscope/diffoscope-doc: PV changed from "265" 
to "266"
packages/core2-64-poky-linux/diffoscope/diffoscope-doc: PKGV changed from 265 
[default] to 266 [default]
packages/core2-64-poky-linux/diffoscope/diffoscope-locale: PV changed from 
"265" to "266"
packages/core2-64-poky-linux/diffoscope/diffoscope-locale: PKGV changed from 
265 [default] to 266 [default]
packages/core2-64-poky-linux/diffoscope/diffoscope-src: PV changed from "265" 
to "266"
packages/core2-64-poky-linux/diffoscope/diffoscope-src: PKGV changed from 265 
[default] to 266 [default]
packages/core2-64-poky-linux/diffoscope/diffoscope-staticdev: PV changed from 
"265" to "266"
packages/core2-64-poky-linux/diffoscope/diffoscope-staticdev: PKGV changed from 
265 [default] to 266 [default]
packages/core2-64-poky-linux/diffoscope/diffoscope: PV changed from "265" to 
"266"
packages/core2-64-poky-linux/diffoscope/diffoscope: PKGSIZE changed from 
1355704 to 1357704 (+0%)
packages/core2-64-poky-linux/diffoscope/diffoscope: PKGV changed from 265 
[default] to 266 [default]
packages/core2-64-poky-linux/diffoscope: SRC_URI changed from 
"https://files.pythonhosted.org/packages/source/d/diffoscope/diffoscope-265.tar.gz;downloadfilename=diffoscope-265.tar.gz;
 to 
"https://files.pythonhosted.org/packages/source/d/diffoscope/diffoscope-266.tar.gz;downloadfilename=diffoscope-266.tar.gz;
packages/core2-64-poky-linux/diffoscope: PV changed from "265" to "266"
packages/core2-64-poky-linux/diffoscope: PKGV changed from 265 [default] to 266 
[default]
Changes to packages/core2-64-poky-linux/diffoscope (sysroot):
  /usr/lib/python3.12/site-packages/diffoscope-265.dist-info moved to 
/usr/lib/python3.12/site-packages/diffoscope-266.dist-info
Changes to packages/core2-64-poky-linux/diffoscope (sysroot):
  /usr/lib/python3.12/site-packages/diffoscope-265.dist-info moved to 

[OE-core] [AUH] gstreamer1.0-vaapi: upgrading to 1.24.3 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *gstreamer1.0-vaapi* to 
*1.24.3* has Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 
0001-gstreamer1.0-vaapi-upgrade-1.22.11-1.24.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 1ab7a177b23ed8520d0f94f0bcd8381a8e1a5f74 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 15:53:43 +
Subject: [PATCH] gstreamer1.0-vaapi: upgrade 1.22.11 -> 1.24.3

---
 ...treamer1.0-vaapi_1.22.11.bb => gstreamer1.0-vaapi_1.24.3.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-vaapi_1.22.11.bb => 
gstreamer1.0-vaapi_1.24.3.bb} (95%)

diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.22.11.bb 
b/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.24.3.bb
similarity index 95%
rename from meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.22.11.bb
rename to meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.24.3.bb
index 87eb8484a1..8ddfe15de9 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.22.11.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.24.3.bb
@@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = 
"file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c"
 
 SRC_URI = 
"https://gstreamer.freedesktop.org/src/${REALPN}/${REALPN}-${PV}.tar.xz;
 
-SRC_URI[sha256sum] = 
"6eae1360658302b9b512fa46b4d06f5b818dfce5f2f43d7d710ca8142719d8ad"
+SRC_URI[sha256sum] = 
"845f2efe0dca8dab234dde8fb091da2cd06a9d2a683422b56dcb688954f9070e"
 
 S = "${WORKDIR}/${REALPN}-${PV}"
 DEPENDS = "libva gstreamer1.0 gstreamer1.0-plugins-base 
gstreamer1.0-plugins-bad"
-- 
2.44.0



0001-gstreamer1.0-vaapi-upgrade-1.22.11-1.24.3.patch
Description: Binary data
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1880 entries from dependency cache.
Parsing recipes...done.
Parsing of 921 .bb files complete (920 cached, 1 parsed). 1879 targets, 35 
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.9.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "5.0+snapshot-9f4731d200e5e82e60bf57af89863e0e407a9eb5"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:9f4731d200e5e82e60bf57af89863e0e407a9eb5"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 465 Local 453 Mirrors 0 Missed 12 Current 760 (97% 
match, 99% complete)
done.
NOTE: Executing Tasks
NOTE: Running setscene task 1000 of 1225 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.24.3.bb:do_recipe_qa_setscene)
NOTE: recipe gstreamer1.0-vaapi-1.24.3-r0: task do_recipe_qa_setscene: Started
NOTE: recipe gstreamer1.0-vaapi-1.24.3-r0: task do_recipe_qa_setscene: Succeeded
NOTE: Setscene tasks completed
NOTE: Running task 3063 of 3383 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.24.3.bb:do_fetch)
NOTE: Running task 3194 of 3383 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.24.3.bb:do_write_config)
NOTE: recipe gstreamer1.0-vaapi-1.24.3-r0: task do_fetch: Started
NOTE: recipe gstreamer1.0-vaapi-1.24.3-r0: task do_fetch: Succeeded
NOTE: Running task 3365 of 3383 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.24.3.bb:do_unpack)
NOTE: Running task 3366 of 3383 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.24.3.bb:do_prepare_recipe_sysroot)
NOTE: recipe gstreamer1.0-vaapi-1.24.3-r0: task do_write_config: Started
NOTE: recipe gstreamer1.0-vaapi-1.24.3-r0: task do_write_config: Succeeded
NOTE: recipe 

[OE-core] [AUH] kmod: upgrading to 32 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-kmod-upgrade-31-32.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 8caa2dd31e63c92c4d0f3f22a6e0a35cdcce Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 14:57:59 +
Subject: [PATCH] kmod: upgrade 31 -> 32

---
 ...Use-portable-implementation-for-basename-API.patch | 11 ---
 .../kmod/kmod/avoid_parallel_tests.patch  | 10 --
 meta/recipes-kernel/kmod/kmod/gtkdocdir.patch |  9 +++--
 meta/recipes-kernel/kmod/{kmod_31.bb => kmod_32.bb}   |  2 +-
 4 files changed, 12 insertions(+), 20 deletions(-)
 rename meta/recipes-kernel/kmod/{kmod_31.bb => kmod_32.bb} (98%)

diff --git 
a/meta/recipes-kernel/kmod/kmod/0001-Use-portable-implementation-for-basename-API.patch
 
b/meta/recipes-kernel/kmod/kmod/0001-Use-portable-implementation-for-basename-API.patch
index 6a7f9ded4f..ea8926f217 100644
--- 
a/meta/recipes-kernel/kmod/kmod/0001-Use-portable-implementation-for-basename-API.patch
+++ 
b/meta/recipes-kernel/kmod/kmod/0001-Use-portable-implementation-for-basename-API.patch
@@ -1,4 +1,4 @@
-From 721ed6040c7aa47070faf6378c433089e178bd43 Mon Sep 17 00:00:00 2001
+From 590720093df42ffc4eb64ee674d8f956de4f337a Mon Sep 17 00:00:00 2001
 From: Khem Raj 
 Date: Sat, 9 Dec 2023 17:35:59 -0800
 Subject: [PATCH] Use portable implementation for basename API
@@ -110,10 +110,10 @@ index 43fc354..cfb15b1 100644
dirlen -= namelen + 1;
}
 diff --git a/tools/kmod.c b/tools/kmod.c
-index 55689c0..df91e5c 100644
+index 1015575..57f59ca 100644
 --- a/tools/kmod.c
 +++ b/tools/kmod.c
-@@ -68,7 +68,7 @@ static int kmod_help(int argc, char *argv[])
+@@ -63,7 +63,7 @@ static int kmod_help(int argc, char *argv[])
"Options:\n"
"\t-V, --version show version\n"
"\t-h, --helpshow this help\n\n"
@@ -122,7 +122,7 @@ index 55689c0..df91e5c 100644
  
for (i = 0; i < ARRAY_SIZE(kmod_cmds); i++) {
if (kmod_cmds[i]->help != NULL) {
-@@ -156,7 +156,7 @@ static int handle_kmod_compat_commands(int argc, char 
*argv[])
+@@ -151,7 +151,7 @@ static int handle_kmod_compat_commands(int argc, char 
*argv[])
const char *cmd;
size_t i;
  
@@ -131,6 +131,3 @@ index 55689c0..df91e5c 100644
  
for (i = 0; i < ARRAY_SIZE(kmod_compat_cmds); i++) {
if (streq(kmod_compat_cmds[i]->name, cmd))
--- 
-2.43.0
-
diff --git a/meta/recipes-kernel/kmod/kmod/avoid_parallel_tests.patch 
b/meta/recipes-kernel/kmod/kmod/avoid_parallel_tests.patch
index 04a8204815..4342f23e7b 100644
--- a/meta/recipes-kernel/kmod/kmod/avoid_parallel_tests.patch
+++ b/meta/recipes-kernel/kmod/kmod/avoid_parallel_tests.patch
@@ -1,4 +1,4 @@
-From be6f82c54f694617c646ca1f8b5bcf93694e20ad Mon Sep 17 00:00:00 2001
+From 12eb3e1a85739619f43af277313ba6c5b2b48a40 Mon Sep 17 00:00:00 2001
 From: Tudor Florea 
 Date: Fri, 6 Sep 2013 21:11:57 +
 Subject: [PATCH] kmod: avoid parallel-tests
@@ -11,16 +11,15 @@ serial-tests is now required
 
 Signed-off-by: Tudor Florea 
 Upstream-Status: Inappropriate (disable feature incompatible with ptest)
-
 ---
  configure.ac | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/configure.ac b/configure.ac
-index ee72283..60980c0 100644
+index b651b5f..491be1b 100644
 --- a/configure.ac
 +++ b/configure.ac
-@@ -14,8 +14,8 @@ AC_USE_SYSTEM_EXTENSIONS
+@@ -14,7 +14,7 @@ AC_USE_SYSTEM_EXTENSIONS
  AC_SYS_LARGEFILE
  AC_PREFIX_DEFAULT([/usr])
  AM_MAINTAINER_MODE([enable])
@@ -28,5 +27,4 @@ index ee72283..60980c0 100644
 +AM_INIT_AUTOMAKE([check-news foreign 1.11 silent-rules tar-pax no-dist-gzip 
dist-xz subdir-objects color-tests serial-tests])
  AM_SILENT_RULES([yes])
  LT_INIT([disable-static pic-only])
-
- AS_IF([test "x$enable_static" = "xyes"], [AC_MSG_ERROR([--enable-static is 
not supported by kmod])])
+ 
diff --git a/meta/recipes-kernel/kmod/kmod/gtkdocdir.patch 
b/meta/recipes-kernel/kmod/kmod/gtkdocdir.patch
index a34ea466e8..1edb9a3749 100644
--- 

[OE-core] [AUH] puzzles: upgrading to fd304c53cc45dc05b3f95c20a466e20a7e1c9194 SUCCEEDED

2024-05-15 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 
*fd304c53cc45dc05b3f95c20a466e20a7e1c9194* 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 350c6b624168a9682d0cd19a31d29ed4dafc4f4b Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 16:01:09 +
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 e9403ee130..0ed066a5b5 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 = "80aac3104096aee4057b675c53ece8e60793aa90"
+SRCREV = "fd304c53cc45dc05b3f95c20a466e20a7e1c9194"
 PE = "2"
 PV = "0.0+git"
 
-- 
2.44.0



0001-puzzles-upgrade-to-latest-revision.patch
Description: Binary data
packages/core2-64-poky-linux/puzzles/puzzles-dbg: PKGSIZE changed from 19536544 
to 19536576 (+0%)
packages/core2-64-poky-linux/puzzles/puzzles-dbg: PKGV changed from 
0.0+git0+80aac31040 to 0.0+git0+fd304c53cc
packages/core2-64-poky-linux/puzzles/puzzles-dev: PKGV changed from 
0.0+git0+80aac31040 to 0.0+git0+fd304c53cc
packages/core2-64-poky-linux/puzzles/puzzles-doc: PKGV changed from 
0.0+git0+80aac31040 to 0.0+git0+fd304c53cc
packages/core2-64-poky-linux/puzzles/puzzles-locale: PKGV changed from 
0.0+git0+80aac31040 to 0.0+git0+fd304c53cc
packages/core2-64-poky-linux/puzzles/puzzles-src: PKGSIZE changed from 3838603 
to 3839116 (+0%)
packages/core2-64-poky-linux/puzzles/puzzles-src: PKGV changed from 
0.0+git0+80aac31040 to 0.0+git0+fd304c53cc
packages/core2-64-poky-linux/puzzles/puzzles-staticdev: PKGV changed from 
0.0+git0+80aac31040 to 0.0+git0+fd304c53cc
packages/core2-64-poky-linux/puzzles/puzzles: PKGV changed from 
0.0+git0+80aac31040 to 0.0+git0+fd304c53cc
packages/core2-64-poky-linux/puzzles/puzzles-dbg: PKGV changed from 
0.0+git0+80aac31040 to 0.0+git0+fd304c53cc
packages/core2-64-poky-linux/puzzles/puzzles-dev: PKGV changed from 
0.0+git0+80aac31040 to 0.0+git0+fd304c53cc
packages/core2-64-poky-linux/puzzles/puzzles-doc: PKGV changed from 
0.0+git0+80aac31040 to 0.0+git0+fd304c53cc
packages/core2-64-poky-linux/puzzles/puzzles-locale: PKGV changed from 
0.0+git0+80aac31040 to 0.0+git0+fd304c53cc
packages/core2-64-poky-linux/puzzles/puzzles-src: PKGV changed from 
0.0+git0+80aac31040 to 0.0+git0+fd304c53cc
packages/core2-64-poky-linux/puzzles/puzzles-staticdev: PKGV changed from 
0.0+git0+80aac31040 to 0.0+git0+fd304c53cc
packages/core2-64-poky-linux/puzzles/puzzles: PKGV changed from 
0.0+git0+80aac31040 to 0.0+git0+fd304c53cc

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#199398): 
https://lists.openembedded.org/g/openembedded-core/message/199398
Mute This Topic: https://lists.openembedded.org/mt/106118890/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] libxmlb: upgrading to 0.3.19 SUCCEEDED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Next steps:
- apply the patch: git am 0001-libxmlb-upgrade-0.3.18-0.3.19.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 743a030fd3c0445fadb8bddbcda3c3d4eec5beb9 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 13:00:41 +
Subject: [PATCH] libxmlb: upgrade 0.3.18 -> 0.3.19

---
 .../libxmlb/0001-xb-selftest.c-hardcode-G_TEST_SRCDIR.patch | 2 +-
 .../libxmlb/{libxmlb_0.3.18.bb => libxmlb_0.3.19.bb}| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-gnome/libxmlb/{libxmlb_0.3.18.bb => libxmlb_0.3.19.bb} 
(93%)

diff --git 
a/meta/recipes-gnome/libxmlb/libxmlb/0001-xb-selftest.c-hardcode-G_TEST_SRCDIR.patch
 
b/meta/recipes-gnome/libxmlb/libxmlb/0001-xb-selftest.c-hardcode-G_TEST_SRCDIR.patch
index 27081d8749..2502183965 100644
--- 
a/meta/recipes-gnome/libxmlb/libxmlb/0001-xb-selftest.c-hardcode-G_TEST_SRCDIR.patch
+++ 
b/meta/recipes-gnome/libxmlb/libxmlb/0001-xb-selftest.c-hardcode-G_TEST_SRCDIR.patch
@@ -1,4 +1,4 @@
-From 8a1aa4c318b8dbe4c0c2b1c4968f867ea6641b32 Mon Sep 17 00:00:00 2001
+From 14c401926084f683fe92be4a25e899ad832b9c6e Mon Sep 17 00:00:00 2001
 From: Markus Volk 
 Date: Sat, 16 Sep 2023 14:02:57 +0200
 Subject: [PATCH] xb-self-test.c: hardcode G_TEST_SRCDIR
diff --git a/meta/recipes-gnome/libxmlb/libxmlb_0.3.18.bb 
b/meta/recipes-gnome/libxmlb/libxmlb_0.3.19.bb
similarity index 93%
rename from meta/recipes-gnome/libxmlb/libxmlb_0.3.18.bb
rename to meta/recipes-gnome/libxmlb/libxmlb_0.3.19.bb
index 10ceab0721..de8d860d00 100644
--- a/meta/recipes-gnome/libxmlb/libxmlb_0.3.18.bb
+++ b/meta/recipes-gnome/libxmlb/libxmlb_0.3.19.bb
@@ -8,7 +8,7 @@ SRC_URI = " \
file://0001-xb-selftest.c-hardcode-G_TEST_SRCDIR.patch \
file://run-ptest \
 "
-SRCREV = "59cf2e0bf3c4d0905a32e32828d6100784993621"
+SRCREV = "4393955fb7c8bbcb6a2c65ff54f16c39dc165e59"
 S = "${WORKDIR}/git"
 
 DEPENDS = "glib-2.0 xz zstd"
-- 
2.44.0

packages/core2-64-poky-linux/libxmlb: PV changed from "0.3.18" to "0.3.19"
packages/core2-64-poky-linux/libxmlb: PKGV changed from 0.3.18 [default] to 
0.3.19 [default]
packages/core2-64-poky-linux/libxmlb/libxmlb-bin: PV changed from "0.3.18" to 
"0.3.19"
packages/core2-64-poky-linux/libxmlb/libxmlb-bin: PKGV changed from 0.3.18 
[default] to 0.3.19 [default]
packages/core2-64-poky-linux/libxmlb/libxmlb-dbg: PV changed from "0.3.18" to 
"0.3.19"
packages/core2-64-poky-linux/libxmlb/libxmlb-dbg: PKGSIZE changed from 1747984 
to 1748760 (+0%)
packages/core2-64-poky-linux/libxmlb/libxmlb-dbg: PKGV changed from 0.3.18 
[default] to 0.3.19 [default]
packages/core2-64-poky-linux/libxmlb/libxmlb-dev: PV changed from "0.3.18" to 
"0.3.19"
packages/core2-64-poky-linux/libxmlb/libxmlb-dev: PKGSIZE changed from 352371 
to 355313 (+1%)
packages/core2-64-poky-linux/libxmlb/libxmlb-dev: PKGV changed from 0.3.18 
[default] to 0.3.19 [default]
packages/core2-64-poky-linux/libxmlb/libxmlb-doc: PV changed from "0.3.18" to 
"0.3.19"
packages/core2-64-poky-linux/libxmlb/libxmlb-doc: PKGV changed from 0.3.18 
[default] to 0.3.19 [default]
packages/core2-64-poky-linux/libxmlb/libxmlb-locale: PV changed from "0.3.18" 
to "0.3.19"
packages/core2-64-poky-linux/libxmlb/libxmlb-locale: PKGV changed from 0.3.18 
[default] to 0.3.19 [default]
packages/core2-64-poky-linux/libxmlb/libxmlb-ptest: PV changed from "0.3.18" to 
"0.3.19"
packages/core2-64-poky-linux/libxmlb/libxmlb-ptest: RDEPENDS: removed 
"libxmlb", added "libxmlb (['>= 0.3.19'])"
packages/core2-64-poky-linux/libxmlb/libxmlb-ptest: PKGSIZE changed from 265318 
to 277606 (+5%)
packages/core2-64-poky-linux/libxmlb/libxmlb-ptest: PKGV changed from 0.3.18 
[default] to 0.3.19 [default]
packages/core2-64-poky-linux/libxmlb/libxmlb-src: PV changed from "0.3.18" to 
"0.3.19"
packages/core2-64-poky-linux/libxmlb/libxmlb-src: PKGSIZE changed from 509106 
to 511212 (+0%)
packages/core2-64-poky-linux/libxmlb/libxmlb-src: FILELIST: removed 
"/usr/src/debug/libxmlb/0.3.18/src/xb-builder.h 
/usr/src/debug/libxmlb/0.3.18/src/xb-machine.h 
/usr/src/debug/libxmlb/0.3.18/src/xb-query-private.h 
/usr/src/debug/libxmlb/0.3.18/src/xb-node-private.h 

[OE-core] [AUH] stress-ng: upgrading to 0.17.08 SUCCEEDED

2024-05-15 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *stress-ng* to *0.17.08* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-stress-ng-upgrade-0.17.07-0.17.08.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 6bf53c63a9801358173eba7ae16d53df96c5be22 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 12:32:48 +
Subject: [PATCH] stress-ng: upgrade 0.17.07 -> 0.17.08

---
 .../stress-ng/{stress-ng_0.17.07.bb => stress-ng_0.17.08.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-extended/stress-ng/{stress-ng_0.17.07.bb => 
stress-ng_0.17.08.bb} (94%)

diff --git a/meta/recipes-extended/stress-ng/stress-ng_0.17.07.bb 
b/meta/recipes-extended/stress-ng/stress-ng_0.17.08.bb
similarity index 94%
rename from meta/recipes-extended/stress-ng/stress-ng_0.17.07.bb
rename to meta/recipes-extended/stress-ng/stress-ng_0.17.08.bb
index fb88e06a7f..fffe6a1823 100644
--- a/meta/recipes-extended/stress-ng/stress-ng_0.17.07.bb
+++ b/meta/recipes-extended/stress-ng/stress-ng_0.17.08.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
 
 SRC_URI = 
"git://github.com/ColinIanKing/stress-ng.git;protocol=https;branch=master \
"
-SRCREV = "519151f460738cd62b69b84f8096cd218131e0a2"
+SRCREV = "b7c7a5877501679a3b0a67d877e6274a801d1e4e"
 S = "${WORKDIR}/git"
 
 DEPENDS = "coreutils-native libbsd"
-- 
2.44.0



0001-stress-ng-upgrade-0.17.07-0.17.08.patch
Description: Binary data
packages/core2-64-poky-linux/stress-ng: PKGV changed from 0.17.07 [default] to 
0.17.08 [default]
packages/core2-64-poky-linux/stress-ng: PV changed from "0.17.07" to "0.17.08"
packages/core2-64-poky-linux/stress-ng/stress-ng-bash-completion: PKGV changed 
from 0.17.07 [default] to 0.17.08 [default]
packages/core2-64-poky-linux/stress-ng/stress-ng-bash-completion: PV changed 
from "0.17.07" to "0.17.08"
packages/core2-64-poky-linux/stress-ng/stress-ng-dbg: PKGV changed from 0.17.07 
[default] to 0.17.08 [default]
packages/core2-64-poky-linux/stress-ng/stress-ng-dbg: PKGSIZE changed from 
18313096 to 20900504 (+14%)
packages/core2-64-poky-linux/stress-ng/stress-ng-dbg: PV changed from "0.17.07" 
to "0.17.08"
packages/core2-64-poky-linux/stress-ng/stress-ng-dev: PKGV changed from 0.17.07 
[default] to 0.17.08 [default]
packages/core2-64-poky-linux/stress-ng/stress-ng-dev: PV changed from "0.17.07" 
to "0.17.08"
packages/core2-64-poky-linux/stress-ng/stress-ng-doc: PKGV changed from 0.17.07 
[default] to 0.17.08 [default]
packages/core2-64-poky-linux/stress-ng/stress-ng-doc: PKGSIZE changed from 
85364 to 86595 (+1%)
packages/core2-64-poky-linux/stress-ng/stress-ng-doc: PV changed from "0.17.07" 
to "0.17.08"
packages/core2-64-poky-linux/stress-ng/stress-ng-locale: PKGV changed from 
0.17.07 [default] to 0.17.08 [default]
packages/core2-64-poky-linux/stress-ng/stress-ng-locale: PV changed from 
"0.17.07" to "0.17.08"
packages/core2-64-poky-linux/stress-ng/stress-ng-src: PKGV changed from 0.17.07 
[default] to 0.17.08 [default]
packages/core2-64-poky-linux/stress-ng/stress-ng-src: PKGSIZE changed from 
5328505 to 5386572 (+1%)
packages/core2-64-poky-linux/stress-ng/stress-ng-src: PV changed from "0.17.07" 
to "0.17.08"
packages/core2-64-poky-linux/stress-ng/stress-ng-src: FILELIST: removed 
"/usr/src/debug/stress-ng/0.17.07/stress-misaligned.c 
/usr/src/debug/stress-ng/0.17.07/stress-dynlib.c 
/usr/src/debug/stress-ng/0.17.07/stress-timerfd.c 
/usr/src/debug/stress-ng/0.17.07/stress-stream.c 
/usr/src/debug/stress-ng/0.17.07/stress-usersyscall.c 
/usr/src/debug/stress-ng/0.17.07/stress-sock.c 
/usr/src/debug/stress-ng/0.17.07/stress-mq.c 
/usr/src/debug/stress-ng/0.17.07/stress-affinity.c 
/usr/src/debug/stress-ng/0.17.07/stress-signest.c 
/usr/src/debug/stress-ng/0.17.07/stress-schedpolicy.c 
/usr/src/debug/stress-ng/0.17.07/core-asm-generic.h 
/usr/src/debug/stress-ng/0.17.07/stress-sigpipe.c 
/usr/src/debug/stress-ng/0.17.07/stress-sigsegv.c 
/usr/src/debug/stress-ng/0.17.07/stress-sigtrap.c 
/usr/src/debug/stress-ng/0.17.07/stress-sigxcpu.c 
/usr/src/debug/stress-ng/0.17.07/stress-sigxfsz.c 
/usr/src/debug/stress-ng/0.17.07/stress-sigchld.c 
/usr/src/debug/stress-ng/0.17.07/stress-sigabrt.c 

[OE-core] [AUH] ffmpeg: upgrading to 7.0 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

Running 'devtool upgrade' for recipe ffmpeg failed.
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1879 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 11 Local 11 Mirrors 0 Missed 0 Current 22 (100% match, 
100% complete)
done.
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: 3 seconds
Loading cache...done.
Loaded 1879 entries from dependency cache.
Parsing recipes...done.
Parsing of 922 .bb files complete (920 cached, 2 parsed). 1880 targets, 35 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 10 Local 9 Mirrors 0 Missed 1 Current 18 (90% match, 96% 
complete)
done.
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: 3 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:03
Adding changed files:   9% |### | ETA:  0:00:02
Adding changed files:  14% |#   | ETA:  0:00:02
Adding changed files:  19% |### | ETA:  0:00:01
Adding changed files:  24% || ETA:  0:00:01
Adding changed files:  29% |##  | ETA:  0:00:01
Adding changed files:  34% || ETA:  0:00:01
Adding changed files:  39% |##  | ETA:  0:00:01
Adding changed files:  44% |### | ETA:  0:00:01
Adding changed files:  48% |#   | ETA:  0:00:01
Adding changed files:  53% |### | ETA:  0:00:01
Adding changed files:  58% |#   | ETA:  0:00:00
Adding changed files:  63% |##  | ETA:  0:00:00
Adding changed files:  68% || ETA:  0:00:00
Adding changed files:  73% |##  | ETA:  0:00:00
Adding changed files:  78% || ETA:  0:00:00
Adding changed files:  83% |#   | ETA:  0:00:00
Adding changed files:  88% |### | ETA:  0:00:00
Adding changed files:  93% |#   | ETA:  0:00:00
Adding changed files:  97% |### | ETA:  0:00:00
Adding changed files: 100% || Time: 0:00:01
INFO: Extracting current version source...
INFO: Extracting upgraded version source...
INFO: Fetching https://www.ffmpeg.org/releases/ffmpeg-7.0.tar.xz...
INFO: Rebasing devtool onto 8a91018c810652288380b99a690fcd39aa26041b
WARNING: Command 'git rebase 8a91018c810652288380b99a690fcd39aa26041b' failed:
Auto-merging configure
Auto-merging libavcodec/Makefile
Auto-merging libavcodec/vulkan_av1.c
CONFLICT (content): Merge conflict in libavcodec/vulkan_av1.c
Auto-merging libavcodec/vulkan_decode.c
Auto-merging libavcodec/vulkan_decode.h
Auto-merging libavcodec/vulkan_video.c
CONFLICT (content): Merge 

[OE-core] [AUH] wireless-regdb: upgrading to 2024.05.08 SUCCEEDED

2024-05-15 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *wireless-regdb* to 
*2024.05.08* has Succeeded.

Next steps:
- apply the patch: git am 
0001-wireless-regdb-upgrade-2024.01.23-2024.05.08.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 dec0ebb639929ec851d3f8dbf535faa00d8db1d5 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 15:21:58 +
Subject: [PATCH] wireless-regdb: upgrade 2024.01.23 -> 2024.05.08

---
 ...ireless-regdb_2024.01.23.bb => wireless-regdb_2024.05.08.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-kernel/wireless-regdb/{wireless-regdb_2024.01.23.bb => 
wireless-regdb_2024.05.08.bb} (94%)

diff --git a/meta/recipes-kernel/wireless-regdb/wireless-regdb_2024.01.23.bb 
b/meta/recipes-kernel/wireless-regdb/wireless-regdb_2024.05.08.bb
similarity index 94%
rename from meta/recipes-kernel/wireless-regdb/wireless-regdb_2024.01.23.bb
rename to meta/recipes-kernel/wireless-regdb/wireless-regdb_2024.05.08.bb
index 8fde236ab4..95e33d9fb1 100644
--- a/meta/recipes-kernel/wireless-regdb/wireless-regdb_2024.01.23.bb
+++ b/meta/recipes-kernel/wireless-regdb/wireless-regdb_2024.05.08.bb
@@ -5,7 +5,7 @@ LICENSE = "ISC"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=07c4f6dea3845b02a18dc00c8c87699c"
 
 SRC_URI = "https://www.kernel.org/pub/software/network/${BPN}/${BP}.tar.xz;
-SRC_URI[sha256sum] = 
"c8a61c9acf76fa7eb4239e89f640dee3e87098d9f69b4d3518c9c60fc6d20c55"
+SRC_URI[sha256sum] = 
"9aee1d86ebebb363b714bec941b2820f31e3b7f1a485ddc9fcbd9985c7d3e7c4"
 
 inherit bin_package allarch
 
-- 
2.44.0



0001-wireless-regdb-upgrade-2024.01.23-2024.05.08.patch
Description: Binary data
packages/all-poky-linux/wireless-regdb: PKGV changed from 2024.01.23 [default] 
to 2024.05.08 [default]
packages/all-poky-linux/wireless-regdb: PV changed from "2024.01.23" to 
"2024.05.08"
packages/all-poky-linux/wireless-regdb: SRC_URI changed from 
"https://www.kernel.org/pub/software/network/wireless-regdb/wireless-regdb-2024.01.23.tar.xz;
 to 
"https://www.kernel.org/pub/software/network/wireless-regdb/wireless-regdb-2024.05.08.tar.xz;
packages/all-poky-linux/wireless-regdb/wireless-regdb-src: PKGV changed from 
2024.01.23 [default] to 2024.05.08 [default]
packages/all-poky-linux/wireless-regdb/wireless-regdb-src: PV changed from 
"2024.01.23" to "2024.05.08"
packages/all-poky-linux/wireless-regdb/wireless-regdb-static: PKGV changed from 
2024.01.23 [default] to 2024.05.08 [default]
packages/all-poky-linux/wireless-regdb/wireless-regdb-static: PV changed from 
"2024.01.23" to "2024.05.08"
packages/all-poky-linux/wireless-regdb/wireless-regdb-static: PKGSIZE changed 
from 5981 to 6021 (+1%)
packages/all-poky-linux/wireless-regdb/wireless-regdb: PKGV changed from 
2024.01.23 [default] to 2024.05.08 [default]
packages/all-poky-linux/wireless-regdb/wireless-regdb: PV changed from 
"2024.01.23" to "2024.05.08"
packages/all-poky-linux/wireless-regdb/wireless-regdb: PKGSIZE changed from 
7143 to 7175 (+0%)

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#199393): 
https://lists.openembedded.org/g/openembedded-core/message/199393
Mute This Topic: https://lists.openembedded.org/mt/106118885/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] pinentry: upgrading to 1.3.0 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

Running 'devtool upgrade' for recipe pinentry failed.
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1879 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 10 Local 10 Mirrors 0 Missed 0 Current 20 (100% match, 
100% complete)
done.
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: 4 seconds
Loading cache...done.
Loaded 1879 entries from dependency cache.
Parsing recipes...done.
Parsing of 922 .bb files complete (920 cached, 2 parsed). 1880 targets, 35 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 1 Local 0 Mirrors 0 Missed 1 Current 0 (0% match, 0% 
complete)
done.
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: 3 seconds
DEBUG 5 [Errno 25] Inappropriate ioctl for device
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:  92% |#   | 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://www.gnupg.org/ftp/gcrypt/pinentry/pinentry-1.3.0.tar.bz2...
INFO: Rebasing devtool onto 86967123aa0504c52880dfb56c91e810973819df
WARNING: Command 'git rebase 86967123aa0504c52880dfb56c91e810973819df' failed:
Auto-merging configure.ac
Auto-merging m4/libassuan.m4
CONFLICT (content): Merge conflict in m4/libassuan.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/workspace/sources/pinentry
INFO: New recipe is 
/home/pokybuild/yocto-worker/auh/build/build/workspace/recipes/pinentry/pinentry_1.3.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 (#199406): 
https://lists.openembedded.org/g/openembedded-core/message/199406
Mute This Topic: https://lists.openembedded.org/mt/106118900/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] libcap-ng-python: upgrading to 0.8.5 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *libcap-ng-python* to *0.8.5* 
has Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-libcap-ng-python-upgrade-0.8.4-0.8.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 66fcab0d356c559735a42fbf17cb1b11ff200209 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 16:35:49 +
Subject: [PATCH] libcap-ng-python: upgrade 0.8.4 -> 0.8.5

---
 .../files/fix-issues-with-swig-4-2.patch  | 32 ---
 ...hon_0.8.4.bb => libcap-ng-python_0.8.5.bb} |  0
 meta/recipes-support/libcap-ng/libcap-ng.inc  |  6 ++--
 3 files changed, 2 insertions(+), 36 deletions(-)
 delete mode 100644 
meta/recipes-support/libcap-ng/files/fix-issues-with-swig-4-2.patch
 rename meta/recipes-support/libcap-ng/{libcap-ng-python_0.8.4.bb => 
libcap-ng-python_0.8.5.bb} (100%)

diff --git 
a/meta/recipes-support/libcap-ng/files/fix-issues-with-swig-4-2.patch 
b/meta/recipes-support/libcap-ng/files/fix-issues-with-swig-4-2.patch
deleted file mode 100644
index fb424fe725..00
--- a/meta/recipes-support/libcap-ng/files/fix-issues-with-swig-4-2.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From 355eada2d20886287cffc16e304087dd6f66ae37 Mon Sep 17 00:00:00 2001
-From: Steve Grubb 
-Date: Thu, 4 Jan 2024 15:06:29 -0500
-Subject: [PATCH] Remove python global exception handler since its deprecated
-
-Upstream-Status: Backport 
[https://github.com/stevegrubb/libcap-ng/commit/30453b6553948cd05c438f9f509013e3bb84f25b]
-Signed-off-by: Anuj Mittal 

- bindings/src/capng_swig.i | 7 ---
- 1 file changed, 7 deletions(-)
-
-diff --git a/bindings/src/capng_swig.i b/bindings/src/capng_swig.i
-index fcdaf18..fa85e13 100644
 a/bindings/src/capng_swig.i
-+++ b/bindings/src/capng_swig.i
-@@ -30,13 +30,6 @@
- 
- %varargs(16, signed capability = 0) capng_updatev;
- 
--%except(python) {
--  $action
--  if (result < 0) {
--PyErr_SetFromErrno(PyExc_OSError);
--return NULL;
--  }
--}
- #endif
- 
- %define __signed__
--- 
-2.43.2
-
diff --git a/meta/recipes-support/libcap-ng/libcap-ng-python_0.8.4.bb 
b/meta/recipes-support/libcap-ng/libcap-ng-python_0.8.5.bb
similarity index 100%
rename from meta/recipes-support/libcap-ng/libcap-ng-python_0.8.4.bb
rename to meta/recipes-support/libcap-ng/libcap-ng-python_0.8.5.bb
diff --git a/meta/recipes-support/libcap-ng/libcap-ng.inc 
b/meta/recipes-support/libcap-ng/libcap-ng.inc
index 845b7c2f0a..875337b954 100644
--- a/meta/recipes-support/libcap-ng/libcap-ng.inc
+++ b/meta/recipes-support/libcap-ng/libcap-ng.inc
@@ -7,11 +7,9 @@ LICENSE = "GPL-2.0-or-later & LGPL-2.1-or-later"
 LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
file://COPYING.LIB;md5=e3eda01d9815f8d24aae2dbd89b68b06"
 
-SRC_URI = "https://people.redhat.com/sgrubb/libcap-ng/libcap-ng-${PV}.tar.gz \
-   file://fix-issues-with-swig-4-2.patch \
-   "
+SRC_URI = "https://people.redhat.com/sgrubb/libcap-ng/libcap-ng-${PV}.tar.gz;
 
-SRC_URI[sha256sum] = 
"68581d3b38e7553cb6f6ddf7813b1fc99e52856f21421f7b477ce5abd2605a8a"
+SRC_URI[sha256sum] = 
"3ba5294d1cbdfa98afaacfbc00b6af9ed2b83e8a21817185dfd844cc8c7ac6ff"
 
 EXTRA_OECONF:append:class-target = " 
--with-capability_header=${STAGING_INCDIR}/linux/capability.h"
 EXTRA_OECONF:append:class-nativesdk = " 
--with-capability_header=${STAGING_INCDIR}/linux/capability.h"
-- 
2.44.0



0001-libcap-ng-python-upgrade-0.8.4-0.8.5.patch
Description: Binary data
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1882 entries from dependency cache.
Parsing recipes...done.
Parsing of 921 .bb files complete (919 cached, 2 parsed). 1879 targets, 35 
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.9.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "5.0+snapshot-f886a03a8464694e7e43ba845d61fe6067d3d803"

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

2024-05-15 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.76.1* has 
Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-vte-upgrade-0.74.2-0.76.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 4d0b505938f91f6db4985841f591818bd1fa5656 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 17:25:18 +
Subject: [PATCH] vte: upgrade 0.74.2 -> 0.76.1

---
 ...1-Add-W_EXITCODE-macro-for-non-glibc-systems.patch | 11 ---
 .../vte/{vte_0.74.2.bb => vte_0.76.1.bb}  |  2 +-
 2 files changed, 5 insertions(+), 8 deletions(-)
 rename meta/recipes-support/vte/{vte_0.74.2.bb => vte_0.76.1.bb} (96%)

diff --git 
a/meta/recipes-support/vte/vte/0001-Add-W_EXITCODE-macro-for-non-glibc-systems.patch
 
b/meta/recipes-support/vte/vte/0001-Add-W_EXITCODE-macro-for-non-glibc-systems.patch
index 8934d5f80a..a675755776 100644
--- 
a/meta/recipes-support/vte/vte/0001-Add-W_EXITCODE-macro-for-non-glibc-systems.patch
+++ 
b/meta/recipes-support/vte/vte/0001-Add-W_EXITCODE-macro-for-non-glibc-systems.patch
@@ -1,4 +1,4 @@
-From de9639baac792327c701e509258b8a13f6959e82 Mon Sep 17 00:00:00 2001
+From 85a257c1335dc76c4e21b763f323e20c6917cb66 Mon Sep 17 00:00:00 2001
 From: Danilo Spinella 
 Date: Thu, 21 Mar 2019 14:19:26 +0100
 Subject: [PATCH] Add W_EXITCODE macro for non-glibc systems
@@ -12,11 +12,11 @@ Signed-off-by: Andreas Müller 
 
 [1] https://gitlab.gnome.org/GNOME/vte/issues/72
 ---
- src/widget.cc  | 4 +++
- 1 files changed, 4 insertions(+)
+ src/widget.cc | 4 
+ 1 file changed, 4 insertions(+)
 
 diff --git a/src/widget.cc b/src/widget.cc
-index 07f7cabf..31a77f68 100644
+index b8daa5c..c357960 100644
 --- a/src/widget.cc
 +++ b/src/widget.cc
 @@ -16,6 +16,10 @@
@@ -30,6 +30,3 @@ index 07f7cabf..31a77f68 100644
  #include "config.h"
  
  #include "widget.hh"
--- 
-2.42.0
-
diff --git a/meta/recipes-support/vte/vte_0.74.2.bb 
b/meta/recipes-support/vte/vte_0.76.1.bb
similarity index 96%
rename from meta/recipes-support/vte/vte_0.74.2.bb
rename to meta/recipes-support/vte/vte_0.76.1.bb
index d8eafde2fb..0e552d4563 100644
--- a/meta/recipes-support/vte/vte_0.74.2.bb
+++ b/meta/recipes-support/vte/vte_0.76.1.bb
@@ -19,7 +19,7 @@ GIDOCGEN_MESON_OPTION = "docs"
 inherit gnomebase gi-docgen features_check upstream-version-is-even 
gobject-introspection systemd vala
 
 SRC_URI += "file://0001-Add-W_EXITCODE-macro-for-non-glibc-systems.patch"
-SRC_URI[archive.sha256sum] = 
"a535fb2a98fea8a2449cd1a02cccf5190131dddff52e715afdace3feb536eae7"
+SRC_URI[archive.sha256sum] = 
"084e83ef765774269a4b29df97ca22edc343b9a1d81433d300b8cb2d087a1ec2"
 
 ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}"
 
-- 
2.44.0

NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1880 entries from dependency cache.
Parsing recipes...done.
Parsing of 921 .bb files complete (920 cached, 1 parsed). 1879 targets, 35 
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.9.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "5.0+snapshot-8d00577db4406b029519c1e3d046c9254019d55f"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:8d00577db4406b029519c1e3d046c9254019d55f"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 503 Local 491 Mirrors 0 Missed 12 Current 812 (97% 
match, 99% complete)
done.
NOTE: Executing Tasks
NOTE: Running setscene task 1174 of 1315 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/vte/vte_0.76.1.bb:do_recipe_qa_setscene)
NOTE: recipe vte-0.76.1-r0: task do_recipe_qa_setscene: Started
NOTE: recipe vte-0.76.1-r0: task do_recipe_qa_setscene: Succeeded
NOTE: Setscene tasks completed
NOTE: Running task 3252 of 3603 

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

2024-05-15 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.283.0* has Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 
0001-vulkan-validation-layers-upgrade-1.3.280.0-1.3.283.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 770b0ac3f93bf02353222c3f192d0c02aa10330b Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 14:35:20 +
Subject: [PATCH] vulkan-validation-layers: upgrade 1.3.280.0 -> 1.3.283.0

---
 ...ers_1.3.280.0.bb => vulkan-validation-layers_1.3.283.0.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-graphics/vulkan/{vulkan-validation-layers_1.3.280.0.bb => 
vulkan-validation-layers_1.3.283.0.bb} (95%)

diff --git a/meta/recipes-graphics/vulkan/vulkan-validation-layers_1.3.280.0.bb 
b/meta/recipes-graphics/vulkan/vulkan-validation-layers_1.3.283.0.bb
similarity index 95%
rename from meta/recipes-graphics/vulkan/vulkan-validation-layers_1.3.280.0.bb
rename to meta/recipes-graphics/vulkan/vulkan-validation-layers_1.3.283.0.bb
index c488309c91..6643e185cb 100644
--- a/meta/recipes-graphics/vulkan/vulkan-validation-layers_1.3.280.0.bb
+++ b/meta/recipes-graphics/vulkan/vulkan-validation-layers_1.3.283.0.bb
@@ -8,8 +8,8 @@ SECTION = "libs"
 LICENSE = "Apache-2.0 & MIT"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=cd3c0bc366cd9b6a906e22f0bcb5910f"
 
-SRC_URI = 
"git://github.com/KhronosGroup/Vulkan-ValidationLayers.git;branch=vulkan-sdk-1.3.280;protocol=https"
-SRCREV = "8506077b9a25a00684e8be24b779733ae1405a54"
+SRC_URI = 
"git://github.com/KhronosGroup/Vulkan-ValidationLayers.git;branch=vulkan-sdk-1.3.283;protocol=https"
+SRCREV = "d5bed3e26b3d487e8d21f0cc39039351eac921a7"
 
 S = "${WORKDIR}/git"
 
-- 
2.44.0



0001-vulkan-validation-layers-upgrade-1.3.280.0-1.3.283.0.patch
Description: Binary data
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1879 entries from dependency cache.
Parsing recipes...done.
Parsing of 921 .bb files complete (920 cached, 1 parsed). 1879 targets, 35 
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.9.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "5.0+snapshot-9ca63aca9f944615639ca2065605bfe0190c4757"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:9ca63aca9f944615639ca2065605bfe0190c4757"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 213 Local 201 Mirrors 0 Missed 12 Current 374 (94% 
match, 97% complete)
done.
NOTE: Executing Tasks
NOTE: Setscene tasks completed
NOTE: Running task 1479 of 1649 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-graphics/vulkan/vulkan-validation-layers_1.3.283.0.bb:do_recipe_qa)
NOTE: recipe vulkan-validation-layers-1.3.283.0-r0: task do_recipe_qa: Started
NOTE: recipe vulkan-validation-layers-1.3.283.0-r0: task do_recipe_qa: Succeeded
NOTE: Running task 1629 of 1649 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-graphics/vulkan/vulkan-validation-layers_1.3.283.0.bb:do_fetch)
NOTE: recipe vulkan-validation-layers-1.3.283.0-r0: task do_fetch: Started
NOTE: recipe vulkan-validation-layers-1.3.283.0-r0: task do_fetch: Succeeded
NOTE: Running task 1630 of 1649 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-graphics/vulkan/vulkan-validation-layers_1.3.283.0.bb:do_unpack)
NOTE: Running task 1631 of 1649 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-graphics/vulkan/vulkan-validation-layers_1.3.283.0.bb:do_prepare_recipe_sysroot)
NOTE: recipe vulkan-validation-layers-1.3.283.0-r0: task do_unpack: Started
NOTE: recipe vulkan-validation-layers-1.3.283.0-r0: task 
do_prepare_recipe_sysroot: Started
NOTE: recipe vulkan-validation-layers-1.3.283.0-r0: task 

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

2024-05-15 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.26* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-msmtp-upgrade-1.8.25-1.8.26.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 ea3facddaf2bdd7f4a1bf4daddfa4e3e8f066fcb Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 12:21:55 +
Subject: [PATCH] msmtp: upgrade 1.8.25 -> 1.8.26

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

diff --git a/meta/recipes-extended/msmtp/msmtp_1.8.25.bb 
b/meta/recipes-extended/msmtp/msmtp_1.8.26.bb
similarity index 91%
rename from meta/recipes-extended/msmtp/msmtp_1.8.25.bb
rename to meta/recipes-extended/msmtp/msmtp_1.8.26.bb
index b575fad5e1..13820fe930 100644
--- a/meta/recipes-extended/msmtp/msmtp_1.8.25.bb
+++ b/meta/recipes-extended/msmtp/msmtp_1.8.26.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] = 
"2dfe1dbbb397d26fe0b0b6b2e9cd2efdf9d72dd42d18e70d7f363ada2652d738"
+SRC_URI[sha256sum] = 
"6cfc488344cef189267e60aea481f00d4c7e2a59b53c6c659c520a4d121f66d8"
 
 inherit gettext autotools update-alternatives pkgconfig
 
-- 
2.44.0



0001-msmtp-upgrade-1.8.25-1.8.26.patch
Description: Binary data
packages/core2-64-poky-linux/msmtp: PV changed from "1.8.25" to "1.8.26"
packages/core2-64-poky-linux/msmtp: SRC_URI changed from 
"https://marlam.de/msmtp/releases/msmtp-1.8.25.tar.xz; to 
"https://marlam.de/msmtp/releases/msmtp-1.8.26.tar.xz;
packages/core2-64-poky-linux/msmtp: PKGV changed from 1.8.25 [default] to 
1.8.26 [default]
packages/core2-64-poky-linux/msmtp/msmtp-dbg: PKGSIZE changed from 437624 to 
440112 (+1%)
packages/core2-64-poky-linux/msmtp/msmtp-dbg: PV changed from "1.8.25" to 
"1.8.26"
packages/core2-64-poky-linux/msmtp/msmtp-dbg: PKGV changed from 1.8.25 
[default] to 1.8.26 [default]
packages/core2-64-poky-linux/msmtp/msmtp-dev: PV changed from "1.8.25" to 
"1.8.26"
packages/core2-64-poky-linux/msmtp/msmtp-dev: PKGV changed from 1.8.25 
[default] to 1.8.26 [default]
packages/core2-64-poky-linux/msmtp/msmtp-doc: PKGSIZE changed from 115996 to 
116720 (+1%)
packages/core2-64-poky-linux/msmtp/msmtp-doc: PV changed from "1.8.25" to 
"1.8.26"
packages/core2-64-poky-linux/msmtp/msmtp-doc: PKGV changed from 1.8.25 
[default] to 1.8.26 [default]
packages/core2-64-poky-linux/msmtp/msmtp-locale-de: PKGSIZE changed from 36640 
to 36796 (+0%)
packages/core2-64-poky-linux/msmtp/msmtp-locale-de: PV changed from "1.8.25" to 
"1.8.26"
packages/core2-64-poky-linux/msmtp/msmtp-locale-de: PKGV changed from 1.8.25 
[default] to 1.8.26 [default]
packages/core2-64-poky-linux/msmtp/msmtp-locale-eo: PKGSIZE changed from 34666 
to 34819 (+0%)
packages/core2-64-poky-linux/msmtp/msmtp-locale-eo: PV changed from "1.8.25" to 
"1.8.26"
packages/core2-64-poky-linux/msmtp/msmtp-locale-eo: PKGV changed from 1.8.25 
[default] to 1.8.26 [default]
packages/core2-64-poky-linux/msmtp/msmtp-locale-fr: PV changed from "1.8.25" to 
"1.8.26"
packages/core2-64-poky-linux/msmtp/msmtp-locale-fr: PKGV changed from 1.8.25 
[default] to 1.8.26 [default]
packages/core2-64-poky-linux/msmtp/msmtp-locale-pt-br: PV changed from "1.8.25" 
to "1.8.26"
packages/core2-64-poky-linux/msmtp/msmtp-locale-pt-br: PKGV changed from 1.8.25 
[default] to 1.8.26 [default]
packages/core2-64-poky-linux/msmtp/msmtp-locale-ro: PKGSIZE changed from 37955 
to 38108 (+0%)
packages/core2-64-poky-linux/msmtp/msmtp-locale-ro: PV changed from "1.8.25" to 
"1.8.26"
packages/core2-64-poky-linux/msmtp/msmtp-locale-ro: PKGV changed from 1.8.25 
[default] to 1.8.26 [default]
packages/core2-64-poky-linux/msmtp/msmtp-locale-ru: PKGSIZE changed from 44877 
to 45057 (+0%)
packages/core2-64-poky-linux/msmtp/msmtp-locale-ru: PV changed from "1.8.25" to 
"1.8.26"
packages/core2-64-poky-linux/msmtp/msmtp-locale-ru: PKGV changed from 1.8.25 
[default] to 1.8.26 [default]
packages/core2-64-poky-linux/msmtp/msmtp-locale-sr: PKGSIZE changed from 45243 
to 45456 

[OE-core] [AUH] libva-initial: upgrading to 2.21.0 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

The following devtool command failed:  finish -f libva-initial 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-graphics/libva
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1880 entries from dependency cache.
Parsing recipes...done.
Parsing of 922 .bb files complete (921 cached, 1 parsed). 1882 targets, 35 
skipped, 0 masked, 0 errors.
Removing 1 recipes from the core2-64 sysroot...done.

INFO: No patches or local source files needed updating
INFO: Cleaning sysroot for recipe libva-initial...
ERROR: Command 'bitbake -c clean libva-initial' failed, output:
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1883 entries from dependency cache.
Parsing recipes...
Summary: There were 2 ERROR messages, returning a non-zero exit code.

If you wish, you may specify -n/--no-clean to skip running this command when 
resetting


Next steps:
- apply the patch: git am 0001-libva-initial-upgrade-2.20.0-2.21.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 0b91c4a8db4c0833c685e22ee416970138905d36 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 13:23:50 +
Subject: [PATCH] libva-initial: upgrade 2.20.0 -> 2.21.0

---
 .../libva/libva-initial_2.20.0.bb |  8 
 meta/recipes-graphics/libva/libva.inc | 37 ---
 2 files changed, 45 deletions(-)
 delete mode 100644 meta/recipes-graphics/libva/libva-initial_2.20.0.bb
 delete mode 100644 meta/recipes-graphics/libva/libva.inc

diff --git a/meta/recipes-graphics/libva/libva-initial_2.20.0.bb 
b/meta/recipes-graphics/libva/libva-initial_2.20.0.bb
deleted file mode 100644
index 453096822f..00
--- a/meta/recipes-graphics/libva/libva-initial_2.20.0.bb
+++ /dev/null
@@ -1,8 +0,0 @@
-require libva.inc
-
-PACKAGECONFIG ?= ""
-
-do_install:append () {
-   rm -f ${D}${libdir}/*.so*
-}
-
diff --git a/meta/recipes-graphics/libva/libva.inc 
b/meta/recipes-graphics/libva/libva.inc
deleted file mode 100644
index 486291bced..00
--- a/meta/recipes-graphics/libva/libva.inc
+++ /dev/null
@@ -1,37 +0,0 @@
-SUMMARY = "Video Acceleration (VA) API for Linux"
-DESCRIPTION = "Video Acceleration API (VA API) is a library (libVA) \
-and API specification which enables and provides access to graphics \
-hardware (GPU) acceleration for video processing on Linux and UNIX \
-based operating systems. Accelerated processing includes video \
-decoding, video encoding, subpicture blending and rendering. The \
-specification was originally designed by Intel for its GMA (Graphics \
-Media Accelerator) series of GPU hardware, the API is however not \
-limited to GPUs or Intel specific hardware, as other hardware and \
-manufacturers can also freely use this API for hardware accelerated \
-video decoding."
-
-HOMEPAGE = "https://01.org/linuxmedia/vaapi;
-BUGTRACKER = "https://github.com/intel/libva/issues;
-
-SECTION = "x11"
-LICENSE = "MIT"
-
-SRC_URI = "${GITHUB_BASE_URI}/download/${PV}/libva-${PV}.tar.bz2"
-LIC_FILES_CHKSUM = "file://COPYING;md5=2e48940f94acb0af582e5ef03537800f"
-SRC_URI[sha256sum] = 
"f72bdb4f48dfe71ad01f1cbefe069672a2c949a6abd51cf3c4d4784210badc49"
-
-S = "${WORKDIR}/libva-${PV}"
-
-GITHUB_BASE_URI = "https://github.com/intel/libva/releases;
-
-DEPENDS = "libdrm"
-
-inherit meson pkgconfig github-releases
-
-PACKAGECONFIG[x11] = "-Dwith_x11=yes,-Dwith_x11=no,virtual/libx11 libxext 
libxfixes"
-PACKAGECONFIG[glx] = "-Dwith_glx=yes,-Dwith_glx=no,virtual/mesa"
-
-PACKAGECONFIG[wayland] = "-Dwith_wayland=yes,-Dwith_wayland=no,wayland-native 
wayland"
-
-BBCLASSEXTEND = "native nativesdk"
-
-- 
2.44.0



0001-libva-initial-upgrade-2.20.0-2.21.0.patch
Description: Binary data

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#199374): 
https://lists.openembedded.org/g/openembedded-core/message/199374
Mute This Topic: https://lists.openembedded.org/mt/106118865/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] libcap-ng: upgrading to 0.8.5 SUCCEEDED

2024-05-15 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *libcap-ng* to *0.8.5* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-libcap-ng-upgrade-0.8.4-0.8.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 5c91f34d311c45557b4fa61e0abea447ec26695e Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 16:46:33 +
Subject: [PATCH] libcap-ng: upgrade 0.8.4 -> 0.8.5

---
 .../files/fix-issues-with-swig-4-2.patch  | 32 ---
 meta/recipes-support/libcap-ng/libcap-ng.inc  |  6 ++--
 ...{libcap-ng_0.8.4.bb => libcap-ng_0.8.5.bb} |  0
 3 files changed, 2 insertions(+), 36 deletions(-)
 delete mode 100644 
meta/recipes-support/libcap-ng/files/fix-issues-with-swig-4-2.patch
 rename meta/recipes-support/libcap-ng/{libcap-ng_0.8.4.bb => 
libcap-ng_0.8.5.bb} (100%)

diff --git 
a/meta/recipes-support/libcap-ng/files/fix-issues-with-swig-4-2.patch 
b/meta/recipes-support/libcap-ng/files/fix-issues-with-swig-4-2.patch
deleted file mode 100644
index fb424fe725..00
--- a/meta/recipes-support/libcap-ng/files/fix-issues-with-swig-4-2.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From 355eada2d20886287cffc16e304087dd6f66ae37 Mon Sep 17 00:00:00 2001
-From: Steve Grubb 
-Date: Thu, 4 Jan 2024 15:06:29 -0500
-Subject: [PATCH] Remove python global exception handler since its deprecated
-
-Upstream-Status: Backport 
[https://github.com/stevegrubb/libcap-ng/commit/30453b6553948cd05c438f9f509013e3bb84f25b]
-Signed-off-by: Anuj Mittal 

- bindings/src/capng_swig.i | 7 ---
- 1 file changed, 7 deletions(-)
-
-diff --git a/bindings/src/capng_swig.i b/bindings/src/capng_swig.i
-index fcdaf18..fa85e13 100644
 a/bindings/src/capng_swig.i
-+++ b/bindings/src/capng_swig.i
-@@ -30,13 +30,6 @@
- 
- %varargs(16, signed capability = 0) capng_updatev;
- 
--%except(python) {
--  $action
--  if (result < 0) {
--PyErr_SetFromErrno(PyExc_OSError);
--return NULL;
--  }
--}
- #endif
- 
- %define __signed__
--- 
-2.43.2
-
diff --git a/meta/recipes-support/libcap-ng/libcap-ng.inc 
b/meta/recipes-support/libcap-ng/libcap-ng.inc
index 845b7c2f0a..875337b954 100644
--- a/meta/recipes-support/libcap-ng/libcap-ng.inc
+++ b/meta/recipes-support/libcap-ng/libcap-ng.inc
@@ -7,11 +7,9 @@ LICENSE = "GPL-2.0-or-later & LGPL-2.1-or-later"
 LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
file://COPYING.LIB;md5=e3eda01d9815f8d24aae2dbd89b68b06"
 
-SRC_URI = "https://people.redhat.com/sgrubb/libcap-ng/libcap-ng-${PV}.tar.gz \
-   file://fix-issues-with-swig-4-2.patch \
-   "
+SRC_URI = "https://people.redhat.com/sgrubb/libcap-ng/libcap-ng-${PV}.tar.gz;
 
-SRC_URI[sha256sum] = 
"68581d3b38e7553cb6f6ddf7813b1fc99e52856f21421f7b477ce5abd2605a8a"
+SRC_URI[sha256sum] = 
"3ba5294d1cbdfa98afaacfbc00b6af9ed2b83e8a21817185dfd844cc8c7ac6ff"
 
 EXTRA_OECONF:append:class-target = " 
--with-capability_header=${STAGING_INCDIR}/linux/capability.h"
 EXTRA_OECONF:append:class-nativesdk = " 
--with-capability_header=${STAGING_INCDIR}/linux/capability.h"
diff --git a/meta/recipes-support/libcap-ng/libcap-ng_0.8.4.bb 
b/meta/recipes-support/libcap-ng/libcap-ng_0.8.5.bb
similarity index 100%
rename from meta/recipes-support/libcap-ng/libcap-ng_0.8.4.bb
rename to meta/recipes-support/libcap-ng/libcap-ng_0.8.5.bb
-- 
2.44.0



0001-libcap-ng-upgrade-0.8.4-0.8.5.patch
Description: Binary data
packages/core2-64-poky-linux/libcap-ng: SRC_URI changed from 
"https://people.redhat.com/sgrubb/libcap-ng/libcap-ng-0.8.4.tar.gz 
file://fix-issues-with-swig-4-2.patch" to 
"https://people.redhat.com/sgrubb/libcap-ng/libcap-ng-0.8.5.tar.gz;
packages/core2-64-poky-linux/libcap-ng: PV changed from "0.8.4" to "0.8.5"
packages/core2-64-poky-linux/libcap-ng: PKGV changed from 0.8.4 [default] to 
0.8.5 [default]
packages/core2-64-poky-linux/libcap-ng/libcap-ng-bin: PV changed from "0.8.4" 
to "0.8.5"
packages/core2-64-poky-linux/libcap-ng/libcap-ng-bin: PKGV changed from 0.8.4 
[default] to 0.8.5 [default]
packages/core2-64-poky-linux/libcap-ng/libcap-ng-dbg: PKGSIZE changed from 
166944 to 167440 (+0%)
packages/core2-64-poky-linux/libcap-ng/libcap-ng-dbg: PV changed from "0.8.4" 
to "0.8.5"

[OE-core] [AUH] appstream: upgrading to 1.0.3 SUCCEEDED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Next steps:
- apply the patch: git am 0001-appstream-upgrade-1.0.2-1.0.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 b4570d04a5e2d8601e025fa340bf25ad5e88b53c Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 16:05:57 +
Subject: [PATCH] appstream: upgrade 1.0.2 -> 1.0.3

---
 .../appstream/appstream/0001-remove-hardcoded-path.patch| 6 +++---
 .../appstream/{appstream_1.0.2.bb => appstream_1.0.3.bb}| 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)
 rename meta/recipes-support/appstream/{appstream_1.0.2.bb => 
appstream_1.0.3.bb} (93%)

diff --git 
a/meta/recipes-support/appstream/appstream/0001-remove-hardcoded-path.patch 
b/meta/recipes-support/appstream/appstream/0001-remove-hardcoded-path.patch
index bc811d67b0..7a21366d54 100644
--- a/meta/recipes-support/appstream/appstream/0001-remove-hardcoded-path.patch
+++ b/meta/recipes-support/appstream/appstream/0001-remove-hardcoded-path.patch
@@ -1,4 +1,4 @@
-From fe9ebb8c0fa7b84a9c5c667386b8fbb3baea2fad Mon Sep 17 00:00:00 2001
+From 418066f75a1b765d6cefff0e0b94120227833a47 Mon Sep 17 00:00:00 2001
 From: Markus Volk 
 Date: Mon, 12 Dec 2022 15:42:42 +0100
 Subject: [PATCH] remove hardcoded path
@@ -14,10 +14,10 @@ Upstream-Status: Inappropriate [oe-specific]
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 diff --git a/meson.build b/meson.build
-index fa171d5..79d5168 100644
+index 5f2eaa2..4a2483a 100644
 --- a/meson.build
 +++ b/meson.build
-@@ -185,10 +185,10 @@ endif
+@@ -191,10 +191,10 @@ endif
  stemmer_inc_dirs = include_directories()
  if get_option('stemming')
  stemmer_lib = cc.find_library('stemmer', required: true)
diff --git a/meta/recipes-support/appstream/appstream_1.0.2.bb 
b/meta/recipes-support/appstream/appstream_1.0.3.bb
similarity index 93%
rename from meta/recipes-support/appstream/appstream_1.0.2.bb
rename to meta/recipes-support/appstream/appstream_1.0.3.bb
index 7eb12a04c5..625e85a0ae 100644
--- a/meta/recipes-support/appstream/appstream_1.0.2.bb
+++ b/meta/recipes-support/appstream/appstream_1.0.3.bb
@@ -28,7 +28,7 @@ SRC_URI = " \

https://www.freedesktop.org/software/appstream/releases/AppStream-${PV}.tar.xz \
file://0001-remove-hardcoded-path.patch \
 "
-SRC_URI[sha256sum] = 
"1a5148ca97dcbf5eb6e9c380278bb0d20938569292ea8652df1b3cac8bd2736b"
+SRC_URI[sha256sum] = 
"5ab6f6cf644e7875a9508593962e56bb430f4e59ae0bf03be6be7029deb6baa4"
 
 S = "${WORKDIR}/AppStream-${PV}"
 
-- 
2.44.0

NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 0 entries from dependency cache.
Parsing recipes...done.
Parsing of 921 .bb files complete (0 cached, 921 parsed). 1880 targets, 46 
skipped, 0 masked, 0 errors.
Removing 57 recipes from the core2-64 sysroot...done.
Removing 58 recipes from the qemux86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.9.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux-musl"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "5.0+snapshot-5a323ac7bb3d6208fcf3e9a746a6ad20e7cef832"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:5a323ac7bb3d6208fcf3e9a746a6ad20e7cef832"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 367 Local 352 Mirrors 0 Missed 15 Current 302 (95% 
match, 97% complete)
Removing 5 stale sstate objects for arch x86_64...done.
NOTE: Executing Tasks
NOTE: Running setscene task 310 of 669 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-core/libxml/libxml2_2.12.6.bb:do_create_spdx_setscene)
NOTE: Running setscene task 311 of 669 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/vala/vala_0.56.17.bb:do_create_spdx_setscene)
NOTE: Running setscene task 313 of 669 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-extended/zstd/zstd_1.5.5.bb:do_create_spdx_setscene)
NOTE: Running 

[OE-core] [AUH] lttng-modules: upgrading to 2.13.13 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-lttng-modules-upgrade-2.13.12-2.13.13.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 f6d7ff2e02bece740c17e115427da4c239b1c4a1 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 15:14:58 +
Subject: [PATCH] lttng-modules: upgrade 2.13.12 -> 2.13.13

---
 ...x-ASoC-snd_doc_dapm-on-linux-6.9-rc1.patch |  93 
 ...e-missing-CONFIG_TRACEPOINTS-to-warn.patch |  12 +-
 ...ponent-to-set_bias_level-events-in-l.patch | 132 --
 ...n_migratepages-changed-in-linux-6.9-.patch |  81 ---
 ...v_base_lock-removed-in-linux-6.9-rc1.patch |  57 
 ...es_2.13.12.bb => lttng-modules_2.13.13.bb} |   9 +-
 6 files changed, 9 insertions(+), 375 deletions(-)
 delete mode 100644 
meta/recipes-kernel/lttng/lttng-modules/0001-Fix-ASoC-snd_doc_dapm-on-linux-6.9-rc1.patch
 delete mode 100644 
meta/recipes-kernel/lttng/lttng-modules/0002-Fix-ASoC-add-component-to-set_bias_level-events-in-l.patch
 delete mode 100644 
meta/recipes-kernel/lttng/lttng-modules/0003-Fix-mm_compaction_migratepages-changed-in-linux-6.9-.patch
 delete mode 100644 
meta/recipes-kernel/lttng/lttng-modules/0004-Fix-dev_base_lock-removed-in-linux-6.9-rc1.patch
 rename meta/recipes-kernel/lttng/{lttng-modules_2.13.12.bb => 
lttng-modules_2.13.13.bb} (77%)

diff --git 
a/meta/recipes-kernel/lttng/lttng-modules/0001-Fix-ASoC-snd_doc_dapm-on-linux-6.9-rc1.patch
 
b/meta/recipes-kernel/lttng/lttng-modules/0001-Fix-ASoC-snd_doc_dapm-on-linux-6.9-rc1.patch
deleted file mode 100644
index 9d5fd0de60..00
--- 
a/meta/recipes-kernel/lttng/lttng-modules/0001-Fix-ASoC-snd_doc_dapm-on-linux-6.9-rc1.patch
+++ /dev/null
@@ -1,93 +0,0 @@
-From fec007d9630e010062cf5699a08460f71f46b527 Mon Sep 17 00:00:00 2001
-From: Kienan Stewart 
-Date: Mon, 25 Mar 2024 08:54:42 -0400
-Subject: [PATCH 1/4] Fix: ASoC snd_doc_dapm on linux 6.9-rc1
-
-See upstream commit:
-
-commit 7df3eb4cdb6bbfa482f51548b9fd47c2723c68ba
-Author: Luca Ceresoli 
-Date:   Wed Mar 6 10:30:01 2024 +0100
-
-ASoC: trace: add event to snd_soc_dapm trace events
-
-Add the event value to the snd_soc_dapm_start and snd_soc_dapm_done 
trace
-events to make them more informative.
-
-Trace before:
-
-   aplay-229   [000]   250.140309: snd_soc_dapm_start:   
card=vscn-2046
-   aplay-229   [000]   250.167531: snd_soc_dapm_done:
card=vscn-2046
-   aplay-229   [000]   251.169588: snd_soc_dapm_start:   
card=vscn-2046
-   aplay-229   [000]   251.195245: snd_soc_dapm_done:
card=vscn-2046
-
-Trace after:
-
-   aplay-214   [000]   693.290612: snd_soc_dapm_start:   
card=vscn-2046 event=1
-   aplay-214   [000]   693.315508: snd_soc_dapm_done:
card=vscn-2046 event=1
-   aplay-214   [000]   694.537349: snd_soc_dapm_start:   
card=vscn-2046 event=2
-   aplay-214   [000]   694.563241: snd_soc_dapm_done:
card=vscn-2046 event=2
-
-Upstream-Status: Backport [88c4e0fe Fix: ASoC snd_doc_dapm on linux 6.9-rc1]
-
-Change-Id: If0d33544b8dd1dfb3d12ca9390892190fc0444b0
-Signed-off-by: Kienan Stewart 
-Signed-off-by: Mathieu Desnoyers 

- include/instrumentation/events/asoc.h | 33 +++
- 1 file changed, 33 insertions(+)
-
-diff --git a/include/instrumentation/events/asoc.h 
b/include/instrumentation/events/asoc.h
-index 21d13a0f..5126d4c1 100644
 a/include/instrumentation/events/asoc.h
-+++ b/include/instrumentation/events/asoc.h
-@@ -51,6 +51,38 @@ LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(asoc_snd_soc_card, 
snd_soc_bias_level_done,
- 
- )
- 
-+#if (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(6,9,0))
-+LTTNG_TRACEPOINT_EVENT_CLASS(asoc_snd_soc_dapm_basic,
-+
-+  TP_PROTO(struct snd_soc_card *card, int event),
-+
-+  TP_ARGS(card, event),
-+
-+  TP_FIELDS(
-+  ctf_string(name, card->name)
-+  ctf_integer(int, event, event)
-+  )
-+)

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

2024-05-15 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 *2024.1* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-shaderc-upgrade-2024.0-2024.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 16f51c3a4ba440d5dce1bacefdc81170f035560a Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 13:58:09 +
Subject: [PATCH] shaderc: upgrade 2024.0 -> 2024.1

---
 .../0001-cmake-disable-building-external-dependencies.patch | 2 +-
 .../0002-libshaderc_util-fix-glslang-header-file-location.patch | 2 +-
 .../shaderc/{shaderc_2024.0.bb => shaderc_2024.1.bb}| 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
 rename meta/recipes-graphics/shaderc/{shaderc_2024.0.bb => shaderc_2024.1.bb} 
(95%)

diff --git 
a/meta/recipes-graphics/shaderc/files/0001-cmake-disable-building-external-dependencies.patch
 
b/meta/recipes-graphics/shaderc/files/0001-cmake-disable-building-external-dependencies.patch
index 5c49aa7fd5..0f5d34fc33 100644
--- 
a/meta/recipes-graphics/shaderc/files/0001-cmake-disable-building-external-dependencies.patch
+++ 
b/meta/recipes-graphics/shaderc/files/0001-cmake-disable-building-external-dependencies.patch
@@ -1,4 +1,4 @@
-From 941f5f5831e7a52c26168f81f25d0470860ca6f1 Mon Sep 17 00:00:00 2001
+From c4c0cf5cef1ba2c1054d1c77fb4da00417a0d131 Mon Sep 17 00:00:00 2001
 From: Jose Quaresma 
 Date: Sat, 13 Feb 2021 00:45:56 +
 Subject: [PATCH] cmake: disable building external dependencies
diff --git 
a/meta/recipes-graphics/shaderc/files/0002-libshaderc_util-fix-glslang-header-file-location.patch
 
b/meta/recipes-graphics/shaderc/files/0002-libshaderc_util-fix-glslang-header-file-location.patch
index 39f982b7f3..2480cc9a08 100644
--- 
a/meta/recipes-graphics/shaderc/files/0002-libshaderc_util-fix-glslang-header-file-location.patch
+++ 
b/meta/recipes-graphics/shaderc/files/0002-libshaderc_util-fix-glslang-header-file-location.patch
@@ -1,4 +1,4 @@
-From ec2442940e1d5338971861bb81537bae3a6c19e2 Mon Sep 17 00:00:00 2001
+From f5a3bb0b37c26f3bc6abb17ada594d93ac7d1ff0 Mon Sep 17 00:00:00 2001
 From: Jose Quaresma 
 Date: Sat, 13 Feb 2021 00:45:56 +
 Subject: [PATCH] libshaderc_util: fix glslang header file location
diff --git a/meta/recipes-graphics/shaderc/shaderc_2024.0.bb 
b/meta/recipes-graphics/shaderc/shaderc_2024.1.bb
similarity index 95%
rename from meta/recipes-graphics/shaderc/shaderc_2024.0.bb
rename to meta/recipes-graphics/shaderc/shaderc_2024.1.bb
index 9975c608ac..1f0b12ef57 100644
--- a/meta/recipes-graphics/shaderc/shaderc_2024.0.bb
+++ b/meta/recipes-graphics/shaderc/shaderc_2024.1.bb
@@ -6,7 +6,7 @@ HOMEPAGE = "https://github.com/google/shaderc;
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
 
-SRCREV = "9f56ca620c07d6c4d119c65c1c1f3f1c584c9985"
+SRCREV = "5d7736da11e626b49c5463aadb2afb228ad20276"
 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.44.0

NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 0 entries from dependency cache.
Parsing recipes...done.
Parsing of 921 .bb files complete (0 cached, 921 parsed). 1880 targets, 46 
skipped, 0 masked, 0 errors.
Removing 59 recipes from the core2-64 sysroot...done.
Removing 98 recipes from the qemux86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.9.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux-musl"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "5.0+snapshot-1069d6c2a3c56cae635e7aab0b472454995c3efe"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:1069d6c2a3c56cae635e7aab0b472454995c3efe"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 145 Local 134 Mirrors 0 Missed 11 Current 189 

[OE-core] [AUH] libva: upgrading to 2.21.0 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-libva-upgrade-2.20.0-2.21.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 b32ea3f0656bacb6c919c5a8371b4029ebaa69e8 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 13:30:10 +
Subject: [PATCH] libva: upgrade 2.20.0 -> 2.21.0

---
 meta/recipes-graphics/libva/libva.inc   | 2 +-
 .../recipes-graphics/libva/{libva_2.20.0.bb => libva_2.21.0.bb} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-graphics/libva/{libva_2.20.0.bb => libva_2.21.0.bb} (100%)

diff --git a/meta/recipes-graphics/libva/libva.inc 
b/meta/recipes-graphics/libva/libva.inc
index 486291bced..af40d8cbba 100644
--- a/meta/recipes-graphics/libva/libva.inc
+++ b/meta/recipes-graphics/libva/libva.inc
@@ -18,7 +18,7 @@ LICENSE = "MIT"
 
 SRC_URI = "${GITHUB_BASE_URI}/download/${PV}/libva-${PV}.tar.bz2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=2e48940f94acb0af582e5ef03537800f"
-SRC_URI[sha256sum] = 
"f72bdb4f48dfe71ad01f1cbefe069672a2c949a6abd51cf3c4d4784210badc49"
+SRC_URI[sha256sum] = 
"9dc1a84373b656434e6a8f3ac7522bc1c959cc3434aea89d2c02092986d87016"
 
 S = "${WORKDIR}/libva-${PV}"
 
diff --git a/meta/recipes-graphics/libva/libva_2.20.0.bb 
b/meta/recipes-graphics/libva/libva_2.21.0.bb
similarity index 100%
rename from meta/recipes-graphics/libva/libva_2.20.0.bb
rename to meta/recipes-graphics/libva/libva_2.21.0.bb
-- 
2.44.0



0001-libva-upgrade-2.20.0-2.21.0.patch
Description: Binary data
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1882 entries from dependency cache.
Parsing recipes...done.
Parsing of 921 .bb files complete (919 cached, 2 parsed). 1879 targets, 35 
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.9.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "5.0+snapshot-d4dccbb50d0e208784f4c96282441bb210c147fd"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:d4dccbb50d0e208784f4c96282441bb210c147fd"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 262 Local 251 Mirrors 0 Missed 11 Current 440 (95% 
match, 98% complete)
done.
NOTE: Executing Tasks
NOTE: Running setscene task 519 of 702 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-graphics/libva/libva_2.21.0.bb:do_recipe_qa_setscene)
NOTE: recipe libva-2.21.0-r0: task do_recipe_qa_setscene: Started
NOTE: recipe libva-2.21.0-r0: task do_recipe_qa_setscene: Succeeded
NOTE: Setscene tasks completed
NOTE: Running task 1709 of 1996 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-graphics/libva/libva_2.21.0.bb:do_fetch)
NOTE: Running task 1877 of 1996 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-graphics/libva/libva_2.21.0.bb:do_write_config)
NOTE: recipe libva-2.21.0-r0: task do_fetch: Started
NOTE: recipe libva-2.21.0-r0: task do_fetch: Succeeded
NOTE: recipe libva-2.21.0-r0: task do_write_config: Started
NOTE: Running task 1978 of 1996 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-graphics/libva/libva_2.21.0.bb:do_unpack)
NOTE: Running task 1979 of 1996 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-graphics/libva/libva_2.21.0.bb:do_prepare_recipe_sysroot)
NOTE: recipe libva-2.21.0-r0: task do_write_config: Succeeded
NOTE: recipe libva-2.21.0-r0: task do_unpack: Started
NOTE: recipe libva-2.21.0-r0: task do_prepare_recipe_sysroot: Started
NOTE: recipe libva-2.21.0-r0: task do_unpack: Succeeded
NOTE: Running task 1980 of 1996 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-graphics/libva/libva_2.21.0.bb:do_patch)
NOTE: Running task 1981 of 1996 

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

2024-05-15 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.283.0* 
has Failed (devtool error).

Detailed error information:

The following devtool command failed:  upgrade vulkan-loader -V 1.3.283.0 -S 
720be5198aad4696381d2e3eeadc131c9f56bdc6
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1879 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 10 Local 10 Mirrors 0 Missed 0 Current 20 (100% match, 
100% complete)
done.
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: 3 seconds

INFO: Extracting current version source...
INFO: Extracting upgraded version source...
ERROR: Revision 720be5198aad4696381d2e3eeadc131c9f56bdc6 was found on multiple 
branches: 
  stabilized_release_2024_04
  vulkan-sdk-1.3.283
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 (#199367): 
https://lists.openembedded.org/g/openembedded-core/message/199367
Mute This Topic: https://lists.openembedded.org/mt/106118858/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] gstreamer1.0: upgrading to 1.24.3 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

Running 'devtool upgrade' for recipe gstreamer1.0 failed.
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1879 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 11 Local 11 Mirrors 0 Missed 0 Current 22 (100% match, 
100% complete)
done.
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: 3 seconds
Loading cache...done.
Loaded 1879 entries from dependency cache.
Parsing recipes...done.
Parsing of 922 .bb files complete (920 cached, 2 parsed). 1880 targets, 35 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 10 Local 9 Mirrors 0 Missed 1 Current 18 (90% match, 96% 
complete)
done.
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: 3 seconds
DEBUG 5 [Errno 25] Inappropriate ioctl for device
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:  45% || 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: Adding local source files to srctree...
INFO: Extracting upgraded version source...
INFO: Fetching 
https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.24.3.tar.xz...
INFO: Rebasing devtool onto 48f8bd35d4e144b81002ba0022f62d544e902ebb
WARNING: Command 'git rebase 48f8bd35d4e144b81002ba0022f62d544e902ebb' failed:
Auto-merging meson.build
Auto-merging meson_options.txt
Auto-merging tests/check/meson.build
CONFLICT (content): Merge conflict in tests/check/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/workspace/sources/gstreamer1.0
INFO: New recipe is 
/home/pokybuild/yocto-worker/auh/build/build/workspace/recipes/gstreamer1.0/gstreamer1.0_1.24.3.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 (#199416): 
https://lists.openembedded.org/g/openembedded-core/message/199416
Mute This Topic: https://lists.openembedded.org/mt/106118910/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-volk: upgrading to 1.3.283.0 SUCCEEDED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Next steps:
- apply the patch: git am 0001-vulkan-volk-upgrade-1.3.280.0-1.3.283.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 f7d5fe4a65132e4df04c15e58ff2ba0d76999bc2 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 14:38:24 +
Subject: [PATCH] vulkan-volk: upgrade 1.3.280.0 -> 1.3.283.0

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

diff --git a/meta/recipes-graphics/vulkan/vulkan-volk_1.3.280.0.bb 
b/meta/recipes-graphics/vulkan/vulkan-volk_1.3.283.0.bb
similarity index 95%
rename from meta/recipes-graphics/vulkan/vulkan-volk_1.3.280.0.bb
rename to meta/recipes-graphics/vulkan/vulkan-volk_1.3.283.0.bb
index 2ef12fedf8..334c760345 100644
--- a/meta/recipes-graphics/vulkan/vulkan-volk_1.3.280.0.bb
+++ b/meta/recipes-graphics/vulkan/vulkan-volk_1.3.283.0.bb
@@ -10,7 +10,7 @@ LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE.md;md5=12e6af3a0e2a5e5dbf7796aa82b64626"
 
 SRC_URI = "git://github.com/zeux/volk.git;branch=master;protocol=https"
-SRCREV = "01986ac85fa2e5c70df09aeae9c907e27c5d50b2"
+SRCREV = "3a8068a57417940cf2bf9d837a7bb60d015ca2f1"
 
 S = "${WORKDIR}/git"
 
-- 
2.44.0



0001-vulkan-volk-upgrade-1.3.280.0-1.3.283.0.patch
Description: Binary data
packages/core2-64-poky-linux/vulkan-volk: PV changed from "1.3.280.0" to 
"1.3.283.0"
packages/core2-64-poky-linux/vulkan-volk: PKGV changed from 1.3.280.0 [default] 
to 1.3.283.0 [default]
packages/core2-64-poky-linux/vulkan-volk/vulkan-volk-dbg: PV changed from 
"1.3.280.0" to "1.3.283.0"
packages/core2-64-poky-linux/vulkan-volk/vulkan-volk-dbg: PKGV changed from 
1.3.280.0 [default] to 1.3.283.0 [default]
packages/core2-64-poky-linux/vulkan-volk/vulkan-volk-dev: PKGSIZE changed from 
387180 to 387597 (+0%)
packages/core2-64-poky-linux/vulkan-volk/vulkan-volk-dev: PV changed from 
"1.3.280.0" to "1.3.283.0"
packages/core2-64-poky-linux/vulkan-volk/vulkan-volk-dev: PKGV changed from 
1.3.280.0 [default] to 1.3.283.0 [default]
packages/core2-64-poky-linux/vulkan-volk/vulkan-volk-doc: PV changed from 
"1.3.280.0" to "1.3.283.0"
packages/core2-64-poky-linux/vulkan-volk/vulkan-volk-doc: PKGV changed from 
1.3.280.0 [default] to 1.3.283.0 [default]
packages/core2-64-poky-linux/vulkan-volk/vulkan-volk-locale: PV changed from 
"1.3.280.0" to "1.3.283.0"
packages/core2-64-poky-linux/vulkan-volk/vulkan-volk-locale: PKGV changed from 
1.3.280.0 [default] to 1.3.283.0 [default]
packages/core2-64-poky-linux/vulkan-volk/vulkan-volk-src: PKGSIZE changed from 
379153 to 379570 (+0%)
packages/core2-64-poky-linux/vulkan-volk/vulkan-volk-src: PV changed from 
"1.3.280.0" to "1.3.283.0"
packages/core2-64-poky-linux/vulkan-volk/vulkan-volk-src: PKGV changed from 
1.3.280.0 [default] to 1.3.283.0 [default]
packages/core2-64-poky-linux/vulkan-volk/vulkan-volk-staticdev: PKGSIZE changed 
from 650918 to 650910 (-0%)
packages/core2-64-poky-linux/vulkan-volk/vulkan-volk-staticdev: PV changed from 
"1.3.280.0" to "1.3.283.0"
packages/core2-64-poky-linux/vulkan-volk/vulkan-volk-staticdev: PKGV changed 
from 1.3.280.0 [default] to 1.3.283.0 [default]
packages/core2-64-poky-linux/vulkan-volk/vulkan-volk: PV changed from 
"1.3.280.0" to "1.3.283.0"
packages/core2-64-poky-linux/vulkan-volk/vulkan-volk: PKGV changed from 
1.3.280.0 [default] to 1.3.283.0 [default]

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#199360): 
https://lists.openembedded.org/g/openembedded-core/message/199360
Mute This Topic: https://lists.openembedded.org/mt/106118850/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-pygments: upgrading to 2.18.0 SUCCEEDED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Next steps:
- apply the patch: git am 0001-python3-pygments-upgrade-2.17.2-2.18.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 6cdf2399b26e1a50a09eab63f365bbad859f655e Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 10:00:46 +
Subject: [PATCH] python3-pygments: upgrade 2.17.2 -> 2.18.0

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

diff --git a/meta/recipes-devtools/python/python3-pygments_2.17.2.bb 
b/meta/recipes-devtools/python/python3-pygments_2.18.0.bb
similarity index 81%
rename from meta/recipes-devtools/python/python3-pygments_2.17.2.bb
rename to meta/recipes-devtools/python/python3-pygments_2.18.0.bb
index 8b98064b78..fd37365681 100644
--- a/meta/recipes-devtools/python/python3-pygments_2.17.2.bb
+++ b/meta/recipes-devtools/python/python3-pygments_2.18.0.bb
@@ -5,7 +5,7 @@ LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=36a13c90514e2899f1eba7f41c3ee592"
 
 inherit python_hatchling
-SRC_URI[sha256sum] = 
"da46cec9fd2de5be3a8a784f434e4c4ab670b4ff54d605c4c2717e9d49c4c367"
+SRC_URI[sha256sum] = 
"786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199"
 
 UPSTREAM_CHECK_PYPI_PACKAGE = "Pygments"
 inherit pypi
-- 
2.44.0

packages/core2-64-poky-linux/python3-pygments: SRC_URI changed from 
"https://files.pythonhosted.org/packages/source/p/pygments/pygments-2.17.2.tar.gz;downloadfilename=pygments-2.17.2.tar.gz;
 to 
"https://files.pythonhosted.org/packages/source/p/pygments/pygments-2.18.0.tar.gz;downloadfilename=pygments-2.18.0.tar.gz;
packages/core2-64-poky-linux/python3-pygments: PKGV changed from 2.17.2 
[default] to 2.18.0 [default]
packages/core2-64-poky-linux/python3-pygments: PV changed from "2.17.2" to 
"2.18.0"
packages/core2-64-poky-linux/python3-pygments/python3-pygments-dbg: PKGV 
changed from 2.17.2 [default] to 2.18.0 [default]
packages/core2-64-poky-linux/python3-pygments/python3-pygments-dbg: PV changed 
from "2.17.2" to "2.18.0"
packages/core2-64-poky-linux/python3-pygments/python3-pygments-dev: PKGV 
changed from 2.17.2 [default] to 2.18.0 [default]
packages/core2-64-poky-linux/python3-pygments/python3-pygments-dev: PV changed 
from "2.17.2" to "2.18.0"
packages/core2-64-poky-linux/python3-pygments/python3-pygments-doc: PKGV 
changed from 2.17.2 [default] to 2.18.0 [default]
packages/core2-64-poky-linux/python3-pygments/python3-pygments-doc: PV changed 
from "2.17.2" to "2.18.0"
packages/core2-64-poky-linux/python3-pygments/python3-pygments-locale: PKGV 
changed from 2.17.2 [default] to 2.18.0 [default]
packages/core2-64-poky-linux/python3-pygments/python3-pygments-locale: PV 
changed from "2.17.2" to "2.18.0"
packages/core2-64-poky-linux/python3-pygments/python3-pygments-src: PKGV 
changed from 2.17.2 [default] to 2.18.0 [default]
packages/core2-64-poky-linux/python3-pygments/python3-pygments-src: PV changed 
from "2.17.2" to "2.18.0"
packages/core2-64-poky-linux/python3-pygments/python3-pygments-staticdev: PKGV 
changed from 2.17.2 [default] to 2.18.0 [default]
packages/core2-64-poky-linux/python3-pygments/python3-pygments-staticdev: PV 
changed from "2.17.2" to "2.18.0"
packages/core2-64-poky-linux/python3-pygments/python3-pygments: PKGSIZE changed 
from 7992926 to 8190900 (+2%)
packages/core2-64-poky-linux/python3-pygments/python3-pygments: PKGV changed 
from 2.17.2 [default] to 2.18.0 [default]
packages/core2-64-poky-linux/python3-pygments/python3-pygments: FILELIST: 
directory renamed /usr/lib/python3.12/site-packages/pygments-2.17.2.dist-info 
-> /usr/lib/python3.12/site-packages/pygments-2.18.0.dist-info, directory 
renamed /usr/lib/python3.12/site-packages/pygments-2.17.2.dist-info/licenses -> 
/usr/lib/python3.12/site-packages/pygments-2.18.0.dist-info/licenses, added 
"/usr/lib/python3.12/site-packages/pygments/lexers/__pycache__/soong.cpython-312.pyc
 
/usr/lib/python3.12/site-packages/pygments/styles/__pycache__/coffee.cpython-312.pyc
 

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

2024-05-15 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.23.0* has 
Failed (devtool error).

Detailed error information:

Running 'devtool upgrade' for recipe valgrind failed.
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1879 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 10 Local 10 Mirrors 0 Missed 0 Current 20 (100% match, 
100% complete)
done.
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: 3 seconds
Loading cache...done.
Loaded 1879 entries from dependency cache.
Parsing recipes...done.
Parsing of 922 .bb files complete (920 cached, 2 parsed). 1880 targets, 35 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 1 Local 0 Mirrors 0 Missed 1 Current 0 (0% match, 0% 
complete)
done.
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: 3 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:01
Adding changed files:  38% |##  | ETA:  0:00:01
Adding changed files:  51% |##  | ETA:  0:00:00
Adding changed files:  64% |### | ETA:  0:00:00
Adding changed files:  77% || ETA:  0:00:00
Adding changed files:  90% || ETA:  0:00:00
Adding changed files: 100% || Time: 0:00:01
INFO: Extracting current version source...
INFO: Adding local source files to srctree...
INFO: Extracting upgraded version source...
INFO: Fetching https://sourceware.org/pub/valgrind/valgrind-3.23.0.tar.bz2...
INFO: Rebasing devtool onto 9134e593d46a3b869a6a02bda147b9331942d7b0
WARNING: Command 'git rebase 9134e593d46a3b869a6a02bda147b9331942d7b0' failed:
Auto-merging Makefile.all.am
CONFLICT (content): Merge conflict in Makefile.all.am
Auto-merging helgrind/tests/Makefile.am
Auto-merging none/tests/arm/Makefile.am
CONFLICT (content): Merge conflict in none/tests/arm/Makefile.am

You will need to resolve conflicts in order to complete the upgrade.
INFO: Using source tree as build directory since recipe inherits 
autotools-brokensep
INFO: Upgraded source extracted to 
/home/pokybuild/yocto-worker/auh/build/build/workspace/sources/valgrind
INFO: New recipe is 
/home/pokybuild/yocto-worker/auh/build/build/workspace/recipes/valgrind/valgrind_3.23.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 (#199361): 
https://lists.openembedded.org/g/openembedded-core/message/199361
Mute This Topic: https://lists.openembedded.org/mt/106118851/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-samples: upgrading to c9356f62e4472d25b734115dc9cea2bbc200ca64 FAILED

2024-05-15 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 
*c9356f62e4472d25b734115dc9cea2bbc200ca64* has Failed (devtool error).

Detailed error information:

The following devtool command failed:  upgrade vulkan-samples -S 
c9356f62e4472d25b734115dc9cea2bbc200ca64
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1879 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 10 Local 10 Mirrors 0 Missed 0 Current 20 (100% match, 
100% complete)
done.
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: 3 seconds

INFO: Extracting current version source...
INFO: Extracting upgraded version source...
INFO: Rebasing devtool onto c9356f62e4472d25b734115dc9cea2bbc200ca64
WARNING: Command 'git rebase c9356f62e4472d25b734115dc9cea2bbc200ca64' failed:
Failed to merge submodule third_party/spdlog
CONFLICT (submodule): Merge conflict in third_party/spdlog
Recursive merging with submodules currently only supports trivial cases.
Please manually handle the merging of each conflicted submodule.
This can be accomplished with the following steps:
 - go to submodule (third_party/spdlog), and either merge commit dcef1b45
   or update to an existing commit which has merged those changes
 - come back to superproject and run:

  git add third_party/spdlog

   to record the above merge or update
 - resolve any other conflicts in the superproject
 - commit the resulting index in the superproject

You will need to resolve conflicts in order to complete the upgrade.
ERROR: Execution of 'git rev-list 
devtool-base..ee839b65f277ecaf26e4d3fd9877d9f37ced17d2' failed with exit code 
128:
fatal: Invalid revision range 
devtool-base..ee839b65f277ecaf26e4d3fd9877d9f37ced17d2



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 (#199385): 
https://lists.openembedded.org/g/openembedded-core/message/199385
Mute This Topic: https://lists.openembedded.org/mt/106118877/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] gstreamer1.0-plugins-base: upgrading to 1.24.3 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *gstreamer1.0-plugins-base* to 
*1.24.3* has Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 
0001-gstreamer1.0-plugins-base-upgrade-1.22.11-1.24.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 f4fed01a91224a1636263c983cd29595cc8409e9 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 15:41:01 +
Subject: [PATCH] gstreamer1.0-plugins-base: upgrade 1.22.11 -> 1.24.3

---
 ...-ENGR00312515-get-caps-from-src-pad-when-query-caps.patch | 5 ++---
 .../0002-ssaparse-enhance-SSA-text-lines-parsing.patch   | 5 ++---
 .../0003-viv-fb-Make-sure-config.h-is-included.patch | 3 +--
 ...s-base_1.22.11.bb => gstreamer1.0-plugins-base_1.24.3.bb} | 2 +-
 4 files changed, 6 insertions(+), 9 deletions(-)
 rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-plugins-base_1.22.11.bb 
=> gstreamer1.0-plugins-base_1.24.3.bb} (98%)

diff --git 
a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0001-ENGR00312515-get-caps-from-src-pad-when-query-caps.patch
 
b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0001-ENGR00312515-get-caps-from-src-pad-when-query-caps.patch
index 34c99ded42..38d0fbf6bf 100644
--- 
a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0001-ENGR00312515-get-caps-from-src-pad-when-query-caps.patch
+++ 
b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0001-ENGR00312515-get-caps-from-src-pad-when-query-caps.patch
@@ -1,4 +1,4 @@
-From 63fe5a7b4ef70e2c490bad3b0838329935a8d77c Mon Sep 17 00:00:00 2001
+From 5a4d65e13a326103ac02f156c01b6fcbb0269902 Mon Sep 17 00:00:00 2001
 From: zhouming 
 Date: Wed, 14 May 2014 10:16:20 +0800
 Subject: [PATCH] ENGR00312515: get caps from src pad when query caps
@@ -8,7 +8,6 @@ https://bugzilla.gnome.org/show_bug.cgi?id=728312
 Upstream-Status: Pending
 
 Signed-off-by: zhouming 
-
 ---
  gst-libs/gst/tag/gsttagdemux.c | 13 +
  1 file changed, 13 insertions(+)
@@ -17,7 +16,7 @@ Signed-off-by: zhouming 
 diff --git a/gst-libs/gst/tag/gsttagdemux.c b/gst-libs/gst/tag/gsttagdemux.c
 old mode 100644
 new mode 100755
-index 173da37..2b7f34c
+index ef0ff90..53f05c8
 --- a/gst-libs/gst/tag/gsttagdemux.c
 +++ b/gst-libs/gst/tag/gsttagdemux.c
 @@ -1796,6 +1796,19 @@ gst_tag_demux_pad_query (GstPad * pad, GstObject * 
parent, GstQuery * query)
diff --git 
a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0002-ssaparse-enhance-SSA-text-lines-parsing.patch
 
b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0002-ssaparse-enhance-SSA-text-lines-parsing.patch
index 2adeae93d6..4090b77c8d 100644
--- 
a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0002-ssaparse-enhance-SSA-text-lines-parsing.patch
+++ 
b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0002-ssaparse-enhance-SSA-text-lines-parsing.patch
@@ -1,4 +1,4 @@
-From 7bf9525528c8f4a47413d7f82214d76f95f0c5f6 Mon Sep 17 00:00:00 2001
+From 21b8339077f52ec9220e0d3d1f3872e23c7c2e88 Mon Sep 17 00:00:00 2001
 From: Mingke Wang 
 Date: Thu, 19 Mar 2015 14:17:10 +0800
 Subject: [PATCH] ssaparse: enhance SSA text lines parsing.
@@ -9,7 +9,6 @@ and there's are maybe multiple Dialog lines in one input buffer.
 Upstream-Status: Submitted 
[https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/issues/178]
 
 Signed-off-by: Mingke Wang 
-
 ---
  gst/subparse/gstssaparse.c | 150 +
  1 file changed, 134 insertions(+), 16 deletions(-)
@@ -18,7 +17,7 @@ Signed-off-by: Mingke Wang 
 diff --git a/gst/subparse/gstssaparse.c b/gst/subparse/gstssaparse.c
 old mode 100644
 new mode 100755
-index d6fdb9c..5ebe678
+index 42fbb42..2dab51c
 --- a/gst/subparse/gstssaparse.c
 +++ b/gst/subparse/gstssaparse.c
 @@ -270,6 +270,7 @@ gst_ssa_parse_remove_override_codes (GstSsaParse * parse, 
gchar * txt)
diff --git 
a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0003-viv-fb-Make-sure-config.h-is-included.patch
 
b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0003-viv-fb-Make-sure-config.h-is-included.patch
index a605533be8..ab46ecee5d 100644
--- 

[OE-core] [AUH] man-pages: upgrading to 6.7 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

Running 'devtool upgrade' for recipe man-pages failed.
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1879 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 10 Local 10 Mirrors 0 Missed 0 Current 20 (100% match, 
100% complete)
done.
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: 3 seconds
Loading cache...done.
Loaded 1879 entries from dependency cache.
Parsing recipes...done.
Parsing of 922 .bb files complete (920 cached, 2 parsed). 1880 targets, 35 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 1 Local 0 Mirrors 0 Missed 1 Current 0 (0% match, 0% 
complete)
done.
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: 3 seconds
DEBUG 5 [Errno 25] Inappropriate ioctl for device
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   7% |##  | ETA:  0:00:02
Adding changed files:  14% |#   | ETA:  0:00:01
Adding changed files:  22% |### | ETA:  0:00:01
Adding changed files:  29% |##  | ETA:  0:00:00
Adding changed files:  36% |#   | ETA:  0:00:00
Adding changed files:  44% |### | ETA:  0:00:00
Adding changed files:  51% |##  | ETA:  0:00:00
Adding changed files:  59% |#   | ETA:  0:00:00
Adding changed files:  66% |### | ETA:  0:00:00
Adding changed files:  73% |##  | ETA:  0:00:00
Adding changed files:  81% |#   | ETA:  0:00:00
Adding changed files:  88% |### | ETA:  0:00:00
Adding changed files:  96% |##  | 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://cdn.kernel.org/pub/linux/docs/man-pages/man-pages-6.7.tar.gz...
INFO: Rebasing devtool onto 6d4d7b3cec74d2145a73053f52d954bf5f8224c6
WARNING: Command 'git rebase 6d4d7b3cec74d2145a73053f52d954bf5f8224c6' failed:
Auto-merging share/mk/install/man.mk
CONFLICT (content): Merge conflict in share/mk/install/man.mk

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/workspace/sources/man-pages
INFO: New recipe is 
/home/pokybuild/yocto-worker/auh/build/build/workspace/recipes/man-pages/man-pages_6.7.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 (#199357): 

[OE-core] [AUH] gdk-pixbuf: upgrading to 2.42.12 SUCCEEDED

2024-05-15 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *gdk-pixbuf* to *2.42.12* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-gdk-pixbuf-upgrade-2.42.11-2.42.12.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 526d4cd78f98da7597d1bbead34fbe1f00f43728 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 12:41:19 +
Subject: [PATCH] gdk-pixbuf: upgrade 2.42.11 -> 2.42.12

---
 ...n.build-allow-a-subset-of-tests-in-cross-compile.patch | 8 
 .../gdk-pixbuf/gdk-pixbuf/fatal-loader.patch  | 2 +-
 .../{gdk-pixbuf_2.42.11.bb => gdk-pixbuf_2.42.12.bb}  | 2 +-
 3 files changed, 6 insertions(+), 6 deletions(-)
 rename meta/recipes-gnome/gdk-pixbuf/{gdk-pixbuf_2.42.11.bb => 
gdk-pixbuf_2.42.12.bb} (98%)

diff --git 
a/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf/0001-meson.build-allow-a-subset-of-tests-in-cross-compile.patch
 
b/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf/0001-meson.build-allow-a-subset-of-tests-in-cross-compile.patch
index 3d685db774..24edda8102 100644
--- 
a/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf/0001-meson.build-allow-a-subset-of-tests-in-cross-compile.patch
+++ 
b/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf/0001-meson.build-allow-a-subset-of-tests-in-cross-compile.patch
@@ -1,4 +1,4 @@
-From 4bfb696fd125f044e3df9f6983c4ad518d9552c7 Mon Sep 17 00:00:00 2001
+From 325a4cde99a00b84116ab7111d27e6973f3c5026 Mon Sep 17 00:00:00 2001
 From: Alexander Kanavin 
 Date: Thu, 26 Jan 2023 20:29:46 +0100
 Subject: [PATCH] meson.build: allow (a subset of) tests in cross compile
@@ -19,7 +19,7 @@ Signed-off-by: Alexander Kanavin 
  2 files changed, 9 insertions(+), 7 deletions(-)
 
 diff --git a/meson.build b/meson.build
-index 78f3683..e0feaee 100644
+index 3eb3fcc..dc7e790 100644
 --- a/meson.build
 +++ b/meson.build
 @@ -390,10 +390,10 @@ subdir('gdk-pixbuf')
@@ -37,7 +37,7 @@ index 78f3683..e0feaee 100644
  endif
  
 diff --git a/tests/meson.build b/tests/meson.build
-index 78d0ad9..0c9e64e 100644
+index 3781066..911b5fb 100644
 --- a/tests/meson.build
 +++ b/tests/meson.build
 @@ -4,7 +4,7 @@
@@ -49,7 +49,7 @@ index 78d0ad9..0c9e64e 100644
# Resources; we cannot use gnome.compile_resources() here, because we need 
to
# override the environment in order to use the utilities we just built 
instead
# of the system ones
-@@ -172,9 +172,11 @@ endif
+@@ -164,9 +164,11 @@ endif
  test_deps = gdk_pixbuf_deps + [ gdkpixbuf_dep, ]
  test_args = [ '-k' ]
  test_env = environment()
diff --git a/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf/fatal-loader.patch 
b/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf/fatal-loader.patch
index 80c93e2166..3b4bf62861 100644
--- a/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf/fatal-loader.patch
+++ b/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf/fatal-loader.patch
@@ -1,4 +1,4 @@
-From 9b4f5738f8ac30f393b6163dcc84757976683d9b Mon Sep 17 00:00:00 2001
+From f78ab4edaee5f62663a9a4bcfa56e5c524da4474 Mon Sep 17 00:00:00 2001
 From: Ross Burton 
 Date: Tue, 1 Apr 2014 17:23:36 +0100
 Subject: [PATCH] gdk-pixbuf: add an option so that loader errors are fatal
diff --git a/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.42.11.bb 
b/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.42.12.bb
similarity index 98%
rename from meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.42.11.bb
rename to meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.42.12.bb
index ef0f23f8f7..9f825a68ef 100644
--- a/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.42.11.bb
+++ b/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.42.12.bb
@@ -22,7 +22,7 @@ SRC_URI = 
"${GNOME_MIRROR}/${BPN}/${MAJ_VER}/${BPN}-${PV}.tar.xz \

file://0001-meson.build-allow-a-subset-of-tests-in-cross-compile.patch \
"
 
-SRC_URI[sha256sum] = 
"49dcb402388708647e8c321d56b6fb30f21e51e515d0c5a942268d23052a2f00"
+SRC_URI[sha256sum] = 
"b9505b3445b9a7e48ced34760c3bcb73e966df3ac94c95a148cb669ab748e3c7"
 
 inherit meson pkgconfig gettext pixbufcache ptest-gnome 
upstream-version-is-even gobject-introspection gi-docgen lib_package
 
-- 
2.44.0

packages/core2-64-poky-linux/gdk-pixbuf/gdk-pixbuf-bin: PKGV changed from 
2.42.11 [default] to 2.42.12 [default]
packages/core2-64-poky-linux/gdk-pixbuf/gdk-pixbuf-bin: PV changed from 
"2.42.11" to "2.42.12"

[OE-core] [AUH] glslang: upgrading to 1.3.283.0 SUCCEEDED

2024-05-15 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.283.0* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-glslang-upgrade-1.3.280.0-1.3.283.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 a1935dd9aec780b95a8e2814d1153b79a7abf441 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 13:07:30 +
Subject: [PATCH] glslang: upgrade 1.3.280.0 -> 1.3.283.0

---
 .../glslang/glslang/0001-generate-glslang-pkg-config.patch  | 2 +-
 .../glslang/{glslang_1.3.280.0.bb => glslang_1.3.283.0.bb}  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-graphics/glslang/{glslang_1.3.280.0.bb => 
glslang_1.3.283.0.bb} (96%)

diff --git 
a/meta/recipes-graphics/glslang/glslang/0001-generate-glslang-pkg-config.patch 
b/meta/recipes-graphics/glslang/glslang/0001-generate-glslang-pkg-config.patch
index e6bb6ec8e3..32d8b28418 100644
--- 
a/meta/recipes-graphics/glslang/glslang/0001-generate-glslang-pkg-config.patch
+++ 
b/meta/recipes-graphics/glslang/glslang/0001-generate-glslang-pkg-config.patch
@@ -1,4 +1,4 @@
-From fc33f1cf032a15c07044ef932bc991c346d62d62 Mon Sep 17 00:00:00 2001
+From 4cd5561aaadc0577976e07a9c8db0929c4ff88b4 Mon Sep 17 00:00:00 2001
 From: Jose Quaresma 
 Date: Sun, 7 Feb 2021 01:30:39 +
 Subject: [PATCH] generate glslang pkg-config
diff --git a/meta/recipes-graphics/glslang/glslang_1.3.280.0.bb 
b/meta/recipes-graphics/glslang/glslang_1.3.283.0.bb
similarity index 96%
rename from meta/recipes-graphics/glslang/glslang_1.3.280.0.bb
rename to meta/recipes-graphics/glslang/glslang_1.3.283.0.bb
index 637082c719..55ecf15f8d 100644
--- a/meta/recipes-graphics/glslang/glslang_1.3.280.0.bb
+++ b/meta/recipes-graphics/glslang/glslang_1.3.283.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 = "ee2f5d09eaf8f4e8d0d598bd2172fce290d4ca60"
+SRCREV = "e8dd0b6903b34f1879520b444634c75ea2deedf5"
 SRC_URI = 
"git://github.com/KhronosGroup/glslang.git;protocol=https;branch=main \
file://0001-generate-glslang-pkg-config.patch \
"
-- 
2.44.0



0001-glslang-upgrade-1.3.280.0-1.3.283.0.patch
Description: Binary data
packages/core2-64-poky-linux/glslang/glslang-dbg: FILELIST: removed 
"/usr/lib/.debug/libSPIRV.so.14.1.0 /usr/lib/.debug/libglslang.so.14.1.0 
/usr/lib/.debug/libSPVRemapper.so.14.1.0 
/usr/lib/.debug/libglslang-default-resource-limits.so.14.1.0", added 
"/usr/lib/.debug/libglslang-default-resource-limits.so.14.2.0 
/usr/lib/.debug/libglslang.so.14.2.0 /usr/lib/.debug/libSPVRemapper.so.14.2.0 
/usr/lib/.debug/libSPIRV.so.14.2.0"
packages/core2-64-poky-linux/glslang/glslang-dbg: PKGV changed from 1.3.280.0 
[default] to 1.3.283.0 [default]
packages/core2-64-poky-linux/glslang/glslang-dbg: PV changed from "1.3.280.0" 
to "1.3.283.0"
packages/core2-64-poky-linux/glslang/glslang-dbg: PKGSIZE changed from 83650792 
to 83787232 (+0%)
packages/core2-64-poky-linux/glslang/glslang-dev: PKGV changed from 1.3.280.0 
[default] to 1.3.283.0 [default]
packages/core2-64-poky-linux/glslang/glslang-dev: PV changed from "1.3.280.0" 
to "1.3.283.0"
packages/core2-64-poky-linux/glslang/glslang-dev: PKGSIZE changed from 276064 
to 276778 (+0%)
packages/core2-64-poky-linux/glslang/glslang-doc: PKGV changed from 1.3.280.0 
[default] to 1.3.283.0 [default]
packages/core2-64-poky-linux/glslang/glslang-doc: PV changed from "1.3.280.0" 
to "1.3.283.0"
packages/core2-64-poky-linux/glslang/glslang-locale: PKGV changed from 
1.3.280.0 [default] to 1.3.283.0 [default]
packages/core2-64-poky-linux/glslang/glslang-locale: PV changed from 
"1.3.280.0" to "1.3.283.0"
packages/core2-64-poky-linux/glslang/glslang-src: PKGV changed from 1.3.280.0 
[default] to 1.3.283.0 [default]
packages/core2-64-poky-linux/glslang/glslang-src: PV changed from "1.3.280.0" 
to "1.3.283.0"
packages/core2-64-poky-linux/glslang/glslang-src: PKGSIZE changed from 4931318 
to 4947955 (+0%)
packages/core2-64-poky-linux/glslang/glslang-staticdev: PKGV changed from 
1.3.280.0 [default] to 

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

2024-05-15 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.1.0* has Failed (devtool error).

Detailed error information:

The following devtool command failed:  upgrade python3-setuptools-scm -V 8.1.0
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1879 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.9.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "5.0+snapshot-b42883fef514bff64dc37a5bcd44402eea630a93"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:b42883fef514bff64dc37a5bcd44402eea630a93"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 10 Local 10 Mirrors 0 Missed 0 Current 20 (100% match, 
100% complete)
done.
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: 3 seconds
Loading cache...done.
Loaded 1879 entries from dependency cache.
Parsing recipes...done.
Parsing of 922 .bb files complete (920 cached, 2 parsed). 1880 targets, 35 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 1 Local 0 Mirrors 0 Missed 1 Current 0 (0% match, 0% 
complete)
done.
NOTE: Executing Tasks
WARNING: Failed to fetch URL 
https://files.pythonhosted.org/packages/source/s/setuptools-scm/setuptools-scm-8.1.0.tar.gz;downloadfilename=setuptools-scm-8.1.0.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: 3 seconds
NOTE: The errors for this build are stored in 
/home/pokybuild/yocto-worker/auh/build/build/tmp/log/error-report/error_report_2024051510.txt
You can send the errors to a reports server by running:
  send-error-report 
/home/pokybuild/yocto-worker/auh/build/build/tmp/log/error-report/error_report_2024051510.txt
 [-s server]
NOTE: The contents of these logs will be posted in public if you use the above 
command with the default server. Please ensure you remove any identifying or 
proprietary information when prompted before sending.

INFO: Extracting current version source...
INFO: Extracting upgraded version source...
INFO: Fetching 
https://files.pythonhosted.org/packages/source/s/setuptools-scm/setuptools-scm-8.1.0.tar.gz;downloadfilename=setuptools-scm-8.1.0.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/tmp/sysroots-uninative/x86_64-linux/usr/bin:/home/pokybuild/yocto-worker/auh/build/scripts:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipetool-43kk6vo7/work/recipe-sysroot-native/usr/bin/x86_64-poky-linux:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipetool-43kk6vo7/work/recipe-sysroot/usr/bin/crossscripts:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipetool-43kk6vo7/work/recipe-sysroot-native/usr/sbin:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipe
 
tool-43kk6vo7/work/recipe-sysroot-native/usr/bin:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipetool-43kk6vo7/work/recipe-sysroot-native/sbin:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipetool-43kk6vo7/work/recipe-sysroot-native/bin:/home/pokybuild/yocto-worker/auh/build/bitbake/bin:/home/pokybuild/yocto-worker/auh/build/build/tmp/hosttools";
 export HOME="/home/pokybuild"; /usr/bin/env 

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

2024-05-15 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.283.0* 
has Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 
0001-vulkan-tools-upgrade-1.3.280.0-1.3.283.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 971db5e593929f03dfea23e23bc77cd5d01b8fa0 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 14:25:33 +
Subject: [PATCH] vulkan-tools: upgrade 1.3.280.0 -> 1.3.283.0

---
 .../{vulkan-tools_1.3.280.0.bb => vulkan-tools_1.3.283.0.bb}  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-graphics/vulkan/{vulkan-tools_1.3.280.0.bb => 
vulkan-tools_1.3.283.0.bb} (94%)

diff --git a/meta/recipes-graphics/vulkan/vulkan-tools_1.3.280.0.bb 
b/meta/recipes-graphics/vulkan/vulkan-tools_1.3.283.0.bb
similarity index 94%
rename from meta/recipes-graphics/vulkan/vulkan-tools_1.3.280.0.bb
rename to meta/recipes-graphics/vulkan/vulkan-tools_1.3.283.0.bb
index a7e4a67aaa..e5ff9cd6b4 100644
--- a/meta/recipes-graphics/vulkan/vulkan-tools_1.3.280.0.bb
+++ b/meta/recipes-graphics/vulkan/vulkan-tools_1.3.283.0.bb
@@ -6,8 +6,8 @@ SECTION = "libs"
 
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57"
-SRC_URI = 
"git://github.com/KhronosGroup/Vulkan-Tools.git;branch=vulkan-sdk-1.3.280;protocol=https"
-SRCREV = "136976082d0b14dad8b9687982b2a80cc6e6a633"
+SRC_URI = 
"git://github.com/KhronosGroup/Vulkan-Tools.git;branch=vulkan-sdk-1.3.283;protocol=https"
+SRCREV = "38321da9031f5909f1ca2dbafac8840ef6b2c144"
 
 S = "${WORKDIR}/git"
 
-- 
2.44.0

NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1879 entries from dependency cache.
Parsing recipes...done.
Parsing of 921 .bb files complete (920 cached, 1 parsed). 1879 targets, 35 
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.9.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "5.0+snapshot-95d13be355049e35a604a7c09c52cdff052fad0f"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:95d13be355049e35a604a7c09c52cdff052fad0f"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 204 Local 192 Mirrors 0 Missed 12 Current 365 (94% 
match, 97% complete)
done.
NOTE: Executing Tasks
NOTE: Setscene tasks completed
NOTE: Running task 1452 of 1604 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-graphics/vulkan/vulkan-tools_1.3.283.0.bb:do_recipe_qa)
NOTE: recipe vulkan-tools-1.3.283.0-r0: task do_recipe_qa: Started
NOTE: recipe vulkan-tools-1.3.283.0-r0: task do_recipe_qa: Succeeded
NOTE: Running task 1584 of 1604 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-graphics/vulkan/vulkan-tools_1.3.283.0.bb:do_fetch)
NOTE: recipe vulkan-tools-1.3.283.0-r0: task do_fetch: Started
NOTE: recipe vulkan-tools-1.3.283.0-r0: task do_fetch: Succeeded
NOTE: Running task 1585 of 1604 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-graphics/vulkan/vulkan-tools_1.3.283.0.bb:do_unpack)
NOTE: Running task 1586 of 1604 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-graphics/vulkan/vulkan-tools_1.3.283.0.bb:do_prepare_recipe_sysroot)
NOTE: recipe vulkan-tools-1.3.283.0-r0: task do_unpack: Started
NOTE: recipe vulkan-tools-1.3.283.0-r0: task do_prepare_recipe_sysroot: Started
NOTE: recipe vulkan-tools-1.3.283.0-r0: task do_prepare_recipe_sysroot: 
Succeeded
NOTE: recipe vulkan-tools-1.3.283.0-r0: task do_unpack: Succeeded
NOTE: Running task 1587 of 1604 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-graphics/vulkan/vulkan-tools_1.3.283.0.bb:do_patch)
NOTE: Running task 1588 of 1604 

[OE-core] [AUH] quilt: upgrading to 0.68 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

Running 'devtool upgrade' for recipe quilt failed.
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1882 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 10 Local 10 Mirrors 0 Missed 0 Current 20 (100% match, 
100% complete)
done.
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: 3 seconds
Loading cache...done.
Loaded 1882 entries from dependency cache.
Parsing recipes...done.
Parsing of 922 .bb files complete (920 cached, 2 parsed). 1880 targets, 35 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 1 Local 0 Mirrors 0 Missed 1 Current 0 (0% match, 0% 
complete)
done.
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: 3 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: 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://download.savannah.gnu.org/releases/quilt/quilt-0.68.tar.gz...
INFO: Rebasing devtool onto 1208ee89037b0b74adcb27076775014ce0017ebb
WARNING: Command 'git rebase 1208ee89037b0b74adcb27076775014ce0017ebb' failed:
Auto-merging quilt/scripts/patchfns.in
CONFLICT (content): Merge conflict in quilt/scripts/patchfns.in

You will need to resolve conflicts in order to complete the upgrade.
INFO: Rebasing devtool-override-class-target onto 
1208ee89037b0b74adcb27076775014ce0017ebb
WARNING: Command 'git rebase 1208ee89037b0b74adcb27076775014ce0017ebb' failed:
Auto-merging quilt/scripts/patchfns.in
CONFLICT (content): Merge conflict in quilt/scripts/patchfns.in

You will need to resolve conflicts in order to complete the upgrade.
INFO: Using source tree as build directory since recipe inherits 
autotools-brokensep
INFO: Upgraded source extracted to 
/home/pokybuild/yocto-worker/auh/build/build/workspace/sources/quilt
INFO: New recipe is 
/home/pokybuild/yocto-worker/auh/build/build/workspace/recipes/quilt/quilt_0.68.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 (#199359): 
https://lists.openembedded.org/g/openembedded-core/message/199359
Mute This Topic: https://lists.openembedded.org/mt/106118849/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 75-1 FAILED

2024-05-15 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 *75-1* has 
Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-icu-upgrade-74-2-75-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 0b7d08155388335227cde6fe7d37a43b61d39c8f Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 16:33:12 +
Subject: [PATCH] icu: upgrade 74-2 -> 75-1

---
 .../0001-Disable-LDFLAGSICUDT-for-Linux.patch | 10 +++---
 .../icu/0001-icu-Added-armeb-support.patch| 10 +++---
 .../icu/icu/fix-install-manx.patch| 10 +++---
 .../icu/{icu_74-2.bb => icu_75-1.bb}  | 35 +--
 4 files changed, 48 insertions(+), 17 deletions(-)
 rename meta/recipes-support/icu/{icu_74-2.bb => icu_75-1.bb} (82%)

diff --git 
a/meta/recipes-support/icu/icu/0001-Disable-LDFLAGSICUDT-for-Linux.patch 
b/meta/recipes-support/icu/icu/0001-Disable-LDFLAGSICUDT-for-Linux.patch
index c0e9e2806b..7c852d26c1 100644
--- a/meta/recipes-support/icu/icu/0001-Disable-LDFLAGSICUDT-for-Linux.patch
+++ b/meta/recipes-support/icu/icu/0001-Disable-LDFLAGSICUDT-for-Linux.patch
@@ -1,4 +1,4 @@
-From 0f4e9eee64bd4220aa4fae1ab4f7bbf10b87cd69 Mon Sep 17 00:00:00 2001
+From 4f1c4bff32676034129c485252154102f7a8e2be Mon Sep 17 00:00:00 2001
 From: Khem Raj 
 Date: Sat, 15 Feb 2014 21:06:42 +
 Subject: [PATCH] Disable LDFLAGSICUDT for Linux
@@ -7,13 +7,13 @@ Upstream-Status: Inappropriate [ OE Configuration ]
 
 Signed-off-by: Khem Raj 
 ---
- config/mh-linux | 2 +-
+ source/config/mh-linux | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
-diff --git a/config/mh-linux b/config/mh-linux
+diff --git a/source/config/mh-linux b/source/config/mh-linux
 index 53d6780..b622513 100644
 a/config/mh-linux
-+++ b/config/mh-linux
+--- a/source/config/mh-linux
 b/source/config/mh-linux
 @@ -23,7 +23,7 @@ LD_RPATH= -Wl,-zorigin,-rpath,'$$'ORIGIN
  LD_RPATH_PRE = -Wl,-rpath,
  
diff --git a/meta/recipes-support/icu/icu/0001-icu-Added-armeb-support.patch 
b/meta/recipes-support/icu/icu/0001-icu-Added-armeb-support.patch
index a25285fb54..bb431c28eb 100644
--- a/meta/recipes-support/icu/icu/0001-icu-Added-armeb-support.patch
+++ b/meta/recipes-support/icu/icu/0001-icu-Added-armeb-support.patch
@@ -1,4 +1,4 @@
-From cf55c077b77b7a219502364eaadf12c074ab005e Mon Sep 17 00:00:00 2001
+From 65604e0cf7687bb89c0ea9a6f8fb7a144af9d2f7 Mon Sep 17 00:00:00 2001
 From: Lei Maohui 
 Date: Wed, 8 May 2019 14:42:30 +0900
 Subject: [PATCH] icu: Added armeb support.
@@ -9,13 +9,13 @@ Upstream-Status: Pending
 
 Signed-off-by: Lei Maohui 
 ---
- i18n/double-conversion-utils.h | 2 +-
+ source/i18n/double-conversion-utils.h | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
-diff --git a/i18n/double-conversion-utils.h b/i18n/double-conversion-utils.h
+diff --git a/source/i18n/double-conversion-utils.h 
b/source/i18n/double-conversion-utils.h
 index 303668f..7d859dc 100644
 a/i18n/double-conversion-utils.h
-+++ b/i18n/double-conversion-utils.h
+--- a/source/i18n/double-conversion-utils.h
 b/source/i18n/double-conversion-utils.h
 @@ -146,7 +146,7 @@ int main(int argc, char** argv) {
  //
  // If it prints "correct" then the architecture should be here, in the 
"correct" section.
diff --git a/meta/recipes-support/icu/icu/fix-install-manx.patch 
b/meta/recipes-support/icu/icu/fix-install-manx.patch
index 16cabc8264..58e50b0393 100644
--- a/meta/recipes-support/icu/icu/fix-install-manx.patch
+++ b/meta/recipes-support/icu/icu/fix-install-manx.patch
@@ -1,4 +1,4 @@
-From 2d544cac238eccbfc32cafc9502ddf6e00994211 Mon Sep 17 00:00:00 2001
+From d82aec7ae3f7eb417952d30c653f3557f2f33050 Mon Sep 17 00:00:00 2001
 From: Ross Burton 
 Date: Fri, 9 Oct 2015 17:50:41 +0100
 Subject: [PATCH] icu: fix install race
@@ -16,13 +16,13 @@ Upstream ticket: 
https://unicode-org.atlassian.net/jira/software/c/projects/ICU/
 Upstream-Status: Submitted [https://github.com/unicode-org/icu/pull/2966]
 Signed-off-by: Ross Burton 
 ---
- Makefile.in | 8 
+ source/Makefile.in | 8 
  1 file changed, 4 insertions(+), 4 deletions(-)
 
-diff --git a/Makefile.in b/Makefile.in
+diff --git a/source/Makefile.in b/source/Makefile.in
 

[OE-core] [AUH] mesa: upgrading to 24.0.7 SUCCEEDED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Next steps:
- apply the patch: git am 0001-mesa-upgrade-24.0.5-24.0.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 f5c3aa1715016e922713dee94324a80d43f4f7e1 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 13:41:07 +
Subject: [PATCH] mesa: upgrade 24.0.5 -> 24.0.7

---
 ...1-Revert-meson-do-not-pull-in-clc-for-clover.patch |  4 ++--
 .../files/0001-drisw-fix-build-without-dri3.patch | 11 ---
 ...meson-misdetects-64bit-atomics-on-mips-clang.patch |  2 +-
 ...ild-check-for-all-linux-host_os-combinations.patch |  4 ++--
 ...glxext-don-t-try-zink-if-not-enabled-in-mesa.patch |  9 +++--
 meta/recipes-graphics/mesa/mesa.inc   |  2 +-
 .../mesa/{mesa_24.0.5.bb => mesa_24.0.7.bb}   |  0
 7 files changed, 13 insertions(+), 19 deletions(-)
 rename meta/recipes-graphics/mesa/{mesa_24.0.5.bb => mesa_24.0.7.bb} (100%)

diff --git 
a/meta/recipes-graphics/mesa/files/0001-Revert-meson-do-not-pull-in-clc-for-clover.patch
 
b/meta/recipes-graphics/mesa/files/0001-Revert-meson-do-not-pull-in-clc-for-clover.patch
index 1711e22585..766f659bce 100644
--- 
a/meta/recipes-graphics/mesa/files/0001-Revert-meson-do-not-pull-in-clc-for-clover.patch
+++ 
b/meta/recipes-graphics/mesa/files/0001-Revert-meson-do-not-pull-in-clc-for-clover.patch
@@ -1,4 +1,4 @@
-From 051f41beda540f0ae77b341db01a6de83c9e938a Mon Sep 17 00:00:00 2001
+From 47c44b843ec7349fd7c2f3313107f972d68e976a Mon Sep 17 00:00:00 2001
 From: Markus Volk 
 Date: Fri, 8 Mar 2024 15:53:11 +0100
 Subject: [PATCH] Revert "meson: do not pull in clc for clover"
@@ -18,7 +18,7 @@ Signed-off-by: Markus Volk 
  2 files changed, 3 insertions(+), 2 deletions(-)
 
 diff --git a/meson.build b/meson.build
-index 2db6185..741b5d1 100644
+index d0d9c5a..277093a 100644
 --- a/meson.build
 +++ b/meson.build
 @@ -813,6 +813,7 @@ if _opencl != 'disabled'
diff --git 
a/meta/recipes-graphics/mesa/files/0001-drisw-fix-build-without-dri3.patch 
b/meta/recipes-graphics/mesa/files/0001-drisw-fix-build-without-dri3.patch
index ab16152090..1a3f590d57 100644
--- a/meta/recipes-graphics/mesa/files/0001-drisw-fix-build-without-dri3.patch
+++ b/meta/recipes-graphics/mesa/files/0001-drisw-fix-build-without-dri3.patch
@@ -1,7 +1,7 @@
-From 4bd15a419e892da843489c374c58c5b29c40b5d6 Mon Sep 17 00:00:00 2001
+From 37dbddea4215161bf64e5fa4c12826678faf4d8d Mon Sep 17 00:00:00 2001
 From: Romain Naour 
 Date: Tue, 6 Feb 2024 09:47:09 +0100
-Subject: [PATCH 1/2] drisw: fix build without dri3
+Subject: [PATCH] drisw: fix build without dri3
 
 commit 1887368df41 ("glx/sw: check for modifier support in the kopper path")
 added dri3_priv.h header and dri3_check_multibuffer() function in drisw that
@@ -24,7 +24,7 @@ Signed-off-by: Khem Raj 
  1 file changed, 4 insertions(+)
 
 diff --git a/src/glx/drisw_glx.c b/src/glx/drisw_glx.c
-index 3d3f752..4b19e2d 100644
+index cbba547..6f07709 100644
 --- a/src/glx/drisw_glx.c
 +++ b/src/glx/drisw_glx.c
 @@ -32,7 +32,9 @@
@@ -45,7 +45,7 @@ index 3d3f752..4b19e2d 100644
 if (pdpyp->zink) {
bool err;
psc->has_multibuffer = dri3_check_multibuffer(priv->dpy, );
-@@ -1005,6 +1008,7 @@ driswCreateScreenDriver(int screen, struct glx_display 
*priv,
+@@ -1007,6 +1010,7 @@ driswCreateScreenDriver(int screen, struct glx_display 
*priv,
   goto handle_error;
}
 }
@@ -53,6 +53,3 @@ index 3d3f752..4b19e2d 100644
  
 glx_config_destroy_list(psc->base.configs);
 psc->base.configs = configs;
--- 
-2.44.0
-
diff --git 
a/meta/recipes-graphics/mesa/files/0001-meson-misdetects-64bit-atomics-on-mips-clang.patch
 
b/meta/recipes-graphics/mesa/files/0001-meson-misdetects-64bit-atomics-on-mips-clang.patch
index baa98a0d46..531d3b52bf 100644
--- 
a/meta/recipes-graphics/mesa/files/0001-meson-misdetects-64bit-atomics-on-mips-clang.patch
+++ 
b/meta/recipes-graphics/mesa/files/0001-meson-misdetects-64bit-atomics-on-mips-clang.patch
@@ -1,4 +1,4 @@
-From 02cc21800fe29f566add525e63f619c0536d6e7b Mon Sep 17 00:00:00 2001
+From f2a2e96bb51b207f11d5bb62d3fd21404104b474 Mon Sep 17 00:00:00 2001
 From: Khem Raj 
 Date: Mon, 13 Jan 2020 15:23:47 -0800
 

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

2024-05-15 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.78.0* has Failed 
(devtool error).

Detailed error information:

The following devtool command failed:  upgrade rust -V 1.78.0
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1882 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.9.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "5.0+snapshot-399fc0f48b5602288c2436c04587398e6d478a6a"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:399fc0f48b5602288c2436c04587398e6d478a6a"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 11 Local 11 Mirrors 0 Missed 0 Current 22 (100% match, 
100% complete)
done.
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: 3 seconds
Loading cache...done.
Loaded 1882 entries from dependency cache.
Parsing recipes...done.
Parsing of 922 .bb files complete (920 cached, 2 parsed). 1880 targets, 35 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 10 Local 9 Mirrors 0 Missed 1 Current 18 (90% match, 96% 
complete)
done.
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: 3 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:10:22
Adding changed files:   0% || ETA:  0:07:48
Adding changed files:   0% || ETA:  0:07:05
Adding changed files:   0% || ETA:  0:06:37
Adding changed files:   0% || ETA:  0:06:08
Adding changed files:   0% || ETA:  0:05:54
Adding changed files:   0% || ETA:  0:05:46
Adding changed files:   0% || ETA:  0:05:33
Adding changed files:   1% || ETA:  0:05:25
Adding changed files:   1% || ETA:  0:05:21
Adding changed files:   1% || ETA:  0:05:17
Adding changed files:   1% || ETA:  0:05:11
Adding changed files:   1% || ETA:  0:05:09
Adding changed files:   1% || ETA:  0:05:05
Adding changed files:   1% || ETA:  0:05:04
Adding changed files:   1% || ETA:  0:05:03
Adding changed files:   2% || ETA:  0:05:00
Adding changed files:   2% || ETA:  0:04:58
Adding changed files:   2% || ETA:  0:04:58
Adding changed files:   2% || ETA:  0:04:56
Adding changed files:   2% || ETA:  0:04:54
Adding changed files:   2% || ETA:  0:04:53
Adding changed files:   2% |#   | ETA:  0:04:52
Adding changed files:   2% |#   | ETA:  0:04:51
Adding changed files:   3% |#   | ETA:  0:04:50
Adding changed files:   3% |#   | ETA:  0:04:49
Adding changed files:   3% |#   | ETA:  0:04:47
Adding changed files:   3% |#   | 

[OE-core] [AUH] xmlto: upgrading to 635dcd5bc84a7b67a3a2050a179d96e1d3050b15 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-xmlto-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 c6a97be7c95ad39579fc80e10709a6d2b2f367cc Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 11:55:46 +
Subject: [PATCH] xmlto: upgrade to latest revision

---
 meta/recipes-devtools/xmlto/xmlto_0.0.28.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb 
b/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb
index d5a0e69849..ce4aed8240 100644
--- a/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb
+++ b/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb
@@ -6,7 +6,7 @@ LICENSE = "GPL-2.0-only"
 
 LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
 
-SRCREV = "6fa6a0e07644f20abf2596f78a60112713e11cbe"
+SRCREV = "635dcd5bc84a7b67a3a2050a179d96e1d3050b15"
 UPSTREAM_CHECK_COMMITS = "1"
 SRC_URI = "git://pagure.io/xmlto.git;protocol=https;branch=master"
 S = "${WORKDIR}/git"
-- 
2.44.0



0001-xmlto-upgrade-to-latest-revision.patch
Description: Binary data
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1880 entries from dependency cache.
Parsing recipes...done.
Parsing of 921 .bb files complete (920 cached, 1 parsed). 1879 targets, 35 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 397 Local 384 Mirrors 0 Missed 13 Current 490 (96% 
match, 98% complete)
Removing 1 stale sstate objects for arch qemux86_64...done.
Removing 10 stale sstate objects for arch core2-64...done.
NOTE: Executing Tasks
NOTE: Setscene tasks completed
NOTE: Running task 1695 of 2483 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb:do_fetch)
NOTE: recipe xmlto-0.0.28+0.0.29+git-r0: task do_fetch: Started
NOTE: recipe xmlto-0.0.28+0.0.29+git-r0: task do_fetch: Succeeded
NOTE: Running task 2423 of 2483 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb:do_unpack)
NOTE: Running task 2424 of 2483 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb:do_prepare_recipe_sysroot)
NOTE: recipe xmlto-0.0.28+0.0.29+git-r0: task do_unpack: Started
NOTE: recipe xmlto-0.0.28+0.0.29+git-r0: task do_prepare_recipe_sysroot: Started
NOTE: recipe xmlto-0.0.28+0.0.29+git-r0: task do_prepare_recipe_sysroot: 
Succeeded
NOTE: recipe xmlto-0.0.28+0.0.29+git-r0: task do_unpack: Succeeded
NOTE: Running task 2467 of 2483 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb:do_patch)
NOTE: Running task 2468 of 2483 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb:do_collect_spdx_deps)
NOTE: recipe xmlto-0.0.28+0.0.29+git-r0: task do_patch: Started
NOTE: recipe xmlto-0.0.28+0.0.29+git-r0: task do_collect_spdx_deps: Started
NOTE: recipe xmlto-0.0.28+0.0.29+git-r0: task do_patch: Succeeded
NOTE: Running task 2469 of 2483 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb:do_deploy_source_date_epoch)
NOTE: Running task 2470 of 2483 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb:do_populate_lic)
NOTE: recipe xmlto-0.0.28+0.0.29+git-r0: task do_collect_spdx_deps: Succeeded
NOTE: recipe xmlto-0.0.28+0.0.29+git-r0: task do_deploy_source_date_epoch: 
Started
NOTE: recipe 

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

2024-05-15 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.58.0* has 
Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-librsvg-upgrade-2.57.1-2.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 7e140ae2feb5580a9f518f5e80132700856f24d0 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 12:57:05 +
Subject: [PATCH] librsvg: upgrade 2.57.1 -> 2.58.0

---
 meta/recipes-gnome/librsvg/librsvg-crates.inc | 270 --
 ...-rust-target-to-cargo-also-when-not-.patch |  10 +-
 .../{librsvg_2.57.1.bb => librsvg_2.58.0.bb}  |   2 +-
 3 files changed, 6 insertions(+), 276 deletions(-)
 rename meta/recipes-gnome/librsvg/{librsvg_2.57.1.bb => librsvg_2.58.0.bb} 
(96%)

diff --git a/meta/recipes-gnome/librsvg/librsvg-crates.inc 
b/meta/recipes-gnome/librsvg/librsvg-crates.inc
index 94eba30948..3735cb007d 100644
--- a/meta/recipes-gnome/librsvg/librsvg-crates.inc
+++ b/meta/recipes-gnome/librsvg/librsvg-crates.inc
@@ -274,273 +274,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.1.2.sha256sum] = 
"b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
-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.6.5.sha256sum] = 
"d664a92ecae85fd0a7392615844904654d1d5f5514837f471ddef4a057aba1b6"
-SRC_URI[anstyle-1.0.4.sha256sum] = 
"7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87"
-SRC_URI[anstyle-parse-0.2.3.sha256sum] = 
"c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c"
-SRC_URI[anstyle-query-1.0.2.sha256sum] = 
"e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648"
-SRC_URI[anstyle-wincon-3.0.2.sha256sum] = 
"1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7"
-SRC_URI[anyhow-1.0.75.sha256sum] = 
"a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
-SRC_URI[approx-0.5.1.sha256sum] = 
"cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
-SRC_URI[assert_cmd-2.0.12.sha256sum] = 
"88903cb14723e4d4003335bb7f8a14f27691649105346a0f0957466c096adfe6"
-SRC_URI[autocfg-1.1.0.sha256sum] = 
"d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
-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.4.1.sha256sum] = 
"327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
-SRC_URI[block-0.1.6.sha256sum] = 
"0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
-SRC_URI[bstr-1.8.0.sha256sum] = 
"542f33a8835a0884b006a0c3df3dadd99c0c3f296ed26c2fdc8028e01ad6230c"
-SRC_URI[bumpalo-3.14.0.sha256sum] = 
"7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
-SRC_URI[bytemuck-1.14.0.sha256sum] = 
"374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6"
-SRC_URI[byteorder-1.5.0.sha256sum] = 
"1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
-SRC_URI[cairo-rs-0.18.3.sha256sum] = 
"f33613627f0dea6a731b0605101fad59ba4f193a52c96c4687728d822605a8a1"
-SRC_URI[cairo-sys-rs-0.18.2.sha256sum] = 
"685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51"
-SRC_URI[cast-0.3.0.sha256sum] = 
"37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
-SRC_URI[cc-1.0.83.sha256sum] = 
"f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
-SRC_URI[cfg-expr-0.15.5.sha256sum] = 
"03915af431787e6ffdcc74c645077518c6b6e01f80b761e0fbbfa288536311b3"
-SRC_URI[cfg-if-1.0.0.sha256sum] = 
"baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
-SRC_URI[chrono-0.4.31.sha256sum] = 

[OE-core] [AUH] libva-utils: upgrading to 2.21.0 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

Running 'devtool upgrade' for recipe libva-utils failed.
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1879 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 10 Local 10 Mirrors 0 Missed 0 Current 20 (100% match, 
100% complete)
done.
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: 9 seconds
INFO: Extracting current version source...
INFO: Extracting upgraded version source...
INFO: Rebasing devtool onto cbb91aeae935f60eed69880b29ee684391038780
WARNING: Command 'git rebase cbb91aeae935f60eed69880b29ee684391038780' failed:
Auto-merging configure.ac
CONFLICT (content): Merge conflict in configure.ac
Auto-merging meson.build
CONFLICT (content): Merge conflict in 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/workspace/sources/libva-utils
INFO: New recipe is 
/home/pokybuild/yocto-worker/auh/build/build/workspace/recipes/libva-utils/libva-utils_2.21.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 (#199383): 
https://lists.openembedded.org/g/openembedded-core/message/199383
Mute This Topic: https://lists.openembedded.org/mt/106118875/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] shadow: upgrading to 4.15.1 FAILED

2024-05-15 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.15.1* has 
Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-shadow-upgrade-4.15.0-4.15.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 ba3695c7344916bd3b9e69eb25d5d0b5d45097e8 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 12:24:19 +
Subject: [PATCH] shadow: upgrade 4.15.0 -> 4.15.1

---
 ...copy_entry-use-temporary-stat-buffer.patch | 37 ---
 ...nexpected-open-failure-in-chroot-env.patch |  2 +-
 .../shadow/files/shadow-update-pam-conf.patch |  2 +-
 meta/recipes-extended/shadow/shadow.inc   |  5 ++-
 .../{shadow_4.15.0.bb => shadow_4.15.1.bb}|  0
 5 files changed, 5 insertions(+), 41 deletions(-)
 delete mode 100644 
meta/recipes-extended/shadow/files/0001-lib-copydir-copy_entry-use-temporary-stat-buffer.patch
 rename meta/recipes-extended/shadow/{shadow_4.15.0.bb => shadow_4.15.1.bb} 
(100%)

diff --git 
a/meta/recipes-extended/shadow/files/0001-lib-copydir-copy_entry-use-temporary-stat-buffer.patch
 
b/meta/recipes-extended/shadow/files/0001-lib-copydir-copy_entry-use-temporary-stat-buffer.patch
deleted file mode 100644
index 2e5503bfd4..00
--- 
a/meta/recipes-extended/shadow/files/0001-lib-copydir-copy_entry-use-temporary-stat-buffer.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From af4b8cb780587aa736692a3baa76b60474f19c5d Mon Sep 17 00:00:00 2001
-From: Enrico Scholz 
-Date: Mon, 18 Mar 2024 12:14:21 +0100
-Subject: [PATCH] lib/copydir:copy_entry(): use temporary stat buffer
-
-There are no guarantees that fstatat() does not clobber the stat
-buffer on errors.
-
-Use a temporary buffer so that the following code sees correct
-attributes of the source entry.
-
-Upstream-Status: Submitted [https://github.com/shadow-maint/shadow/pull/974]
-
-Signed-off-by: Enrico Scholz 

- lib/copydir.c | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
 a/lib/copydir.c
-+++ b/lib/copydir.c
-@@ -400,6 +400,7 @@ static int copy_entry (const struct path
- {
-   int err = 0;
-   struct stat sb;
-+  struct stat tmp_sb;
-   struct link_name *lp;
-   struct timespec mt[2];
- 
-@@ -423,7 +424,7 @@ static int copy_entry (const struct path
-   * If the destination already exists do nothing.
-   * This is after the copy_dir above to still iterate into subdirectories.
-   */
--  if (fstatat(dst->dirfd, dst->name, , AT_SYMLINK_NOFOLLOW) != -1) {
-+  if (fstatat(dst->dirfd, dst->name, _sb, AT_SYMLINK_NOFOLLOW) != -1) 
{
-   return err;
-   }
- 
diff --git 
a/meta/recipes-extended/shadow/files/commonio.c-fix-unexpected-open-failure-in-chroot-env.patch
 
b/meta/recipes-extended/shadow/files/commonio.c-fix-unexpected-open-failure-in-chroot-env.patch
index cd99aad135..aa17e59a6c 100644
--- 
a/meta/recipes-extended/shadow/files/commonio.c-fix-unexpected-open-failure-in-chroot-env.patch
+++ 
b/meta/recipes-extended/shadow/files/commonio.c-fix-unexpected-open-failure-in-chroot-env.patch
@@ -1,4 +1,4 @@
-From f512071dd3a4c29d4bf048c5a89c4ba9160e37b1 Mon Sep 17 00:00:00 2001
+From 90d6eb8713c7c77f1d3732beeb8367c95afa97b4 Mon Sep 17 00:00:00 2001
 From: Chen Qi 
 Date: Thu, 17 Jul 2014 15:53:34 +0800
 Subject: [PATCH] commonio.c-fix-unexpected-open-failure-in-chroot-env
diff --git a/meta/recipes-extended/shadow/files/shadow-update-pam-conf.patch 
b/meta/recipes-extended/shadow/files/shadow-update-pam-conf.patch
index 1eacb8a53f..537fd12af7 100644
--- a/meta/recipes-extended/shadow/files/shadow-update-pam-conf.patch
+++ b/meta/recipes-extended/shadow/files/shadow-update-pam-conf.patch
@@ -1,4 +1,4 @@
-From 38882ab288fd4d2cc2e45dff222ae3412c8fe357 Mon Sep 17 00:00:00 2001
+From a94d8e8253273aede304ca7a151adcd8659ebc7f Mon Sep 17 00:00:00 2001
 From: Kang Kai 
 Date: Wed, 20 Jul 2011 19:18:14 +0800
 Subject: [PATCH] shadow: update pam related configure files
diff --git a/meta/recipes-extended/shadow/shadow.inc 
b/meta/recipes-extended/shadow/shadow.inc
index 25930b64c1..ee2e6bc919 100644
--- a/meta/recipes-extended/shadow/shadow.inc
+++ b/meta/recipes-extended/shadow/shadow.inc
@@ -12,9 +12,10 @@ DEPENDS = "virtual/crypt"
 
 

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

2024-05-15 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.78.0* has Failed 
(devtool error).

Detailed error information:

The following devtool command failed:  upgrade cargo -V 1.78.0
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1879 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.9.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "5.0+snapshot-399fc0f48b5602288c2436c04587398e6d478a6a"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:399fc0f48b5602288c2436c04587398e6d478a6a"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 11 Local 11 Mirrors 0 Missed 0 Current 22 (100% match, 
100% complete)
done.
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: 4 seconds
Loading cache...done.
Loaded 1879 entries from dependency cache.
Parsing recipes...done.
Parsing of 922 .bb files complete (920 cached, 2 parsed). 1880 targets, 35 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 10 Local 9 Mirrors 0 Missed 1 Current 18 (90% match, 96% 
complete)
done.
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: 3 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:11:12
Adding changed files:   0% || ETA:  0:08:19
Adding changed files:   0% || ETA:  0:07:24
Adding changed files:   0% || ETA:  0:06:56
Adding changed files:   0% || ETA:  0:06:27
Adding changed files:   0% || ETA:  0:06:14
Adding changed files:   0% || ETA:  0:06:05
Adding changed files:   0% || ETA:  0:05:52
Adding changed files:   1% || ETA:  0:05:44
Adding changed files:   1% || ETA:  0:05:40
Adding changed files:   1% || ETA:  0:05:35
Adding changed files:   1% || ETA:  0:05:30
Adding changed files:   1% || ETA:  0:05:31
Adding changed files:   1% || ETA:  0:05:27
Adding changed files:   1% || ETA:  0:05:26
Adding changed files:   1% || ETA:  0:05:25
Adding changed files:   2% || ETA:  0:05:23
Adding changed files:   2% || ETA:  0:05:22
Adding changed files:   2% || ETA:  0:05:21
Adding changed files:   2% || ETA:  0:05:18
Adding changed files:   2% || ETA:  0:05:14
Adding changed files:   2% || ETA:  0:05:12
Adding changed files:   2% |#   | ETA:  0:05:11
Adding changed files:   2% |#   | ETA:  0:05:09
Adding changed files:   3% |#   | ETA:  0:05:08
Adding changed files:   3% |#   | ETA:  0:05:06
Adding changed files:   3% |#   | ETA:  0:05:04
Adding changed files:   3% |#   

[OE-core] [AUH] python3-mako: upgrading to 1.3.5 SUCCEEDED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Next steps:
- apply the patch: git am 0001-python3-mako-upgrade-1.3.3-1.3.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 0adcea4126583f76b1b0db98f15d03a924c6878b Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 09:55:06 +
Subject: [PATCH] python3-mako: upgrade 1.3.3 -> 1.3.5

---
 .../python/{python3-mako_1.3.3.bb => python3-mako_1.3.5.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-mako_1.3.3.bb => 
python3-mako_1.3.5.bb} (84%)

diff --git a/meta/recipes-devtools/python/python3-mako_1.3.3.bb 
b/meta/recipes-devtools/python/python3-mako_1.3.5.bb
similarity index 84%
rename from meta/recipes-devtools/python/python3-mako_1.3.3.bb
rename to meta/recipes-devtools/python/python3-mako_1.3.5.bb
index 7545cbef99..d27fb121a6 100644
--- a/meta/recipes-devtools/python/python3-mako_1.3.3.bb
+++ b/meta/recipes-devtools/python/python3-mako_1.3.5.bb
@@ -8,7 +8,7 @@ PYPI_PACKAGE = "Mako"
 
 inherit pypi python_setuptools_build_meta
 
-SRC_URI[sha256sum] = 
"e16c01d9ab9c11f7290eef1cfefc093fb5a45ee4a3da09e2fec2e4d1bae54e73"
+SRC_URI[sha256sum] = 
"48dbc20568c1d276a2698b36d968fa76161bf127194907ea6fc594fa81f943bc"
 
 RDEPENDS:${PN} = "python3-html \
   python3-markupsafe \
-- 
2.44.0



0001-python3-mako-upgrade-1.3.3-1.3.5.patch
Description: Binary data
packages/core2-64-poky-linux/python3-mako: PKGV changed from 1.3.3 [default] to 
1.3.5 [default]
packages/core2-64-poky-linux/python3-mako: PV changed from "1.3.3" to "1.3.5"
packages/core2-64-poky-linux/python3-mako: SRC_URI changed from 
"https://files.pythonhosted.org/packages/source/M/Mako/Mako-1.3.3.tar.gz;downloadfilename=Mako-1.3.3.tar.gz;
 to 
"https://files.pythonhosted.org/packages/source/M/Mako/Mako-1.3.5.tar.gz;downloadfilename=Mako-1.3.5.tar.gz;
packages/core2-64-poky-linux/python3-mako/python3-mako-dbg: PKGV changed from 
1.3.3 [default] to 1.3.5 [default]
packages/core2-64-poky-linux/python3-mako/python3-mako-dbg: PV changed from 
"1.3.3" to "1.3.5"
packages/core2-64-poky-linux/python3-mako/python3-mako-dev: PKGV changed from 
1.3.3 [default] to 1.3.5 [default]
packages/core2-64-poky-linux/python3-mako/python3-mako-dev: PV changed from 
"1.3.3" to "1.3.5"
packages/core2-64-poky-linux/python3-mako/python3-mako-doc: PKGV changed from 
1.3.3 [default] to 1.3.5 [default]
packages/core2-64-poky-linux/python3-mako/python3-mako-doc: PV changed from 
"1.3.3" to "1.3.5"
packages/core2-64-poky-linux/python3-mako/python3-mako-locale: PKGV changed 
from 1.3.3 [default] to 1.3.5 [default]
packages/core2-64-poky-linux/python3-mako/python3-mako-locale: PV changed from 
"1.3.3" to "1.3.5"
packages/core2-64-poky-linux/python3-mako/python3-mako-src: PKGV changed from 
1.3.3 [default] to 1.3.5 [default]
packages/core2-64-poky-linux/python3-mako/python3-mako-src: PV changed from 
"1.3.3" to "1.3.5"
packages/core2-64-poky-linux/python3-mako/python3-mako-staticdev: PKGV changed 
from 1.3.3 [default] to 1.3.5 [default]
packages/core2-64-poky-linux/python3-mako/python3-mako-staticdev: PV changed 
from "1.3.3" to "1.3.5"
packages/core2-64-poky-linux/python3-mako/python3-mako: PKGV changed from 1.3.3 
[default] to 1.3.5 [default]
packages/core2-64-poky-linux/python3-mako/python3-mako: PV changed from "1.3.3" 
to "1.3.5"
packages/core2-64-poky-linux/python3-mako/python3-mako: PKGSIZE changed from 
638645 to 638113 (-0%)
Changes to packages/core2-64-poky-linux/python3-mako (sysroot):
  /usr/lib/python3.12/site-packages/Mako-1.3.3.dist-info moved to 
/usr/lib/python3.12/site-packages/Mako-1.3.5.dist-info
Changes to packages/core2-64-poky-linux/python3-mako (sysroot):
  /usr/lib/python3.12/site-packages/Mako-1.3.3.dist-info moved to 
/usr/lib/python3.12/site-packages/Mako-1.3.5.dist-info

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

[OE-core] [AUH] python3-bcrypt: upgrading to 4.1.3 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

Running 'devtool upgrade' for recipe python3-bcrypt failed.
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1880 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 10 Local 10 Mirrors 0 Missed 0 Current 20 (100% match, 
100% complete)
done.
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: 3 seconds
Loading cache...done.
Loaded 1880 entries from dependency cache.
Parsing recipes...done.
Parsing of 922 .bb files complete (920 cached, 2 parsed). 1880 targets, 35 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 1 Local 0 Mirrors 0 Missed 1 Current 0 (0% match, 0% 
complete)
done.
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: 3 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: Adding local source files to srctree...
INFO: Extracting upgraded version source...
INFO: Fetching 
https://files.pythonhosted.org/packages/source/b/bcrypt/bcrypt-4.1.3.tar.gz;downloadfilename=bcrypt-4.1.3.tar.gz...
INFO: Rebasing devtool onto 0b2608ce1f86a2729691e59dc388aff1d3cfe4e9
WARNING: Command 'git rebase 0b2608ce1f86a2729691e59dc388aff1d3cfe4e9' failed:
Auto-merging src/_bcrypt/Cargo.lock
CONFLICT (content): Merge conflict in src/_bcrypt/Cargo.lock
Auto-merging src/_bcrypt/Cargo.toml
CONFLICT (content): Merge conflict in src/_bcrypt/Cargo.toml

You will need to resolve conflicts in order to complete the upgrade.
INFO: Upgraded source extracted to 
/home/pokybuild/yocto-worker/auh/build/build/workspace/sources/python3-bcrypt
INFO: New recipe is 
/home/pokybuild/yocto-worker/auh/build/build/workspace/recipes/python3-bcrypt/python3-bcrypt_4.1.3.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 (#199337): 
https://lists.openembedded.org/g/openembedded-core/message/199337
Mute This Topic: https://lists.openembedded.org/mt/106118825/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] ifupdown: upgrading to 0.8.43 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-ifupdown-upgrade-0.8.41-0.8.43.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 a7c33492e9242c54e884636d6c7b2a3926aabde1 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 07:33:00 +
Subject: [PATCH] ifupdown: upgrade 0.8.41 -> 0.8.43

---
 .../ifupdown/files/0001-Define-FNM_EXTMATCH-for-musl.patch | 3 +--
 ...-Makefile-do-not-use-dpkg-for-determining-OS-type.patch | 7 +++
 .../files/0001-ifupdown-skip-wrong-test-case.patch | 3 +--
 ...n2-c-man-don-t-rely-on-dpkg-architecture-to-set-a.patch | 3 +--
 meta/recipes-core/ifupdown/files/tweak-ptest-script.patch  | 3 +--
 .../ifupdown/{ifupdown_0.8.41.bb => ifupdown_0.8.43.bb}| 2 +-
 6 files changed, 8 insertions(+), 13 deletions(-)
 rename meta/recipes-core/ifupdown/{ifupdown_0.8.41.bb => ifupdown_0.8.43.bb} 
(97%)

diff --git 
a/meta/recipes-core/ifupdown/files/0001-Define-FNM_EXTMATCH-for-musl.patch 
b/meta/recipes-core/ifupdown/files/0001-Define-FNM_EXTMATCH-for-musl.patch
index 6c4ed526bf..dfe195bc54 100644
--- a/meta/recipes-core/ifupdown/files/0001-Define-FNM_EXTMATCH-for-musl.patch
+++ b/meta/recipes-core/ifupdown/files/0001-Define-FNM_EXTMATCH-for-musl.patch
@@ -1,4 +1,4 @@
-From 8dfbcf02e424ba1fdef587d81c9e08a37ab8c1b6 Mon Sep 17 00:00:00 2001
+From 1cc6be7331e60ac30a3bf5b5272b2fb31ac16328 Mon Sep 17 00:00:00 2001
 From: Oleksandr Kravchuk 
 Date: Tue, 2 Jul 2019 20:10:42 +0200
 Subject: [PATCH] Define FNM_EXTMATCH for musl
@@ -24,7 +24,6 @@ function); did you mean 'FNM_NOMATCH'?
 Upstream-Status: Submitted 
[https://salsa.debian.org/debian/ifupdown/merge_requests/5]
 
 Signed-off-by: Oleksandr Kravchuk 
-
 ---
  archcommon.h | 4 
  1 file changed, 4 insertions(+)
diff --git 
a/meta/recipes-core/ifupdown/files/0001-Makefile-do-not-use-dpkg-for-determining-OS-type.patch
 
b/meta/recipes-core/ifupdown/files/0001-Makefile-do-not-use-dpkg-for-determining-OS-type.patch
index 6e15a25224..1a7623c321 100644
--- 
a/meta/recipes-core/ifupdown/files/0001-Makefile-do-not-use-dpkg-for-determining-OS-type.patch
+++ 
b/meta/recipes-core/ifupdown/files/0001-Makefile-do-not-use-dpkg-for-determining-OS-type.patch
@@ -1,17 +1,16 @@
-From 7fe516cbaf9fda09d99dcb54d4645367cffc8a4d Mon Sep 17 00:00:00 2001
+From 8d9ac5d40e5336c258ae25d3c9901d63b722e992 Mon Sep 17 00:00:00 2001
 From: Alexander Kanavin 
 Date: Thu, 9 Jan 2020 15:38:06 +0100
 Subject: [PATCH] Makefile: do not use dpkg for determining OS type
 
 Upstream-Status: Inappropriate [oe-core specific]
 Signed-off-by: Alexander Kanavin 
-
 ---
  Makefile | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/Makefile b/Makefile
-index 0ce2fa3..739aef2 100644
+index 9cd758b..58b4173 100644
 --- a/Makefile
 +++ b/Makefile
 @@ -1,6 +1,6 @@
@@ -21,4 +20,4 @@ index 0ce2fa3..739aef2 100644
 +ARCH := linux
  
  BASEDIR ?= $(DESTDIR)
- 
+ PKGLIBDIR ?= /lib/ifupdown
diff --git 
a/meta/recipes-core/ifupdown/files/0001-ifupdown-skip-wrong-test-case.patch 
b/meta/recipes-core/ifupdown/files/0001-ifupdown-skip-wrong-test-case.patch
index 9ae24da51e..8f5cc7de77 100644
--- a/meta/recipes-core/ifupdown/files/0001-ifupdown-skip-wrong-test-case.patch
+++ b/meta/recipes-core/ifupdown/files/0001-ifupdown-skip-wrong-test-case.patch
@@ -1,4 +1,4 @@
-From 782d8a869c266820d0f34974436f244f67afaea7 Mon Sep 17 00:00:00 2001
+From c20e190a63db58b1b5231a09d067e4d909a0aba8 Mon Sep 17 00:00:00 2001
 From: Zqiang 
 Date: Mon, 19 Apr 2021 14:15:45 +0800
 Subject: [PATCH] ifupdown: skip wrong test case
@@ -10,7 +10,6 @@ and are skipped directly.
 Upstream-Status: Inappropriate [oe-core specific]
 
 Signed-off-by: Zqiang 
-
 ---
  tests/testbuild-linux | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 
a/meta/recipes-core/ifupdown/files/defn2-c-man-don-t-rely-on-dpkg-architecture-to-set-a.patch
 
b/meta/recipes-core/ifupdown/files/defn2-c-man-don-t-rely-on-dpkg-architecture-to-set-a.patch
index 7b4b761e6a..dc6a6c4d6e 100644
--- 
a/meta/recipes-core/ifupdown/files/defn2-c-man-don-t-rely-on-dpkg-architecture-to-set-a.patch
+++ 

[OE-core] [AUH] zstd: upgrading to 1.5.6 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-zstd-upgrade-1.5.5-1.5.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 9417c674213269228ea4c3e4046f065bb82ede93 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 12:36:28 +
Subject: [PATCH] zstd: upgrade 1.5.5 -> 1.5.6

---
 meta/recipes-extended/zstd/{zstd_1.5.5.bb => zstd_1.5.6.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-extended/zstd/{zstd_1.5.5.bb => zstd_1.5.6.bb} (96%)

diff --git a/meta/recipes-extended/zstd/zstd_1.5.5.bb 
b/meta/recipes-extended/zstd/zstd_1.5.6.bb
similarity index 96%
rename from meta/recipes-extended/zstd/zstd_1.5.5.bb
rename to meta/recipes-extended/zstd/zstd_1.5.6.bb
index 2d72af50a4..b65ab84efd 100644
--- a/meta/recipes-extended/zstd/zstd_1.5.5.bb
+++ b/meta/recipes-extended/zstd/zstd_1.5.6.bb
@@ -13,7 +13,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=0822a32f7acdbe013606746641746ee8 \
 SRC_URI = "git://github.com/facebook/zstd.git;branch=release;protocol=https \
file://0001-pzstd-use-directly-for-the-test-c-snippet.patch"
 
-SRCREV = "63779c798237346c2b245c546c40b72a5a5913fe"
+SRCREV = "794ea1b0afca0f020f4e57b6732332231fb23c70"
 UPSTREAM_CHECK_GITTAGREGEX = "v(?P\d+(\.\d+)+)"
 
 CVE_PRODUCT = "zstandard"
-- 
2.44.0

NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1881 entries from dependency cache.
Parsing recipes...done.
Parsing of 921 .bb files complete (920 cached, 1 parsed). 1879 targets, 35 
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.9.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "5.0+snapshot-c432805e83726c31aaa761c271c8f618693c9f06"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:c432805e83726c31aaa761c271c8f618693c9f06"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 131 Local 82 Mirrors 0 Missed 49 Current 160 (62% match, 
83% complete)
Removing 14 stale sstate objects for arch x86_64...done.
Removing 4 stale sstate objects for arch qemux86_64...done.
Removing 3 stale sstate objects for arch core2-64...done.
NOTE: Executing Tasks
NOTE: Running setscene task 174 of 291 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/binutils/binutils-cross_2.42.bb:do_create_spdx_setscene)
NOTE: Running setscene task 190 of 291 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/gcc/gcc-runtime_13.2.bb:do_deploy_source_date_epoch_setscene)
NOTE: Running setscene task 194 of 291 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-core/glibc/glibc_2.39.bb:do_deploy_source_date_epoch_setscene)
NOTE: Running setscene task 198 of 291 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/binutils/binutils-cross_2.42.bb:do_populate_sysroot_setscene)
NOTE: Running setscene task 199 of 291 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/gcc/gcc-cross_13.2.bb:do_deploy_source_date_epoch_setscene)
NOTE: Running setscene task 200 of 291 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/gcc/gcc-cross_13.2.bb:do_recipe_qa_setscene)
NOTE: Running setscene task 201 of 291 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/gcc/libgcc-initial_13.2.bb:do_deploy_source_date_epoch_setscene)
NOTE: Running setscene task 202 of 291 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/gcc/libgcc-initial_13.2.bb:do_recipe_qa_setscene)
NOTE: Running setscene task 203 of 291 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/gcc/libgcc_13.2.bb:do_deploy_source_date_epoch_setscene)
NOTE: Running setscene task 205 of 291 

[OE-core] [AUH] qemu: upgrading to 9.0.0 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

Running 'devtool upgrade' for recipe qemu failed.
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1881 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 11 Local 11 Mirrors 0 Missed 0 Current 22 (100% match, 
100% complete)
done.
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: 3 seconds
Loading cache...done.
Loaded 1881 entries from dependency cache.
Parsing recipes...done.
Parsing of 922 .bb files complete (920 cached, 2 parsed). 1880 targets, 35 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 10 Local 9 Mirrors 0 Missed 1 Current 18 (90% match, 96% 
complete)
done.
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: 3 seconds
DEBUG 5 [Errno 25] Inappropriate ioctl for device
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   3% |#   | ETA:  0:00:13
Adding changed files:   6% |##  | ETA:  0:00:09
Adding changed files:   9% |### | ETA:  0:00:08
Adding changed files:  13% || ETA:  0:00:07
Adding changed files:  16% |#   | ETA:  0:00:07
Adding changed files:  19% |### | ETA:  0:00:07
Adding changed files:  22% || ETA:  0:00:06
Adding changed files:  26% |#   | ETA:  0:00:06
Adding changed files:  29% |##  | ETA:  0:00:06
Adding changed files:  32% |### | ETA:  0:00:05
Adding changed files:  35% || ETA:  0:00:05
Adding changed files:  39% |##  | ETA:  0:00:05
Adding changed files:  42% |### | ETA:  0:00:04
Adding changed files:  45% || ETA:  0:00:04
Adding changed files:  48% |#   | ETA:  0:00:04
Adding changed files:  52% |##  | ETA:  0:00:03
Adding changed files:  55% |### | ETA:  0:00:03
Adding changed files:  58% |#   | ETA:  0:00:03
Adding changed files:  61% |##  | ETA:  0:00:03
Adding changed files:  65% |### | ETA:  0:00:03
Adding changed files:  68% || ETA:  0:00:02
Adding changed files:  71% |#   | ETA:  0:00:02
Adding changed files:  75% |### | ETA:  0:00:02
Adding changed files:  78% || ETA:  0:00:01
Adding changed files:  81% |#   | ETA:  0:00:01
Adding changed files:  84% |##  | ETA:  0:00:01
Adding changed files:  88% |### | ETA:  0:00:01
Adding changed files:  91% || ETA:  0:00:00
Adding changed files:  94% 

[OE-core] [AUH] cups: upgrading to 2.4.8 SUCCEEDED

2024-05-15 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.8* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-cups-upgrade-2.4.7-2.4.8.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 685bb1c904da2abdcb069bc5adf96228ec20f9c2 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 12:02:36 +
Subject: [PATCH] cups: upgrade 2.4.7 -> 2.4.8

---
 .../cups/cups/0001-use-echo-only-in-init.patch   | 11 ---
 ...002-don-t-try-to-run-generated-binaries.patch | 16 ++--
 ...ups-fix-multilib-install-file-conflicts.patch | 12 
 meta/recipes-extended/cups/cups/libexecdir.patch |  5 ++---
 .../cups/{cups_2.4.7.bb => cups_2.4.8.bb}|  2 +-
 5 files changed, 17 insertions(+), 29 deletions(-)
 rename meta/recipes-extended/cups/{cups_2.4.7.bb => cups_2.4.8.bb} (51%)

diff --git a/meta/recipes-extended/cups/cups/0001-use-echo-only-in-init.patch 
b/meta/recipes-extended/cups/cups/0001-use-echo-only-in-init.patch
index 80bbad0a44..41648210c7 100644
--- a/meta/recipes-extended/cups/cups/0001-use-echo-only-in-init.patch
+++ b/meta/recipes-extended/cups/cups/0001-use-echo-only-in-init.patch
@@ -1,7 +1,7 @@
-From a3f4d8ba97f4669a95943a7e65eb61aa44ce7999 Mon Sep 17 00:00:00 2001
+From 5e6887460fb4f597a56ab746160a81ca43f93a71 Mon Sep 17 00:00:00 2001
 From: Saul Wold 
 Date: Thu, 13 Dec 2012 19:03:52 -0800
-Subject: [PATCH 1/4] use echo only in init
+Subject: [PATCH] use echo only in init
 
 Upstream-Status: Inappropriate [embedded specific]
 Signed-off-by: Alexander Kanavin 
@@ -10,10 +10,10 @@ Signed-off-by: Alexander Kanavin 
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/scheduler/cups.sh.in b/scheduler/cups.sh.in
-index 89ac36d..6618a0f 100644
+index 74cce18..c57f0db 100644
 --- a/scheduler/cups.sh.in
 +++ b/scheduler/cups.sh.in
-@@ -50,7 +50,7 @@ case "`uname`" in
+@@ -51,7 +51,7 @@ case "`uname`" in
ECHO_ERROR=:
;;
  
@@ -22,6 +22,3 @@ index 89ac36d..6618a0f 100644
IS_ON=/bin/true
if test -f /etc/init.d/functions; then
. /etc/init.d/functions
--- 
-2.17.1
-
diff --git 
a/meta/recipes-extended/cups/cups/0002-don-t-try-to-run-generated-binaries.patch
 
b/meta/recipes-extended/cups/cups/0002-don-t-try-to-run-generated-binaries.patch
index 2bc26edbfc..2fb0825016 100644
--- 
a/meta/recipes-extended/cups/cups/0002-don-t-try-to-run-generated-binaries.patch
+++ 
b/meta/recipes-extended/cups/cups/0002-don-t-try-to-run-generated-binaries.patch
@@ -1,21 +1,20 @@
-From 3e9a965dcd65ab2d40b753b6f792a1a4559182aa Mon Sep 17 00:00:00 2001
+From b3f8b234709cc2754d95e6cbe80018b6a998ce49 Mon Sep 17 00:00:00 2001
 From: Koen Kooi 
 Date: Sun, 30 Jan 2011 16:37:27 +0100
-Subject: [PATCH 2/4] don't try to run generated binaries
+Subject: [PATCH] don't try to run generated binaries
 
 Upstream-Status: Inappropriate [embedded specific]
 
 Signed-off-by: Koen Kooi 
-
 ---
- ppdc/Makefile | 32 
- 1 file changed, 16 insertions(+), 16 deletions(-)
+ ppdc/Makefile | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
 
 diff --git a/ppdc/Makefile b/ppdc/Makefile
-index 32e2e0b..f1478d4 100644
+index e36ed11..3fe97e1 100644
 --- a/ppdc/Makefile
 +++ b/ppdc/Makefile
-@@ -186,8 +186,8 @@ genstrings:genstrings.o libcupsppdc.a 
../cups/$(LIBCUPSSTATIC) \
+@@ -187,8 +187,8 @@ genstrings:genstrings.o libcupsppdc.a 
../cups/$(LIBCUPSSTATIC) \
$(LD_CXX) $(ARCHFLAGS) $(ALL_LDFLAGS) -o genstrings genstrings.o \
libcupsppdc.a $(LINKCUPSSTATIC)
$(CODE_SIGN) -s "$(CODE_SIGN_IDENTITY)" $@
@@ -26,6 +25,3 @@ index 32e2e0b..f1478d4 100644
  
  
  #
--- 
-2.17.1
-
diff --git 
a/meta/recipes-extended/cups/cups/0004-cups-fix-multilib-install-file-conflicts.patch
 
b/meta/recipes-extended/cups/cups/0004-cups-fix-multilib-install-file-conflicts.patch
index bc9260307c..f99cf03a90 100644
--- 
a/meta/recipes-extended/cups/cups/0004-cups-fix-multilib-install-file-conflicts.patch
+++ 
b/meta/recipes-extended/cups/cups/0004-cups-fix-multilib-install-file-conflicts.patch
@@ -1,7 +1,7 @@
-From 7dbda1887aa19ab720aff22312f4caff2d575f62 Mon Sep 17 00:00:00 

[OE-core] [AUH] dnf: upgrading to 4.20.0 SUCCEEDED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Next steps:
- apply the patch: git am 0001-dnf-upgrade-4.19.2-4.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 1ae7b01bcb164a6dcbb02536780df20d3690a36b Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 08:44:38 +
Subject: [PATCH] dnf: upgrade 4.19.2 -> 4.20.0

---
 .../dnf/0001-Corretly-install-tmpfiles.d-configuration.patch | 2 +-
 ...01-Do-not-hardcode-etc-and-systemd-unit-directories.patch | 2 +-
 .../dnf/dnf/0001-dnf-write-the-log-lock-to-root.patch| 2 +-
 .../dnf/dnf/0001-lock.py-fix-Exception-handling.patch| 5 +
 .../dnf/dnf/0001-set-python-path-for-completion_helper.patch | 2 +-
 .../dnf/dnf/0005-Do-not-prepend-installroot-to-logdir.patch  | 2 +-
 ...029-Do-not-set-PYTHON_INSTALL_DIR-by-running-python.patch | 2 +-
 .../dnf/dnf/0030-Run-python-scripts-using-env.patch  | 2 +-
 meta/recipes-devtools/dnf/{dnf_4.19.2.bb => dnf_4.20.0.bb}   | 2 +-
 9 files changed, 9 insertions(+), 12 deletions(-)
 rename meta/recipes-devtools/dnf/{dnf_4.19.2.bb => dnf_4.20.0.bb} (98%)

diff --git 
a/meta/recipes-devtools/dnf/dnf/0001-Corretly-install-tmpfiles.d-configuration.patch
 
b/meta/recipes-devtools/dnf/dnf/0001-Corretly-install-tmpfiles.d-configuration.patch
index fd942228b9..36a5026b80 100644
--- 
a/meta/recipes-devtools/dnf/dnf/0001-Corretly-install-tmpfiles.d-configuration.patch
+++ 
b/meta/recipes-devtools/dnf/dnf/0001-Corretly-install-tmpfiles.d-configuration.patch
@@ -1,4 +1,4 @@
-From f70eb308c837f2c944e23bb680a501a605004d65 Mon Sep 17 00:00:00 2001
+From 9cd56fd7010c7bf334b6dc7fc41510c0752a1818 Mon Sep 17 00:00:00 2001
 From: Alexander Kanavin 
 Date: Thu, 26 Jan 2017 16:36:20 +0200
 Subject: [PATCH] Corretly install tmpfiles.d configuration
diff --git 
a/meta/recipes-devtools/dnf/dnf/0001-Do-not-hardcode-etc-and-systemd-unit-directories.patch
 
b/meta/recipes-devtools/dnf/dnf/0001-Do-not-hardcode-etc-and-systemd-unit-directories.patch
index 37359a5765..854c9fab5c 100644
--- 
a/meta/recipes-devtools/dnf/dnf/0001-Do-not-hardcode-etc-and-systemd-unit-directories.patch
+++ 
b/meta/recipes-devtools/dnf/dnf/0001-Do-not-hardcode-etc-and-systemd-unit-directories.patch
@@ -1,4 +1,4 @@
-From 3ca6d14fbc6419ff6239b4ba16f77da20fb31d03 Mon Sep 17 00:00:00 2001
+From 1ab6f0a6b57c27f98757829b4ef6e06c0213e147 Mon Sep 17 00:00:00 2001
 From: Alexander Kanavin 
 Date: Thu, 26 Jan 2017 16:25:47 +0200
 Subject: [PATCH] Do not hardcode /etc and systemd unit directories
diff --git 
a/meta/recipes-devtools/dnf/dnf/0001-dnf-write-the-log-lock-to-root.patch 
b/meta/recipes-devtools/dnf/dnf/0001-dnf-write-the-log-lock-to-root.patch
index 18f9a30949..ccd3e3169b 100644
--- a/meta/recipes-devtools/dnf/dnf/0001-dnf-write-the-log-lock-to-root.patch
+++ b/meta/recipes-devtools/dnf/dnf/0001-dnf-write-the-log-lock-to-root.patch
@@ -1,4 +1,4 @@
-From 049e2832284ab883e185d9020c881518a68e6c38 Mon Sep 17 00:00:00 2001
+From b88ca1f9a2785264432c5cd24816f0513d7cad7e Mon Sep 17 00:00:00 2001
 From: Alexander Kanavin 
 Date: Tue, 28 Apr 2020 15:55:00 +0200
 Subject: [PATCH] dnf: write the log lock to root
diff --git 
a/meta/recipes-devtools/dnf/dnf/0001-lock.py-fix-Exception-handling.patch 
b/meta/recipes-devtools/dnf/dnf/0001-lock.py-fix-Exception-handling.patch
index 6bffe9af0a..ef0318c8d8 100644
--- a/meta/recipes-devtools/dnf/dnf/0001-lock.py-fix-Exception-handling.patch
+++ b/meta/recipes-devtools/dnf/dnf/0001-lock.py-fix-Exception-handling.patch
@@ -1,4 +1,4 @@
-From 3881757eabfde2ff54400ab127b106ab085d83f0 Mon Sep 17 00:00:00 2001
+From 6e8c60578ced8c562f0928c36de0bfe576918e33 Mon Sep 17 00:00:00 2001
 From: Changqing Li 
 Date: Wed, 13 Mar 2024 11:22:05 +0800
 Subject: [PATCH] lock.py: fix Exception handling
@@ -57,6 +57,3 @@ index 6817aac9..5718062a 100644
  
  def __exit__(self, *exc_args):
  if self.count == 1:
--- 
-2.25.1
-
diff --git 
a/meta/recipes-devtools/dnf/dnf/0001-set-python-path-for-completion_helper.patch
 
b/meta/recipes-devtools/dnf/dnf/0001-set-python-path-for-completion_helper.patch
index fcd970a7ae..57edf33c93 100644
--- 
a/meta/recipes-devtools/dnf/dnf/0001-set-python-path-for-completion_helper.patch
+++ 

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

2024-05-15 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.78.0* has 
Failed (devtool error).

Detailed error information:

The following devtool command failed:  upgrade libstd-rs -V 1.78.0
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1880 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 11 Local 11 Mirrors 0 Missed 0 Current 22 (100% match, 
100% complete)
done.
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: 3 seconds
Loading cache...done.
Loaded 1880 entries from dependency cache.
Parsing recipes...done.
Parsing of 922 .bb files complete (920 cached, 2 parsed). 1880 targets, 35 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 10 Local 9 Mirrors 0 Missed 1 Current 18 (90% match, 96% 
complete)
done.
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: 3 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:10:18
Adding changed files:   0% || ETA:  0:07:42
Adding changed files:   0% || ETA:  0:06:57
Adding changed files:   0% || ETA:  0:06:30
Adding changed files:   0% || ETA:  0:06:02
Adding changed files:   0% || ETA:  0:05:51
Adding changed files:   0% || ETA:  0:05:44
Adding changed files:   0% || ETA:  0:05:31
Adding changed files:   1% || ETA:  0:05:24
Adding changed files:   1% || ETA:  0:05:20
Adding changed files:   1% || ETA:  0:05:15
Adding changed files:   1% || ETA:  0:05:10
Adding changed files:   1% || ETA:  0:05:08
Adding changed files:   1% || ETA:  0:05:05
Adding changed files:   1% || ETA:  0:05:04
Adding changed files:   1% || ETA:  0:05:02
Adding changed files:   2% || ETA:  0:05:00
Adding changed files:   2% || ETA:  0:04:58
Adding changed files:   2% || ETA:  0:04:57
Adding changed files:   2% || ETA:  0:04:55
Adding changed files:   2% || ETA:  0:04:52
Adding changed files:   2% || ETA:  0:04:51
Adding changed files:   2% |#   | ETA:  0:04:50
Adding changed files:   2% |#   | ETA:  0:04:50
Adding changed files:   3% |#   | ETA:  0:04:49
Adding changed files:   3% |#   | ETA:  0:04:48
Adding changed files:   3% |#   | ETA:  0:04:48
Adding changed files:   3% |#   | ETA:  0:04:49
Adding changed files:   3% 

[OE-core] [AUH] python3-meson-python: upgrading to 0.16.0 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

The following devtool command failed:  upgrade python3-meson-python -V 0.16.0
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1879 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.9.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "5.0+snapshot-8293c88c58b7415ad3b5272c9cf1105f559b33fc"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:8293c88c58b7415ad3b5272c9cf1105f559b33fc"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 10 Local 10 Mirrors 0 Missed 0 Current 20 (100% match, 
100% complete)
done.
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: 3 seconds
Loading cache...done.
Loaded 1879 entries from dependency cache.
Parsing recipes...done.
Parsing of 922 .bb files complete (920 cached, 2 parsed). 1880 targets, 35 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 1 Local 0 Mirrors 0 Missed 1 Current 0 (0% match, 0% 
complete)
done.
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: 3 seconds
DEBUG 5 [Errno 25] Inappropriate ioctl for device
Adding changed files:   0% |   | ETA:  --:--:--
INFO: Extracting current version source...
INFO: Extracting upgraded version source...
INFO: Fetching 
https://files.pythonhosted.org/packages/source/m/meson_python/meson_python-0.16.0.tar.gz;downloadfilename=meson_python-0.16.0.tar.gz...
ERROR: Execution of 'git add -f -A ".readthedocs.yaml" 
"tests/packages/complex/complex/more/baz.pyx" 
"tests/packages/complex/complex/more/meson.build" 
"tests/packages/complex/foo.py" "tests/packages/complex/move.py" 
"tests/packages/custom-target-dir/codegen.py" 
"tests/packages/custom-target-dir/meson.build" 
"tests/packages/custom-target-dir/pyproject.toml" 
"tests/packages/encoding/meson.build" "tests/packages/encoding/pyproject.toml" 
""tests/packages/encoding/\343\203\206\343\202\271\343\203\210.py"" 
".cirrus.yml" ".github/workflows/docs.yml" ".github/workflows/tests.yml" 
".pre-commit-config.yaml" ".readthedocs.yml" "CHANGELOG.rst" "PKG-INFO" 
"README.rst" "ci/alpine-3.docker" "ci/debian-11.docker" "ci/debian-12.docker" 
"ci/fedora-37.docker" "ci/miniconda.docker" "docs/changelog.rst" "docs/conf.py" 
"docs/contributing/commit-format.rst" "docs/contributing/documentation.rst" 
"docs/contributing/getting-started.rst" "docs/contributing/index.rst" 
"docs/contributing/release-process.rst" "do
 cs/contributing/test-suite.rst" "docs/explanations/design.rst" 
"docs/explanations/editable-installs.rst" 
"docs/explanations/internal-dependencies.rst" 
"docs/how-to-guides/build-directory.rst" 
"docs/how-to-guides/config-settings.rst" "docs/how-to-guides/first-project.rst" 
"docs/index.rst" "docs/projects-using-meson-python.rst" 
"docs/reference/environment-variables.rst" 
"docs/reference/meson-compatibility.rst" 
"docs/reference/pyproject-settings.rst" "docs/reference/quirks.rst" 
"docs/tutorials/entrypoints.rst" "docs/tutorials/executable.rst" 
"docs/tutorials/introduction.rst" "meson.build" "mesonpy/__init__.py" 
"mesonpy/_editable.py" "mesonpy/_tags.py" "mesonpy/_util.py" "pyproject.toml" 
"tests/packages/complex/meson.build" 
"tests/packages/imports-itself-during-build/meson.build" 
"tests/test_editable.py" "tests/test_output.py" "tests/test_project.py" 
"tests/test_tags.py" "tests/test_wheel.py"' failed with exit code 128:
fatal: pathspec 'tests/packages/encoding/343203206343202271343203210.py' did 
not 

[OE-core] [AUH] python3-referencing: upgrading to 0.35.1 SUCCEEDED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Next steps:
- apply the patch: git am 
0001-python3-referencing-upgrade-0.34.0-0.35.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 853d1b7eaa4c8815fbfb9601b698547701580c07 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 10:07:02 +
Subject: [PATCH] python3-referencing: upgrade 0.34.0 -> 0.35.1

---
 ...hon3-referencing_0.34.0.bb => python3-referencing_0.35.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-referencing_0.34.0.bb => 
python3-referencing_0.35.1.bb} (81%)

diff --git a/meta/recipes-devtools/python/python3-referencing_0.34.0.bb 
b/meta/recipes-devtools/python/python3-referencing_0.35.1.bb
similarity index 81%
rename from meta/recipes-devtools/python/python3-referencing_0.34.0.bb
rename to meta/recipes-devtools/python/python3-referencing_0.35.1.bb
index 6fbd10d9cf..3e2a380607 100644
--- a/meta/recipes-devtools/python/python3-referencing_0.34.0.bb
+++ b/meta/recipes-devtools/python/python3-referencing_0.35.1.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/python-jsonschema/referencing;
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=93eb9740964b59e9ba30281255b044e2"
 
-SRC_URI[sha256sum] = 
"5773bd84ef41799a5a8ca72dc34590c041eb01bf9aa02632b4a973fb0181a844"
+SRC_URI[sha256sum] = 
"25b42124a6c8b632a425174f24087783efb348a6f1e0008e63cd4466fedf703c"
 
 inherit pypi python_hatchling
 
-- 
2.44.0



0001-python3-referencing-upgrade-0.34.0-0.35.1.patch
Description: Binary data
packages/core2-64-poky-linux/python3-referencing: PKGV changed from 0.34.0 
[default] to 0.35.1 [default]
packages/core2-64-poky-linux/python3-referencing: PV changed from "0.34.0" to 
"0.35.1"
packages/core2-64-poky-linux/python3-referencing: SRC_URI changed from 
"https://files.pythonhosted.org/packages/source/r/referencing/referencing-0.34.0.tar.gz;downloadfilename=referencing-0.34.0.tar.gz;
 to 
"https://files.pythonhosted.org/packages/source/r/referencing/referencing-0.35.1.tar.gz;downloadfilename=referencing-0.35.1.tar.gz;
packages/core2-64-poky-linux/python3-referencing/python3-referencing-dbg: PKGV 
changed from 0.34.0 [default] to 0.35.1 [default]
packages/core2-64-poky-linux/python3-referencing/python3-referencing-dbg: PV 
changed from "0.34.0" to "0.35.1"
packages/core2-64-poky-linux/python3-referencing/python3-referencing-dev: PKGV 
changed from 0.34.0 [default] to 0.35.1 [default]
packages/core2-64-poky-linux/python3-referencing/python3-referencing-dev: PV 
changed from "0.34.0" to "0.35.1"
packages/core2-64-poky-linux/python3-referencing/python3-referencing-doc: PKGV 
changed from 0.34.0 [default] to 0.35.1 [default]
packages/core2-64-poky-linux/python3-referencing/python3-referencing-doc: PV 
changed from "0.34.0" to "0.35.1"
packages/core2-64-poky-linux/python3-referencing/python3-referencing-locale: 
PKGV changed from 0.34.0 [default] to 0.35.1 [default]
packages/core2-64-poky-linux/python3-referencing/python3-referencing-locale: PV 
changed from "0.34.0" to "0.35.1"
packages/core2-64-poky-linux/python3-referencing/python3-referencing-src: PKGV 
changed from 0.34.0 [default] to 0.35.1 [default]
packages/core2-64-poky-linux/python3-referencing/python3-referencing-src: PV 
changed from "0.34.0" to "0.35.1"
packages/core2-64-poky-linux/python3-referencing/python3-referencing-staticdev: 
PKGV changed from 0.34.0 [default] to 0.35.1 [default]
packages/core2-64-poky-linux/python3-referencing/python3-referencing-staticdev: 
PV changed from "0.34.0" to "0.35.1"
packages/core2-64-poky-linux/python3-referencing/python3-referencing: PKGV 
changed from 0.34.0 [default] to 0.35.1 [default]
packages/core2-64-poky-linux/python3-referencing/python3-referencing: PV 
changed from "0.34.0" to "0.35.1"
packages/core2-64-poky-linux/python3-referencing/python3-referencing: PKGSIZE 
changed from 263024 to 264402 (+1%)
Changes to packages/core2-64-poky-linux/python3-referencing (sysroot):
  /usr/lib/python3.12/site-packages/referencing-0.34.0.dist-info moved to 
/usr/lib/python3.12/site-packages/referencing-0.35.1.dist-info
Changes to packages/core2-64-poky-linux/python3-referencing 

[OE-core] [AUH] python3-sphinx: upgrading to 7.3.7 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

The following devtool command failed:  upgrade python3-sphinx -V 7.3.7
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1880 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 10 Local 10 Mirrors 0 Missed 0 Current 20 (100% match, 
100% complete)
done.
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: 4 seconds
Loading cache...done.
Loaded 1880 entries from dependency cache.
Parsing recipes...done.
Parsing of 922 .bb files complete (920 cached, 2 parsed). 1880 targets, 35 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 1 Local 0 Mirrors 0 Missed 1 Current 0 (0% match, 0% 
complete)
done.
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: 4 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:  51% |##  | ETA:  0:00:00
Adding changed files:  64% |### | ETA:  0:00:00
Adding changed files:  77% |### | ETA:  0:00:00
Adding changed files:  90% || 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/s/sphinx/sphinx-7.3.7.tar.gz;downloadfilename=sphinx-7.3.7.tar.gz...
INFO: Rebasing devtool onto 183afd8369706070ebd080ab2e9b21d7f92707c4
Traceback (most recent call last):
  File "/home/pokybuild/yocto-worker/auh/build/scripts/devtool", line 350, in 

ret = main()
  ^^
  File "/home/pokybuild/yocto-worker/auh/build/scripts/devtool", line 337, in 
main
ret = args.func(args, config, basepath, workspace)
  
  File "/home/pokybuild/yocto-worker/auh/build/scripts/lib/devtool/upgrade.py", 
line 600, in upgrade
new_licenses = _extract_licenses(srctree_s, (rd.getVar('LIC_FILES_CHKSUM') 
or ""))
   
^^^
  File "/home/pokybuild/yocto-worker/auh/build/scripts/lib/devtool/upgrade.py", 
line 508, 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/workspace/sources/python3-sphinx/LICENSE'


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 (#199346): 

[OE-core] [AUH] createrepo-c: upgrading to 1.1.1 SUCCEEDED

2024-05-15 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *createrepo-c* to *1.1.1* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-createrepo-c-upgrade-1.1.0-1.1.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 04bef0bf7ec997a78be12f4b3c2405c7e98667ae Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 08:34:48 +
Subject: [PATCH] createrepo-c: upgrade 1.1.0 -> 1.1.1

---
 ...001-Do-not-set-PYTHON_INSTALL_DIR-by-running-python.patch | 5 +
 .../createrepo-c/0001-include-rpm-rpmstring.h.patch  | 5 ++---
 .../{createrepo-c_1.1.0.bb => createrepo-c_1.1.1.bb} | 2 +-
 3 files changed, 4 insertions(+), 8 deletions(-)
 rename meta/recipes-devtools/createrepo-c/{createrepo-c_1.1.0.bb => 
createrepo-c_1.1.1.bb} (96%)

diff --git 
a/meta/recipes-devtools/createrepo-c/createrepo-c/0001-Do-not-set-PYTHON_INSTALL_DIR-by-running-python.patch
 
b/meta/recipes-devtools/createrepo-c/createrepo-c/0001-Do-not-set-PYTHON_INSTALL_DIR-by-running-python.patch
index b63fe53944..375ca67f85 100644
--- 
a/meta/recipes-devtools/createrepo-c/createrepo-c/0001-Do-not-set-PYTHON_INSTALL_DIR-by-running-python.patch
+++ 
b/meta/recipes-devtools/createrepo-c/createrepo-c/0001-Do-not-set-PYTHON_INSTALL_DIR-by-running-python.patch
@@ -1,4 +1,4 @@
-From 6f8f6d151b831b60f6e7892aa9294a6361353c72 Mon Sep 17 00:00:00 2001
+From 29afc558126ff4c7be6f1d200a2595e2d16510a6 Mon Sep 17 00:00:00 2001
 From: Alexander Kanavin 
 Date: Fri, 30 Dec 2016 18:31:02 +0200
 Subject: [PATCH] Do not set PYTHON_INSTALL_DIR by running python
@@ -23,6 +23,3 @@ index a31b14d..01fd8ca 100644
  INCLUDE_DIRECTORIES (${PYTHON_INCLUDE_PATH})
  
  MESSAGE(STATUS "Python install dir is ${PYTHON_INSTALL_DIR}")
--- 
-2.25.1
-
diff --git 
a/meta/recipes-devtools/createrepo-c/createrepo-c/0001-include-rpm-rpmstring.h.patch
 
b/meta/recipes-devtools/createrepo-c/createrepo-c/0001-include-rpm-rpmstring.h.patch
index b7e5710b39..abe2a87458 100644
--- 
a/meta/recipes-devtools/createrepo-c/createrepo-c/0001-include-rpm-rpmstring.h.patch
+++ 
b/meta/recipes-devtools/createrepo-c/createrepo-c/0001-include-rpm-rpmstring.h.patch
@@ -1,4 +1,4 @@
-From eb66326c3fc6e942282d01ddd56659c78ed7400b Mon Sep 17 00:00:00 2001
+From 4790c8679c93b7ca58ac5bb3f842e1e159e3 Mon Sep 17 00:00:00 2001
 From: Khem Raj 
 Date: Fri, 13 Jan 2023 13:21:51 -0800
 Subject: [PATCH] include rpm/rpmstring.h
@@ -11,13 +11,12 @@ on 'rasprintf'; ISO C99 and later do not support implicit 
function declarations
 
 Upstream-Status: Submitted 
[https://github.com/rpm-software-management/createrepo_c/pull/340]
 Signed-off-by: Khem Raj 
-
 ---
  src/xml_file.c | 1 +
  1 file changed, 1 insertion(+)
 
 diff --git a/src/xml_file.c b/src/xml_file.c
-index d2400b8..871109c 100644
+index 44b38f9..de5176b 100644
 --- a/src/xml_file.c
 +++ b/src/xml_file.c
 @@ -19,6 +19,7 @@
diff --git a/meta/recipes-devtools/createrepo-c/createrepo-c_1.1.0.bb 
b/meta/recipes-devtools/createrepo-c/createrepo-c_1.1.1.bb
similarity index 96%
rename from meta/recipes-devtools/createrepo-c/createrepo-c_1.1.0.bb
rename to meta/recipes-devtools/createrepo-c/createrepo-c_1.1.1.bb
index 1f97c99bde..e6714629af 100644
--- a/meta/recipes-devtools/createrepo-c/createrepo-c_1.1.0.bb
+++ b/meta/recipes-devtools/createrepo-c/createrepo-c_1.1.1.bb
@@ -9,7 +9,7 @@ SRC_URI = 
"git://github.com/rpm-software-management/createrepo_c;branch=master;p
file://0001-include-rpm-rpmstring.h.patch \
"
 
-SRCREV = "10a8a7af4f1de3f98a21a7d08fe3a46ef306d197"
+SRCREV = "78b0c3ff48bd58eb9c0a72879cf1025e9f225684"
 
 S = "${WORKDIR}/git"
 
-- 
2.44.0

NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 0 entries from dependency cache.
Parsing recipes...done.
Parsing of 921 .bb files complete (0 cached, 921 parsed). 1880 targets, 46 
skipped, 0 masked, 0 errors.
Removing 56 recipes from the core2-64 sysroot...done.
Removing 67 recipes from the qemux86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.9.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux-musl"
MACHINE  = "qemux86-64"
DISTRO   

[OE-core] [AUH] python3-lxml: upgrading to 5.2.2 SUCCEEDED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Next steps:
- apply the patch: git am 0001-python3-lxml-upgrade-5.2.1-5.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 dc4b308bdf19b5fe78a944097351ccaf9c8e7098 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 09:51:02 +
Subject: [PATCH] python3-lxml: upgrade 5.2.1 -> 5.2.2

---
 .../python/{python3-lxml_5.2.1.bb => python3-lxml_5.2.2.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-lxml_5.2.1.bb => 
python3-lxml_5.2.2.bb} (95%)

diff --git a/meta/recipes-devtools/python/python3-lxml_5.2.1.bb 
b/meta/recipes-devtools/python/python3-lxml_5.2.2.bb
similarity index 95%
rename from meta/recipes-devtools/python/python3-lxml_5.2.1.bb
rename to meta/recipes-devtools/python/python3-lxml_5.2.2.bb
index 44a10505f3..e5a22e7090 100644
--- a/meta/recipes-devtools/python/python3-lxml_5.2.1.bb
+++ b/meta/recipes-devtools/python/python3-lxml_5.2.2.bb
@@ -18,7 +18,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSES.txt;md5=e4c045ebad958ead4b48008f70838403 \
 
 DEPENDS += "libxml2 libxslt"
 
-SRC_URI[sha256sum] = 
"3f7765e69bbce0906a7c74d5fe46d2c7a7596147318dbc08e4a2431f3060e306"
+SRC_URI[sha256sum] = 
"bb2dc4898180bea79863d5487e5f9c7c34297414bad54bcd0f0852aee9cfdb87"
 
 SRC_URI += "${PYPI_SRC_URI}"
 inherit pkgconfig pypi setuptools3
-- 
2.44.0

packages/core2-64-poky-linux/python3-lxml: PV changed from "5.2.1" to "5.2.2"
packages/core2-64-poky-linux/python3-lxml: SRC_URI changed from 
"https://files.pythonhosted.org/packages/source/l/lxml/lxml-5.2.1.tar.gz;downloadfilename=lxml-5.2.1.tar.gz
 
https://files.pythonhosted.org/packages/source/l/lxml/lxml-5.2.1.tar.gz;downloadfilename=lxml-5.2.1.tar.gz;
 to 
"https://files.pythonhosted.org/packages/source/l/lxml/lxml-5.2.2.tar.gz;downloadfilename=lxml-5.2.2.tar.gz
 
https://files.pythonhosted.org/packages/source/l/lxml/lxml-5.2.2.tar.gz;downloadfilename=lxml-5.2.2.tar.gz;
packages/core2-64-poky-linux/python3-lxml: PKGV changed from 5.2.1 [default] to 
5.2.2 [default]
packages/core2-64-poky-linux/python3-lxml/python3-lxml-dbg: PV changed from 
"5.2.1" to "5.2.2"
packages/core2-64-poky-linux/python3-lxml/python3-lxml-dbg: PKGSIZE changed 
from 17343496 to 17345072 (+0%)
packages/core2-64-poky-linux/python3-lxml/python3-lxml-dbg: PKGV changed from 
5.2.1 [default] to 5.2.2 [default]
packages/core2-64-poky-linux/python3-lxml/python3-lxml-dev: PV changed from 
"5.2.1" to "5.2.2"
packages/core2-64-poky-linux/python3-lxml/python3-lxml-dev: PKGV changed from 
5.2.1 [default] to 5.2.2 [default]
packages/core2-64-poky-linux/python3-lxml/python3-lxml-doc: PV changed from 
"5.2.1" to "5.2.2"
packages/core2-64-poky-linux/python3-lxml/python3-lxml-doc: PKGV changed from 
5.2.1 [default] to 5.2.2 [default]
packages/core2-64-poky-linux/python3-lxml/python3-lxml-locale: PV changed from 
"5.2.1" to "5.2.2"
packages/core2-64-poky-linux/python3-lxml/python3-lxml-locale: PKGV changed 
from 5.2.1 [default] to 5.2.2 [default]
packages/core2-64-poky-linux/python3-lxml/python3-lxml-src: PV changed from 
"5.2.1" to "5.2.2"
packages/core2-64-poky-linux/python3-lxml/python3-lxml-src: PKGSIZE changed 
from 18493597 to 18497924 (+0%)
packages/core2-64-poky-linux/python3-lxml/python3-lxml-src: PKGV changed from 
5.2.1 [default] to 5.2.2 [default]
packages/core2-64-poky-linux/python3-lxml/python3-lxml-staticdev: PV changed 
from "5.2.1" to "5.2.2"
packages/core2-64-poky-linux/python3-lxml/python3-lxml-staticdev: PKGV changed 
from 5.2.1 [default] to 5.2.2 [default]
packages/core2-64-poky-linux/python3-lxml/python3-lxml: PV changed from "5.2.1" 
to "5.2.2"
packages/core2-64-poky-linux/python3-lxml/python3-lxml: PKGSIZE changed from 
5001287 to 5001953 (+0%)
packages/core2-64-poky-linux/python3-lxml/python3-lxml: PKGV changed from 5.2.1 
[default] to 5.2.2 [default]
Changes to packages/core2-64-poky-linux/python3-lxml (sysroot):
  /usr/lib/python3.12/site-packages/lxml-5.2.1.dist-info moved to 
/usr/lib/python3.12/site-packages/lxml-5.2.2.dist-info
Changes to packages/core2-64-poky-linux/python3-lxml (sysroot):
  /usr/lib/python3.12/site-packages/lxml-5.2.1.dist-info moved to 

[OE-core] [AUH] python3-pyproject-hooks: upgrading to 1.1.0 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

The following devtool command failed:  upgrade python3-pyproject-hooks -V 1.1.0
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1879 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.9.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "5.0+snapshot-b3e1284f77bbeffe62badc80d80f60c14786909d"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:b3e1284f77bbeffe62badc80d80f60c14786909d"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 10 Local 10 Mirrors 0 Missed 0 Current 20 (100% match, 
100% complete)
done.
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: 3 seconds
Loading cache...done.
Loaded 1879 entries from dependency cache.
Parsing recipes...done.
Parsing of 922 .bb files complete (920 cached, 2 parsed). 1880 targets, 35 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 1 Local 0 Mirrors 0 Missed 1 Current 0 (0% match, 0% 
complete)
done.
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: 3 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://files.pythonhosted.org/packages/source/p/pyproject_hooks/pyproject_hooks-1.1.0.tar.gz;downloadfilename=pyproject_hooks-1.1.0.tar.gz...
INFO: Rebasing devtool onto f4075f45a824c1e36c12355627b143dbe10d0c38
Traceback (most recent call last):
  File "/home/pokybuild/yocto-worker/auh/build/scripts/devtool", line 350, in 

ret = main()
  ^^
  File "/home/pokybuild/yocto-worker/auh/build/scripts/devtool", line 337, in 
main
ret = args.func(args, config, basepath, workspace)
  
  File "/home/pokybuild/yocto-worker/auh/build/scripts/lib/devtool/upgrade.py", 
line 600, in upgrade
new_licenses = _extract_licenses(srctree_s, (rd.getVar('LIC_FILES_CHKSUM') 
or ""))
   
^^^
  File "/home/pokybuild/yocto-worker/auh/build/scripts/lib/devtool/upgrade.py", 
line 508, 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/workspace/sources/python3-pyproject-hooks/LICENSE'


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 (#199324): 
https://lists.openembedded.org/g/openembedded-core/message/199324
Mute This Topic: https://lists.openembedded.org/mt/106118812/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-rpds-py: upgrading to 0.18.1 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *python3-rpds-py* to *0.18.1* 
has Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-python3-rpds-py-upgrade-0.18.0-0.18.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 3ceceb3fd760bdb5b2ce8c2d40fe7e37bb332ab0 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 10:09:27 +
Subject: [PATCH] python3-rpds-py: upgrade 0.18.0 -> 0.18.1

---
 .../python/python3-rpds-py-crates.inc | 37 ---
 ...py_0.18.0.bb => python3-rpds-py_0.18.1.bb} |  2 +-
 2 files changed, 1 insertion(+), 38 deletions(-)
 rename meta/recipes-devtools/python/{python3-rpds-py_0.18.0.bb => 
python3-rpds-py_0.18.1.bb} (80%)

diff --git a/meta/recipes-devtools/python/python3-rpds-py-crates.inc 
b/meta/recipes-devtools/python/python3-rpds-py-crates.inc
index b9048bde51..7e1f0f4749 100644
--- a/meta/recipes-devtools/python/python3-rpds-py-crates.inc
+++ b/meta/recipes-devtools/python/python3-rpds-py-crates.inc
@@ -41,40 +41,3 @@ SRC_URI += " \
 crate://crates.io/windows_x86_64_msvc/0.48.0 \
 "
 
-SRC_URI[archery-1.1.0.sha256sum] = 
"487955f60962765486ce15a3492ca45c34a2ebbf12bc0aa2b5110ca6e7d2"
-SRC_URI[autocfg-1.1.0.sha256sum] = 
"d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
-SRC_URI[bitflags-1.3.2.sha256sum] = 
"bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
-SRC_URI[cfg-if-1.0.0.sha256sum] = 
"baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
-SRC_URI[heck-0.4.1.sha256sum] = 
"95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
-SRC_URI[indoc-2.0.4.sha256sum] = 
"1e186cfbae8084e513daff4240b4797e342f988cecda4fb6c939150f96315fd8"
-SRC_URI[libc-0.2.147.sha256sum] = 
"b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
-SRC_URI[lock_api-0.4.10.sha256sum] = 
"c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
-SRC_URI[memoffset-0.9.0.sha256sum] = 
"5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
-SRC_URI[once_cell-1.18.0.sha256sum] = 
"dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
-SRC_URI[parking_lot-0.12.1.sha256sum] = 
"3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
-SRC_URI[parking_lot_core-0.9.8.sha256sum] = 
"93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
-SRC_URI[proc-macro2-1.0.66.sha256sum] = 
"18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9"
-SRC_URI[pyo3-0.20.2.sha256sum] = 
"9a89dc7a5850d0e983be1ec2a463a171d20990487c3cfcd68b5363f1ee3d6fe0"
-SRC_URI[pyo3-build-config-0.20.2.sha256sum] = 
"07426f0d8fe5a601f26293f300afd1a7b1ed5e78b2a705870c5f30893c5163be"
-SRC_URI[pyo3-ffi-0.20.2.sha256sum] = 
"dbb7dec17e17766b46bca4f1a4215a85006b4c2ecde122076c562dd058da6cf1"
-SRC_URI[pyo3-macros-0.20.2.sha256sum] = 
"05f738b4e40d50b5711957f142878cfa0f28e054aa0ebdfc3fd137a843f74ed3"
-SRC_URI[pyo3-macros-backend-0.20.2.sha256sum] = 
"0fc910d4851847827daf9d6cdd4a823fbdaab5b8818325c5e97a86da79e8881f"
-SRC_URI[quote-1.0.31.sha256sum] = 
"5fe8a65d69dd0808184ebb5f836ab526bb259db23c657efa38711b1072ee47f0"
-SRC_URI[redox_syscall-0.3.5.sha256sum] = 
"567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
-SRC_URI[rpds-1.1.0.sha256sum] = 
"a0e15515d3ce3313324d842629ea4905c25a13f81953eadb88f85516f59290a4"
-SRC_URI[scopeguard-1.1.0.sha256sum] = 
"d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
-SRC_URI[smallvec-1.11.0.sha256sum] = 
"62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9"
-SRC_URI[static_assertions-1.1.0.sha256sum] = 
"a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
-SRC_URI[syn-2.0.32.sha256sum] = 
"239814284fd6f1a4ffe4ca893952cdd93c224b6a1571c9a9eadd670295c0c9e2"
-SRC_URI[target-lexicon-0.12.9.sha256sum] = 
"df8e77cb757a61f51b947ec4a7e3646efd825b73561db1c232a8ccb639e611a0"
-SRC_URI[triomphe-0.1.9.sha256sum] = 
"0eee8098afad3fb0c54a9007aab6804558410503ad676d4633f9c2559a00ac0f"
-SRC_URI[unicode-ident-1.0.11.sha256sum] = 
"301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c"
-SRC_URI[unindent-0.2.3.sha256sum] = 

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

2024-05-15 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.78.0* has 
Failed (devtool error).

Detailed error information:

The following devtool command failed:  upgrade rust-llvm -V 1.78.0
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1881 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.9.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "5.0+snapshot-399fc0f48b5602288c2436c04587398e6d478a6a"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:399fc0f48b5602288c2436c04587398e6d478a6a"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 11 Local 11 Mirrors 0 Missed 0 Current 22 (100% match, 
100% complete)
done.
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: 3 seconds
Loading cache...done.
Loaded 1881 entries from dependency cache.
Parsing recipes...done.
Parsing of 922 .bb files complete (920 cached, 2 parsed). 1880 targets, 35 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 10 Local 9 Mirrors 0 Missed 1 Current 18 (90% match, 96% 
complete)
done.
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: 3 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:10:18
Adding changed files:   0% || ETA:  0:07:41
Adding changed files:   0% || ETA:  0:06:55
Adding changed files:   0% || ETA:  0:06:28
Adding changed files:   0% || ETA:  0:06:00
Adding changed files:   0% || ETA:  0:05:48
Adding changed files:   0% || ETA:  0:05:40
Adding changed files:   0% || ETA:  0:05:28
Adding changed files:   1% || ETA:  0:05:22
Adding changed files:   1% || ETA:  0:05:18
Adding changed files:   1% || ETA:  0:05:13
Adding changed files:   1% || ETA:  0:05:08
Adding changed files:   1% || ETA:  0:05:05
Adding changed files:   1% || ETA:  0:05:02
Adding changed files:   1% || ETA:  0:05:01
Adding changed files:   1% || ETA:  0:05:00
Adding changed files:   2% || ETA:  0:04:57
Adding changed files:   2% || ETA:  0:04:56
Adding changed files:   2% || ETA:  0:04:55
Adding changed files:   2% || ETA:  0:04:52
Adding changed files:   2% || ETA:  0:04:50
Adding changed files:   2% || ETA:  0:04:49
Adding changed files:   2% |#   | ETA:  0:04:48
Adding changed files:   2% |#   | ETA:  0:04:47
Adding changed files:   3% |#   | ETA:  0:04:46
Adding changed files:   3% |#   | ETA:  0:04:45
Adding changed files:   3% |#   | ETA:  0:04:43
Adding changed files:   3% |#

[OE-core] [AUH] go-runtime: upgrading to 1.22.3 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-go-runtime-upgrade-1.22.2-1.22.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 86cf3133dc6cbc07a4b888b6a1a56d442121fa23 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 08:52:20 +
Subject: [PATCH] go-runtime: upgrade 1.22.2 -> 1.22.3

---
 .../go/{go-1.22.2.inc => go-1.22.3.inc} |  2 +-
 .../{go-runtime_1.22.2.bb => go-runtime_1.22.3.bb}  |  0
 ...e-content-based-hash-generation-less-pedan.patch | 11 ---
 ...ow-GOTOOLDIR-to-be-overridden-in-the-envir.patch | 12 
 .../0003-ld-add-soname-to-shareable-objects.patch   |  9 +++--
 ...override-CC-when-building-dist-and-go_boot.patch | 10 +++---
 ...5-cmd-dist-separate-host-and-target-builds.patch |  9 +++--
 ...006-cmd-go-make-GOROOT-precious-by-default.patch | 13 +
 ...lter-out-build-specific-paths-from-linker-.patch | 11 ---
 ...st-buildgo.go-do-not-hardcode-host-compile.patch | 11 ---
 ...lter-build-paths-on-staticly-linked-arches.patch |  9 +++--
 11 files changed, 34 insertions(+), 63 deletions(-)
 rename meta/recipes-devtools/go/{go-1.22.2.inc => go-1.22.3.inc} (89%)
 rename meta/recipes-devtools/go/{go-runtime_1.22.2.bb => go-runtime_1.22.3.bb} 
(100%)

diff --git a/meta/recipes-devtools/go/go-1.22.2.inc 
b/meta/recipes-devtools/go/go-1.22.3.inc
similarity index 89%
rename from meta/recipes-devtools/go/go-1.22.2.inc
rename to meta/recipes-devtools/go/go-1.22.3.inc
index b399207311..34703bc1fa 100644
--- a/meta/recipes-devtools/go/go-1.22.2.inc
+++ b/meta/recipes-devtools/go/go-1.22.3.inc
@@ -15,4 +15,4 @@ SRC_URI += "\
 file://0008-src-cmd-dist-buildgo.go-do-not-hardcode-host-compile.patch \
 file://0009-go-Filter-build-paths-on-staticly-linked-arches.patch \
 "
-SRC_URI[main.sha256sum] = 
"374ea82b289ec738e968267cac59c7d5ff180f9492250254784b2044e90df5a9"
+SRC_URI[main.sha256sum] = 
"80648ef34f903193d72a59c0dff019f5f98ae0c9aa13ade0b0ecbff991a76f68"
diff --git a/meta/recipes-devtools/go/go-runtime_1.22.2.bb 
b/meta/recipes-devtools/go/go-runtime_1.22.3.bb
similarity index 100%
rename from meta/recipes-devtools/go/go-runtime_1.22.2.bb
rename to meta/recipes-devtools/go/go-runtime_1.22.3.bb
diff --git 
a/meta/recipes-devtools/go/go/0001-cmd-go-make-content-based-hash-generation-less-pedan.patch
 
b/meta/recipes-devtools/go/go/0001-cmd-go-make-content-based-hash-generation-less-pedan.patch
index 564837c7cd..cdb7c74373 100644
--- 
a/meta/recipes-devtools/go/go/0001-cmd-go-make-content-based-hash-generation-less-pedan.patch
+++ 
b/meta/recipes-devtools/go/go/0001-cmd-go-make-content-based-hash-generation-less-pedan.patch
@@ -1,7 +1,7 @@
-From 9a6c5040cbcd88b10ceb8ceaebc8d6158c086670 Mon Sep 17 00:00:00 2001
+From e93385d87bcad8aa444fb8feddb62ed811e108ea Mon Sep 17 00:00:00 2001
 From: Khem Raj 
 Date: Mon, 28 Mar 2022 10:59:03 -0700
-Subject: [PATCH 1/9] cmd/go: make content-based hash generation less pedantic
+Subject: [PATCH] cmd/go: make content-based hash generation less pedantic
 
 Go 1.10's build tool now uses content-based hashes to
 determine when something should be built or re-built.
@@ -32,7 +32,7 @@ Signed-off-by: Jose Quaresma 
  2 files changed, 36 insertions(+), 10 deletions(-)
 
 diff --git a/src/cmd/go/internal/envcmd/env.go 
b/src/cmd/go/internal/envcmd/env.go
-index c7c2e83e0f..4a90d9da5c 100644
+index c7c2e83..4a90d9d 100644
 --- a/src/cmd/go/internal/envcmd/env.go
 +++ b/src/cmd/go/internal/envcmd/env.go
 @@ -189,7 +189,7 @@ func ExtraEnvVarsCostly() []cfg.EnvVar {
@@ -45,7 +45,7 @@ index c7c2e83e0f..4a90d9da5c 100644
// Should not happen - b.CFlags was given an empty package.
fmt.Fprintf(os.Stderr, "go: invalid cflags: %v\n", err)
 diff --git a/src/cmd/go/internal/work/exec.go 
b/src/cmd/go/internal/work/exec.go
-index e05471b06c..9724cd07d0 100644
+index e05471b..9724cd0 100644
 --- a/src/cmd/go/internal/work/exec.go
 +++ b/src/cmd/go/internal/work/exec.go
 @@ -232,6 +232,8 @@ func (b *Builder) Do(ctx context.Context, root *Action) {
@@ -163,6 +163,3 

[OE-core] [AUH] python3-cryptography: upgrading to 42.0.7 FAILED

2024-05-15 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 
*42.0.7* has Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 
0001-python3-cryptography-upgrade-42.0.5-42.0.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 76d121a6da399d37329d74c20e67e1dc80285e7d Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 09:24:59 +
Subject: [PATCH] python3-cryptography: upgrade 42.0.5 -> 42.0.7

---
 .../python/python3-cryptography-crates.inc| 48 ---
 ...toml-remove-benchmark-disable-option.patch |  7 +--
 0.5.bb => python3-cryptography_42.0.7.bb} |  2 +-
 3 files changed, 3 insertions(+), 54 deletions(-)
 rename meta/recipes-devtools/python/{python3-cryptography_42.0.5.bb => 
python3-cryptography_42.0.7.bb} (95%)

diff --git a/meta/recipes-devtools/python/python3-cryptography-crates.inc 
b/meta/recipes-devtools/python/python3-cryptography-crates.inc
index b26e22b70c..f9b3f0b6fd 100644
--- a/meta/recipes-devtools/python/python3-cryptography-crates.inc
+++ b/meta/recipes-devtools/python/python3-cryptography-crates.inc
@@ -52,51 +52,3 @@ SRC_URI += " \
 crate://crates.io/windows_x86_64_msvc/0.48.5 \
 "
 
-SRC_URI[asn1-0.15.5.sha256sum] = 
"ae3ecbce89a22627b5e8e6e11d69715617138290289e385cde773b1fe50befdb"
-SRC_URI[asn1_derive-0.15.5.sha256sum] = 
"861af988fac460ac69a09f41e6217a8fb9178797b76fcc9478444be6a59be19c"
-SRC_URI[autocfg-1.1.0.sha256sum] = 
"d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
-SRC_URI[base64-0.21.7.sha256sum] = 
"9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
-SRC_URI[bitflags-1.3.2.sha256sum] = 
"bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
-SRC_URI[bitflags-2.4.2.sha256sum] = 
"ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf"
-SRC_URI[cc-1.0.83.sha256sum] = 
"f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
-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[heck-0.4.1.sha256sum] = 
"95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
-SRC_URI[indoc-2.0.4.sha256sum] = 
"1e186cfbae8084e513daff4240b4797e342f988cecda4fb6c939150f96315fd8"
-SRC_URI[libc-0.2.152.sha256sum] = 
"13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7"
-SRC_URI[lock_api-0.4.11.sha256sum] = 
"3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
-SRC_URI[memoffset-0.9.0.sha256sum] = 
"5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
-SRC_URI[once_cell-1.19.0.sha256sum] = 
"3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
-SRC_URI[openssl-0.10.63.sha256sum] = 
"15c9d69dd87a29568d4d017cfe8ec518706046a05184e5aea92d0af890b803c8"
-SRC_URI[openssl-macros-0.1.1.sha256sum] = 
"a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
-SRC_URI[openssl-sys-0.9.99.sha256sum] = 
"22e1bf214306098e4832460f797824c05d25aacdf896f64a985fb0fd992454ae"
-SRC_URI[parking_lot-0.12.1.sha256sum] = 
"3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
-SRC_URI[parking_lot_core-0.9.9.sha256sum] = 
"4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
-SRC_URI[pem-3.0.3.sha256sum] = 
"1b8fcc794035347fb64beda2d3b462595dd2753e3f268d89c5aae77e8cf2c310"
-SRC_URI[pkg-config-0.3.29.sha256sum] = 
"2900ede94e305130c13ddd391e0ab7cbaeb783945ae07a279c268cb05109c6cb"
-SRC_URI[portable-atomic-1.6.0.sha256sum] = 
"7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
-SRC_URI[proc-macro2-1.0.78.sha256sum] = 
"e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae"
-SRC_URI[pyo3-0.20.3.sha256sum] = 
"53bdbb96d49157e65d45cc287af5f32ffadd5f4761438b527b055fb0d4bb8233"
-SRC_URI[pyo3-build-config-0.20.3.sha256sum] = 
"deaa5745de3f5231ce10517a1f5dd97d53e5a2fd77aa6b5842292085831d48d7"
-SRC_URI[pyo3-ffi-0.20.3.sha256sum] = 
"62b42531d03e08d4ef1f6e85a2ed422eb678b8cd62b762e53891c05faf0d4afa"

[OE-core] [AUH] go: upgrading to 1.22.3 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-go-upgrade-1.22.2-1.22.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 4712d9ad8dcb5dfc11b45c6ba578e6e7161c6177 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 08:55:56 +
Subject: [PATCH] go: upgrade 1.22.2 -> 1.22.3

---
 .../go/{go-1.22.2.inc => go-1.22.3.inc} |  2 +-
 ...e-content-based-hash-generation-less-pedan.patch | 11 ---
 ...ow-GOTOOLDIR-to-be-overridden-in-the-envir.patch | 12 
 .../0003-ld-add-soname-to-shareable-objects.patch   |  9 +++--
 ...override-CC-when-building-dist-and-go_boot.patch | 10 +++---
 ...5-cmd-dist-separate-host-and-target-builds.patch |  9 +++--
 ...006-cmd-go-make-GOROOT-precious-by-default.patch | 13 +
 ...lter-out-build-specific-paths-from-linker-.patch | 11 ---
 ...st-buildgo.go-do-not-hardcode-host-compile.patch | 11 ---
 ...lter-build-paths-on-staticly-linked-arches.patch |  9 +++--
 .../go/{go_1.22.2.bb => go_1.22.3.bb}   |  0
 11 files changed, 34 insertions(+), 63 deletions(-)
 rename meta/recipes-devtools/go/{go-1.22.2.inc => go-1.22.3.inc} (89%)
 rename meta/recipes-devtools/go/{go_1.22.2.bb => go_1.22.3.bb} (100%)

diff --git a/meta/recipes-devtools/go/go-1.22.2.inc 
b/meta/recipes-devtools/go/go-1.22.3.inc
similarity index 89%
rename from meta/recipes-devtools/go/go-1.22.2.inc
rename to meta/recipes-devtools/go/go-1.22.3.inc
index b399207311..34703bc1fa 100644
--- a/meta/recipes-devtools/go/go-1.22.2.inc
+++ b/meta/recipes-devtools/go/go-1.22.3.inc
@@ -15,4 +15,4 @@ SRC_URI += "\
 file://0008-src-cmd-dist-buildgo.go-do-not-hardcode-host-compile.patch \
 file://0009-go-Filter-build-paths-on-staticly-linked-arches.patch \
 "
-SRC_URI[main.sha256sum] = 
"374ea82b289ec738e968267cac59c7d5ff180f9492250254784b2044e90df5a9"
+SRC_URI[main.sha256sum] = 
"80648ef34f903193d72a59c0dff019f5f98ae0c9aa13ade0b0ecbff991a76f68"
diff --git 
a/meta/recipes-devtools/go/go/0001-cmd-go-make-content-based-hash-generation-less-pedan.patch
 
b/meta/recipes-devtools/go/go/0001-cmd-go-make-content-based-hash-generation-less-pedan.patch
index 564837c7cd..b0317c1bee 100644
--- 
a/meta/recipes-devtools/go/go/0001-cmd-go-make-content-based-hash-generation-less-pedan.patch
+++ 
b/meta/recipes-devtools/go/go/0001-cmd-go-make-content-based-hash-generation-less-pedan.patch
@@ -1,7 +1,7 @@
-From 9a6c5040cbcd88b10ceb8ceaebc8d6158c086670 Mon Sep 17 00:00:00 2001
+From 0b4666586b8fcdc27c000fbff4d9d8a83bc2a99d Mon Sep 17 00:00:00 2001
 From: Khem Raj 
 Date: Mon, 28 Mar 2022 10:59:03 -0700
-Subject: [PATCH 1/9] cmd/go: make content-based hash generation less pedantic
+Subject: [PATCH] cmd/go: make content-based hash generation less pedantic
 
 Go 1.10's build tool now uses content-based hashes to
 determine when something should be built or re-built.
@@ -32,7 +32,7 @@ Signed-off-by: Jose Quaresma 
  2 files changed, 36 insertions(+), 10 deletions(-)
 
 diff --git a/src/cmd/go/internal/envcmd/env.go 
b/src/cmd/go/internal/envcmd/env.go
-index c7c2e83e0f..4a90d9da5c 100644
+index c7c2e83..4a90d9d 100644
 --- a/src/cmd/go/internal/envcmd/env.go
 +++ b/src/cmd/go/internal/envcmd/env.go
 @@ -189,7 +189,7 @@ func ExtraEnvVarsCostly() []cfg.EnvVar {
@@ -45,7 +45,7 @@ index c7c2e83e0f..4a90d9da5c 100644
// Should not happen - b.CFlags was given an empty package.
fmt.Fprintf(os.Stderr, "go: invalid cflags: %v\n", err)
 diff --git a/src/cmd/go/internal/work/exec.go 
b/src/cmd/go/internal/work/exec.go
-index e05471b06c..9724cd07d0 100644
+index e05471b..9724cd0 100644
 --- a/src/cmd/go/internal/work/exec.go
 +++ b/src/cmd/go/internal/work/exec.go
 @@ -232,6 +232,8 @@ func (b *Builder) Do(ctx context.Context, root *Action) {
@@ -163,6 +163,3 @@ index e05471b06c..9724cd07d0 100644
if err != nil {
return "", "", err
}
--- 
-2.44.0
-
diff --git 
a/meta/recipes-devtools/go/go/0002-cmd-go-Allow-GOTOOLDIR-to-be-overridden-in-the-envir.patch
 

[OE-core] [AUH] python3-pyproject-metadata: upgrading to 0.8.0 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

The following devtool command failed:  upgrade python3-pyproject-metadata -V 
0.8.0
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1880 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.9.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "5.0+snapshot-b3e1284f77bbeffe62badc80d80f60c14786909d"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:b3e1284f77bbeffe62badc80d80f60c14786909d"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 10 Local 10 Mirrors 0 Missed 0 Current 20 (100% match, 
100% complete)
done.
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: 3 seconds
Loading cache...done.
Loaded 1880 entries from dependency cache.
Parsing recipes...done.
Parsing of 922 .bb files complete (920 cached, 2 parsed). 1880 targets, 35 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 1 Local 0 Mirrors 0 Missed 1 Current 0 (0% match, 0% 
complete)
done.
NOTE: Executing Tasks
WARNING: Failed to fetch URL 
https://files.pythonhosted.org/packages/source/p/pyproject-metadata/pyproject-metadata-0.8.0.tar.gz;downloadfilename=pyproject-metadata-0.8.0.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: 3 seconds
NOTE: The errors for this build are stored in 
/home/pokybuild/yocto-worker/auh/build/build/tmp/log/error-report/error_report_20240515100336.txt
You can send the errors to a reports server by running:
  send-error-report 
/home/pokybuild/yocto-worker/auh/build/build/tmp/log/error-report/error_report_20240515100336.txt
 [-s server]
NOTE: The contents of these logs will be posted in public if you use the above 
command with the default server. Please ensure you remove any identifying or 
proprietary information when prompted before sending.

INFO: Extracting current version source...
INFO: Extracting upgraded version source...
INFO: Fetching 
https://files.pythonhosted.org/packages/source/p/pyproject-metadata/pyproject-metadata-0.8.0.tar.gz;downloadfilename=pyproject-metadata-0.8.0.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/tmp/sysroots-uninative/x86_64-linux/usr/bin:/home/pokybuild/yocto-worker/auh/build/scripts:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipetool-cavxg4tk/work/recipe-sysroot-native/usr/bin/x86_64-poky-linux:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipetool-cavxg4tk/work/recipe-sysroot/usr/bin/crossscripts:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipetool-cavxg4tk/work/recipe-sysroot-native/usr/sbin:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipe
 
tool-cavxg4tk/work/recipe-sysroot-native/usr/bin:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipetool-cavxg4tk/work/recipe-sysroot-native/sbin:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipetool-cavxg4tk/work/recipe-sysroot-native/bin:/home/pokybuild/yocto-worker/auh/build/bitbake/bin:/home/pokybuild/yocto-worker/auh/build/build/tmp/hosttools";
 export 

[OE-core] [AUH] python3-jsonschema: upgrading to 4.22.0 SUCCEEDED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Next steps:
- apply the patch: git am 
0001-python3-jsonschema-upgrade-4.21.1-4.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 5b6c44f8dc8c627a557c35d243f4d9cb762edb9a Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 09:38:57 +
Subject: [PATCH] python3-jsonschema: upgrade 4.21.1 -> 4.22.0

---
 ...ython3-jsonschema_4.21.1.bb => python3-jsonschema_4.22.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-jsonschema_4.21.1.bb => 
python3-jsonschema_4.22.0.bb} (93%)

diff --git a/meta/recipes-devtools/python/python3-jsonschema_4.21.1.bb 
b/meta/recipes-devtools/python/python3-jsonschema_4.22.0.bb
similarity index 93%
rename from meta/recipes-devtools/python/python3-jsonschema_4.21.1.bb
rename to meta/recipes-devtools/python/python3-jsonschema_4.22.0.bb
index 381148f4bb..c3184396d2 100644
--- a/meta/recipes-devtools/python/python3-jsonschema_4.21.1.bb
+++ b/meta/recipes-devtools/python/python3-jsonschema_4.22.0.bb
@@ -4,7 +4,7 @@ LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=7a60a81c146ec25599a3e1dabb8610a8 \
 file://json/LICENSE;md5=9d4de43111d33570c8fe49b4cb0e01af"
 
-SRC_URI[sha256sum] = 
"85727c00279f5fa6bedbe6238d2aa6403bedd8b4864ab11207d07df3cc1b2ee5"
+SRC_URI[sha256sum] = 
"5b22d434a45935119af990552c862e5d6d564e8f6601206b305a61fdf661a2b7"
 
 inherit pypi python_hatchling
 
-- 
2.44.0



0001-python3-jsonschema-upgrade-4.21.1-4.22.0.patch
Description: Binary data
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 0 entries from dependency cache.
Parsing recipes...done.
Parsing of 921 .bb files complete (0 cached, 921 parsed). 1880 targets, 46 
skipped, 0 masked, 0 errors.
Removing 41 recipes from the core2-64 sysroot...done.
Removing 85 recipes from the qemux86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 621 Local 607 Mirrors 0 Missed 14 Current 271 (97% 
match, 98% complete)
Removing 9 stale sstate objects for arch x86_64...done.
Removing 2 stale sstate objects for arch qemux86_64...done.
NOTE: Executing Tasks
NOTE: Running setscene task 277 of 892 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/python/python3-attrs_23.2.0.bb:do_package_write_deb_setscene)
NOTE: Running setscene task 278 of 892 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/python/python3-attrs_23.2.0.bb:do_package_write_ipk_setscene)
NOTE: Running setscene task 279 of 892 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/python/python3-attrs_23.2.0.bb:do_package_write_rpm_setscene)
NOTE: Running setscene task 280 of 892 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/python/python3-idna_3.7.bb:do_package_write_deb_setscene)
NOTE: Running setscene task 281 of 892 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/python/python3-idna_3.7.bb:do_package_write_ipk_setscene)
NOTE: Running setscene task 282 of 892 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/python/python3-idna_3.7.bb:do_package_write_rpm_setscene)
NOTE: Running setscene task 283 of 892 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/python/python3-importlib-metadata_7.1.0.bb:do_package_write_deb_setscene)
NOTE: Running setscene task 284 of 892 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/python/python3-importlib-metadata_7.1.0.bb:do_package_write_ipk_setscene)
NOTE: Running setscene task 

[OE-core] [AUH] python3-docutils: upgrading to 0.21.2 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-python3-docutils-upgrade-0.20.1-0.21.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 55ad2625eb6077afcedfed4da3af059fcb1a750b Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 09:27:07 +
Subject: [PATCH] python3-docutils: upgrade 0.20.1 -> 0.21.2

---
 ...s_0.20.1.bb => python3-docutils_0.21.2.bb} | 50 ++-
 1 file changed, 48 insertions(+), 2 deletions(-)
 rename meta/recipes-devtools/python/{python3-docutils_0.20.1.bb => 
python3-docutils_0.21.2.bb} (22%)

diff --git a/meta/recipes-devtools/python/python3-docutils_0.20.1.bb 
b/meta/recipes-devtools/python/python3-docutils_0.21.2.bb
similarity index 22%
rename from meta/recipes-devtools/python/python3-docutils_0.20.1.bb
rename to meta/recipes-devtools/python/python3-docutils_0.21.2.bb
index 6038732cc4..0d096dd570 100644
--- a/meta/recipes-devtools/python/python3-docutils_0.20.1.bb
+++ b/meta/recipes-devtools/python/python3-docutils_0.21.2.bb
@@ -1,10 +1,56 @@
+# 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:
+#
+# --- COPYING.txt
+# +++ COPYING.txt
+# @@ -6,7 +6,7 @@
+#  
+#  :Author: David Goodger
+#  :Contact: good...@python.org
+# -:Date: $Date: 2022-11-29 00:55:25 +0100 (Di, 29. Nov 2022) $
+# +:Date: $Date: 2023-06-22 17:34:37 +0200 (Do, 22. Jun 2023) $
+#  :Web site: https://docutils.sourceforge.io/
+#  :Copyright: This document has been placed in the public domain.
+#  
+# @@ -131,9 +131,9 @@
+#  * docutils/utils/roman.py
+#  
+#copyright by Mark Pilgrim, released under the
+# -  `Python 2.1.1 license`_ (`local copy`__).
+# +  `Zope Public License Version 2.1`_ (`local copy`__).
+#  
+# -  __ licenses/python-2-1-1.txt
+# +  __ licenses/ZPL-2-1.txt
+#  
+#  * tools/editors/emacs/rst.el
+#  
+# @@ -150,10 +150,10 @@
+#  
+#  .. _sandbox: https://docutils.sourceforge.io/sandbox/README.html
+#  .. _licenses: licenses/
+# -.. _Python 2.1.1 license: https://docs.python.org/3/license.html
+#  .. _GNU General Public License: https://www.gnu.org/copyleft/gpl.html
+#  .. _BSD 2-Clause License: http://opensource.org/licenses/BSD-2-Clause
+#  .. _BSD 3-Clause License: https://opensource.org/licenses/BSD-3-Clause
+# +.. _Zope Public License Version 2.1: https://opensource.org/license/zpl-2-1/
+#  .. _OSI-approved: http://opensource.org/licenses/
+#  .. _license-list:
+#  .. _GPL-compatible: https://www.gnu.org/licenses/license-list.html
+# 
+#
+
 SUMMARY = "Docutils is a modular system for processing documentation into 
useful formats"
 HOMEPAGE = "http://docutils.sourceforge.net;
 SECTION = "devel/python"
 LICENSE = "PSF-2.0 & BSD-2-Clause & GPL-3.0-only"
-LIC_FILES_CHKSUM = "file://COPYING.txt;md5=08f5f8aa6a1db2500c08a2bb558e45af"
+LIC_FILES_CHKSUM = "file://COPYING.txt;md5=382430a09a4453818aa6618f2090491b"
 
-SRC_URI[sha256sum] = 
"f08a4e276c3a1583a86dce3e34aba3fe04d02bba2dd51ed16106244e8a923e3b"
+SRC_URI[sha256sum] = 
"3a6b18732edf182daa3cd12775bbb338cf5691468f91eeeb109deff6ebfa986f"
 
 inherit pypi setuptools3
 
-- 
2.44.0

NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1882 entries from dependency cache.
Parsing recipes...done.
Parsing of 921 .bb files complete (920 cached, 1 parsed). 1879 targets, 35 
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.9.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "5.0+snapshot-5c661b652a9018b290d5d097ac8db342b1eeeb7e"
TUNE_FEATURES= "m64 core2"

[OE-core] [AUH] cmake: upgrading to 3.29.3 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-cmake-upgrade-3.28.3-3.29.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 cbd3c59c5a61c68bf8874a67d383ca22645f3592 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 08:27:50 +
Subject: [PATCH] cmake: upgrade 3.28.3 -> 3.29.3

---
 meta/recipes-devtools/cmake/cmake.inc |  2 +-
 .../{cmake_3.28.3.bb => cmake_3.29.3.bb}  | 31 ---
 2 files changed, 27 insertions(+), 6 deletions(-)
 rename meta/recipes-devtools/cmake/{cmake_3.28.3.bb => cmake_3.29.3.bb} (64%)

diff --git a/meta/recipes-devtools/cmake/cmake.inc 
b/meta/recipes-devtools/cmake/cmake.inc
index ab9f459c05..443c97254f 100644
--- a/meta/recipes-devtools/cmake/cmake.inc
+++ b/meta/recipes-devtools/cmake/cmake.inc
@@ -19,7 +19,7 @@ CMAKE_MAJOR_VERSION = 
"${@'.'.join(d.getVar('PV').split('.')[0:2])}"
 SRC_URI = "https://cmake.org/files/v${CMAKE_MAJOR_VERSION}/cmake-${PV}.tar.gz \
 "
 
-SRC_URI[sha256sum] = 
"72b7570e5c8593de6ac4ab433b73eab18c5fb328880460c86ce32608141ad5c1"
+SRC_URI[sha256sum] = 
"252aee1448d49caa04954fd5e27d189dd51570557313e7b281636716a238bccb"
 
 UPSTREAM_CHECK_REGEX = "cmake-(?P\d+(\.\d+)+)\.tar"
 
diff --git a/meta/recipes-devtools/cmake/cmake_3.28.3.bb 
b/meta/recipes-devtools/cmake/cmake_3.29.3.bb
similarity index 64%
rename from meta/recipes-devtools/cmake/cmake_3.28.3.bb
rename to meta/recipes-devtools/cmake/cmake_3.29.3.bb
index 9146fa8c0f..46546b1122 100644
--- a/meta/recipes-devtools/cmake/cmake_3.28.3.bb
+++ b/meta/recipes-devtools/cmake/cmake_3.29.3.bb
@@ -1,7 +1,33 @@
+# 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:
+#
+# --- Copyright.txt
+# +++ Copyright.txt
+# @@ -1,5 +1,5 @@
+#  CMake - Cross Platform Makefile Generator
+# -Copyright 2000-2023 Kitware, Inc. and Contributors
+# +Copyright 2000-2024 Kitware, Inc. and Contributors
+#  All rights reserved.
+#  
+#  Redistribution and use in source and binary forms, with or without
+# 
+#
+
 require cmake.inc
 
 inherit cmake bash-completion
 
+LIC_FILES_CHKSUM += "file://Copyright.txt;md5=718f05155941b33862726348d3cd46ce 
\
+
file://Source/cmake.h;beginline=1;endline=2;md5=a5f70e1fef8614734eae0d62b4f5891b
 \
+
file://Utilities/cmjsoncpp/LICENSE;md5=5d73c165a0f9e86a1342f32d19ec5926 \
+
file://Utilities/cmlibrhash/COPYING;md5=a8c2a557a5c53b1c12cddbee98c099af \
+
file://Utilities/cmlibuv/LICENSE;md5=ad93ca1fffe931537fcf64f6fcce084d \
+"
 DEPENDS += "curl expat zlib libarchive xz ncurses bzip2"
 
 SRC_URI:append:class-nativesdk = " \
@@ -12,11 +38,6 @@ SRC_URI:append:class-nativesdk = " \
 "
 
 LICENSE:append = " & BSD-1-Clause & MIT"
-LIC_FILES_CHKSUM:append = " \
-file://Utilities/cmjsoncpp/LICENSE;md5=5d73c165a0f9e86a1342f32d19ec5926 \
-file://Utilities/cmlibrhash/COPYING;md5=a8c2a557a5c53b1c12cddbee98c099af \
-file://Utilities/cmlibuv/LICENSE;md5=ad93ca1fffe931537fcf64f6fcce084d \
-"
 
 # Strip ${prefix} from ${docdir}, set result into docdir_stripped
 python () {
-- 
2.44.0

NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1881 entries from dependency cache.
Parsing recipes...done.
Parsing of 921 .bb files complete (919 cached, 2 parsed). 1879 targets, 35 
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.9.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = 

[OE-core] [AUH] python3-jinja2: upgrading to 3.1.4 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

The following devtool command failed:  upgrade python3-jinja2 -V 3.1.4
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1879 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.9.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "5.0+snapshot-bc364acb2e720e5aeda65c8c1e73a9cb2d4bbe25"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:bc364acb2e720e5aeda65c8c1e73a9cb2d4bbe25"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 10 Local 10 Mirrors 0 Missed 0 Current 20 (100% match, 
100% complete)
done.
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: 3 seconds
Loading cache...done.
Loaded 1879 entries from dependency cache.
Parsing recipes...done.
Parsing of 922 .bb files complete (920 cached, 2 parsed). 1880 targets, 35 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 1 Local 0 Mirrors 0 Missed 1 Current 0 (0% match, 0% 
complete)
done.
NOTE: Executing Tasks
WARNING: Failed to fetch URL 
https://files.pythonhosted.org/packages/source/J/Jinja2/Jinja2-3.1.4.tar.gz;downloadfilename=Jinja2-3.1.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: 3 seconds
NOTE: The errors for this build are stored in 
/home/pokybuild/yocto-worker/auh/build/build/tmp/log/error-report/error_report_20240515093528.txt
You can send the errors to a reports server by running:
  send-error-report 
/home/pokybuild/yocto-worker/auh/build/build/tmp/log/error-report/error_report_20240515093528.txt
 [-s server]
NOTE: The contents of these logs will be posted in public if you use the above 
command with the default server. Please ensure you remove any identifying or 
proprietary information when prompted before sending.

INFO: Extracting current version source...
INFO: Adding local source files to srctree...
INFO: Extracting upgraded version source...
INFO: Fetching 
https://files.pythonhosted.org/packages/source/J/Jinja2/Jinja2-3.1.4.tar.gz;downloadfilename=Jinja2-3.1.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/tmp/sysroots-uninative/x86_64-linux/usr/bin:/home/pokybuild/yocto-worker/auh/build/scripts:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipetool-4vcwloak/work/recipe-sysroot-native/usr/bin/x86_64-poky-linux:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipetool-4vcwloak/work/recipe-sysroot/usr/bin/crossscripts:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipetool-4vcwloak/work/recipe-sysroot-native/usr/sbin:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipe
 
tool-4vcwloak/work/recipe-sysroot-native/usr/bin:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipetool-4vcwloak/work/recipe-sysroot-native/sbin:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipetool-4vcwloak/work/recipe-sysroot-native/bin:/home/pokybuild/yocto-worker/auh/build/bitbake/bin:/home/pokybuild/yocto-worker/auh/build/build/tmp/hosttools";
 export HOME="/home/pokybuild"; /usr/bin/env wget -t 2 -T 30 

[OE-core] [AUH] meson: upgrading to 1.4.0 SUCCEEDED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Next steps:
- apply the patch: git am 0001-meson-upgrade-1.3.1-1.4.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 6c46cc71e59bd0ce92a8435e4106c950b9bacc0f Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 09:03:19 +
Subject: [PATCH] meson: upgrade 1.3.1 -> 1.4.0

---
 .../meson/0001-Make-CPU-family-warnings-fatal.patch   | 11 +--
 ...odule-do-not-manipulate-the-environment-when.patch |  9 -
 .../0002-Support-building-allarch-recipes-again.patch |  7 +++
 .../meson/{meson_1.3.1.bb => meson_1.4.0.bb}  |  2 +-
 4 files changed, 13 insertions(+), 16 deletions(-)
 rename meta/recipes-devtools/meson/{meson_1.3.1.bb => meson_1.4.0.bb} (98%)

diff --git 
a/meta/recipes-devtools/meson/meson/0001-Make-CPU-family-warnings-fatal.patch 
b/meta/recipes-devtools/meson/meson/0001-Make-CPU-family-warnings-fatal.patch
index 8ea7c35950..94129b2f25 100644
--- 
a/meta/recipes-devtools/meson/meson/0001-Make-CPU-family-warnings-fatal.patch
+++ 
b/meta/recipes-devtools/meson/meson/0001-Make-CPU-family-warnings-fatal.patch
@@ -1,21 +1,20 @@
-From b77cbe67df5fa0998946503f207c256ee740bb5f Mon Sep 17 00:00:00 2001
+From c61c93f43b70ba0670d41e841bff9f2a7186cc2f Mon Sep 17 00:00:00 2001
 From: Ross Burton 
 Date: Tue, 3 Jul 2018 13:59:09 +0100
 Subject: [PATCH] Make CPU family warnings fatal
 
 Upstream-Status: Inappropriate [OE specific]
 Signed-off-by: Ross Burton 
-
 ---
  mesonbuild/envconfig.py   | 4 ++--
  mesonbuild/environment.py | 6 ++
  2 files changed, 4 insertions(+), 6 deletions(-)
 
 diff --git a/mesonbuild/envconfig.py b/mesonbuild/envconfig.py
-index 07f1229..a35c356 100644
+index 0e9cd23..b44e60c 100644
 --- a/mesonbuild/envconfig.py
 +++ b/mesonbuild/envconfig.py
-@@ -285,8 +285,8 @@ class MachineInfo(HoldableObject):
+@@ -276,8 +276,8 @@ class MachineInfo(HoldableObject):
  'but is missing {}.'.format(minimum_literal - set(literal)))
  
  cpu_family = literal['cpu_family']
@@ -27,10 +26,10 @@ index 07f1229..a35c356 100644
  endian = literal['endian']
  if endian not in ('little', 'big'):
 diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py
-index 2ba2054..d798e3b 100644
+index af69f64..248d6dd 100644
 --- a/mesonbuild/environment.py
 +++ b/mesonbuild/environment.py
-@@ -359,10 +359,8 @@ def detect_cpu_family(compilers: CompilersDict) -> str:
+@@ -379,10 +379,8 @@ def detect_cpu_family(compilers: CompilersDict) -> str:
  if compilers and not any_compiler_has_define(compilers, '__mips64'):
  trial = 'mips'
  
diff --git 
a/meta/recipes-devtools/meson/meson/0001-python-module-do-not-manipulate-the-environment-when.patch
 
b/meta/recipes-devtools/meson/meson/0001-python-module-do-not-manipulate-the-environment-when.patch
index 2e0a4b1bbe..9f3f516a5c 100644
--- 
a/meta/recipes-devtools/meson/meson/0001-python-module-do-not-manipulate-the-environment-when.patch
+++ 
b/meta/recipes-devtools/meson/meson/0001-python-module-do-not-manipulate-the-environment-when.patch
@@ -1,4 +1,4 @@
-From e85683698aa3556bf14fc6d35f2c067f16af520b Mon Sep 17 00:00:00 2001
+From b4c0602a56d3517ab66b98a7dbb69defe77d29a3 Mon Sep 17 00:00:00 2001
 From: Alexander Kanavin 
 Date: Mon, 19 Nov 2018 14:24:26 +0100
 Subject: [PATCH] python module: do not manipulate the environment when calling
@@ -6,16 +6,15 @@ Subject: [PATCH] python module: do not manipulate the 
environment when calling
 
 Upstream-Status: Inappropriate [oe-core specific]
 Signed-off-by: Alexander Kanavin 
-
 ---
  mesonbuild/dependencies/python.py | 6 +-
  1 file changed, 1 insertion(+), 5 deletions(-)
 
 diff --git a/mesonbuild/dependencies/python.py 
b/mesonbuild/dependencies/python.py
-index 9aea6bd..8c13ede 100644
+index b9b17f8..a305afb 100644
 --- a/mesonbuild/dependencies/python.py
 +++ b/mesonbuild/dependencies/python.py
-@@ -380,9 +380,6 @@ def python_factory(env: 'Environment', for_machine: 
'MachineChoice',
+@@ -381,9 +381,6 @@ def python_factory(env: 'Environment', for_machine: 
'MachineChoice',
  empty.name = 'python'
  return empty
  
@@ -25,7 +24,7 @@ 

[OE-core] [AUH] librepo: upgrading to 1.17.1 SUCCEEDED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Next steps:
- apply the patch: git am 0001-librepo-upgrade-1.17.0-1.17.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 5589e626aa5f5a7f6e22c9c2a835dd2b0ce0d160 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 08:59:24 +
Subject: [PATCH] librepo: upgrade 1.17.0 -> 1.17.1

---
 ...me.c-fix-build-errors-with-older-gcc.patch | 36 ---
 ...tain-PYTHON_INSTALL_DIR-by-running-p.patch |  2 +-
 ...les-with-pkg-config-not-with-cmake-m.patch |  4 +--
 .../{librepo_1.17.0.bb => librepo_1.17.1.bb}  |  3 +-
 4 files changed, 4 insertions(+), 41 deletions(-)
 delete mode 100644 
meta/recipes-devtools/librepo/librepo/0001-gpg_gpgme.c-fix-build-errors-with-older-gcc.patch
 rename meta/recipes-devtools/librepo/{librepo_1.17.0.bb => librepo_1.17.1.bb} 
(88%)

diff --git 
a/meta/recipes-devtools/librepo/librepo/0001-gpg_gpgme.c-fix-build-errors-with-older-gcc.patch
 
b/meta/recipes-devtools/librepo/librepo/0001-gpg_gpgme.c-fix-build-errors-with-older-gcc.patch
deleted file mode 100644
index 8727b181b3..00
--- 
a/meta/recipes-devtools/librepo/librepo/0001-gpg_gpgme.c-fix-build-errors-with-older-gcc.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From b525cdec3051d1c6ff0c3cd38bf3070b18d6fb50 Mon Sep 17 00:00:00 2001
-From: Alexander Kanavin 
-Date: Wed, 6 Mar 2024 10:13:38 +0100
-Subject: [PATCH] gpg_gpgme.c: fix build errors with older gcc
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-When selinux is not enabled, older gcc versions error out this way:
-
-| 
/home/pokybuild/yocto-worker/oe-selftest-armhost/build/build-st-1938845/tmp-mc-tiny/hosttools/gcc
 -DG_LOG_DOMAIN=\"librepo\" -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE 
-D_LARGEFILE_SOURCE -Dlibrepo_EXPORTS 
-I/home/pokybuild/yocto-worker/oe-selftest-armhost/build/build-st-1938845/tmp-mc-tiny/work/aarch64-linux/librepo-native/1.17.0/git
 
-I/home/pokybuild/yocto-worker/oe-selftest-armhost/build/build-st-1938845/tmp-mc-tiny/work/aarch64-linux/librepo-native/1.17.0/recipe-sysroot-native/usr/lib/pkgconfig/../../../usr/include/libmount
 
-I/home/pokybuild/yocto-worker/oe-selftest-armhost/build/build-st-1938845/tmp-mc-tiny/work/aarch64-linux/librepo-native/1.17.0/recipe-sysroot-native/usr/lib/pkgconfig/../../../usr/include/blkid
 
-I/home/pokybuild/yocto-worker/oe-selftest-armhost/build/build-st-1938845/tmp-mc-tiny/work/aarch64-linux/librepo-native/1.17.0/recipe-sysroot-native/usr/lib/pkgconfig/../../../usr/include/glib-2.0
 
-I/home/pokybuild/yocto-worker/oe-selftest-armhost/build/build-st-1938845/tmp-mc-tiny/work/aarch64-linux/librepo-native/1.17.0/recipe-sysroot-native/usr/lib/pkgconfig/../../../usr/lib/glib-2.0/include
 
-I/home/pokybuild/yocto-worker/oe-selftest-armhost/build/build-st-1938845/tmp-mc-tiny/work/aarch64-linux/librepo-native/1.17.0/recipe-sysroot-native/usr/lib/pkgconfig/../../../usr/include/libxml2
 
-isystem/home/pokybuild/yocto-worker/oe-selftest-armhost/build/build-st-1938845/tmp-mc-tiny/work/aarch64-linux/librepo-native/1.17.0/recipe-sysroot-native/usr/include
 -O2 -pipe -std=c99 -Wall -fPIC -MD -MT 
librepo/CMakeFiles/librepo.dir/gpg_gpgme.c.o -MF 
librepo/CMakeFiles/librepo.dir/gpg_gpgme.c.o.d -o 
librepo/CMakeFiles/librepo.dir/gpg_gpgme.c.o -c 
/home/pokybuild/yocto-worker/oe-selftest-armhost/build/build-st-1938845/tmp-mc-tiny/work/aarch64-linux/librepo-native/1.17.0/git/librepo/gpg_gpgme.c
-| 
/home/pokybuild/yocto-worker/oe-selftest-armhost/build/build-st-1938845/tmp-mc-tiny/work/aarch64-linux/librepo-native/1.17.0/git/librepo/gpg_gpgme.c:
 In function ‘lr_gpg_ensure_socket_dir_exists’:
-| 
/home/pokybuild/yocto-worker/oe-selftest-armhost/build/build-st-1938845/tmp-mc-tiny/work/aarch64-linux/librepo-native/1.17.0/git/librepo/gpg_gpgme.c:135:1:
 error: label at end of compound statement
-|   135 | exit:
-|   | ^~~~
-
-Ensuring the exit: block is not empty fixes the issue.
-
-Upstream-Status: Submitted 
[https://github.com/rpm-software-management/librepo/pull/300]
-Signed-off-by: Alexander Kanavin 

- librepo/gpg_gpgme.c | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/librepo/gpg_gpgme.c 

[OE-core] [AUH] python3-hatchling: upgrading to 1.24.2 SUCCEEDED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Next steps:
- apply the patch: git am 0001-python3-hatchling-upgrade-1.24.1-1.24.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 0c305919eae860f35d7f33151b1f896ad61b81fc Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 09:30:23 +
Subject: [PATCH] python3-hatchling: upgrade 1.24.1 -> 1.24.2

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

diff --git a/meta/recipes-devtools/python/python3-hatchling_1.24.1.bb 
b/meta/recipes-devtools/python/python3-hatchling_1.24.2.bb
similarity index 85%
rename from meta/recipes-devtools/python/python3-hatchling_1.24.1.bb
rename to meta/recipes-devtools/python/python3-hatchling_1.24.2.bb
index fc8d953281..0ad545f448 100644
--- a/meta/recipes-devtools/python/python3-hatchling_1.24.1.bb
+++ b/meta/recipes-devtools/python/python3-hatchling_1.24.2.bb
@@ -8,7 +8,7 @@ inherit pypi python_hatchling
 DEPENDS += "python3-pluggy-native python3-pathspec-native 
python3-packaging-native python3-editables-native 
python3-trove-classifiers-native"
 DEPENDS:remove:class-native = "python3-hatchling-native"
 
-SRC_URI[sha256sum] = 
"51f861891e98c4044eb455163a737e5d2328d7aa74890b182db2d80fee22a497"
+SRC_URI[sha256sum] = 
"41ddc27cdb25db9ef7b68bef075f829c84cb349aa1bff8240797d012510547b0"
 
 do_compile:prepend() {
 export PYTHONPATH=src
-- 
2.44.0



0001-python3-hatchling-upgrade-1.24.1-1.24.2.patch
Description: Binary data
packages/core2-64-poky-linux/python3-hatchling: SRC_URI changed from 
"https://files.pythonhosted.org/packages/source/h/hatchling/hatchling-1.24.1.tar.gz;downloadfilename=hatchling-1.24.1.tar.gz;
 to 
"https://files.pythonhosted.org/packages/source/h/hatchling/hatchling-1.24.2.tar.gz;downloadfilename=hatchling-1.24.2.tar.gz;
packages/core2-64-poky-linux/python3-hatchling: PKGV changed from 1.24.1 
[default] to 1.24.2 [default]
packages/core2-64-poky-linux/python3-hatchling: PV changed from "1.24.1" to 
"1.24.2"
packages/core2-64-poky-linux/python3-hatchling/python3-hatchling-dbg: PKGV 
changed from 1.24.1 [default] to 1.24.2 [default]
packages/core2-64-poky-linux/python3-hatchling/python3-hatchling-dbg: PV 
changed from "1.24.1" to "1.24.2"
packages/core2-64-poky-linux/python3-hatchling/python3-hatchling-dev: PKGV 
changed from 1.24.1 [default] to 1.24.2 [default]
packages/core2-64-poky-linux/python3-hatchling/python3-hatchling-dev: PV 
changed from "1.24.1" to "1.24.2"
packages/core2-64-poky-linux/python3-hatchling/python3-hatchling-doc: PKGV 
changed from 1.24.1 [default] to 1.24.2 [default]
packages/core2-64-poky-linux/python3-hatchling/python3-hatchling-doc: PV 
changed from "1.24.1" to "1.24.2"
packages/core2-64-poky-linux/python3-hatchling/python3-hatchling-locale: PKGV 
changed from 1.24.1 [default] to 1.24.2 [default]
packages/core2-64-poky-linux/python3-hatchling/python3-hatchling-locale: PV 
changed from "1.24.1" to "1.24.2"
packages/core2-64-poky-linux/python3-hatchling/python3-hatchling-src: PKGV 
changed from 1.24.1 [default] to 1.24.2 [default]
packages/core2-64-poky-linux/python3-hatchling/python3-hatchling-src: PV 
changed from "1.24.1" to "1.24.2"
packages/core2-64-poky-linux/python3-hatchling/python3-hatchling-staticdev: 
PKGV changed from 1.24.1 [default] to 1.24.2 [default]
packages/core2-64-poky-linux/python3-hatchling/python3-hatchling-staticdev: PV 
changed from "1.24.1" to "1.24.2"
packages/core2-64-poky-linux/python3-hatchling/python3-hatchling: PKGSIZE 
changed from 715154 to 715588 (+0%)
packages/core2-64-poky-linux/python3-hatchling/python3-hatchling: PKGV changed 
from 1.24.1 [default] to 1.24.2 [default]
packages/core2-64-poky-linux/python3-hatchling/python3-hatchling: PV changed 
from "1.24.1" to "1.24.2"
Changes to packages/core2-64-poky-linux/python3-hatchling (sysroot):
  /usr/lib/python3.12/site-packages/hatchling-1.24.1.dist-info moved to 
/usr/lib/python3.12/site-packages/hatchling-1.24.2.dist-info
Changes to packages/x86_64-linux/python3-hatchling-native (sysroot):
  

[OE-core] [AUH] dmidecode: upgrading to 3.6 SUCCEEDED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Next steps:
- apply the patch: git am 0001-dmidecode-upgrade-3.5-3.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 f7c25b679851a5436efac99da48163fd15cde89e Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 08:38:07 +
Subject: [PATCH] dmidecode: upgrade 3.5 -> 3.6

---
 .../dmidecode/{dmidecode_3.5.bb => dmidecode_3.6.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/dmidecode/{dmidecode_3.5.bb => dmidecode_3.6.bb} 
(89%)

diff --git a/meta/recipes-devtools/dmidecode/dmidecode_3.5.bb 
b/meta/recipes-devtools/dmidecode/dmidecode_3.6.bb
similarity index 89%
rename from meta/recipes-devtools/dmidecode/dmidecode_3.5.bb
rename to meta/recipes-devtools/dmidecode/dmidecode_3.6.bb
index 3e2bb6e30b..e5b4e27687 100644
--- a/meta/recipes-devtools/dmidecode/dmidecode_3.5.bb
+++ b/meta/recipes-devtools/dmidecode/dmidecode_3.6.bb
@@ -18,4 +18,4 @@ do_install() {
 install
 }
 
-SRC_URI[sha256sum] = 
"79d76735ee8e25196e2a722964cf9683f5a09581503537884b256b01389cc073"
+SRC_URI[sha256sum] = 
"e40c65f3ec3dafe31ad8349a4ef1a97122d38f65004ed66575e1a8d575dd8bae"
-- 
2.44.0



0001-dmidecode-upgrade-3.5-3.6.patch
Description: Binary data
packages/core2-64-poky-linux/dmidecode/dmidecode-dbg: PKGSIZE changed from 
365224 to 374464 (+3%)
packages/core2-64-poky-linux/dmidecode/dmidecode-dbg: PKGV changed from 3.5 
[default] to 3.6 [default]
packages/core2-64-poky-linux/dmidecode/dmidecode-dbg: PV changed from "3.5" to 
"3.6"
packages/core2-64-poky-linux/dmidecode/dmidecode-dev: PKGV changed from 3.5 
[default] to 3.6 [default]
packages/core2-64-poky-linux/dmidecode/dmidecode-dev: PV changed from "3.5" to 
"3.6"
packages/core2-64-poky-linux/dmidecode/dmidecode-doc: PKGSIZE changed from 
30266 to 31365 (+4%)
packages/core2-64-poky-linux/dmidecode/dmidecode-doc: PKGV changed from 3.5 
[default] to 3.6 [default]
packages/core2-64-poky-linux/dmidecode/dmidecode-doc: PV changed from "3.5" to 
"3.6"
packages/core2-64-poky-linux/dmidecode/dmidecode-locale: PKGV changed from 3.5 
[default] to 3.6 [default]
packages/core2-64-poky-linux/dmidecode/dmidecode-locale: PV changed from "3.5" 
to "3.6"
packages/core2-64-poky-linux/dmidecode/dmidecode-src: PKGSIZE changed from 
252624 to 269813 (+7%)
packages/core2-64-poky-linux/dmidecode/dmidecode-src: PKGV changed from 3.5 
[default] to 3.6 [default]
packages/core2-64-poky-linux/dmidecode/dmidecode-src: PV changed from "3.5" to 
"3.6"
packages/core2-64-poky-linux/dmidecode/dmidecode-staticdev: PKGV changed from 
3.5 [default] to 3.6 [default]
packages/core2-64-poky-linux/dmidecode/dmidecode-staticdev: PV changed from 
"3.5" to "3.6"
packages/core2-64-poky-linux/dmidecode/dmidecode: PKGSIZE changed from 210832 
to 219088 (+4%)
packages/core2-64-poky-linux/dmidecode/dmidecode: PKGV changed from 3.5 
[default] to 3.6 [default]
packages/core2-64-poky-linux/dmidecode/dmidecode: PV changed from "3.5" to "3.6"
packages/core2-64-poky-linux/dmidecode: PKGV changed from 3.5 [default] to 3.6 
[default]
packages/core2-64-poky-linux/dmidecode: SRC_URI changed from 
"https://download.savannah.nongnu.org/releases/dmidecode/dmidecode-3.5.tar.xz; 
to 
"https://download.savannah.nongnu.org/releases/dmidecode/dmidecode-3.6.tar.xz;
packages/core2-64-poky-linux/dmidecode: PV changed from "3.5" to "3.6"

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#199314): 
https://lists.openembedded.org/g/openembedded-core/message/199314
Mute This Topic: https://lists.openembedded.org/mt/106118802/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] btrfs-tools: upgrading to 6.8.1 SUCCEEDED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Next steps:
- apply the patch: git am 0001-btrfs-tools-upgrade-6.8-6.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 97d9d4386f556930262d9ea157ad4af1008ccb38 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 08:18:29 +
Subject: [PATCH] btrfs-tools: upgrade 6.8 -> 6.8.1

---
 ...1-Add-a-possibility-to-specify-where-python-modules-ar.patch | 2 +-
 .../btrfs-tools/{btrfs-tools_6.8.bb => btrfs-tools_6.8.1.bb}| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-devtools/btrfs-tools/{btrfs-tools_6.8.bb => 
btrfs-tools_6.8.1.bb} (98%)

diff --git 
a/meta/recipes-devtools/btrfs-tools/btrfs-tools/0001-Add-a-possibility-to-specify-where-python-modules-ar.patch
 
b/meta/recipes-devtools/btrfs-tools/btrfs-tools/0001-Add-a-possibility-to-specify-where-python-modules-ar.patch
index 4b1797b65f..756044628f 100644
--- 
a/meta/recipes-devtools/btrfs-tools/btrfs-tools/0001-Add-a-possibility-to-specify-where-python-modules-ar.patch
+++ 
b/meta/recipes-devtools/btrfs-tools/btrfs-tools/0001-Add-a-possibility-to-specify-where-python-modules-ar.patch
@@ -1,4 +1,4 @@
-From 980f6edc269fa3ef8d4d4b9cd1aada2328131c19 Mon Sep 17 00:00:00 2001
+From 09f4a939d26331c3c2e2dec2a3edb6d4c07ef92f Mon Sep 17 00:00:00 2001
 From: Alexander Kanavin 
 Date: Wed, 23 May 2018 21:20:35 +0300
 Subject: [PATCH] Add a possibility to specify where python modules are
diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools_6.8.bb 
b/meta/recipes-devtools/btrfs-tools/btrfs-tools_6.8.1.bb
similarity index 98%
rename from meta/recipes-devtools/btrfs-tools/btrfs-tools_6.8.bb
rename to meta/recipes-devtools/btrfs-tools/btrfs-tools_6.8.1.bb
index 15cc7ac244..fac9f8f7ef 100644
--- a/meta/recipes-devtools/btrfs-tools/btrfs-tools_6.8.bb
+++ b/meta/recipes-devtools/btrfs-tools/btrfs-tools_6.8.1.bb
@@ -18,7 +18,7 @@ DEPENDS = "util-linux zlib"
 SRC_URI = 
"git://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git;branch=master;protocol=https
 \

file://0001-Add-a-possibility-to-specify-where-python-modules-ar.patch \
"
-SRCREV = "3793e987d2b4e878410da16f33d963043d137d48"
+SRCREV = "5d97c32d6f94cf6f473a5f82964e3edaeb1b146e"
 S = "${WORKDIR}/git"
 
 PACKAGECONFIG ??= " \
-- 
2.44.0



0001-btrfs-tools-upgrade-6.8-6.8.1.patch
Description: Binary data
packages/core2-64-poky-linux/btrfs-tools/btrfs-tools-dbg: PV changed from "6.8" 
to "6.8.1"
packages/core2-64-poky-linux/btrfs-tools/btrfs-tools-dbg: PKGSIZE changed from 
25049752 to 25055168 (+0%)
packages/core2-64-poky-linux/btrfs-tools/btrfs-tools-dbg: PKGV changed from 6.8 
[default] to 6.8.1 [default]
packages/core2-64-poky-linux/btrfs-tools/btrfs-tools-dev: PV changed from "6.8" 
to "6.8.1"
packages/core2-64-poky-linux/btrfs-tools/btrfs-tools-dev: PKGSIZE changed from 
218986 to 218990 (+0%)
packages/core2-64-poky-linux/btrfs-tools/btrfs-tools-dev: PKGV changed from 6.8 
[default] to 6.8.1 [default]
packages/core2-64-poky-linux/btrfs-tools/btrfs-tools-doc: PV changed from "6.8" 
to "6.8.1"
packages/core2-64-poky-linux/btrfs-tools/btrfs-tools-doc: PKGV changed from 6.8 
[default] to 6.8.1 [default]
packages/core2-64-poky-linux/btrfs-tools/btrfs-tools-locale: PV changed from 
"6.8" to "6.8.1"
packages/core2-64-poky-linux/btrfs-tools/btrfs-tools-locale: PKGV changed from 
6.8 [default] to 6.8.1 [default]
packages/core2-64-poky-linux/btrfs-tools/btrfs-tools-src: PV changed from "6.8" 
to "6.8.1"
packages/core2-64-poky-linux/btrfs-tools/btrfs-tools-src: PKGSIZE changed from 
4179121 to 4179759 (+0%)
packages/core2-64-poky-linux/btrfs-tools/btrfs-tools-src: PKGV changed from 6.8 
[default] to 6.8.1 [default]
packages/core2-64-poky-linux/btrfs-tools/btrfs-tools-staticdev: PV changed from 
"6.8" to "6.8.1"
packages/core2-64-poky-linux/btrfs-tools/btrfs-tools-staticdev: PKGV changed 
from 6.8 [default] to 6.8.1 [default]
packages/core2-64-poky-linux/btrfs-tools/btrfs-tools: PV changed from "6.8" to 
"6.8.1"
packages/core2-64-poky-linux/btrfs-tools/btrfs-tools: PKGSIZE changed from 
5824850 to 5828948 (+0%)
packages/core2-64-poky-linux/btrfs-tools/btrfs-tools: PKGV changed from 6.8 

[OE-core] [AUH] nasm: upgrading to 2.16.03 SUCCEEDED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Next steps:
- apply the patch: git am 0001-nasm-upgrade-2.16.01-2.16.03.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 4179887e8ad9efa7ef5ade7ef3a3da23bcce9778 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Wed, 15 May 2024 09:07:15 +
Subject: [PATCH] nasm: upgrade 2.16.01 -> 2.16.03

---
 .../nasm/nasm/0001-stdlib-Add-strlcat.patch | 17 -
 .../nasm/0002-Add-debug-prefix-map-option.patch |  9 -
 .../nasm/{nasm_2.16.01.bb => nasm_2.16.03.bb}   |  2 +-
 3 files changed, 13 insertions(+), 15 deletions(-)
 rename meta/recipes-devtools/nasm/{nasm_2.16.01.bb => nasm_2.16.03.bb} (88%)

diff --git a/meta/recipes-devtools/nasm/nasm/0001-stdlib-Add-strlcat.patch 
b/meta/recipes-devtools/nasm/nasm/0001-stdlib-Add-strlcat.patch
index 1b8e947c56..10d9312531 100644
--- a/meta/recipes-devtools/nasm/nasm/0001-stdlib-Add-strlcat.patch
+++ b/meta/recipes-devtools/nasm/nasm/0001-stdlib-Add-strlcat.patch
@@ -1,4 +1,4 @@
-From 680220e772dfa381829983fa73b915416f676894 Mon Sep 17 00:00:00 2001
+From 9d1de56bf77049fba951d3985595d384030f5d85 Mon Sep 17 00:00:00 2001
 From: Joshua Watt 
 Date: Tue, 19 Nov 2019 12:47:30 -0600
 Subject: [PATCH] stdlib: Add strlcat
@@ -7,7 +7,6 @@ Adds strlcat which can be used to safely concatenate strings
 
 Upstream-Status: Submitted [https://bugzilla.nasm.us/show_bug.cgi?id=3392635]
 Signed-off-by: Joshua Watt 
-
 ---
  Makefile.in|  2 +-
  configure.ac   |  2 ++
@@ -17,10 +16,10 @@ Signed-off-by: Joshua Watt 
  create mode 100644 stdlib/strlcat.c
 
 diff --git a/Makefile.in b/Makefile.in
-index b85ebee..045fabe 100644
+index 601ad68..bfc79a6 100644
 --- a/Makefile.in
 +++ b/Makefile.in
-@@ -104,7 +104,7 @@ PROGOBJ = $(NASM) $(NDISASM)
+@@ -117,7 +117,7 @@ PROGOBJ = $(NASM) $(NDISASM)
  PROGS   = nasm$(X) ndisasm$(X)
  
  LIBOBJ_NW = stdlib/snprintf.$(O) stdlib/vsnprintf.$(O) stdlib/strlcpy.$(O) \
@@ -30,10 +29,10 @@ index b85ebee..045fabe 100644
nasmlib/ver.$(O) \
nasmlib/alloc.$(O) nasmlib/asprintf.$(O) nasmlib/errfile.$(O) \
 diff --git a/configure.ac b/configure.ac
-index 42cd198..e206338 100644
+index 77c72be..d56e5f6 100644
 --- a/configure.ac
 +++ b/configure.ac
-@@ -236,6 +236,7 @@ PA_FUNC_SNPRINTF
+@@ -214,6 +214,7 @@ PA_FUNC_SNPRINTF
  PA_FUNC_VSNPRINTF
  AC_CHECK_FUNCS([strlcpy])
  AC_CHECK_FUNCS([strrchrnul])
@@ -41,7 +40,7 @@ index 42cd198..e206338 100644
  
  dnl These types are POSIX-specific, and Windows does it differently...
  AC_CHECK_TYPES([struct _stati64])
-@@ -255,6 +256,7 @@ AC_CHECK_DECLS(strsep)
+@@ -233,6 +234,7 @@ AC_CHECK_DECLS(strsep)
  AC_CHECK_DECLS(strlcpy)
  AC_CHECK_DECLS(strnlen)
  AC_CHECK_DECLS(strrchrnul)
@@ -50,10 +49,10 @@ index 42cd198..e206338 100644
  dnl Check for missing types
  AC_TYPE_UINTPTR_T
 diff --git a/include/compiler.h b/include/compiler.h
-index 407c160..b64da6a 100644
+index b95b1a2..eb5b984 100644
 --- a/include/compiler.h
 +++ b/include/compiler.h
-@@ -169,6 +169,10 @@ size_t strlcpy(char *, const char *, size_t);
+@@ -171,6 +171,10 @@ size_t strlcpy(char *, const char *, size_t);
  char *strrchrnul(const char *, int);
  #endif
  
diff --git 
a/meta/recipes-devtools/nasm/nasm/0002-Add-debug-prefix-map-option.patch 
b/meta/recipes-devtools/nasm/nasm/0002-Add-debug-prefix-map-option.patch
index 84fcca0fe1..d83ed9e3d2 100644
--- a/meta/recipes-devtools/nasm/nasm/0002-Add-debug-prefix-map-option.patch
+++ b/meta/recipes-devtools/nasm/nasm/0002-Add-debug-prefix-map-option.patch
@@ -1,4 +1,4 @@
-From e28c8883050d34d18ee2d66dfeece51e13adb6d5 Mon Sep 17 00:00:00 2001
+From 672d8a3ded2008e5f94d5ad5e8f3c215304d907a Mon Sep 17 00:00:00 2001
 From: Joshua Watt 
 Date: Tue, 19 Nov 2019 13:12:17 -0600
 Subject: [PATCH] Add --debug-prefix-map option
@@ -9,7 +9,6 @@ be built in a reproducible manner regardless of the build 
directory.
 
 Upstream-Status: Submitted [https://bugzilla.nasm.us/show_bug.cgi?id=3392635]
 Signed-off-by: Joshua Watt 
-
 ---
  asm/nasm.c  | 24 
  include/nasmlib.h   |  9 +
@@ -27,7 +26,7 @@ Signed-off-by: Joshua Watt 
  create mode 100644 test/elfdebugprefix.asm
 
 diff 

[OE-core] [AUH] python3-babel: upgrading to 2.15.0 FAILED

2024-05-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

The following devtool command failed:  upgrade python3-babel -V 2.15.0
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1879 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 10 Local 10 Mirrors 0 Missed 0 Current 20 (100% match, 
100% complete)
done.
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: 3 seconds
Loading cache...done.
Loaded 1879 entries from dependency cache.
Parsing recipes...done.
Parsing of 922 .bb files complete (920 cached, 2 parsed). 1880 targets, 35 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 1 Local 0 Mirrors 0 Missed 1 Current 0 (0% match, 0% 
complete)
done.
NOTE: Executing Tasks
WARNING: Failed to fetch URL 
https://files.pythonhosted.org/packages/source/B/Babel/Babel-2.15.0.tar.gz;downloadfilename=Babel-2.15.0.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: 3 seconds
NOTE: The errors for this build are stored in 
/home/pokybuild/yocto-worker/auh/build/build/tmp/log/error-report/error_report_20240515092011.txt
You can send the errors to a reports server by running:
  send-error-report 
/home/pokybuild/yocto-worker/auh/build/build/tmp/log/error-report/error_report_20240515092011.txt
 [-s server]
NOTE: The contents of these logs will be posted in public if you use the above 
command with the default server. Please ensure you remove any identifying or 
proprietary information when prompted before sending.

INFO: Extracting current version source...
INFO: Extracting upgraded version source...
INFO: Fetching 
https://files.pythonhosted.org/packages/source/B/Babel/Babel-2.15.0.tar.gz;downloadfilename=Babel-2.15.0.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/tmp/sysroots-uninative/x86_64-linux/usr/bin:/home/pokybuild/yocto-worker/auh/build/scripts:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipetool-0o_z_hil/work/recipe-sysroot-native/usr/bin/x86_64-poky-linux:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipetool-0o_z_hil/work/recipe-sysroot/usr/bin/crossscripts:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipetool-0o_z_hil/work/recipe-sysroot-native/usr/sbin:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipe
 
tool-0o_z_hil/work/recipe-sysroot-native/usr/bin:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipetool-0o_z_hil/work/recipe-sysroot-native/sbin:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipetool-0o_z_hil/work/recipe-sysroot-native/bin:/home/pokybuild/yocto-worker/auh/build/bitbake/bin:/home/pokybuild/yocto-worker/auh/build/build/tmp/hosttools";
 export HOME="/home/pokybuild"; /usr/bin/env wget -t 2 -T 30 -O 
/srv/autobuilder/autobuilder.yocto.io/current_sources/Babel-2.15.0.tar.gz.tmp 
-P 

  1   2   >