[OE-core] [nanbield][patch 1/2] xwayland: upgrade 23.2.2 -> 23.2.3

2024-01-15 Thread Lee Chee Yang
From: Wang Mingyu 

upgrade include fix for CVE-2023-6377 CVE-2023-6478

(Cherry-pick from OE-Core rev: bf0bb7b94ed4930145af5f1fb3836157daceb6bb)

Signed-off-by: Wang Mingyu 
Signed-off-by: Alexandre Belloni 
Signed-off-by: Richard Purdie 
Signed-off-by: Lee Chee Yang 
---
 .../xwayland/{xwayland_23.2.2.bb => xwayland_23.2.3.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-graphics/xwayland/{xwayland_23.2.2.bb => 
xwayland_23.2.3.bb} (95%)

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


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



[OE-core] [nanbield][patch 2/2] curl: Fix CVE-2023-46219

2024-01-15 Thread Lee Chee Yang
From: Lee Chee Yang 

Upstream docs for CVE-2023-46219:
https://curl.se/docs/CVE-2023-46219.html

Signed-off-by: Lee Chee Yang 
---
 .../curl/curl/CVE-2023-46219.patch| 131 ++
 meta/recipes-support/curl/curl_8.4.0.bb   |   1 +
 2 files changed, 132 insertions(+)
 create mode 100644 meta/recipes-support/curl/curl/CVE-2023-46219.patch

diff --git a/meta/recipes-support/curl/curl/CVE-2023-46219.patch 
b/meta/recipes-support/curl/curl/CVE-2023-46219.patch
new file mode 100644
index 00..d6c8925218
--- /dev/null
+++ b/meta/recipes-support/curl/curl/CVE-2023-46219.patch
@@ -0,0 +1,131 @@
+CVE: CVE-2023-46219
+Upstream-Status: Backport [ 
https://github.com/curl/curl/commit/73b65e94f3531179de45 ]
+Signed-off-by: Lee Chee Yang 
+
+From 73b65e94f3531179de45c6f3c836a610e3d0a846 Mon Sep 17 00:00:00 2001
+From: Daniel Stenberg 
+Date: Thu, 23 Nov 2023 08:23:17 +0100
+Subject: [PATCH] fopen: create short(er) temporary file name
+
+Only using random letters in the name plus a ".tmp" extension. Not by
+appending characters to the final file name.
+
+Reported-by: Maksymilian Arciemowicz
+
+Closes #12388
+---
+ lib/fopen.c | 65 -
+ 1 file changed, 60 insertions(+), 5 deletions(-)
+
+diff --git a/lib/fopen.c b/lib/fopen.c
+index 75b8a7aa534085..a73ac068ea3016 100644
+--- a/lib/fopen.c
 b/lib/fopen.c
+@@ -39,6 +39,51 @@
+ #include "curl_memory.h"
+ #include "memdebug.h"
+ 
++/*
++  The dirslash() function breaks a null-terminated pathname string into
++  directory and filename components then returns the directory component up
++  to, *AND INCLUDING*, a final '/'.  If there is no directory in the path,
++  this instead returns a "" string.
++
++  This function returns a pointer to malloc'ed memory.
++
++  The input path to this function is expected to have a file name part.
++*/
++
++#ifdef _WIN32
++#define PATHSEP "\\"
++#define IS_SEP(x) (((x) == '/') || ((x) == '\\'))
++#elif defined(MSDOS) || defined(__EMX__) || defined(OS2)
++#define PATHSEP "\\"
++#define IS_SEP(x) ((x) == '\\')
++#else
++#define PATHSEP "/"
++#define IS_SEP(x) ((x) == '/')
++#endif
++
++static char *dirslash(const char *path)
++{
++  size_t n;
++  struct dynbuf out;
++  DEBUGASSERT(path);
++  Curl_dyn_init(, CURL_MAX_INPUT_LENGTH);
++  n = strlen(path);
++  if(n) {
++/* find the rightmost path separator, if any */
++while(n && !IS_SEP(path[n-1]))
++  --n;
++/* skip over all the path separators, if any */
++while(n && IS_SEP(path[n-1]))
++  --n;
++  }
++  if(Curl_dyn_addn(, path, n))
++return NULL;
++  /* if there was a directory, append a single trailing slash */
++  if(n && Curl_dyn_addn(, PATHSEP, 1))
++return NULL;
++  return Curl_dyn_ptr();
++}
++
+ /*
+  * Curl_fopen() opens a file for writing with a temp name, to be renamed
+  * to the final name when completed. If there is an existing file using this
+@@ -50,25 +95,34 @@ CURLcode Curl_fopen(struct Curl_easy *data, const char 
*filename,
+ FILE **fh, char **tempname)
+ {
+   CURLcode result = CURLE_WRITE_ERROR;
+-  unsigned char randsuffix[9];
++  unsigned char randbuf[41];
+   char *tempstore = NULL;
+   struct_stat sb;
+   int fd = -1;
++  char *dir;
+   *tempname = NULL;
+ 
++  dir = dirslash(filename);
++  if(!dir)
++goto fail;
++
+   *fh = fopen(filename, FOPEN_WRITETEXT);
+   if(!*fh)
+ goto fail;
+-  if(fstat(fileno(*fh), ) == -1 || !S_ISREG(sb.st_mode))
++  if(fstat(fileno(*fh), ) == -1 || !S_ISREG(sb.st_mode)) {
++free(dir);
+ return CURLE_OK;
++  }
+   fclose(*fh);
+   *fh = NULL;
+ 
+-  result = Curl_rand_alnum(data, randsuffix, sizeof(randsuffix));
++  result = Curl_rand_alnum(data, randbuf, sizeof(randbuf));
+   if(result)
+ goto fail;
+ 
+-  tempstore = aprintf("%s.%s.tmp", filename, randsuffix);
++  /* The temp file name should not end up too long for the target file
++ system */
++  tempstore = aprintf("%s%s.tmp", dir, randbuf);
+   if(!tempstore) {
+ result = CURLE_OUT_OF_MEMORY;
+ goto fail;
+@@ -95,6 +149,7 @@ CURLcode Curl_fopen(struct Curl_easy *data, const char 
*filename,
+   if(!*fh)
+ goto fail;
+ 
++  free(dir);
+   *tempname = tempstore;
+   return CURLE_OK;
+ 
+@@ -105,7 +160,7 @@ CURLcode Curl_fopen(struct Curl_easy *data, const char 
*filename,
+   }
+ 
+   free(tempstore);
+-
++  free(dir);
+   return result;
+ }
+ 
diff --git a/meta/recipes-support/curl/curl_8.4.0.bb 
b/meta/recipes-support/curl/curl_8.4.0.bb
index 8f1ba52692..977404c963 100644
--- a/meta/recipes-support/curl/curl_8.4.0.bb
+++ b/meta/recipes-support/curl/curl_8.4.0.bb
@@ -14,6 +14,7 @@ SRC_URI = " \
 file://run-ptest \
 file://disable-tests \
 file://CVE-2023-46218.patch \
+file://CVE-2023-46219.patch \
 "
 SRC_URI[sha256sum] = 
"16c62a9c4af0f703d28bda6d7bbf37ba47055ad3414d70dec63e2e6336f2a82d"
 
-- 
2.37.3


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

Re: [OE-core] [PATCH 2/2] python: update 3.11.5 -> 3.12.1

2024-01-15 Thread Alexandre Belloni via lists.openembedded.org
I got failures on the AB:

https://autobuilder.yoctoproject.org/typhoon/#/builders/57/builds/8302/steps/12/logs/stdio
https://autobuilder.yoctoproject.org/typhoon/#/builders/44/builds/8477/steps/25/logs/stdio

On 12/01/2024 13:41:41+0100, Alexander Kanavin wrote:
> Drop distutils and smtpd modules from packaging, as both are gone in 3.12.
> 
> Rebase:
> 0020-configure.ac-setup.py-do-not-add-a-curses-include-pa.patch
> (drop setup.py chunk as the file is gone)
> 
> Drop patches:
> 0001-Do-not-add-usr-lib-termcap-to-linker-flags-to-avoid-.patch
> (setup.py gone, lib/termcap not mentioned anywhere else)
> 
> 0001-Don-t-search-system-for-headers-libraries.patch
> (setup.py gone, usr/lib64 not mentioned anywhere else)
> 
> 0001-Makefile-do-not-compile-.pyc-in-parallel.patch
> (replaced with COMPILEALL_OPTS= in EXTRA_OEMAKE)
> 
> 0001-setup.py-Do-not-detect-multiarch-paths-when-cross-co.patch
> (setup.py gone, add_multiarch_paths not mentioned anywhere else)
> 
> 0017-setup.py-do-not-report-missing-dependencies-for-disa.patch
> (has been superseded by Setup.local tweak in do_configure:prepend)
> 
> 12-distutils-prefix-is-inside-staging-area.patch
> (distutils has been removed upstream, so this old, unplesant hack can be 
> finally dropped)
> 
> avoid_warning_about_tkinter.patch
> (setup.py gone, tkinter detection logic performed in configure.ac)
> 
> Signed-off-by: Alexander Kanavin 
> ---
>  meta/classes-recipe/python3-dir.bbclass   |   2 +-
>  ...shebang-overflow-on-python-config.py.patch |   8 +-
>  ...ib-termcap-to-linker-flags-to-avoid-.patch |  25 -
>  ...-search-system-for-headers-libraries.patch |  27 -
>  ...e-stdin-I-O-errors-same-way-as-maste.patch |   6 +-
>  ...-use-prefix-value-from-build-configu.patch |  30 +++---
>  ...file-do-not-compile-.pyc-in-parallel.patch |  65 
>  ...-qemu-wrapper-when-gathering-profile.patch |  16 +--
>  ...sts-due-to-load-variability-on-YP-AB.patch |  24 ++---
>  ...est_sysconfig-for-posix_user-purelib.patch |  10 +-
>  ...asename-to-replace-CC-for-checking-c.patch |  44 
>  ...detect-multiarch-paths-when-cross-co.patch |  42 
>  ..._fileno-test-due-to-load-variability.patch |  10 +-
>  ...g.py-use-platlibdir-also-for-purelib.patch |   6 +-
>  ...pes.test_find-skip-without-tools-sdk.patch |  10 +-
>  ...le.py-correct-the-test-output-format.patch |   6 +-
>  ...orlines-skip-due-to-load-variability.patch |  10 +-
>  ...report-missing-dependencies-for-disa.patch |  38 ---
>  ...up.py-do-not-add-a-curses-include-pa.patch |  37 ++-
>  ...tutils-prefix-is-inside-staging-area.patch |  58 --
>  .../python3/avoid_warning_about_tkinter.patch |  30 --
>  .../python/python3/cgi_py.patch   |   4 +-
>  .../python/python3/crosspythonpath.patch  |   6 +-
>  .../python3/deterministic_imports.patch   |  18 +++-
>  .../python/python3/makerace.patch |  10 +-
>  .../python/python3/python3-manifest.json  | 100 +++---
>  .../{python3_3.11.5.bb => python3_3.12.1.bb}  |  27 +++--
>  27 files changed, 154 insertions(+), 515 deletions(-)
>  delete mode 100644 
> meta/recipes-devtools/python/python3/0001-Do-not-add-usr-lib-termcap-to-linker-flags-to-avoid-.patch
>  delete mode 100644 
> meta/recipes-devtools/python/python3/0001-Don-t-search-system-for-headers-libraries.patch
>  delete mode 100644 
> meta/recipes-devtools/python/python3/0001-Makefile-do-not-compile-.pyc-in-parallel.patch
>  delete mode 100644 
> meta/recipes-devtools/python/python3/0001-setup.py-Do-not-detect-multiarch-paths-when-cross-co.patch
>  delete mode 100644 
> meta/recipes-devtools/python/python3/0017-setup.py-do-not-report-missing-dependencies-for-disa.patch
>  delete mode 100644 
> meta/recipes-devtools/python/python3/12-distutils-prefix-is-inside-staging-area.patch
>  delete mode 100644 
> meta/recipes-devtools/python/python3/avoid_warning_about_tkinter.patch
>  rename meta/recipes-devtools/python/{python3_3.11.5.bb => python3_3.12.1.bb} 
> (96%)
> 
> diff --git a/meta/classes-recipe/python3-dir.bbclass 
> b/meta/classes-recipe/python3-dir.bbclass
> index d93d337f76c..3d07de99b88 100644
> --- a/meta/classes-recipe/python3-dir.bbclass
> +++ b/meta/classes-recipe/python3-dir.bbclass
> @@ -4,7 +4,7 @@
>  # SPDX-License-Identifier: MIT
>  #
>  
> -PYTHON_BASEVERSION = "3.11"
> +PYTHON_BASEVERSION = "3.12"
>  PYTHON_ABI = ""
>  PYTHON_DIR = "python${PYTHON_BASEVERSION}"
>  PYTHON_PN = "python3"
> diff --git 
> a/meta/recipes-devtools/python/python3/0001-Avoid-shebang-overflow-on-python-config.py.patch
>  
> b/meta/recipes-devtools/python/python3/0001-Avoid-shebang-overflow-on-python-config.py.patch
> index db084350045..03ecda98c2c 100644
> --- 
> a/meta/recipes-devtools/python/python3/0001-Avoid-shebang-overflow-on-python-config.py.patch
> +++ 
> b/meta/recipes-devtools/python/python3/0001-Avoid-shebang-overflow-on-python-config.py.patch
> @@ -1,4 +1,4 @@
> -From 78f482b91d94b44a02e02c4580166757119061ea Mon Sep 17 

Re: [OE-core] [PATCH] uboot-sign: support to load optee-os and TFA images

2024-01-15 Thread A. Sverdlin via lists.openembedded.org
Hello Jamin!

On Mon, 2024-01-15 at 15:54 +0800, Jamin Lin via lists.openembedded.org wrote:
> Currently, u-boot FIT image only support to load u-boot image.
> To support optee-os and trusted-firmware-a, update ITS file generation
> scripts, so users are able to use u-boot FIT image to load
> u-boot, optee-os and treustred-firmware-a images
> 
> Add a variable "UBOOT_FIT_ARM_TRUSTED_FIRMWARE_A" to
> enable trusted-firmware-a image and it is disable by default.
> 
> Add a variable "UBOOT_FIT_OPTEE_OS" to enable optee-os image
> and it is disable by default.

Have you considered leveraging the existing binman infrastructure in the recent
U-Boot for TF-A and OPTEE?

Which platform are you testing on?

There is TI K3 documentation already [1], but many parts of the new 
infrastructure
are not TI specific as I understand...

> The ITS file creation loos like as following.

[]

[1] Link: 
https://source.denx.de/u-boot/u-boot/-/blob/master/doc/board/ti/k3.rst?ref_type=heads=1

-- 
Alexander Sverdlin
Siemens AG
www.siemens.com

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#193820): 
https://lists.openembedded.org/g/openembedded-core/message/193820
Mute This Topic: https://lists.openembedded.org/mt/103734859/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] newlib: Upgrade 4.3.0 -> 4.4.0

2024-01-15 Thread Alejandro Hernandez Samaniego
- COPYING.LICENSE: Added Apache-2.0-with-LLVM-exception from newlibs commit
  96ec8f868e1a0f5a75badfe4627a41f12cce742d
  applicable to newlib/libc/machine/aarch64.
- Also switch libgloss to use PV from newlib.inc instead to align with the
  newlib recipe behavior.

Signed-off-by: Alejandro Enedino Hernandez Samaniego 
---
 .../newlib/{libgloss_4.3.0.bb => libgloss_git.bb} | 0
 meta/recipes-core/newlib/newlib.inc   | 8 
 2 files changed, 4 insertions(+), 4 deletions(-)
 rename meta/recipes-core/newlib/{libgloss_4.3.0.bb => libgloss_git.bb} (100%)

diff --git a/meta/recipes-core/newlib/libgloss_4.3.0.bb 
b/meta/recipes-core/newlib/libgloss_git.bb
similarity index 100%
rename from meta/recipes-core/newlib/libgloss_4.3.0.bb
rename to meta/recipes-core/newlib/libgloss_git.bb
diff --git a/meta/recipes-core/newlib/newlib.inc 
b/meta/recipes-core/newlib/newlib.inc
index da753f11ad..6113f5e831 100644
--- a/meta/recipes-core/newlib/newlib.inc
+++ b/meta/recipes-core/newlib/newlib.inc
@@ -3,21 +3,21 @@ HOMEPAGE = "https://sourceware.org/newlib/;
 DESCRIPTION = "C library intended for use on embedded systems. It is a 
conglomeration of several library parts, all under free software licenses that 
make them easily usable on embedded products."
 SECTION = "libs"
 
-LICENSE = "GPL-2.0-only & LGPL-3.0-only & GPL-3.0-only & LGPL-2.0-only & 
BSD-2-Clause & BSD-3-Clause & TCL"
+LICENSE = "GPL-2.0-only & LGPL-3.0-only & GPL-3.0-only & LGPL-2.0-only & 
BSD-2-Clause & BSD-3-Clause & TCL & Apache-2.0-with-LLVM-exception"
 LIC_FILES_CHKSUM = " \
file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \
file://COPYING3.LIB;md5=6a6a8e020838b23406c81b19c1d46df6 \
file://COPYING3;md5=d32239bcb673463ab874e80d47fae504 \
file://COPYING.LIBGLOSS;md5=c0469b6ebb847a75781066be515f032d \
file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1 \
-   file://COPYING.NEWLIB;md5=5a9d477b5f4eab20dccf655a77107a6e \
+   file://COPYING.NEWLIB;md5=4f1a15846ffee91e352418563e1bce27 \

file://newlib/libc/posix/COPYRIGHT;md5=103468ff1982be840fdf4ee9f8b51bbf \
"
 
-BASEVER = "4.3.0"
+BASEVER = "4.4.0"
 PV = "${BASEVER}+git"
 SRC_URI = 
"git://sourceware.org/git/newlib-cygwin.git;protocol=https;branch=main"
-SRCREV="9e09d6ed83cce4777a5950412647ccc603040409"
+SRCREV="ad11e2587f83d61357a32c61c36d72ea4f39315e"
 
 INHIBIT_DEFAULT_DEPS = "1"
 DEPENDS = "virtual/${TARGET_PREFIX}gcc"
-- 
2.43.0


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#193819): 
https://lists.openembedded.org/g/openembedded-core/message/193819
Mute This Topic: https://lists.openembedded.org/mt/103757426/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] [dunfell][PATCH] systemd: fix CVE-2023-7008

2024-01-15 Thread Hitendra Prajapati via lists.openembedded.org

Hi Steve,

Yes, it is for kirkstone branch.

Sorry for my mistake.

Regards,

Hitendra

On 14/01/24 7:41 am, Steve Sakoman wrote:

On Thu, Jan 11, 2024 at 6:12 PM Hitendra Prajapati via
lists.openembedded.org
wrote:

Upstream-Status: Backport 
fromhttps://github.com/systemd/systemd/commit/3b4cc1437b51fcc0b08da8cc3f5d1175eed25eb1

Signed-off-by: Hitendra Prajapati
---
  .../systemd/systemd/CVE-2023-7008.patch   | 40 +++
  meta/recipes-core/systemd/systemd_250.5.bb|  1 +
  2 files changed, 41 insertions(+)
  create mode 100644 meta/recipes-core/systemd/systemd/CVE-2023-7008.patch

diff --git a/meta/recipes-core/systemd/systemd/CVE-2023-7008.patch 
b/meta/recipes-core/systemd/systemd/CVE-2023-7008.patch
new file mode 100644
index 00..e2296abc49
--- /dev/null
+++ b/meta/recipes-core/systemd/systemd/CVE-2023-7008.patch
@@ -0,0 +1,40 @@
+From 3b4cc1437b51fcc0b08da8cc3f5d1175eed25eb1 Mon Sep 17 00:00:00 2001
+From: Michal Sekletar
+Date: Wed, 20 Dec 2023 16:44:14 +0100
+Subject: [PATCH] resolved: actually check authenticated flag of SOA
+ transaction
+
+Fixes #25676
+
+Upstream-Status: Backport 
[https://github.com/systemd/systemd/commit/3b4cc1437b51fcc0b08da8cc3f5d1175eed25eb1]
+CVE: CVE-2023-7008
+Signed-off-by: Hitendra Prajapati
+---
+ src/resolve/resolved-dns-transaction.c | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/src/resolve/resolved-dns-transaction.c 
b/src/resolve/resolved-dns-transaction.c
+index f937f9f7b5..7deb598400 100644
+--- a/src/resolve/resolved-dns-transaction.c
 b/src/resolve/resolved-dns-transaction.c
+@@ -2761,7 +2761,7 @@ static int dns_transaction_requires_rrsig(DnsTransaction 
*t, DnsResourceRecord *
+ if (r == 0)
+ continue;
+
+-return FLAGS_SET(t->answer_query_flags, 
SD_RESOLVED_AUTHENTICATED);
++return FLAGS_SET(dt->answer_query_flags, 
SD_RESOLVED_AUTHENTICATED);
+ }
+
+ return true;
+@@ -2788,7 +2788,7 @@ static int dns_transaction_requires_rrsig(DnsTransaction 
*t, DnsResourceRecord *
+ /* We found the transaction that was supposed to find 
the SOA RR for us. It was
+  * successful, but found no RR for us. This means we 
are not at a zone cut. In this
+  * case, we require authentication if the SOA lookup 
was authenticated too. */
+-return FLAGS_SET(t->answer_query_flags, 
SD_RESOLVED_AUTHENTICATED);
++return FLAGS_SET(dt->answer_query_flags, 
SD_RESOLVED_AUTHENTICATED);
+ }
+
+ return true;
+--
+2.25.1
+
diff --git a/meta/recipes-core/systemd/systemd_250.5.bb 
b/meta/recipes-core/systemd/systemd_250.5.bb
index c35557471a..889473ee1f 100644
--- a/meta/recipes-core/systemd/systemd_250.5.bb
+++ b/meta/recipes-core/systemd/systemd_250.5.bb

Did you mean this patch for kirkstone instead of dunfell?  Dunfell
systemd is version 244.5, not 250.5

Steve

@@ -32,6 +32,7 @@ SRC_URI +="file://touchscreen.rules \ file://CVE-2022-4415-2.patch \ 
file://0001-network-remove-only-managed-configs-on-reconfigure-o.patch 
\ 
file://0001-nspawn-make-sure-host-root-can-write-to-the-uidmappe.patch 
\ + file://CVE-2023-7008.patch \ "


  # patches needed by musl
--
2.25.1





--
Regards,
Hitendra Prajapati
MontaVista Software LLC
Mo: +91 9998906483

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



[OE-core] [kirkstone][PATCH] systemd: fix CVE-2023-7008

2024-01-15 Thread Hitendra Prajapati via lists.openembedded.org
Upstream-Status: Backport from 
https://github.com/systemd/systemd/commit/3b4cc1437b51fcc0b08da8cc3f5d1175eed25eb1

Signed-off-by: Hitendra Prajapati 
---
 .../systemd/systemd/CVE-2023-7008.patch   | 40 +++
 meta/recipes-core/systemd/systemd_250.5.bb|  1 +
 2 files changed, 41 insertions(+)
 create mode 100644 meta/recipes-core/systemd/systemd/CVE-2023-7008.patch

diff --git a/meta/recipes-core/systemd/systemd/CVE-2023-7008.patch 
b/meta/recipes-core/systemd/systemd/CVE-2023-7008.patch
new file mode 100644
index 00..e2296abc49
--- /dev/null
+++ b/meta/recipes-core/systemd/systemd/CVE-2023-7008.patch
@@ -0,0 +1,40 @@
+From 3b4cc1437b51fcc0b08da8cc3f5d1175eed25eb1 Mon Sep 17 00:00:00 2001
+From: Michal Sekletar 
+Date: Wed, 20 Dec 2023 16:44:14 +0100
+Subject: [PATCH] resolved: actually check authenticated flag of SOA
+ transaction
+
+Fixes #25676
+
+Upstream-Status: Backport 
[https://github.com/systemd/systemd/commit/3b4cc1437b51fcc0b08da8cc3f5d1175eed25eb1]
+CVE: CVE-2023-7008
+Signed-off-by: Hitendra Prajapati 
+---
+ src/resolve/resolved-dns-transaction.c | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/src/resolve/resolved-dns-transaction.c 
b/src/resolve/resolved-dns-transaction.c
+index f937f9f7b5..7deb598400 100644
+--- a/src/resolve/resolved-dns-transaction.c
 b/src/resolve/resolved-dns-transaction.c
+@@ -2761,7 +2761,7 @@ static int dns_transaction_requires_rrsig(DnsTransaction 
*t, DnsResourceRecord *
+ if (r == 0)
+ continue;
+ 
+-return FLAGS_SET(t->answer_query_flags, 
SD_RESOLVED_AUTHENTICATED);
++return FLAGS_SET(dt->answer_query_flags, 
SD_RESOLVED_AUTHENTICATED);
+ }
+ 
+ return true;
+@@ -2788,7 +2788,7 @@ static int dns_transaction_requires_rrsig(DnsTransaction 
*t, DnsResourceRecord *
+ /* We found the transaction that was supposed to find 
the SOA RR for us. It was
+  * successful, but found no RR for us. This means we 
are not at a zone cut. In this
+  * case, we require authentication if the SOA lookup 
was authenticated too. */
+-return FLAGS_SET(t->answer_query_flags, 
SD_RESOLVED_AUTHENTICATED);
++return FLAGS_SET(dt->answer_query_flags, 
SD_RESOLVED_AUTHENTICATED);
+ }
+ 
+ return true;
+-- 
+2.25.1
+
diff --git a/meta/recipes-core/systemd/systemd_250.5.bb 
b/meta/recipes-core/systemd/systemd_250.5.bb
index c35557471a..889473ee1f 100644
--- a/meta/recipes-core/systemd/systemd_250.5.bb
+++ b/meta/recipes-core/systemd/systemd_250.5.bb
@@ -32,6 +32,7 @@ SRC_URI += "file://touchscreen.rules \
file://CVE-2022-4415-2.patch \

file://0001-network-remove-only-managed-configs-on-reconfigure-o.patch \

file://0001-nspawn-make-sure-host-root-can-write-to-the-uidmappe.patch \
+   file://CVE-2023-7008.patch \
"
 
 # patches needed by musl
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#193817): 
https://lists.openembedded.org/g/openembedded-core/message/193817
Mute This Topic: https://lists.openembedded.org/mt/103756431/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] weston: Update to 13.0.0

2024-01-15 Thread Khem Raj
On Mon, Jan 15, 2024 at 7:25 PM Fabio Estevam  wrote:
>
> From: Fabio Estevam 
>
> Update to Weston 13.0.0.
>
> Remove the following options that were no longer exist in 13.0.0:
> launcher-libseat and launcher-libseat.

I think one of them should be launcher-logind
>
> Add seatd as a required dependency for kms.
>
> Signed-off-by: Fabio Estevam 
> ---
>  .../wayland/{weston_12.0.2.bb => weston_13.0.0.bb}   | 9 ++---
>  1 file changed, 2 insertions(+), 7 deletions(-)
>  rename meta/recipes-graphics/wayland/{weston_12.0.2.bb => weston_13.0.0.bb} 
> (93%)
>
> diff --git a/meta/recipes-graphics/wayland/weston_12.0.2.bb 
> b/meta/recipes-graphics/wayland/weston_13.0.0.bb
> similarity index 93%
> rename from meta/recipes-graphics/wayland/weston_12.0.2.bb
> rename to meta/recipes-graphics/wayland/weston_13.0.0.bb
> index cfcaaca9c7..c74f471f07 100644
> --- a/meta/recipes-graphics/wayland/weston_12.0.2.bb
> +++ b/meta/recipes-graphics/wayland/weston_13.0.0.bb
> @@ -14,7 +14,7 @@ SRC_URI = 
> "https://gitlab.freedesktop.org/wayland/weston/-/releases/${PV}/downlo
> file://systemd-notify.weston-start \
> "
>
> -SRC_URI[sha256sum] = 
> "eb686a7cf00992a23b17f192fca9a887313e92c346ee35d8575196983d656b4a"
> +SRC_URI[sha256sum] = 
> "52ff1d4aa2394a2e416c85a338b627ce97fa71d43eb762fd4aaf145d36fc795a"
>
>  UPSTREAM_CHECK_URI = "https://wayland.freedesktop.org/releases.html;
>  UPSTREAM_CHECK_REGEX = "weston-(?P\d+\.\d+\.(?!9\d+)\d+)"
> @@ -38,7 +38,6 @@ PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 
> 'wayland', 'kms wayla
> ${@bb.utils.contains('DISTRO_FEATURES', 'x11 wayland', 
> 'xwayland', '', d)} \
> ${@bb.utils.filter('DISTRO_FEATURES', 'systemd x11', d)} \
> ${@bb.utils.contains_any('DISTRO_FEATURES', 'wayland 
> x11', '', 'headless', d)} \
> -   launcher-libseat \
> image-jpeg \
> screenshare \
> shell-desktop \
> @@ -54,7 +53,7 @@ SIMPLECLIENTS ?= "all"
>  # Compositor choices
>  #
>  # Weston on KMS
> -PACKAGECONFIG[kms] = "-Dbackend-drm=true,-Dbackend-drm=false,drm udev 
> virtual/egl virtual/libgles2 virtual/libgbm mtdev"
> +PACKAGECONFIG[kms] = "-Dbackend-drm=true,-Dbackend-drm=false,drm udev seatd 
> virtual/egl virtual/libgles2 virtual/libgbm mtdev"
>  # Weston on Wayland (nested Weston)
>  PACKAGECONFIG[wayland] = 
> "-Dbackend-wayland=true,-Dbackend-wayland=false,virtual/egl virtual/libgles2"
>  # Weston on X11
> @@ -93,10 +92,6 @@ PACKAGECONFIG[shell-ivi] = 
> "-Dshell-ivi=true,-Dshell-ivi=false"
>  PACKAGECONFIG[shell-kiosk] = "-Dshell-kiosk=true,-Dshell-kiosk=false"
>  # JPEG image loading support
>  PACKAGECONFIG[image-jpeg] = "-Dimage-jpeg=true,-Dimage-jpeg=false, jpeg"
> -# support libseat based launch
> -PACKAGECONFIG[launcher-libseat] = 
> "-Dlauncher-libseat=true,-Dlauncher-libseat=false,seatd"
> -# deprecated and superseded by libseat launcher
> -PACKAGECONFIG[launcher-logind] = 
> "-Ddeprecated-launcher-logind=true,-Ddeprecated-launcher-logind=false,"
>  # screencasting via PipeWire
>  PACKAGECONFIG[pipewire] = 
> "-Dbackend-pipewire=true,-Dbackend-pipewire=false,pipewire"
>  # VNC remote screensharing
> --
> 2.37.3
>
>
> 
>

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#193816): 
https://lists.openembedded.org/g/openembedded-core/message/193816
Mute This Topic: https://lists.openembedded.org/mt/103755579/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] weston: Update to 13.0.0

2024-01-15 Thread Fabio Estevam
From: Fabio Estevam 

Update to Weston 13.0.0.

Remove the following options that were no longer exist in 13.0.0:
launcher-libseat and launcher-libseat.

Add seatd as a required dependency for kms.

Signed-off-by: Fabio Estevam 
---
 .../wayland/{weston_12.0.2.bb => weston_13.0.0.bb}   | 9 ++---
 1 file changed, 2 insertions(+), 7 deletions(-)
 rename meta/recipes-graphics/wayland/{weston_12.0.2.bb => weston_13.0.0.bb} 
(93%)

diff --git a/meta/recipes-graphics/wayland/weston_12.0.2.bb 
b/meta/recipes-graphics/wayland/weston_13.0.0.bb
similarity index 93%
rename from meta/recipes-graphics/wayland/weston_12.0.2.bb
rename to meta/recipes-graphics/wayland/weston_13.0.0.bb
index cfcaaca9c7..c74f471f07 100644
--- a/meta/recipes-graphics/wayland/weston_12.0.2.bb
+++ b/meta/recipes-graphics/wayland/weston_13.0.0.bb
@@ -14,7 +14,7 @@ SRC_URI = 
"https://gitlab.freedesktop.org/wayland/weston/-/releases/${PV}/downlo
file://systemd-notify.weston-start \
"
 
-SRC_URI[sha256sum] = 
"eb686a7cf00992a23b17f192fca9a887313e92c346ee35d8575196983d656b4a"
+SRC_URI[sha256sum] = 
"52ff1d4aa2394a2e416c85a338b627ce97fa71d43eb762fd4aaf145d36fc795a"
 
 UPSTREAM_CHECK_URI = "https://wayland.freedesktop.org/releases.html;
 UPSTREAM_CHECK_REGEX = "weston-(?P\d+\.\d+\.(?!9\d+)\d+)"
@@ -38,7 +38,6 @@ PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 
'wayland', 'kms wayla
${@bb.utils.contains('DISTRO_FEATURES', 'x11 wayland', 
'xwayland', '', d)} \
${@bb.utils.filter('DISTRO_FEATURES', 'systemd x11', d)} \
${@bb.utils.contains_any('DISTRO_FEATURES', 'wayland x11', 
'', 'headless', d)} \
-   launcher-libseat \
image-jpeg \
screenshare \
shell-desktop \
@@ -54,7 +53,7 @@ SIMPLECLIENTS ?= "all"
 # Compositor choices
 #
 # Weston on KMS
-PACKAGECONFIG[kms] = "-Dbackend-drm=true,-Dbackend-drm=false,drm udev 
virtual/egl virtual/libgles2 virtual/libgbm mtdev"
+PACKAGECONFIG[kms] = "-Dbackend-drm=true,-Dbackend-drm=false,drm udev seatd 
virtual/egl virtual/libgles2 virtual/libgbm mtdev"
 # Weston on Wayland (nested Weston)
 PACKAGECONFIG[wayland] = 
"-Dbackend-wayland=true,-Dbackend-wayland=false,virtual/egl virtual/libgles2"
 # Weston on X11
@@ -93,10 +92,6 @@ PACKAGECONFIG[shell-ivi] = 
"-Dshell-ivi=true,-Dshell-ivi=false"
 PACKAGECONFIG[shell-kiosk] = "-Dshell-kiosk=true,-Dshell-kiosk=false"
 # JPEG image loading support
 PACKAGECONFIG[image-jpeg] = "-Dimage-jpeg=true,-Dimage-jpeg=false, jpeg"
-# support libseat based launch
-PACKAGECONFIG[launcher-libseat] = 
"-Dlauncher-libseat=true,-Dlauncher-libseat=false,seatd"
-# deprecated and superseded by libseat launcher
-PACKAGECONFIG[launcher-logind] = 
"-Ddeprecated-launcher-logind=true,-Ddeprecated-launcher-logind=false,"
 # screencasting via PipeWire
 PACKAGECONFIG[pipewire] = 
"-Dbackend-pipewire=true,-Dbackend-pipewire=false,pipewire"
 # VNC remote screensharing
-- 
2.37.3


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#193815): 
https://lists.openembedded.org/g/openembedded-core/message/193815
Mute This Topic: https://lists.openembedded.org/mt/103755579/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] libxrandr: upgrade 1.5.3 -> 1.5.4

2024-01-15 Thread wangmy
From: Jiang Kai 

Changelog:
=
-Remove "All rights reserved" from Oracle copyright notices
-configure: Use LT_INIT from libtool 2 instead of deprecated AC_PROG_LIBTOOL
-XRRGetMonitors(): free correct pointer in error path

Signed-off-by: Jiang Kai 
Signed-off-by: Wang Mingyu 
---
 .../xorg-lib/{libxrandr_1.5.3.bb => libxrandr_1.5.4.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-graphics/xorg-lib/{libxrandr_1.5.3.bb => 
libxrandr_1.5.4.bb} (87%)

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


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#193814): 
https://lists.openembedded.org/g/openembedded-core/message/193814
Mute This Topic: https://lists.openembedded.org/mt/103754504/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] libsecret: upgrade 0.21.1 -> 0.21.2

2024-01-15 Thread wangmy
From: Jiang Kai 

Changelog:

 * Support GnuTLS as an alternative crypto backend
 * Fix LeakSanitizer issues
 * secret-tool: Verify that the parsed stdin password is vaild UTF-8
 * Fix markup syntax for SecretSchema
 * Public secret_attributes_validate method
 * Updated translations

Signed-off-by: Jiang Kai 
Signed-off-by: Wang Mingyu 
---
 .../libsecret/{libsecret_0.21.1.bb => libsecret_0.21.2.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-gnome/libsecret/{libsecret_0.21.1.bb => 
libsecret_0.21.2.bb} (91%)

diff --git a/meta/recipes-gnome/libsecret/libsecret_0.21.1.bb 
b/meta/recipes-gnome/libsecret/libsecret_0.21.2.bb
similarity index 91%
rename from meta/recipes-gnome/libsecret/libsecret_0.21.1.bb
rename to meta/recipes-gnome/libsecret/libsecret_0.21.2.bb
index f762d7c343..2d8ea952c5 100644
--- a/meta/recipes-gnome/libsecret/libsecret_0.21.1.bb
+++ b/meta/recipes-gnome/libsecret/libsecret_0.21.2.bb
@@ -13,7 +13,7 @@ inherit gnomebase gi-docgen vala gobject-introspection 
manpages
 
 DEPENDS += "glib-2.0 libgcrypt gettext-native"
 
-SRC_URI[archive.sha256sum] = 
"674f51323a5f74e4cb7e3277da68b5afddd333eca25bc9fd2d820a92972f90b1"
+SRC_URI[archive.sha256sum] = 
"e4a341496a0815e64c8d3b8fabab33d7bae7efdeab77b843669731d5b181dcee"
 
 GTKDOC_MESON_OPTION = 'gtk_doc'
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#193813): 
https://lists.openembedded.org/g/openembedded-core/message/193813
Mute This Topic: https://lists.openembedded.org/mt/103754502/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] enchant2: upgrade 2.6.4 -> 2.6.5

2024-01-15 Thread wangmy
From: Jiang Kai 

Changelog:

-permits error messages from spelling providers not to be valid UTF-8.
-The --with-hunspell-dir configure option is removed (along with all the
 other ---with-PROVIDER-dir options, which did nothing).
-Doxygen API documentation is now included in the release tarball

Signed-off-by: Jiang Kai 
Signed-off-by: Wang Mingyu 
---
 .../enchant/{enchant2_2.6.4.bb => enchant2_2.6.5.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-support/enchant/{enchant2_2.6.4.bb => enchant2_2.6.5.bb} 
(91%)

diff --git a/meta/recipes-support/enchant/enchant2_2.6.4.bb 
b/meta/recipes-support/enchant/enchant2_2.6.5.bb
similarity index 91%
rename from meta/recipes-support/enchant/enchant2_2.6.4.bb
rename to meta/recipes-support/enchant/enchant2_2.6.5.bb
index 431d02ea25..1d5c716bab 100644
--- a/meta/recipes-support/enchant/enchant2_2.6.4.bb
+++ b/meta/recipes-support/enchant/enchant2_2.6.5.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] = 
"833b4d5600dbe9ac867e543aac6a7a40ad145351495ca41223d4499d3ddbbd2c"
+SRC_URI[sha256sum] = 
"9e8fd28cb65a7b6da3545878a5c2f52a15f03c04933a5ff48db89fe86845728e"
 
 GITHUB_BASE_URI = "https://github.com/AbiWord/enchant/releases;
 
-- 
2.34.1


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



[OE-core][dunfell][PATCH] qemu: Backport fix for CVE-2023-2861

2024-01-15 Thread Vijay Anusuri via lists.openembedded.org
From: Vijay Anusuri 

Updated 0012-fix-libcap-header-issue-on-some-distro.patch to resolve
patch fuzz caused by the CVE-2023-2861 patch

Upstream-Status: Backport
[https://gitlab.com/qemu-project/qemu/-/commit/a5804fcf7b22fc7d1f9ec794dd284c7d504bd16b
&
https://gitlab.com/qemu-project/qemu/-/commit/f6b0de53fb87ddefed348a39284c8e2f28dc4eda]

Signed-off-by: Vijay Anusuri 
---
 meta/recipes-devtools/qemu/qemu.inc   |   2 +
 ...x-libcap-header-issue-on-some-distro.patch |   9 +-
 ...e-O_NOATIME-if-we-don-t-have-permiss.patch |  63 +++
 .../qemu/qemu/CVE-2023-2861.patch | 178 ++
 4 files changed, 249 insertions(+), 3 deletions(-)
 create mode 100644 
meta/recipes-devtools/qemu/qemu/9pfs-local-ignore-O_NOATIME-if-we-don-t-have-permiss.patch
 create mode 100644 meta/recipes-devtools/qemu/qemu/CVE-2023-2861.patch

diff --git a/meta/recipes-devtools/qemu/qemu.inc 
b/meta/recipes-devtools/qemu/qemu.inc
index 4f856c749e..59ff69d51d 100644
--- a/meta/recipes-devtools/qemu/qemu.inc
+++ b/meta/recipes-devtools/qemu/qemu.inc
@@ -142,6 +142,8 @@ SRC_URI = "https://download.qemu.org/${BPN}-${PV}.tar.xz \
   file://CVE-2023-3180.patch \
file://CVE-2020-24165.patch \
file://CVE-2023-5088.patch \
+   file://9pfs-local-ignore-O_NOATIME-if-we-don-t-have-permiss.patch \
+   file://CVE-2023-2861.patch \
"
 UPSTREAM_CHECK_REGEX = "qemu-(?P\d+(\.\d+)+)\.tar"
 
diff --git 
a/meta/recipes-devtools/qemu/qemu/0012-fix-libcap-header-issue-on-some-distro.patch
 
b/meta/recipes-devtools/qemu/qemu/0012-fix-libcap-header-issue-on-some-distro.patch
index 3a7d7bbd33..3789f1edea 100644
--- 
a/meta/recipes-devtools/qemu/qemu/0012-fix-libcap-header-issue-on-some-distro.patch
+++ 
b/meta/recipes-devtools/qemu/qemu/0012-fix-libcap-header-issue-on-some-distro.patch
@@ -60,7 +60,7 @@ Signed-off-by: Hongxu Jia 
  1 file changed, 5 insertions(+), 2 deletions(-)
 
 diff --git a/fsdev/virtfs-proxy-helper.c b/fsdev/virtfs-proxy-helper.c
-index 6f132c5f..8329950c 100644
+index 300c9765..2823db7d 100644
 --- a/fsdev/virtfs-proxy-helper.c
 +++ b/fsdev/virtfs-proxy-helper.c
 @@ -13,7 +13,6 @@
@@ -71,9 +71,9 @@ index 6f132c5f..8329950c 100644
  #include 
  #include 
  #include 
-@@ -27,7 +26,11 @@
- #include "9p-iov-marshal.h"
+@@ -28,7 +27,11 @@
  #include "hw/9pfs/9p-proxy.h"
+ #include "hw/9pfs/9p-util.h"
  #include "fsdev/9p-iov-marshal.h"
 -
 +/*
@@ -84,3 +84,6 @@ index 6f132c5f..8329950c 100644
  #define PROGNAME "virtfs-proxy-helper"
  
  #ifndef XFS_SUPER_MAGIC
+-- 
+2.25.1
+
diff --git 
a/meta/recipes-devtools/qemu/qemu/9pfs-local-ignore-O_NOATIME-if-we-don-t-have-permiss.patch
 
b/meta/recipes-devtools/qemu/qemu/9pfs-local-ignore-O_NOATIME-if-we-don-t-have-permiss.patch
new file mode 100644
index 00..72d9c47bde
--- /dev/null
+++ 
b/meta/recipes-devtools/qemu/qemu/9pfs-local-ignore-O_NOATIME-if-we-don-t-have-permiss.patch
@@ -0,0 +1,63 @@
+From a5804fcf7b22fc7d1f9ec794dd284c7d504bd16b Mon Sep 17 00:00:00 2001
+From: Omar Sandoval 
+Date: Thu, 14 May 2020 08:06:43 +0200
+Subject: [PATCH] 9pfs: local: ignore O_NOATIME if we don't have permissions
+
+QEMU's local 9pfs server passes through O_NOATIME from the client. If
+the QEMU process doesn't have permissions to use O_NOATIME (namely, it
+does not own the file nor have the CAP_FOWNER capability), the open will
+fail. This causes issues when from the client's point of view, it
+believes it has permissions to use O_NOATIME (e.g., a process running as
+root in the virtual machine). Additionally, overlayfs on Linux opens
+files on the lower layer using O_NOATIME, so in this case a 9pfs mount
+can't be used as a lower layer for overlayfs (cf.
+https://github.com/osandov/drgn/blob/dabfe1971951701da13863dbe6d8a1d172ad9650/vmtest/onoatimehack.c
+and https://github.com/NixOS/nixpkgs/issues/54509).
+
+Luckily, O_NOATIME is effectively a hint, and is often ignored by, e.g.,
+network filesystems. open(2) notes that O_NOATIME "may not be effective
+on all filesystems. One example is NFS, where the server maintains the
+access time." This means that we can honor it when possible but fall
+back to ignoring it.
+
+Acked-by: Christian Schoenebeck 
+Signed-off-by: Omar Sandoval 
+Message-Id: 

+Signed-off-by: Greg Kurz 
+
+Upstream-Status: Backport 
[https://gitlab.com/qemu-project/qemu/-/commit/a5804fcf7b22fc7d1f9ec794dd284c7d504bd16b]
+Signed-off-by: Vijay Anusuri 
+---
+ hw/9pfs/9p-util.h | 13 +
+ 1 file changed, 13 insertions(+)
+
+diff --git a/hw/9pfs/9p-util.h b/hw/9pfs/9p-util.h
+index 79ed6b233e5..546f46dc7dc 100644
+--- a/hw/9pfs/9p-util.h
 b/hw/9pfs/9p-util.h
+@@ -37,9 +37,22 @@ static inline int openat_file(int dirfd, const char *name, 
int flags,
+ {
+ int fd, serrno, ret;
+ 
++again:
+ fd = openat(dirfd, name, flags | O_NOFOLLOW | O_NOCTTY | O_NONBLOCK,
+ mode);
+ if (fd == -1) {
++if (errno == EPERM && (flags & O_NOATIME)) {
++/*
++ 

[OE-core] [PATCH] debianutils: upgrade 5.15 -> 5.16

2024-01-15 Thread wangmy
From: Jiang Kai 

Changelog:
 Upload to unstable per request of Chris Hofstaedtler.

Signed-off-by: Jiang Kai 
Signed-off-by: Wang Mingyu 
---
 .../debianutils/{debianutils_5.15.bb => debianutils_5.16.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-support/debianutils/{debianutils_5.15.bb => 
debianutils_5.16.bb} (97%)

diff --git a/meta/recipes-support/debianutils/debianutils_5.15.bb 
b/meta/recipes-support/debianutils/debianutils_5.16.bb
similarity index 97%
rename from meta/recipes-support/debianutils/debianutils_5.15.bb
rename to meta/recipes-support/debianutils/debianutils_5.16.bb
index b1368a3b2e..ec629d8b73 100644
--- a/meta/recipes-support/debianutils/debianutils_5.15.bb
+++ b/meta/recipes-support/debianutils/debianutils_5.16.bb
@@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = 
"file://debian/copyright;md5=4b667f30411d21bc8fd7db85d502a8e9
 SRC_URI = 
"git://salsa.debian.org/debian/debianutils.git;protocol=https;branch=master \
"
 
-SRCREV = "d886c15810b58e57411048f57d7fb941a6819987"
+SRCREV = "9e0facf19b17b6d090a5dcc8cacb0c16e5ad9f72"
 
 inherit autotools update-alternatives
 
-- 
2.34.1


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

2024-01-15 Thread wangmy
From: Jiang Kai 

0001-Add-a-possibility-to-specify-where-python-modules-ar.patch
refreshed for 6.6.3

Changelog:
==
* subvol create: accept multiple arguments
* subvol delete: print the subvolume id in the output
* subvol sync: check if the filesystems is still writeable so it does not
  wait indefinitely
* device delete: add a timeout and warning when deleting multiple devices
* scrub status: report limit if set in sysfs/../scrub_speed_max
* scrub limit: new command to show or set the per-device scrub limits
* scrub start: report the limit if set
* build:
   * fix CPU feature detection on aarch64
   * support Botan and OpenSSL (3.2+) as crypto backends
* other:
   * documentation updates, RTD config update
   * new and updated tests
   * CI updates

Signed-off-by: Jiang Kai 
Signed-off-by: Wang Mingyu 
---
 ...-a-possibility-to-specify-where-python-modules-ar.patch | 7 ---
 .../{btrfs-tools_6.5.3.bb => btrfs-tools_6.6.3.bb} | 2 +-
 2 files changed, 5 insertions(+), 4 deletions(-)
 rename meta/recipes-devtools/btrfs-tools/{btrfs-tools_6.5.3.bb => 
btrfs-tools_6.6.3.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 5846f04d1a..ed2c64eb4c 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 d3adfc21c9cc264bd191722f102963cbc4794259 Mon Sep 17 00:00:00 2001
+From ddfdc0102c22e8dc782c34b8a03777fb73dfddf6 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
@@ -6,15 +6,16 @@ Subject: [PATCH] Add a possibility to specify where python 
modules are
 
 Upstream-Status: Inappropriate [oe-core specific to solve multilib use case]
 Signed-off-by: Alexander Kanavin 
+
 ---
  Makefile | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/Makefile b/Makefile
-index 1697794c..8ab38818 100644
+index 374f59b9..ed083f6b 100644
 --- a/Makefile
 +++ b/Makefile
-@@ -651,7 +651,7 @@ endif
+@@ -959,7 +959,7 @@ endif
  ifeq ($(PYTHON_BINDINGS),1)
  install_python: libbtrfsutil_python
$(Q)cd libbtrfsutil/python; \
diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools_6.5.3.bb 
b/meta/recipes-devtools/btrfs-tools/btrfs-tools_6.6.3.bb
similarity index 98%
rename from meta/recipes-devtools/btrfs-tools/btrfs-tools_6.5.3.bb
rename to meta/recipes-devtools/btrfs-tools/btrfs-tools_6.6.3.bb
index 873d5e7a14..ef40f553fb 100644
--- a/meta/recipes-devtools/btrfs-tools/btrfs-tools_6.5.3.bb
+++ b/meta/recipes-devtools/btrfs-tools/btrfs-tools_6.6.3.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 = "a45c360b64660477c726e192d9e92ceb73a50f80"
+SRCREV = "92e18dbce521789e02057d406769b073d474fa72"
 S = "${WORKDIR}/git"
 
 PACKAGECONFIG ??= " \
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#193809): 
https://lists.openembedded.org/g/openembedded-core/message/193809
Mute This Topic: https://lists.openembedded.org/mt/103754480/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] Revert "cve-check: Modify judgment processing using "=" in version comparison"

2024-01-15 Thread Matsunaga-Shinji
Hi, Ross,

What do you think about the following?

Regards,
Shinji

-Original Message-
From: Matsunaga, Shinji/松永 慎司 
Sent: Thursday, December 28, 2023 10:59 AM
To: 'ross.bur...@arm.com' 
Cc: openembedded-core@lists.openembedded.org
Subject: RE: [PATCH] Revert "cve-check: Modify judgment processing using "=" in 
version comparison"

Hi, Ross,

What does "too common an issue" mean?
Is it okay to ignore the misjudgment by the following cases?

e.g. PV = "1.2.0" and Vulnerabilities Affected Versions (registered with NVD) = 
"1.2"

Regards,
Shinji

-Original Message-
From: ross.bur...@arm.com  
Sent: Wednesday, December 6, 2023 2:19 AM
To: openembedded-core@lists.openembedded.org
Cc: Matsunaga, Shinji/松永 慎司 
Subject: [PATCH] Revert "cve-check: Modify judgment processing using "=" in 
version comparison"

From: Ross Burton 

This change introduced a warning if version comparisons failed, but this is far 
too common an issue in data that we don't control, so this shouldn't cause a 
warning:

WARNING: automake-native-1.16.5-r0 do_cve_check: automake: Failed to compare 
1.16.5 = branch_1-9 for CVE-2009-4029
WARNING: subversion-1.14.2-r0 do_cve_check: subversion: Failed to compare 
1.14.2 = m1 for CVE-2010-4539
WARNING: subversion-1.14.2-r0 do_cve_check: subversion: Failed to compare 
1.14.2 = m2 for CVE-2010-4539
WARNING: subversion-1.14.2-r0 do_cve_check: subversion: Failed to compare 
1.14.2 = m3 for CVE-2010-4539
WARNING: subversion-1.14.2-r0 do_cve_check: subversion: Failed to compare 
1.14.2 = m4\/m5 for CVE-2010-4539
WARNING: subversion-1.14.2-r0 do_cve_check: subversion: Failed to compare 
1.14.2 = m1 for CVE-2010-4644
WARNING: subversion-1.14.2-r0 do_cve_check: subversion: Failed to compare 
1.14.2 = m2 for CVE-2010-4644
WARNING: subversion-1.14.2-r0 do_cve_check: subversion: Failed to compare 
1.14.2 = m3 for CVE-2010-4644
WARNING: subversion-1.14.2-r0 do_cve_check: subversion: Failed to compare 
1.14.2 = m4\/m5 for CVE-2010-4644
WARNING: subversion-1.14.2-r0 do_cve_check: subversion: Failed to compare 
1.14.2 = m1 for CVE-2011-0715
WARNING: subversion-1.14.2-r0 do_cve_check: subversion: Failed to compare 
1.14.2 = m2 for CVE-2011-0715
WARNING: subversion-1.14.2-r0 do_cve_check: subversion: Failed to compare 
1.14.2 = m3 for CVE-2011-0715
WARNING: subversion-1.14.2-r0 do_cve_check: subversion: Failed to compare 
1.14.2 = m4\/m5 for CVE-2011-0715
WARNING: automake-1.16.5-r0 do_cve_check: automake: Failed to compare 1.16.5 = 
branch_1-9 for CVE-2009-4029
WARNING: mpg123-1.32.3-r0 do_cve_check: mpg123: Failed to compare 1.32.3 = 
pre0.59s for CVE-2003-0577
WARNING: mpg123-1.32.3-r0 do_cve_check: mpg123: Failed to compare 1.32.3 = 
pre0.59s for CVE-2004-0982
WARNING: mpg123-1.32.3-r0 do_cve_check: mpg123: Failed to compare 1.32.3 = 
pre0.59s for CVE-2004-1284
WARNING: mpg123-1.32.3-r0 do_cve_check: mpg123: Failed to compare 1.32.3 = 
pre0.59s_r11 for CVE-2006-3355
WARNING: mpg123-1.32.3-r0 do_cve_check: mpg123: Failed to compare 1.32.3 = 
pre0.59s for CVE-2007-0578
WARNING: mpg123-1.32.3-r0 do_cve_check: mpg123: Failed to compare 1.32.3 = 
pre0.59s_r11 for CVE-2007-0578
WARNING: mpg123-1.32.3-r0 do_cve_check: mpg123: Failed to compare 1.32.3 = 
pre0.59s for CVE-2009-1301
WARNING: mpg123-1.32.3-r0 do_cve_check: mpg123: Failed to compare 1.32.3 = 
pre0.59s_r11 for CVE-2009-1301

This reverts commit a1989e4197178c2431ceca499e0b4876b233b131.

Signed-off-by: Ross Burton 
---
 meta/classes/cve-check.bbclass | 1 -
 1 file changed, 1 deletion(-)

diff --git a/meta/classes/cve-check.bbclass b/meta/classes/cve-check.bbclass 
index 086d87687f4..5191d043030 100644
--- a/meta/classes/cve-check.bbclass
+++ b/meta/classes/cve-check.bbclass
@@ -375,7 +375,6 @@ def check_cves(d, patched_cves):
 try:
 vulnerable_start =  (operator_start == '>=' and 
Version(pv,suffix) >= Version(version_start,suffix))
 vulnerable_start |= (operator_start == '>' and 
Version(pv,suffix) > Version(version_start,suffix))
-vulnerable_start |= (operator_start == '=' and 
Version(pv,suffix) == Version(version_start,suffix))
 except:
 bb.warn("%s: Failed to compare %s %s %s for %s" %
 (product, pv, operator_start, 
version_start, cve))
--
2.34.1


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



[OE-core] "ptest-pkgs" image feature misses ptest package dependencies due to COMPLEMENTARY_GLOB ignoring all RRECOMMENDS

2024-01-15 Thread Lyu, William via lists.openembedded.org
When I try to build a core-image-minimal image with ptest for openssl installed 
using the following conf/local.conf modifications, the openssl-ptest is 
installed but with missing runtime dependencies.

DISTRO_FEATURES:append = " ptest"
EXTRA_IMAGE_FEATURES += " ptest-pkgs"
PTEST_ENABLED = "1"
IMAGE_INSTALL:append = " openssl"

When I boot the image and try to run the ptest for openssl, I get the following 
error complaining about missing dependencies in the output:

# ptest-runner openssl -t 3000
BEGIN: /usr/lib/openssl/ptest
Can't locate File/Spec/Functions.pm in @INC ...
...

This error is due to package perl-module-file-spec-functions, along with some 
other perl-module-* packages, not being installed - these packages are missing 
in the .manifest file in the directory containing the built image. The 
dependency for these packages is as follows.

openssl-ptest --(RDEPENDS)--> perl-modules --(RRECOMMENDS)--> 
perl-module-file-spec-functions
   \-(RRECOMMENDS)--> some other 
perl-module-* packages

"ptest-pkgs" along with various other image features are defined as 
COMPLEMENTARY_GLOB in meta/classes-recipe/populate_sdk_base.bbclass in 
openembedded-core:

COMPLEMENTARY_GLOB[ptest-pkgs] = '*-ptest ${MLPREFIX}ptest-runner'

Following this patch to package_manager referenced by link 
https://lists.openembedded.org/g/openembedded-core/message/167303, recommends 
relationships (set via RRECOMMENDS) are always ignored when installing 
complementary packages [1]. This causes the necessary runtime dependencies for 
openssl-ptest not being installed. I am not sure if this issue only pertains to 
openssl-ptest.

Note that, if I follow the alternative "more selective" [2] way to include the 
tests (see the following sample conf/local.conf), I can properly install 
openssl-ptest with all dependencies, as openssl-ptest is now explicitly 
declared as package-to-be-installed instead of implicitly discovered via the 
COMPLEMENTARY_GLOB "ptest-pkgs". I would say that this means that "ptest-pkgs" 
is not very robust to use.

DISTRO_FEATURES:append = " ptest"
PTEST_ENABLED = "1"
IMAGE_INSTALL:append = " openssl openssl-ptest"

[1] 
https://docs.yoctoproject.org/dev/ref-manual/variables.html#term-COMPLEMENTARY_GLOB
[2] https://wiki.yoctoproject.org/wiki/Ptest#Adding_ptest_to_your_build

William


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#193807): 
https://lists.openembedded.org/g/openembedded-core/message/193807
Mute This Topic: https://lists.openembedded.org/mt/103752398/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 v2] libtest-warnings-perl: upgrade 0.031 -> 0.032

2024-01-15 Thread wangmy
From: Wang Mingyu 

License-Update:
 basic artistic license changed to perl artistic license.

Signed-off-by: Wang Mingyu 
---
 ...ings-perl_0.031.bb => libtest-warnings-perl_0.032.bb} | 9 +++--
 1 file changed, 3 insertions(+), 6 deletions(-)
 rename meta/recipes-devtools/perl/{libtest-warnings-perl_0.031.bb => 
libtest-warnings-perl_0.032.bb} (78%)

diff --git a/meta/recipes-devtools/perl/libtest-warnings-perl_0.031.bb 
b/meta/recipes-devtools/perl/libtest-warnings-perl_0.032.bb
similarity index 78%
rename from meta/recipes-devtools/perl/libtest-warnings-perl_0.031.bb
rename to meta/recipes-devtools/perl/libtest-warnings-perl_0.032.bb
index e03deaf15f..5876e8a63c 100644
--- a/meta/recipes-devtools/perl/libtest-warnings-perl_0.031.bb
+++ b/meta/recipes-devtools/perl/libtest-warnings-perl_0.032.bb
@@ -1,6 +1,3 @@
-# Copyright (C) 2020 Jens Rehsack 
-# Released under the MIT license (see COPYING.MIT for the terms)
-
 SUMMARY = "Test::Warnings - Test for warnings and the lack of them"
 DESCRIPTION = "If you've ever tried to use Test::NoWarnings to confirm there 
are no \
 warnings generated by your tests, combined with the convenience of \
@@ -12,13 +9,13 @@ demonstration.)"
 HOMEPAGE = "https://github.com/karenetheridge/Test-Warnings;
 BUGTRACKER = "https://rt.cpan.org/Public/Dist/Display.html?Name=Test-Warnings;
 SECTION = "libs"
-LICENSE = "Artistic-1.0 | GPL-1.0-or-later"
+LICENSE = "Artistic-1.0-Perl | GPL-1.0-or-later"
 
-LIC_FILES_CHKSUM = "file://LICENCE;md5=6f2b02f39e7d359efd9525fbc56c84a1"
+LIC_FILES_CHKSUM = "file://LICENCE;md5=f98106ac3cc05d9cbebcdb8fbf7b7815"
 
 SRC_URI = "${CPAN_MIRROR}/authors/id/E/ET/ETHER/Test-Warnings-${PV}.tar.gz"
 
-SRC_URI[sha256sum] = 
"1e542909fef305e45563e9878ea1c3b0c7cef1b28bb7ae07eba2e1efabec477b"
+SRC_URI[sha256sum] = 
"4727dae2416e9f07e41e2dc3a9143ba6affc1ec57652117c99d50038e313e9d9"
 
 S = "${WORKDIR}/Test-Warnings-${PV}"
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#193806): 
https://lists.openembedded.org/g/openembedded-core/message/193806
Mute This Topic: https://lists.openembedded.org/mt/103752132/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 v2] python3-subunit: upgrade 1.4.2 -> 1.4.4

2024-01-15 Thread wangmy
From: Wang Mingyu 

License-Update:
 change License file to COPYING.
 add BSD-3-Clause to LICENSE

Changelog:
===
* Removed use of deprecated "utc" and "utcfromtimestamp"
  methods of "datetime.datetime".
* Fix an issue with date parsing exception handling
* Add support for Python 3.12

Signed-off-by: Wang Mingyu 
---
 .../{python3-subunit_1.4.2.bb => python3-subunit_1.4.4.bb}  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta/recipes-devtools/python/{python3-subunit_1.4.2.bb => 
python3-subunit_1.4.4.bb} (55%)

diff --git a/meta/recipes-devtools/python/python3-subunit_1.4.2.bb 
b/meta/recipes-devtools/python/python3-subunit_1.4.4.bb
similarity index 55%
rename from meta/recipes-devtools/python/python3-subunit_1.4.2.bb
rename to meta/recipes-devtools/python/python3-subunit_1.4.4.bb
index a018ef1dc8..db5fecf921 100644
--- a/meta/recipes-devtools/python/python3-subunit_1.4.2.bb
+++ b/meta/recipes-devtools/python/python3-subunit_1.4.4.bb
@@ -1,12 +1,12 @@
 SUMMARY = "Python implementation of subunit test streaming protocol"
 HOMEPAGE = "https://pypi.org/project/python-subunit/;
 SECTION = "devel/python"
-LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = 
"file://README.rst;beginline=1;endline=20;md5=909c08e291647fd985fbe5d9836d51b6"
+LICENSE = "Apache-2.0 | BSD-3-Clause"
+LIC_FILES_CHKSUM = 
"file://COPYING;beginline=1;endline=20;md5=b1121e68d06c8d9ea544fcd895df0d39"
 
 PYPI_PACKAGE = "python-subunit"
 
-SRC_URI[sha256sum] = 
"2988d324d55ec35dd037e502e3f74ac38f4e457bd44ee0edf5e898f7ee1134d4"
+SRC_URI[sha256sum] = 
"1079363131aa1d3f45259237265bc2e61a77e35f20edfb6e3d1d2558a2cdea34"
 
 inherit pypi setuptools3
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#193805): 
https://lists.openembedded.org/g/openembedded-core/message/193805
Mute This Topic: https://lists.openembedded.org/mt/103752116/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] rng-tools: move to meta-oe

2024-01-15 Thread Scott Murray
On Mon, 15 Jan 2024, Randy MacLeod via lists.openembedded.org wrote:

> On 2024-01-15 11:58 a.m., Alexandre Belloni via lists.openembedded.org wrote:
> > This is breaking meta-agl-core until this gets into meta-oe:
> >
> > https://autobuilder.yoctoproject.org/typhoon/#/builders/120/builds/3849/steps/14/logs/stdio
>
> Thanks Alexandre.
>
>
> Stephane, Jan-Simon,
>
> Is rng-tools actually still a requirement for meta-agl ?
> It was added back in 2018 but the kernel algorithm improved as of 5.6:
> https://lists.openembedded.org/g/openembedded-core/message/178518

The kernel no longer blocking does mean things won't get stuck on boot,
but it seems like any distro with an eye towards security still needs
either rngd or haveged present to feed in entropy on hardware that does
not have a hardware RNG (and potentially even when there is a hardware
RNG to improve the quality of the pool).  We definitely support some
platforms in AGL that do not have a hardware RNG, so we'll have to work
out whether we're going to need to eat making meta-oe a hard requirement
for using meta-agl-core or do something else.

Scott


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#193804): 
https://lists.openembedded.org/g/openembedded-core/message/193804
Mute This Topic: https://lists.openembedded.org/mt/103649050/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 v3] glib-networking: Fix ptest failures with openssl backend

2024-01-15 Thread Khem Raj
On Mon, Jan 15, 2024 at 11:38 AM Khem Raj  wrote:
>
> On Mon, Jan 15, 2024 at 9:06 AM Ross Burton  wrote:
> >
> >
> >
> > > On 15 Jan 2024, at 16:53, Khem Raj  wrote:
> > > Where does it say it does not support? On the contrary there are patches 
> > > in this area sent recently
> >
> > https://gitlab.gnome.org/GNOME/glib-networking/-/commit/8e1d80c1e0fc52d17d08a21946fa4a86ec30e1db
> >
>
> Right, it was 3 years ago and note the mention kind of systems where
> it maybe in use :) and OE is used for such
> distros so it might be useful. The fixes to get openssl support
> improved have happened after this commit.
> Its fine if we do not want to accept patches here and wait upstream to
> support it fully. Because than it's easier to direct
> upstream work correctly. We just have to be clear with these criterias
> in general.

Lets drop this patch.

>
> > Ross

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#193803): 
https://lists.openembedded.org/g/openembedded-core/message/193803
Mute This Topic: https://lists.openembedded.org/mt/103626740/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] rng-tools: move to meta-oe

2024-01-15 Thread Khem Raj
On Mon, Jan 15, 2024 at 12:20 PM Randy MacLeod via
lists.openembedded.org
 wrote:
>
> On 2024-01-15 11:58 a.m., Alexandre Belloni via lists.openembedded.org wrote:
>
> This is breaking meta-agl-core until this gets into meta-oe:
>
> https://autobuilder.yoctoproject.org/typhoon/#/builders/120/builds/3849/steps/14/logs/stdio
>

Thanks for reporting, this patch should be in master meta-openembedded
with today's update lot.

> Thanks Alexandre.
>
>
> Stephane, Jan-Simon,
>
> Is rng-tools actually still a requirement for meta-agl ?
> It was added back in 2018 but the kernel algorithm improved as of 5.6:
> https://lists.openembedded.org/g/openembedded-core/message/178518
>
> ../Randy
>
> commit c55cb9e43a4ff26224cd917f91c057f15535ee3b
> Author: Stephane Desneux 
> Date:   Thu Sep 6 17:53:26 2018
>
> agl-profile-core/packagegroup-agl-core-boot: add rng-tools
>
> On some boards (typically Minnowboard Max), the kernel's random number 
> entropy
> pool may fill too slowly.  As a consequence, if many processes ask for 
> random
> data at the same time, the reads on /dev/random are blocked until the 
> entropy
> pool has been filled.
>
> This patch adds rng-tools in the core images: the rngd daemon will start 
> at boot
> and fill the entropy pool.
>
> Bug-AGL: SPEC-1655
>
> Change-Id: Icbcf6a9ea685774dd13e33597689a3fd05aaadf4
> Signed-off-by: Stephane Desneux 
>
>
> On 10/01/2024 15:25:01-0500, Randy MacLeod via lists.openembedded.org wrote:
>
> From: Randy MacLeod 
>
> Nothing in oe-core depends on rng-tools anymore:
>e7e1bc43ca rng-tools: splitting the rng-tools systemd/sysvinit serivce as 
> a package
> so move it to meta-oe for people who still want to run rngd
> as a service for some reason or for those who want to run rng-test.
>
> Signed-off-by: Randy MacLeod 
> ---
>  meta/conf/distro/include/maintainers.inc  |  1 -
>  .../rng-tools/rng-tools/default   |  1 -
>  meta/recipes-support/rng-tools/rng-tools/init | 42 ---
>  .../rng-tools/rng-tools/rng-tools.service | 32 -
>  .../rng-tools/rng-tools_6.16.bb   | 69 ---
>  5 files changed, 145 deletions(-)
>  delete mode 100644 meta/recipes-support/rng-tools/rng-tools/default
>  delete mode 100644 meta/recipes-support/rng-tools/rng-tools/init
>  delete mode 100644 meta/recipes-support/rng-tools/rng-tools/rng-tools.service
>  delete mode 100644 meta/recipes-support/rng-tools/rng-tools_6.16.bb
>
> diff --git a/meta/conf/distro/include/maintainers.inc 
> b/meta/conf/distro/include/maintainers.inc
> index 8dc63b138e..31023021ac 100644
> --- a/meta/conf/distro/include/maintainers.inc
> +++ b/meta/conf/distro/include/maintainers.inc
> @@ -739,7 +739,6 @@ RECIPE_MAINTAINER:pn-repo = "Unassigned 
> "
>  RECIPE_MAINTAINER:pn-resolvconf = "Chen Qi "
>  RECIPE_MAINTAINER:pn-rgb = "Unassigned "
>  RECIPE_MAINTAINER:pn-rpcbind = "Hongxu Jia "
> -RECIPE_MAINTAINER:pn-rng-tools = "Anuj Mittal "
>  RECIPE_MAINTAINER:pn-rpcsvc-proto = "Khem Raj "
>  RECIPE_MAINTAINER:pn-rpm = "Unassigned "
>  RECIPE_MAINTAINER:pn-rsync = "Yi Zhao "
> diff --git a/meta/recipes-support/rng-tools/rng-tools/default 
> b/meta/recipes-support/rng-tools/rng-tools/default
> deleted file mode 100644
> index b9f8e03635..00
> --- a/meta/recipes-support/rng-tools/rng-tools/default
> +++ /dev/null
> @@ -1 +0,0 @@
> -EXTRA_ARGS="-r /dev/hwrng"
> diff --git a/meta/recipes-support/rng-tools/rng-tools/init 
> b/meta/recipes-support/rng-tools/rng-tools/init
> deleted file mode 100644
> index 13f0ecd37c..00
> --- a/meta/recipes-support/rng-tools/rng-tools/init
> +++ /dev/null
> @@ -1,42 +0,0 @@
> -#!/bin/sh
> -#
> -# This is an init script for openembedded
> -# Copy it to @SYSCONFDIR@/init.d/rng-tools and type
> -# > update-rc.d rng-tools defaults 60
> -#
> -
> -rngd=@SBINDIR@/rngd
> -test -x "$rngd" || exit 1
> -
> -[ -r @SYSCONFDIR@/default/rng-tools ] && . "@SYSCONFDIR@/default/rng-tools"
> -
> -case "$1" in
> -  start)
> -echo -n "Starting random number generator daemon"
> -start-stop-daemon -S -q -x $rngd -- $EXTRA_ARGS
> -echo "."
> -;;
> -  stop)
> -echo -n "Stopping random number generator daemon"
> -start-stop-daemon -K -q -n rngd
> -echo "."
> -;;
> -  reload|force-reload)
> -echo -n "Signalling rng daemon restart"
> -start-stop-daemon -K -q -s 1 -x $rngd
> -start-stop-daemon -K -q -s 1 -x $rngd
> -;;
> -  restart)
> -echo -n "Stopping random number generator daemon"
> -start-stop-daemon -K -q -n rngd
> -echo "."
> -echo -n "Starting random number generator daemon"
> -start-stop-daemon -S -q -x $rngd -- $EXTRA_ARGS
> -echo "."
> -;;
> -  *)
> -echo "Usage: @SYSCONFDIR@/init.d/rng-tools 
> {start|stop|reload|restart|force-reload}"
> -exit 1
> -esac
> -
> -exit 0
> diff --git a/meta/recipes-support/rng-tools/rng-tools/rng-tools.service 
> b/meta/recipes-support/rng-tools/rng-tools/rng-tools.service
> 

[OE-core] [PATCHv3] rust: Re-write RPATHs in the copies llvm-config

2024-01-15 Thread Khem Raj
Ensure that it can still access the native-sysroot for dependencies,
use ORIGIN to indicate this relative its install location, this also
helps in this not getting into the output of llvm-config which could
otherwise provide incorrect library paths

target rust recipe builds ( cross compile ) calls llvm-config from
target sysroot which works ok as long as C++ runtime it needs is
available on build host e.g. libstdc++ etc. which is commonly the
case, however when using clang and llvm runtime this falters since
it should be using libc++ from native sysroot and if this does not
exist on build machine this fails to find libc++ shared object and
llvm-config fails to run. This ensures that llvm-config version in
use is correctly relocated and can use shared libraries from native
sysroot correctly. Adding ORIGIN to sysroot will look for the .so in
same dir as the binary and there is the libc++.so.1 copied in place

Fixes rust build with clang compiler.

| 
/mnt/b/yoe/master/build/tmp/work/riscv64-yoe-linux/rust/1.74.1/recipe-sysroot/usr/lib/llvm-rust/bin/llvm-config:
 error while loading shared libraries: libc++.so.1: cannot open shared object 
file: No such file or director
y
| thread 'main' panicked at llvm.rs:551:19:
| command did not execute successfully: 
"/mnt/b/yoe/master/build/tmp/work/riscv64-yoe-linux/rust/1.74.1/recipe-sysroot/usr/lib/llvm-rust/bin/llvm-config"
 "--version"
| expected success, got: exit status: 127

Signed-off-by: Khem Raj 
---
v2: Use RPATH instead of copied libc++ to target sysroot
v3: Use bitbake variables to compute the native paths

 meta/recipes-devtools/rust/rust_1.74.1.bb | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/rust/rust_1.74.1.bb 
b/meta/recipes-devtools/rust/rust_1.74.1.bb
index 30543ada7db..f8db186890c 100644
--- a/meta/recipes-devtools/rust/rust_1.74.1.bb
+++ b/meta/recipes-devtools/rust/rust_1.74.1.bb
@@ -200,7 +200,11 @@ rust_runx () {
 if [ ${RUST_ALTERNATE_EXE_PATH_NATIVE} != ${RUST_ALTERNATE_EXE_PATH} -a ! 
-f ${RUST_ALTERNATE_EXE_PATH} ]; then
 mkdir -p `dirname ${RUST_ALTERNATE_EXE_PATH}`
 cp ${RUST_ALTERNATE_EXE_PATH_NATIVE} ${RUST_ALTERNATE_EXE_PATH}
-chrpath -d ${RUST_ALTERNATE_EXE_PATH}
+if [ -e ${STAGING_LIBDIR_NATIVE}/libc++.so.1 ]; then
+chrpath -r \$ORIGIN/../../../../../`basename 
${STAGING_DIR_NATIVE}`${libdir_native} ${RUST_ALTERNATE_EXE_PATH}
+else
+chrpath -d ${RUST_ALTERNATE_EXE_PATH}
+fi
 fi
 
 oe_cargo_fix_env
-- 
2.43.0


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#193801): 
https://lists.openembedded.org/g/openembedded-core/message/193801
Mute This Topic: https://lists.openembedded.org/mt/103748638/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] rust: Use llvm-config from native llvm-rust on rust target builds

2024-01-15 Thread Khem Raj
On Mon, Jan 15, 2024 at 9:49 AM Richard Purdie
 wrote:
>
> On Mon, 2024-01-15 at 08:56 -0800, Khem Raj wrote:
> > Hi
> >
> > On Mon, Jan 15, 2024 at 5:19 AM Richard Purdie
> >  wrote:
> > > On Sat, 2024-01-13 at 21:58 -0800, Khem Raj wrote:
> > > > target rust recipe builds ( cross compile ) calls llvm-config
> > > > from
> > > > target sysroot which works ok as long as C++ runtime it needs is
> > > > available on build host e.g. libstdc++ etc. which is commonly the
> > > > case, however when using clang and llvm runtime this falters
> > > > since
> > > > it should be using libc++ from native sysroot and if this does
> > > > not
> > > > exist on build machine this fails to find libc++ shared object
> > > > and
> > > > llvm-config fails to run. This ensures that llvm-config version
> > > > in
> > > > use is correctly relocated and can use shared libraries from
> > > > native
> > > > sysroot correctly. Adding ORIGIN to sysroot will look for the .so
> > > > in
> > > > same dir as the binary and there is the libc++.so.1 copied in
> > > > place
> > > >
> > > > Fixes rust build with clang compiler.
> > > >
> > > > > /mnt/b/yoe/master/build/tmp/work/riscv64-yoe-
> > > > > linux/rust/1.74.1/recipe-sysroot/usr/lib/llvm-rust/bin/llvm-
> > > > > config: error while loading shared libraries: libc++.so.1:
> > > > > cannot open shared object file: No such file or director
> > > > y
> > > > > thread 'main' panicked at llvm.rs:551:19:
> > > > > command did not execute successfully:
> > > > > "/mnt/b/yoe/master/build/tmp/work/riscv64-yoe-
> > > > > linux/rust/1.74.1/recipe-sysroot/usr/lib/llvm-rust/bin/llvm-
> > > > > config" "--version"
> > > > > expected success, got: exit status: 127
> > > >
> > > > Signed-off-by: Khem Raj 
> > > > ---
> > > >   meta/recipes-devtools/rust/rust_1.74.1.bb | 8 ++--
> > > >   1 file changed, 6 insertions(+), 2 deletions(-)
> > > >
> > > > diff --git a/meta/recipes-devtools/rust/rust_1.74.1.bb
> > > > b/meta/recipes-devtools/rust/rust_1.74.1.bb
> > > > index 30543ada7db..2dffe009827 100644
> > > > --- a/meta/recipes-devtools/rust/rust_1.74.1.bb
> > > > +++ b/meta/recipes-devtools/rust/rust_1.74.1.bb
> > > > @@ -198,9 +198,13 @@ rust_runx () {
> > > >   # Copy the natively built llvm-config into the target so we
> > > > can run it. Horrible,
> > > >   # but works!
> > > >   if [ ${RUST_ALTERNATE_EXE_PATH_NATIVE} !=
> > > > ${RUST_ALTERNATE_EXE_PATH} -a ! -f ${RUST_ALTERNATE_EXE_PATH} ];
> > > > then
> > > > -mkdir -p `dirname ${RUST_ALTERNATE_EXE_PATH}`
> > > > +tgtdir=`dirname ${RUST_ALTERNATE_EXE_PATH}`
> > > > +mkdir -p ${tgtdir}
> > > >   cp ${RUST_ALTERNATE_EXE_PATH_NATIVE}
> > > > ${RUST_ALTERNATE_EXE_PATH}
> > > > -chrpath -d ${RUST_ALTERNATE_EXE_PATH}
> > > > +if [ -e ${STAGING_LIBDIR_NATIVE}/libc++.so.1 ]; then
> > > > +cp ${STAGING_LIBDIR_NATIVE}/libc++.so.1 ${tgtdir}/
> > > > +fi
> > > > +chrpath -r \$ORIGIN ${RUST_ALTERNATE_EXE_PATH}
> > > >   fi
> > > >
> > > >   oe_cargo_fix_env
> > >
> > > Copying a native library into the target sysroot goes beyond what
> > > I'm
> > > comfortable with even for this horrible hack with llvm-config.
> > >
> >
> >
> > It’s just supporting the original hack to work properly I don’t think
> > it’s any worse that the original hack
>
> Putting a non-target library into the target sysroot could cause all
> kinds of problems if the target and native are similar enough the
> libraries can be seen and confused by the linker. I do see that as a
> big and potentially very dangerous difference.

Agreed. although the conditions it must meet to fail make it quite unlikely
since it goes into specific directory llvm-rust/bin where llvm-rust
binaries are installed
under sysroot, and none of those target binaries use RPATH except
llvm-config but there is a chance.


>
> > >
> > >
> > > Since it seems to be finding it by RPATH, can you not just add an
> > > RPATH
> > > to the native sysroot in the binary?
> > >
> >
> >
> > It does not work and I don’t know why but seems rpath in llvm-config
> > affects what paths it spits out
>
> I am reluctant to take this without a better understanding of what is
> going on here. We may need to fix the lvm-config issues properly.
>

I think if we use ORIGIN relative paths into RPATH, it works ok, previously
I tried to hardcode native sysroot paths. I will send a revised
version to replace
it with RPATH

> Cheers,
>
> Richard
>

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



[OE-core] [PATCHv2] rust: Re-write RPATHs in the copies llvm-config

2024-01-15 Thread Khem Raj
Ensure that it can still access the native-sysroot for dependencies,
use ORIGIN to indicate this relative its install location, this also
helps in this not getting into the output of llvm-config which could
otherwise provide incorrect library paths

target rust recipe builds ( cross compile ) calls llvm-config from
target sysroot which works ok as long as C++ runtime it needs is
available on build host e.g. libstdc++ etc. which is commonly the
case, however when using clang and llvm runtime this falters since
it should be using libc++ from native sysroot and if this does not
exist on build machine this fails to find libc++ shared object and
llvm-config fails to run. This ensures that llvm-config version in
use is correctly relocated and can use shared libraries from native
sysroot correctly. Adding ORIGIN to sysroot will look for the .so in
same dir as the binary and there is the libc++.so.1 copied in place

Fixes rust build with clang compiler.

| 
/mnt/b/yoe/master/build/tmp/work/riscv64-yoe-linux/rust/1.74.1/recipe-sysroot/usr/lib/llvm-rust/bin/llvm-config:
 error while loading shared libraries: libc++.so.1: cannot open shared object 
file: No such file or director
y
| thread 'main' panicked at llvm.rs:551:19:
| command did not execute successfully: 
"/mnt/b/yoe/master/build/tmp/work/riscv64-yoe-linux/rust/1.74.1/recipe-sysroot/usr/lib/llvm-rust/bin/llvm-config"
 "--version"
| expected success, got: exit status: 127

Signed-off-by: Khem Raj 
---
 meta/recipes-devtools/rust/rust_1.74.1.bb | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/rust/rust_1.74.1.bb 
b/meta/recipes-devtools/rust/rust_1.74.1.bb
index 30543ada7db..2faa2d7e4d2 100644
--- a/meta/recipes-devtools/rust/rust_1.74.1.bb
+++ b/meta/recipes-devtools/rust/rust_1.74.1.bb
@@ -200,7 +200,11 @@ rust_runx () {
 if [ ${RUST_ALTERNATE_EXE_PATH_NATIVE} != ${RUST_ALTERNATE_EXE_PATH} -a ! 
-f ${RUST_ALTERNATE_EXE_PATH} ]; then
 mkdir -p `dirname ${RUST_ALTERNATE_EXE_PATH}`
 cp ${RUST_ALTERNATE_EXE_PATH_NATIVE} ${RUST_ALTERNATE_EXE_PATH}
-chrpath -d ${RUST_ALTERNATE_EXE_PATH}
+if [ -e ${STAGING_LIBDIR_NATIVE}/libc++.so.1 ]; then
+chrpath -r \$ORIGIN/../../../../../recipe-sysroot-native/usr/lib 
${RUST_ALTERNATE_EXE_PATH}
+else
+chrpath -d ${RUST_ALTERNATE_EXE_PATH}
+fi
 fi
 
 oe_cargo_fix_env
-- 
2.43.0


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#193799): 
https://lists.openembedded.org/g/openembedded-core/message/193799
Mute This Topic: https://lists.openembedded.org/mt/103748345/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] rng-tools: move to meta-oe

2024-01-15 Thread Randy MacLeod via lists.openembedded.org
On 2024-01-15 11:58 a.m., Alexandre Belloni via lists.openembedded.org 
wrote:

This is breaking meta-agl-core until this gets into meta-oe:

https://autobuilder.yoctoproject.org/typhoon/#/builders/120/builds/3849/steps/14/logs/stdio


Thanks Alexandre.


Stephane, Jan-Simon,

Is rng-tools actually still a requirement for meta-agl ?
It was added back in 2018 but the kernel algorithm improved as of 5.6:
https://lists.openembedded.org/g/openembedded-core/message/178518

../Randy

commit c55cb9e43a4ff26224cd917f91c057f15535ee3b
Author: Stephane Desneux 
Date:   Thu Sep 6 17:53:26 2018

    agl-profile-core/packagegroup-agl-core-boot: add rng-tools

    On some boards (typically Minnowboard Max), the kernel's random 
number entropy
    pool may fill too slowly.  As a consequence, if many processes ask 
for random
    data at the same time, the reads on /dev/random are blocked until 
the entropy

    pool has been filled.

    This patch adds rng-tools in the core images: the rngd daemon will 
start at boot

    and fill the entropy pool.

    Bug-AGL: SPEC-1655

    Change-Id: Icbcf6a9ea685774dd13e33597689a3fd05aaadf4
    Signed-off-by: Stephane Desneux 



On 10/01/2024 15:25:01-0500, Randy MacLeod via lists.openembedded.org wrote:

From: Randy MacLeod

Nothing in oe-core depends on rng-tools anymore:
e7e1bc43ca rng-tools: splitting the rng-tools systemd/sysvinit serivce as a 
package
so move it to meta-oe for people who still want to run rngd
as a service for some reason or for those who want to run rng-test.

Signed-off-by: Randy MacLeod
---
  meta/conf/distro/include/maintainers.inc  |  1 -
  .../rng-tools/rng-tools/default   |  1 -
  meta/recipes-support/rng-tools/rng-tools/init | 42 ---
  .../rng-tools/rng-tools/rng-tools.service | 32 -
  .../rng-tools/rng-tools_6.16.bb   | 69 ---
  5 files changed, 145 deletions(-)
  delete mode 100644 meta/recipes-support/rng-tools/rng-tools/default
  delete mode 100644 meta/recipes-support/rng-tools/rng-tools/init
  delete mode 100644 meta/recipes-support/rng-tools/rng-tools/rng-tools.service
  delete mode 100644 meta/recipes-support/rng-tools/rng-tools_6.16.bb

diff --git a/meta/conf/distro/include/maintainers.inc 
b/meta/conf/distro/include/maintainers.inc
index 8dc63b138e..31023021ac 100644
--- a/meta/conf/distro/include/maintainers.inc
+++ b/meta/conf/distro/include/maintainers.inc
@@ -739,7 +739,6 @@ RECIPE_MAINTAINER:pn-repo = 
"Unassigned"
  RECIPE_MAINTAINER:pn-resolvconf = "Chen Qi"
  RECIPE_MAINTAINER:pn-rgb = "Unassigned"
  RECIPE_MAINTAINER:pn-rpcbind = "Hongxu Jia"
-RECIPE_MAINTAINER:pn-rng-tools = "Anuj Mittal"
  RECIPE_MAINTAINER:pn-rpcsvc-proto = "Khem Raj"
  RECIPE_MAINTAINER:pn-rpm = "Unassigned"
  RECIPE_MAINTAINER:pn-rsync = "Yi Zhao"
diff --git a/meta/recipes-support/rng-tools/rng-tools/default 
b/meta/recipes-support/rng-tools/rng-tools/default
deleted file mode 100644
index b9f8e03635..00
--- a/meta/recipes-support/rng-tools/rng-tools/default
+++ /dev/null
@@ -1 +0,0 @@
-EXTRA_ARGS="-r /dev/hwrng"
diff --git a/meta/recipes-support/rng-tools/rng-tools/init 
b/meta/recipes-support/rng-tools/rng-tools/init
deleted file mode 100644
index 13f0ecd37c..00
--- a/meta/recipes-support/rng-tools/rng-tools/init
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/bin/sh
-#
-# This is an init script for openembedded
-# Copy it to @SYSCONFDIR@/init.d/rng-tools and type
-# > update-rc.d rng-tools defaults 60
-#
-
-rngd=@SBINDIR@/rngd
-test -x "$rngd" || exit 1
-
-[ -r @SYSCONFDIR@/default/rng-tools ] && . "@SYSCONFDIR@/default/rng-tools"
-
-case "$1" in
-  start)
-echo -n "Starting random number generator daemon"
-start-stop-daemon -S -q -x $rngd -- $EXTRA_ARGS
-echo "."
-;;
-  stop)
-echo -n "Stopping random number generator daemon"
-start-stop-daemon -K -q -n rngd
-echo "."
-;;
-  reload|force-reload)
-echo -n "Signalling rng daemon restart"
-start-stop-daemon -K -q -s 1 -x $rngd
-start-stop-daemon -K -q -s 1 -x $rngd
-;;
-  restart)
-echo -n "Stopping random number generator daemon"
-start-stop-daemon -K -q -n rngd
-echo "."
-echo -n "Starting random number generator daemon"
-start-stop-daemon -S -q -x $rngd -- $EXTRA_ARGS
-echo "."
-;;
-  *)
-echo "Usage: @SYSCONFDIR@/init.d/rng-tools 
{start|stop|reload|restart|force-reload}"
-exit 1
-esac
-
-exit 0
diff --git a/meta/recipes-support/rng-tools/rng-tools/rng-tools.service 
b/meta/recipes-support/rng-tools/rng-tools/rng-tools.service
deleted file mode 100644
index 5ae2fba215..00
--- a/meta/recipes-support/rng-tools/rng-tools/rng-tools.service
+++ /dev/null
@@ -1,32 +0,0 @@
-[Unit]
-Description=Hardware RNG Entropy Gatherer Daemon
-DefaultDependencies=no
-Conflicts=shutdown.target
-Before=sysinit.target shutdown.target
-ConditionVirtualization=!container
-
-[Service]
-EnvironmentFile=-@SYSCONFDIR@/default/rng-tools
-ExecStart=@SBINDIR@/rngd -f 

Re: [OE-core] [PATCH v3] glib-networking: Fix ptest failures with openssl backend

2024-01-15 Thread Khem Raj
On Mon, Jan 15, 2024 at 9:06 AM Ross Burton  wrote:
>
>
>
> > On 15 Jan 2024, at 16:53, Khem Raj  wrote:
> > Where does it say it does not support? On the contrary there are patches in 
> > this area sent recently
>
> https://gitlab.gnome.org/GNOME/glib-networking/-/commit/8e1d80c1e0fc52d17d08a21946fa4a86ec30e1db
>

Right, it was 3 years ago and note the mention kind of systems where
it maybe in use :) and OE is used for such
distros so it might be useful. The fixes to get openssl support
improved have happened after this commit.
Its fine if we do not want to accept patches here and wait upstream to
support it fully. Because than it's easier to direct
upstream work correctly. We just have to be clear with these criterias
in general.

> Ross

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#193797): 
https://lists.openembedded.org/g/openembedded-core/message/193797
Mute This Topic: https://lists.openembedded.org/mt/103626740/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] rust: Use llvm-config from native llvm-rust on rust target builds

2024-01-15 Thread Richard Purdie
On Mon, 2024-01-15 at 08:56 -0800, Khem Raj wrote:
> Hi
> 
> On Mon, Jan 15, 2024 at 5:19 AM Richard Purdie
>  wrote:
> > On Sat, 2024-01-13 at 21:58 -0800, Khem Raj wrote:
> > > target rust recipe builds ( cross compile ) calls llvm-config
> > > from
> > > target sysroot which works ok as long as C++ runtime it needs is
> > > available on build host e.g. libstdc++ etc. which is commonly the
> > > case, however when using clang and llvm runtime this falters
> > > since
> > > it should be using libc++ from native sysroot and if this does
> > > not
> > > exist on build machine this fails to find libc++ shared object
> > > and
> > > llvm-config fails to run. This ensures that llvm-config version
> > > in
> > > use is correctly relocated and can use shared libraries from
> > > native
> > > sysroot correctly. Adding ORIGIN to sysroot will look for the .so
> > > in
> > > same dir as the binary and there is the libc++.so.1 copied in
> > > place
> > > 
> > > Fixes rust build with clang compiler.
> > > 
> > > > /mnt/b/yoe/master/build/tmp/work/riscv64-yoe-
> > > > linux/rust/1.74.1/recipe-sysroot/usr/lib/llvm-rust/bin/llvm-
> > > > config: error while loading shared libraries: libc++.so.1:
> > > > cannot open shared object file: No such file or director
> > > y
> > > > thread 'main' panicked at llvm.rs:551:19:
> > > > command did not execute successfully:
> > > > "/mnt/b/yoe/master/build/tmp/work/riscv64-yoe-
> > > > linux/rust/1.74.1/recipe-sysroot/usr/lib/llvm-rust/bin/llvm-
> > > > config" "--version"
> > > > expected success, got: exit status: 127
> > > 
> > > Signed-off-by: Khem Raj 
> > > ---
> > >   meta/recipes-devtools/rust/rust_1.74.1.bb | 8 ++--
> > >   1 file changed, 6 insertions(+), 2 deletions(-)
> > > 
> > > diff --git a/meta/recipes-devtools/rust/rust_1.74.1.bb
> > > b/meta/recipes-devtools/rust/rust_1.74.1.bb
> > > index 30543ada7db..2dffe009827 100644
> > > --- a/meta/recipes-devtools/rust/rust_1.74.1.bb
> > > +++ b/meta/recipes-devtools/rust/rust_1.74.1.bb
> > > @@ -198,9 +198,13 @@ rust_runx () {
> > >       # Copy the natively built llvm-config into the target so we
> > > can run it. Horrible,
> > >       # but works!
> > >       if [ ${RUST_ALTERNATE_EXE_PATH_NATIVE} !=
> > > ${RUST_ALTERNATE_EXE_PATH} -a ! -f ${RUST_ALTERNATE_EXE_PATH} ];
> > > then
> > > -        mkdir -p `dirname ${RUST_ALTERNATE_EXE_PATH}`
> > > +        tgtdir=`dirname ${RUST_ALTERNATE_EXE_PATH}`
> > > +        mkdir -p ${tgtdir}
> > >           cp ${RUST_ALTERNATE_EXE_PATH_NATIVE}
> > > ${RUST_ALTERNATE_EXE_PATH}
> > > -        chrpath -d ${RUST_ALTERNATE_EXE_PATH}
> > > +        if [ -e ${STAGING_LIBDIR_NATIVE}/libc++.so.1 ]; then
> > > +            cp ${STAGING_LIBDIR_NATIVE}/libc++.so.1 ${tgtdir}/
> > > +        fi
> > > +        chrpath -r \$ORIGIN ${RUST_ALTERNATE_EXE_PATH}
> > >       fi
> > >   
> > >       oe_cargo_fix_env
> > 
> > Copying a native library into the target sysroot goes beyond what
> > I'm
> > comfortable with even for this horrible hack with llvm-config.
> > 
> 
> 
> It’s just supporting the original hack to work properly I don’t think
> it’s any worse that the original hack 

Putting a non-target library into the target sysroot could cause all
kinds of problems if the target and native are similar enough the
libraries can be seen and confused by the linker. I do see that as a
big and potentially very dangerous difference.

> > 
> > 
> > Since it seems to be finding it by RPATH, can you not just add an
> > RPATH
> > to the native sysroot in the binary?
> > 
> 
> 
> It does not work and I don’t know why but seems rpath in llvm-config
> affects what paths it spits out 

I am reluctant to take this without a better understanding of what is
going on here. We may need to fix the lvm-config issues properly.

Cheers,

Richard


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

2024-01-15 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *iso-codes* to *4.16.0* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-iso-codes-upgrade-4.15.0-4.16.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 dbb6fbc156d1f75526e039d411e08f3ce2517fdc Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 16:59:38 +
Subject: [PATCH] iso-codes: upgrade 4.15.0 -> 4.16.0

---
 .../iso-codes/{iso-codes_4.15.0.bb => iso-codes_4.16.0.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-support/iso-codes/{iso-codes_4.15.0.bb => 
iso-codes_4.16.0.bb} (94%)

diff --git a/meta/recipes-support/iso-codes/iso-codes_4.15.0.bb 
b/meta/recipes-support/iso-codes/iso-codes_4.16.0.bb
similarity index 94%
rename from meta/recipes-support/iso-codes/iso-codes_4.15.0.bb
rename to meta/recipes-support/iso-codes/iso-codes_4.16.0.bb
index 6ae6fdf8cb..f33cce1a9d 100644
--- a/meta/recipes-support/iso-codes/iso-codes_4.15.0.bb
+++ b/meta/recipes-support/iso-codes/iso-codes_4.16.0.bb
@@ -9,7 +9,7 @@ LICENSE = "LGPL-2.1-only"
 LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
 
 SRC_URI = 
"git://salsa.debian.org/iso-codes-team/iso-codes.git;protocol=https;branch=main;"
-SRCREV = "69ba16daef3c5c5e3c18f2d919e25296a4b946be"
+SRCREV = "c2fcaadc832ed9f858950a43994973442d85ef4f"
 
 # inherit gettext cannot be used, because it adds gettext-native to 
BASEDEPENDS which
 # are inhibited by allarch
-- 
2.42.0

packages/all-poky-linux/iso-codes/iso-codes-locale-he: PKGSIZE changed from 
81194 to 90579 (+12%)
packages/all-poky-linux/iso-codes/iso-codes-locale-hy: FILELIST: added 
"/usr/share/locale/hy/LC_MESSAGES/iso_639-2.mo 
/usr/share/locale/hy/LC_MESSAGES/iso_639.mo"
packages/all-poky-linux/iso-codes/iso-codes-locale-hy: PKGSIZE changed from 
34054 to 63315 (+86%)
packages/all-poky-linux/iso-codes/iso-codes-locale-km: FILELIST: added 
"/usr/share/locale/km/LC_MESSAGES/iso_3166_2.mo 
/usr/share/locale/km/LC_MESSAGES/iso_3166-2.mo 
/usr/share/locale/km/LC_MESSAGES/iso_4217.mo"
packages/all-poky-linux/iso-codes/iso-codes-locale-km: PKGSIZE changed from 
39888 to 46145 (+16%)
packages/all-poky-linux/iso-codes/iso-codes-locale-lt: FILELIST: added 
"/usr/share/locale/lt/LC_MESSAGES/iso_639_5.mo 
/usr/share/locale/lt/LC_MESSAGES/iso_639-5.mo"
packages/all-poky-linux/iso-codes/iso-codes-locale-nb-no: FILELIST: added 
"/usr/share/locale/nb_NO/LC_MESSAGES/iso_3166-1.mo 
/usr/share/locale/nb_NO/LC_MESSAGES/iso_3166-3.mo 
/usr/share/locale/nb_NO/LC_MESSAGES/iso_639_3.mo 
/usr/share/locale/nb_NO/LC_MESSAGES/iso_639-2.mo 
/usr/share/locale/nb_NO/LC_MESSAGES/iso_639.mo 
/usr/share/locale/nb_NO/LC_MESSAGES/iso_4217.mo 
/usr/share/locale/nb_NO/LC_MESSAGES/iso_639-3.mo 
/usr/share/locale/nb_NO/LC_MESSAGES/iso_3166.mo 
/usr/share/locale/nb_NO/LC_MESSAGES/iso_15924.mo"
packages/all-poky-linux/iso-codes/iso-codes-locale-nb-no: PKGSIZE changed from 
2556 to 54247 (+2022%)
packages/all-poky-linux/iso-codes/iso-codes-locale-ro-md: FILELIST: added 
"/usr/share/locale/ro_MD/LC_MESSAGES/iso_3166.mo 
/usr/share/locale/ro_MD/LC_MESSAGES/iso_3166-1.mo"
packages/all-poky-linux/iso-codes/iso-codes-locale-ro-md: PKGSIZE changed from 
681 to 2473 (+263%)
packages/all-poky-linux/iso-codes/iso-codes-locale-ro: FILELIST: added 
"/usr/share/locale/ro/LC_MESSAGES/iso_639_5.mo 
/usr/share/locale/ro/LC_MESSAGES/iso_639-5.mo"
packages/all-poky-linux/iso-codes/iso-codes-locale-ro: PKGSIZE changed from 
102871 to 322751 (+214%)
packages/all-poky-linux/iso-codes/iso-codes-locale-ta: FILELIST: added 
"/usr/share/locale/ta/LC_MESSAGES/iso_3166-2.mo 
/usr/share/locale/ta/LC_MESSAGES/iso_3166_2.mo 
/usr/share/locale/ta/LC_MESSAGES/iso_4217.mo 
/usr/share/locale/ta/LC_MESSAGES/iso_15924.mo 
/usr/share/locale/ta/LC_MESSAGES/iso_639_5.mo 
/usr/share/locale/ta/LC_MESSAGES/iso_639-5.mo"
packages/all-poky-linux/iso-codes: PACKAGES: removed "iso-codes-locale-mo 
iso-codes-locale-nb"


0001-iso-codes-upgrade-4.15.0-4.16.0.patch
Description: Binary data
packages/all-poky-linux/iso-codes/iso-codes-dbg: PV changed from "4.15.0" to 
"4.16.0"
packages/all-poky-linux/iso-codes/iso-codes-dbg: PKGV changed from 4.15.0 
[default] to 4.16.0 [default]

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

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

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

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

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

Regards,
The Upgrade Helper

-- >8 --
>From 1522bab13399cf909ea751e2c78fb537718cce2f Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 13:03:01 +
Subject: [PATCH] libxrandr: upgrade 1.5.3 -> 1.5.4

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

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

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


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

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

2024-01-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 
*7a93ae5d3c90cb5d1d8d775a8cd9d30bc745f658* 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 e53e8d6982c045a9a5ee01f341b529a0e6aa876e Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 13:55:38 +
Subject: [PATCH] puzzles: upgrade to latest revision

---
 meta/recipes-sato/puzzles/puzzles_git.bb | 23 +--
 1 file changed, 21 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-sato/puzzles/puzzles_git.bb 
b/meta/recipes-sato/puzzles/puzzles_git.bb
index ab4b2394b8..6101635f56 100644
--- a/meta/recipes-sato/puzzles/puzzles_git.bb
+++ b/meta/recipes-sato/puzzles/puzzles_git.bb
@@ -1,8 +1,27 @@
+# FIXME: the LIC_FILES_CHKSUM values have been updated by 'devtool upgrade'.
+# The following is the difference between the old and the new license text.
+# Please update the LICENSE value if needed, and summarize the changes in
+# the commit message via 'License-Update:' tag.
+# (example: 'License-Update: copyright years updated.')
+#
+# The changes:
+#
+# --- LICENCE
+# +++ LICENCE
+# @@ -1,4 +1,4 @@
+# -This software is copyright (c) 2004-2023 Simon Tatham.
+# +This software is copyright (c) 2004-2024 Simon Tatham.
+#  
+#  Portions copyright Richard Boulton, James Harvey, Mike Pinna, Jonas
+#  Kölker, Dariusz Olszewski, Michael Schierl, Lambros Lambrou, Bernd
+# 
+#
+
 SUMMARY = "Simon Tatham's Portable Puzzle Collection"
 DESCRIPTION = "Collection of small computer programs which implement 
one-player puzzle games."
 HOMEPAGE = "http://www.chiark.greenend.org.uk/~sgtatham/puzzles/;
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENCE;md5=92d2b7a2fc96b5f7f17101df7db1fefa"
+LIC_FILES_CHKSUM = "file://LICENCE;md5=191542b32377bde254e9799e0a46f18b"
 
 # gtk support includes a bunch of x11 headers
 REQUIRED_DISTRO_FEATURES = "x11"
@@ -10,7 +29,7 @@ REQUIRED_DISTRO_FEATURES = "x11"
 SRC_URI = "git://git.tartarus.org/simon/puzzles.git;branch=main;protocol=https"
 
 UPSTREAM_CHECK_COMMITS = "1"
-SRCREV = "08365fb260ae6e32442dd9f196e65d13facb4b33"
+SRCREV = "7a93ae5d3c90cb5d1d8d775a8cd9d30bc745f658"
 PE = "2"
 PV = "0.0+git"
 
-- 
2.42.0

NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1850 entries from dependency cache.
Parsing recipes...done.
Parsing of 914 .bb files complete (913 cached, 1 parsed). 1850 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 407 Local 395 Mirrors 0 Missed 12 Current 650 (97% 
match, 98% complete)
Removing 10 stale sstate objects for arch core2-64...done.
Removing 1 stale sstate objects for arch qemux86_64...done.
NOTE: Executing Tasks
NOTE: Setscene tasks completed
NOTE: Running task 2580 of 2921 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-sato/puzzles/puzzles_git.bb:do_fetch)
NOTE: recipe puzzles-2_0.0+git-r0: task do_fetch: Started
NOTE: recipe puzzles-2_0.0+git-r0: task do_fetch: Succeeded
NOTE: Running task 2902 of 2921 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-sato/puzzles/puzzles_git.bb:do_unpack)
NOTE: Running task 2903 of 2921 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-sato/puzzles/puzzles_git.bb:do_prepare_recipe_sysroot)
NOTE: recipe puzzles-2_0.0+git-r0: task do_unpack: Started
NOTE: recipe puzzles-2_0.0+git-r0: task do_prepare_recipe_sysroot: Started
NOTE: recipe puzzles-2_0.0+git-r0: task do_prepare_recipe_sysroot: Succeeded
NOTE: recipe puzzles-2_0.0+git-r0: task do_unpack: 

[OE-core] [AUH] mpg123: upgrading to 1.32.4 SUCCEEDED

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

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

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

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

Regards,
The Upgrade Helper

-- >8 --
>From 37c01a4e0d42f57fa2dc15eb9d8ae60043a95ff4 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 13:34:56 +
Subject: [PATCH] mpg123: upgrade 1.32.3 -> 1.32.4

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

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



0001-mpg123-upgrade-1.32.3-1.32.4.patch
Description: Binary data
packages/core2-64-poky-linux/mpg123/mpg123: FILELIST: removed 
"/usr/lib/libmpg123.so.0.48.1 /usr/lib/libsyn123.so.0.2.2 
/usr/lib/libout123.so.0.5.0", added "/usr/lib/libmpg123.so.0.48.2 
/usr/lib/libout123.so.0.5.1 /usr/lib/libsyn123.so.0.2.3"
Changes to packages/core2-64-poky-linux/mpg123 (sysroot):
  /usr/lib/libmpg123.so.0 changed symlink target from libmpg123.so.0.48.1 to 
libmpg123.so.0.48.2
  /usr/lib/libmpg123.so changed symlink target from libmpg123.so.0.48.1 to 
libmpg123.so.0.48.2
  /usr/lib/libout123.so.0 changed symlink target from libout123.so.0.5.0 to 
libout123.so.0.5.1
  /usr/lib/libout123.so changed symlink target from libout123.so.0.5.0 to 
libout123.so.0.5.1
  /usr/lib/libsyn123.so.0 changed symlink target from libsyn123.so.0.2.2 to 
libsyn123.so.0.2.3
  /usr/lib/libsyn123.so changed symlink target from libsyn123.so.0.2.2 to 
libsyn123.so.0.2.3
  /usr/lib/libmpg123.so.0.48.1 moved to /usr/lib/libmpg123.so.0.48.2
  /usr/lib/libout123.so.0.5.0 moved to /usr/lib/libout123.so.0.5.1
  /usr/lib/libsyn123.so.0.2.2 moved to /usr/lib/libsyn123.so.0.2.3
packages/core2-64-poky-linux/mpg123: PV changed from "1.32.3" to "1.32.4"
packages/core2-64-poky-linux/mpg123: SRC_URI changed from 
"https://www.mpg123.de/download/mpg123-1.32.3.tar.bz2; to 
"https://www.mpg123.de/download/mpg123-1.32.4.tar.bz2;
packages/core2-64-poky-linux/mpg123: PKGV changed from 1.32.3 [default] to 
1.32.4 [default]
packages/core2-64-poky-linux/mpg123/mpg123-dbg: PKGSIZE changed from 2301544 to 
2302520 (+0%)
packages/core2-64-poky-linux/mpg123/mpg123-dbg: PV changed from "1.32.3" to 
"1.32.4"
packages/core2-64-poky-linux/mpg123/mpg123-dbg: PKGV changed from 1.32.3 
[default] to 1.32.4 [default]
packages/core2-64-poky-linux/mpg123/mpg123-dbg: FILELIST: removed 
"/usr/lib/.debug/libmpg123.so.0.48.1 /usr/lib/.debug/libout123.so.0.5.0 
/usr/lib/.debug/libsyn123.so.0.2.2", added "/usr/lib/.debug/libmpg123.so.0.48.2 
/usr/lib/.debug/libout123.so.0.5.1 /usr/lib/.debug/libsyn123.so.0.2.3"
packages/core2-64-poky-linux/mpg123/mpg123-dev: PV changed from "1.32.3" to 
"1.32.4"
packages/core2-64-poky-linux/mpg123/mpg123-dev: PKGV changed from 1.32.3 
[default] to 1.32.4 [default]
packages/core2-64-poky-linux/mpg123/mpg123-doc: PV changed from "1.32.3" to 
"1.32.4"
packages/core2-64-poky-linux/mpg123/mpg123-doc: PKGV changed from 1.32.3 
[default] to 1.32.4 [default]
packages/core2-64-poky-linux/mpg123/mpg123-locale: PV changed from "1.32.3" to 
"1.32.4"
packages/core2-64-poky-linux/mpg123/mpg123-locale: PKGV changed from 1.32.3 
[default] to 1.32.4 [default]
packages/core2-64-poky-linux/mpg123/mpg123-src: PKGSIZE changed from 1902858 to 
1903721 (+0%)
packages/core2-64-poky-linux/mpg123/mpg123-src: PV changed from "1.32.3" 

[OE-core] [AUH] pulseaudio: upgrading to 17.0 FAILED

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-pulseaudio-upgrade-16.1-17.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 b83578a59c8ee71b8e44ba17ed827579bcc3e131 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 13:47:27 +
Subject: [PATCH] pulseaudio: upgrade 16.1 -> 17.0

---
 ...nt-conf-Add-allow-autospawn-for-root.patch | 24 +--
 ...ild-remove-dependency-on-doxygen-bin.patch |  3 ++-
 ...LFAGS-to-improve-reproducibility-bui.patch | 12 --
 ...{pulseaudio_16.1.bb => pulseaudio_17.0.bb} |  2 +-
 4 files changed, 19 insertions(+), 22 deletions(-)
 rename meta/recipes-multimedia/pulseaudio/{pulseaudio_16.1.bb => 
pulseaudio_17.0.bb} (84%)

diff --git 
a/meta/recipes-multimedia/pulseaudio/pulseaudio/0001-client-conf-Add-allow-autospawn-for-root.patch
 
b/meta/recipes-multimedia/pulseaudio/pulseaudio/0001-client-conf-Add-allow-autospawn-for-root.patch
index 33f7709ae4..b31b05a4a3 100644
--- 
a/meta/recipes-multimedia/pulseaudio/pulseaudio/0001-client-conf-Add-allow-autospawn-for-root.patch
+++ 
b/meta/recipes-multimedia/pulseaudio/pulseaudio/0001-client-conf-Add-allow-autospawn-for-root.patch
@@ -1,4 +1,4 @@
-From babec3a50dd710d26b72f6c6d43bd79b04e954a6 Mon Sep 17 00:00:00 2001
+From 2ed92d21a27395f5a21db05ddb0d0cc77cc5abc5 Mon Sep 17 00:00:00 2001
 From: Tanu Kaskinen 
 Date: Tue, 28 Apr 2015 14:32:43 +0300
 Subject: [PATCH] client-conf: Add allow-autospawn-for-root
@@ -15,6 +15,7 @@ that use case. If someone can prove otherwise, the patch would
 probably be accepted.]
 
 Signed-off-by: Tanu Kaskinen 
+
 ---
  man/pulse-client.conf.5.xml.in | 9 +
  src/pulse/client-conf.c| 1 +
@@ -24,13 +25,14 @@ Signed-off-by: Tanu Kaskinen 
  5 files changed, 13 insertions(+), 1 deletion(-)
 
 diff --git a/man/pulse-client.conf.5.xml.in b/man/pulse-client.conf.5.xml.in
-index b88898c..e737c96 100644
+index 15f8776..9e3e706 100644
 --- a/man/pulse-client.conf.5.xml.in
 +++ b/man/pulse-client.conf.5.xml.in
-@@ -82,6 +82,15 @@ License along with PulseAudio; if not, see 
.
+@@ -90,6 +90,15 @@ License along with PulseAudio; if not, see 
.
+   disable the unit with the "disable" command).
  
  
- 
++
 +  allow-autospawn-for-root= Allow autospawning also for 
root.
 +  Takes a boolean value, defaults to no. If the autospawn
 +   option is disabled, this option has no effect. Autospawning for
@@ -39,15 +41,14 @@ index b88898c..e737c96 100644
 +  enabled only in environments where there are no regular users at 
all.
 +
 +
-+
+ 
daemon-binary= Path to the PulseAudio daemon to
run when autospawning. Defaults to a path configured at compile
-   time.
 diff --git a/src/pulse/client-conf.c b/src/pulse/client-conf.c
-index a3c9486..9f68ee5 100644
+index 1daaf91..fd8a87d 100644
 --- a/src/pulse/client-conf.c
 +++ b/src/pulse/client-conf.c
-@@ -138,6 +138,7 @@ void pa_client_conf_load(pa_client_conf *c, bool 
load_from_x11, bool load_from_e
+@@ -139,6 +139,7 @@ void pa_client_conf_load(pa_client_conf *c, bool 
load_from_x11, bool load_from_e
  { "default-server", pa_config_parse_string,   
>default_server, NULL },
  { "default-dbus-server",pa_config_parse_string,   
>default_dbus_server, NULL },
  { "autospawn",  pa_config_parse_bool, >autospawn, 
NULL },
@@ -80,10 +81,10 @@ index 26b7790..69830ef 100644
  ; extra-arguments = --log-target=syslog
  
 diff --git a/src/pulse/context.c b/src/pulse/context.c
-index 69be5f4..d6e13e8 100644
+index e535d04..963208e 100644
 --- a/src/pulse/context.c
 +++ b/src/pulse/context.c
-@@ -1027,7 +1027,7 @@ int pa_context_connect(
+@@ -1052,7 +1052,7 @@ int pa_context_connect(
  if (!(flags & PA_CONTEXT_NOAUTOSPAWN) && c->conf->autospawn) {
  
  #ifdef HAVE_GETUID
@@ -92,6 +93,3 @@ index 69be5f4..d6e13e8 100644
  pa_log_debug("Not doing autospawn since we are root.");
  else {
  c->do_autospawn = true;
--- 
-2.8.1
-
diff --git 

[OE-core] [AUH] virglrenderer: upgrading to 1.0.1 SUCCEEDED

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

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

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

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

Regards,
The Upgrade Helper

-- >8 --
>From 6eb4551b283fce6b619c1905db867f1891f9a00e Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 12:49:48 +
Subject: [PATCH] virglrenderer: upgrade 1.0.0 -> 1.0.1

---
 ...uild-use-python3-directly-for-python.patch |  6 +-
 ...st-Fix-undefined-behavior-with-clang.patch | 56 ---
 ...nderer_1.0.0.bb => virglrenderer_1.0.1.bb} |  3 +-
 3 files changed, 4 insertions(+), 61 deletions(-)
 delete mode 100644 
meta/recipes-graphics/virglrenderer/virglrenderer/0001-vtest-Fix-undefined-behavior-with-clang.patch
 rename meta/recipes-graphics/virglrenderer/{virglrenderer_1.0.0.bb => 
virglrenderer_1.0.1.bb} (92%)

diff --git 
a/meta/recipes-graphics/virglrenderer/virglrenderer/0001-meson.build-use-python3-directly-for-python.patch
 
b/meta/recipes-graphics/virglrenderer/virglrenderer/0001-meson.build-use-python3-directly-for-python.patch
index 06379ee716..dfd5438e57 100644
--- 
a/meta/recipes-graphics/virglrenderer/virglrenderer/0001-meson.build-use-python3-directly-for-python.patch
+++ 
b/meta/recipes-graphics/virglrenderer/virglrenderer/0001-meson.build-use-python3-directly-for-python.patch
@@ -1,4 +1,4 @@
-From 2afe24fc95dbb89e99df29ccbe73afa835f58202 Mon Sep 17 00:00:00 2001
+From a961f8df2a2fb7cd01c68c3898073c5654de0a3b Mon Sep 17 00:00:00 2001
 From: Alexander Kanavin 
 Date: Mon, 6 Jan 2020 12:44:42 +0100
 Subject: [PATCH] meson.build: use 'python3' directly for python
@@ -14,10 +14,10 @@ Signed-off-by: Alexander Kanavin 
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/meson.build b/meson.build
-index de6d16b5..79cedbf6 100644
+index 9f91ff2f..2391f89d 100644
 --- a/meson.build
 +++ b/meson.build
-@@ -68,7 +68,7 @@ flags = [
+@@ -74,7 +74,7 @@ flags = [
  
  add_project_arguments(cc.get_supported_arguments(flags), language : 'c')
  
diff --git 
a/meta/recipes-graphics/virglrenderer/virglrenderer/0001-vtest-Fix-undefined-behavior-with-clang.patch
 
b/meta/recipes-graphics/virglrenderer/virglrenderer/0001-vtest-Fix-undefined-behavior-with-clang.patch
deleted file mode 100644
index 48488d7be1..00
--- 
a/meta/recipes-graphics/virglrenderer/virglrenderer/0001-vtest-Fix-undefined-behavior-with-clang.patch
+++ /dev/null
@@ -1,56 +0,0 @@
-From ea328b246d093477cf26a68b42e975aaaef6abad Mon Sep 17 00:00:00 2001
-From: Khem Raj 
-Date: Tue, 28 Nov 2023 21:55:36 -0800
-Subject: [PATCH] vtest: Fix undefined behavior with clang
-
-This is seen when compiling with CC="clang -D_FORTIFY_SOURCE=2"
-Move #ifdef outside of printf() call.
-
-Fixes
-
-| ../git/vtest/vtest_server.c:244:2: error: embedding a directive within macro 
arguments has undefined behavior [-Werror,-Wembedded-directive]
-|   244 | #ifdef ENABLE_VENUS
-|   |  ^
-| ../git/vtest/vtest_server.c:246:2: error: embedding a directive within macro 
arguments has undefined behavior [-Werror,-Wembedded-directive]
-|   246 | #endif
-|   |  ^
-
-Upstream-Status: Submitted 
[https://gitlab.freedesktop.org/virgl/virglrenderer/-/merge_requests/1309]
-Signed-off-by: Khem Raj 

- vtest/vtest_server.c | 12 
- 1 file changed, 8 insertions(+), 4 deletions(-)
-
-diff --git a/vtest/vtest_server.c b/vtest/vtest_server.c
-index 1ca7f74f..93d949d7 100644
 a/vtest/vtest_server.c
-+++ b/vtest/vtest_server.c
-@@ -197,6 +197,12 @@ static void vtest_server_parse_args(int argc, char **argv)
-/* getopt_long stores the option index here. */
-int option_index = 0;
- 
-+#ifdef ENABLE_VENUS
-+   char* ven = " [--venus]";
-+#else
-+   char* ven = "";
-+#endif
-+
-do {
-   ret = getopt_long(argc, argv, "", long_options, _index);
- 
-@@ -244,10 +250,8 @@ static void vtest_server_parse_args(int argc, char **argv)
-  printf("Usage: %s [--no-fork] [--no-loop-or-fork] [--multi-clients] "
- "[--use-glx] [--use-egl-surfaceless] [--use-gles] 
[--no-virgl]"
- "[--rendernode ] [--socket-path ] "
--#ifdef ENABLE_VENUS
--" [--venus]"
--#endif
--" [file]\n", argv[0]);

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

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

Next steps:
- apply the patch: git am 0001-debianutils-upgrade-5.15-5.16.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 4788310a174a7e024c7964d175d71bb26ec894d2 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 16:49:25 +
Subject: [PATCH] debianutils: upgrade 5.15 -> 5.16

---
 .../debianutils/{debianutils_5.15.bb => debianutils_5.16.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-support/debianutils/{debianutils_5.15.bb => 
debianutils_5.16.bb} (97%)

diff --git a/meta/recipes-support/debianutils/debianutils_5.15.bb 
b/meta/recipes-support/debianutils/debianutils_5.16.bb
similarity index 97%
rename from meta/recipes-support/debianutils/debianutils_5.15.bb
rename to meta/recipes-support/debianutils/debianutils_5.16.bb
index b1368a3b2e..ec629d8b73 100644
--- a/meta/recipes-support/debianutils/debianutils_5.15.bb
+++ b/meta/recipes-support/debianutils/debianutils_5.16.bb
@@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = 
"file://debian/copyright;md5=4b667f30411d21bc8fd7db85d502a8e9
 SRC_URI = 
"git://salsa.debian.org/debian/debianutils.git;protocol=https;branch=master \
"
 
-SRCREV = "d886c15810b58e57411048f57d7fb941a6819987"
+SRCREV = "9e0facf19b17b6d090a5dcc8cacb0c16e5ad9f72"
 
 inherit autotools update-alternatives
 
-- 
2.42.0



0001-debianutils-upgrade-5.15-5.16.patch
Description: Binary data
packages/core2-64-poky-linux/debianutils/debianutils-dbg: PKGV changed from 
5.15 [default] to 5.16 [default]
packages/core2-64-poky-linux/debianutils/debianutils-dbg: PV changed from 
"5.15" to "5.16"
packages/core2-64-poky-linux/debianutils/debianutils-dev: PKGV changed from 
5.15 [default] to 5.16 [default]
packages/core2-64-poky-linux/debianutils/debianutils-dev: PV changed from 
"5.15" to "5.16"
packages/core2-64-poky-linux/debianutils/debianutils-doc: PKGV changed from 
5.15 [default] to 5.16 [default]
packages/core2-64-poky-linux/debianutils/debianutils-doc: PV changed from 
"5.15" to "5.16"
packages/core2-64-poky-linux/debianutils/debianutils-locale: PKGV changed from 
5.15 [default] to 5.16 [default]
packages/core2-64-poky-linux/debianutils/debianutils-locale: PV changed from 
"5.15" to "5.16"
packages/core2-64-poky-linux/debianutils/debianutils-run-parts: PKGV changed 
from 5.15 [default] to 5.16 [default]
packages/core2-64-poky-linux/debianutils/debianutils-run-parts: PV changed from 
"5.15" to "5.16"
packages/core2-64-poky-linux/debianutils/debianutils-src: PKGV changed from 
5.15 [default] to 5.16 [default]
packages/core2-64-poky-linux/debianutils/debianutils-src: PV changed from 
"5.15" to "5.16"
packages/core2-64-poky-linux/debianutils/debianutils-staticdev: PKGV changed 
from 5.15 [default] to 5.16 [default]
packages/core2-64-poky-linux/debianutils/debianutils-staticdev: PV changed from 
"5.15" to "5.16"
packages/core2-64-poky-linux/debianutils/debianutils: PKGV changed from 5.15 
[default] to 5.16 [default]
packages/core2-64-poky-linux/debianutils/debianutils: PV changed from "5.15" to 
"5.16"
packages/core2-64-poky-linux/debianutils: PKGV changed from 5.15 [default] to 
5.16 [default]
packages/core2-64-poky-linux/debianutils: PV changed from "5.15" to "5.16"

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

2024-01-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.11* 
has Failed (devtool error).

Detailed error information:

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

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 4 Local 4 Mirrors 0 Missed 0 Current 26 (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 1850 entries from dependency cache.
Parsing recipes...done.
Parsing of 915 .bb files complete (913 cached, 2 parsed). 1851 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

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
Cloning into bare repository 
'/srv/autobuilder/autobuilder.yocto.io/current_sources/git2/git.lttng.org.lttng-modules'...
remote: Enumerating objects: 21786, done.
remote: Counting objects:   0% (1/21786)
remote: Counting objects:   1% (218/21786)
remote: Counting objects:   2% (436/21786)
remote: Counting objects:   3% (654/21786)
remote: Counting objects:   4% (872/21786)
remote: Counting objects:   5% (1090/21786)
remote: Counting objects:   6% (1308/21786)
remote: Counting objects:   7% (1526/21786)
remote: Counting objects:   8% (1743/21786)
remote: Counting objects:   9% (1961/21786)
remote: Counting objects:  10% (2179/21786)
remote: Counting objects:  11% (2397/21786)
remote: Counting objects:  12% (2615/21786)
remote: Counting objects:  13% (2833/21786)
remote: Counting objects:  14% (3051/21786)
remote: Counting objects:  15% (3268/21786)
remote: Counting objects:  16% (3486/21786)
remote: Counting objects:  17% (3704/21786)
remote: Counting objects:  18% (3922/21786)
remote: Counting objects:  19% (4140/21786)
remote: Counting objects:  20% (4358/21786)
remote: Counting objects:  21% (4576/21786)
remote: Counting objects:  22% (4793/21786)
remote: Counting objects:  23% (5011/21786)
remote: Counting objects:  24% (5229/21786)
remote: Counting objects:  25% (5447/21786)
remote: Counting objects:  26% (5665/21786)
remote: Counting objects:  27% (5883/21786)
remote: Counting objects:  28% (6101/21786)
remote: Counting objects:  29% (6318/21786)
remote: Counting objects:  30% (6536/21786)
remote: Counting objects:  31% (6754/21786)
remote: Counting objects:  32% (6972/21786)
remote: Counting objects:  33% (7190/21786)
remote: Counting objects:  34% (7408/21786)
remote: Counting objects:  35% (7626/21786)
remote: Counting objects:  36% (7843/21786)
remote: Counting objects:  37% (8061/21786)
remote: Counting objects:  38% (8279/21786)

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

2024-01-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 
*d9a6b1069f8008e83a74ae6c08fc7b0235aa2830* has Failed (devtool error).

Detailed error information:

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

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 4 Local 4 Mirrors 0 Missed 0 Current 26 (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 d9a6b1069f8008e83a74ae6c08fc7b0235aa2830
WARNING: Command 'git rebase d9a6b1069f8008e83a74ae6c08fc7b0235aa2830' 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 637a6feb
   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.
INFO: Rebasing devtool onto f55f67fd3c5a9f9208ab9e646b02ff11917fa4ce
INFO: Rebasing devtool onto 437e135dbd94eb65b45533d9ce8ee28b5bd37b6d
INFO: Rebasing devtool onto 4861c3db1ca50eb5f5767d95d1cd1bacb98ac8a5
INFO: Rebasing devtool onto a6c48261d4fb62b232c46277acbcc3d14d5b7e14
INFO: Rebasing devtool onto 8f470597d625ae28758c16b4293dd42d63e8a83a
INFO: Rebasing devtool onto fce2abd01ce21063bd25ba67c9318be83bf48813
INFO: Rebasing devtool onto 6d41bb9c557c5a0eec61ffba1f775dc5f717a8f7
INFO: Rebasing devtool onto 5a0c3d0b527bea96154998f29177f3b449cebd3a
INFO: Rebasing devtool onto c23a19c26fa9cc778f755e76799f0cafdcb5a13b
INFO: Rebasing devtool onto 6a38a0694b4d73d22c5d1e22f865d03545e808ea
INFO: Rebasing devtool onto 5e3df1cf058074145c6bc71e3e7cfc4314796b5c
INFO: Rebasing devtool onto 7e635fca68d014934b4af8a1cf874f63989352b7
WARNING: Command 'git rebase 7e635fca68d014934b4af8a1cf874f63989352b7' failed:
Auto-merging include/spdlog/details/os.h
CONFLICT (content): Merge conflict in include/spdlog/details/os.h

You will need to resolve conflicts in order to complete the upgrade.
INFO: Rebasing devtool onto 7512345f61e5f9b543ebb87df678f3fe7735587b
INFO: Rebasing devtool onto 2c2908f50515dcd939f24be261c3ccbcd277bb49
INFO: Rebasing devtool onto c0d0251e2c7f2273a894aa1b125af9313a88eae4
INFO: Rebasing devtool onto f9921aefddee2437cc2e3303d3175bd8ef23e22c
INFO: Rebasing devtool onto 623a5504a9eb9314d9c18ba36d64ef3208c215a1
INFO: Rebasing devtool onto 4f51aac14f65629dfe83702b806f740dbd7bd701
INFO: Upgraded source extracted to 
/home/pokybuild/yocto-worker/auh/build/build/workspace/sources/vulkan-samples
INFO: New recipe is 
/home/pokybuild/yocto-worker/auh/build/build/workspace/recipes/vulkan-samples/vulkan-samples_git.bb



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

Regards,
The Upgrade Helper

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

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

do_compile failed



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

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

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

Regards,
The Upgrade Helper

-- >8 --
>From d816fbc931d9e208e9698dffbbfcab11824ee97c Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 13:00:07 +
Subject: [PATCH] weston: upgrade 12.0.2 -> 13.0.0

---
 ...ools-Include-libgen.h-for-basename-signat.patch | 14 ++
 .../wayland/{weston_12.0.2.bb => weston_13.0.0.bb} |  2 +-
 2 files changed, 7 insertions(+), 9 deletions(-)
 rename meta/recipes-graphics/wayland/{weston_12.0.2.bb => weston_13.0.0.bb} 
(98%)

diff --git 
a/meta/recipes-graphics/wayland/weston/0001-libweston-tools-Include-libgen.h-for-basename-signat.patch
 
b/meta/recipes-graphics/wayland/weston/0001-libweston-tools-Include-libgen.h-for-basename-signat.patch
index 1d281fa832..70b01ea379 100644
--- 
a/meta/recipes-graphics/wayland/weston/0001-libweston-tools-Include-libgen.h-for-basename-signat.patch
+++ 
b/meta/recipes-graphics/wayland/weston/0001-libweston-tools-Include-libgen.h-for-basename-signat.patch
@@ -1,4 +1,4 @@
-From 2b53236ac637dfa7fb0f438f7391a73f6ef92a06 Mon Sep 17 00:00:00 2001
+From 1082849aecc7f1939ebae3c96312ddb0f38af64f Mon Sep 17 00:00:00 2001
 From: Khem Raj 
 Date: Thu, 14 Dec 2023 09:13:54 -0800
 Subject: [PATCH] libweston,tools: Include libgen.h for basename signature
@@ -14,13 +14,14 @@ Clang-17+ as it treats -Wimplicit-function-declaration as 
error
 
 Upstream-Status: Submitted 
[https://gitlab.freedesktop.org/wayland/weston/-/merge_requests/1420]
 Signed-off-by: Khem Raj 
+
 ---
  libweston/backend-drm/libbacklight.c | 1 +
  tools/zunitc/src/zunitc_impl.c   | 1 +
  2 files changed, 2 insertions(+)
 
 diff --git a/libweston/backend-drm/libbacklight.c 
b/libweston/backend-drm/libbacklight.c
-index ca7f2d68..74690fa7 100644
+index ca7f2d6..74690fa 100644
 --- a/libweston/backend-drm/libbacklight.c
 +++ b/libweston/backend-drm/libbacklight.c
 @@ -41,6 +41,7 @@
@@ -30,19 +31,16 @@ index ca7f2d68..74690fa7 100644
 +#include 
  #include 
  #include 
-
+ 
 diff --git a/tools/zunitc/src/zunitc_impl.c b/tools/zunitc/src/zunitc_impl.c
-index 18f03015..9b460fa0 100644
+index 18f0301..9b460fa 100644
 --- a/tools/zunitc/src/zunitc_impl.c
 +++ b/tools/zunitc/src/zunitc_impl.c
 @@ -27,6 +27,7 @@
-
+ 
  #include 
  #include 
 +#include 
  #include 
  #include 
  #include 
---
-2.43.0
-
diff --git a/meta/recipes-graphics/wayland/weston_12.0.2.bb 
b/meta/recipes-graphics/wayland/weston_13.0.0.bb
similarity index 98%
rename from meta/recipes-graphics/wayland/weston_12.0.2.bb
rename to meta/recipes-graphics/wayland/weston_13.0.0.bb
index cfcaaca9c7..63e1830798 100644
--- a/meta/recipes-graphics/wayland/weston_12.0.2.bb
+++ b/meta/recipes-graphics/wayland/weston_13.0.0.bb
@@ -14,7 +14,7 @@ SRC_URI = 
"https://gitlab.freedesktop.org/wayland/weston/-/releases/${PV}/downlo
file://systemd-notify.weston-start \
"
 
-SRC_URI[sha256sum] = 
"eb686a7cf00992a23b17f192fca9a887313e92c346ee35d8575196983d656b4a"
+SRC_URI[sha256sum] = 
"52ff1d4aa2394a2e416c85a338b627ce97fa71d43eb762fd4aaf145d36fc795a"
 
 UPSTREAM_CHECK_URI = "https://wayland.freedesktop.org/releases.html;
 UPSTREAM_CHECK_REGEX = "weston-(?P\d+\.\d+\.(?!9\d+)\d+)"
-- 
2.42.0

NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1851 entries from dependency cache.
Parsing recipes...done.
Parsing of 914 .bb files complete (913 cached, 1 parsed). 1850 targets, 38 
skipped, 0 masked, 0 errors.
Removing 1 recipes from the core2-64 sysroot...done.
Removing 1 recipes from the qemux86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "2.7.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-fc3e14ac6765e671f7ba65634cf52807f64d254a"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   

[OE-core] [AUH] lttng-ust: upgrading to 2.13.7 FAILED

2024-01-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-ust* to *2.13.7* has 
Failed (devtool error).

Detailed error information:

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

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 4 Local 4 Mirrors 0 Missed 0 Current 26 (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 1851 entries from dependency cache.
Parsing recipes...done.
Parsing of 915 .bb files complete (913 cached, 2 parsed). 1851 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

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://lttng.org/files/lttng-ust/lttng-ust-2.13.7.tar.bz2...
INFO: Rebasing devtool onto 1824589161899b8e72c2df418d6a5c7bbcdaf016
WARNING: Command 'git rebase 1824589161899b8e72c2df418d6a5c7bbcdaf016' failed:
Auto-merging src/python-lttngust/Makefile.am
CONFLICT (content): Merge conflict in src/python-lttngust/Makefile.am

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/lttng-ust
INFO: New recipe is 
/home/pokybuild/yocto-worker/auh/build/build/workspace/recipes/lttng-ust/lttng-ust_2.13.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 (#193770): 
https://lists.openembedded.org/g/openembedded-core/message/193770
Mute This Topic: https://lists.openembedded.org/mt/103744108/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] lsof: upgrading to 4.99.3 FAILED

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-lsof-upgrade-4.98.0-4.99.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 4855e8bafc976e826a6a26eb3c9a971e8fd24255 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 10:09:35 +
Subject: [PATCH] lsof: upgrade 4.98.0 -> 4.99.3

---
 .../lsof/files/remove-host-information.patch| 17 +
 .../lsof/{lsof_4.98.0.bb => lsof_4.99.3.bb} |  2 +-
 2 files changed, 14 insertions(+), 5 deletions(-)
 rename meta/recipes-extended/lsof/{lsof_4.98.0.bb => lsof_4.99.3.bb} (96%)

diff --git a/meta/recipes-extended/lsof/files/remove-host-information.patch 
b/meta/recipes-extended/lsof/files/remove-host-information.patch
index fb90366ffa..94efe354ed 100644
--- a/meta/recipes-extended/lsof/files/remove-host-information.patch
+++ b/meta/recipes-extended/lsof/files/remove-host-information.patch
@@ -1,3 +1,8 @@
+From 473f54b04c74b5be94807309d01a6016e79b82c4 Mon Sep 17 00:00:00 2001
+From: Ross Burton 
+Date: Wed, 30 Aug 2017 15:05:16 +0800
+Subject: [PATCH] lsof: remove host information from version.h
+
 lsof doesn't embed the username or hostname in the build if SOURCE_DATE_EPOCH 
is
 defined, but this still embeds build paths.  Delete all of the host details to
 ensure that no host information is leaked into the binary.
@@ -5,10 +10,14 @@ ensure that no host information is leaked into the binary.
 Upstream-Status: Inappropriate
 Signed-off-by: Ross Burton 
 
-diff --git a/dialects/linux/Makefile b/dialects/linux/Makefile
-index 176a4c2..ef5a633 100644
 a/dialects/linux/Makefile
-+++ b/dialects/linux/Makefile
+---
+ lib/dialects/linux/Makefile | 69 ++---
+ 1 file changed, 11 insertions(+), 58 deletions(-)
+
+diff --git a/lib/dialects/linux/Makefile b/lib/dialects/linux/Makefile
+index f8adaa6..7a79ca7 100644
+--- a/lib/dialects/linux/Makefile
 b/lib/dialects/linux/Makefile
 @@ -83,64 +83,17 @@ ${LIB}: FRC
  version.h:FRC
@echo Constructing version.h
diff --git a/meta/recipes-extended/lsof/lsof_4.98.0.bb 
b/meta/recipes-extended/lsof/lsof_4.99.3.bb
similarity index 96%
rename from meta/recipes-extended/lsof/lsof_4.98.0.bb
rename to meta/recipes-extended/lsof/lsof_4.99.3.bb
index 835ce3b8df..fadafc86dd 100644
--- a/meta/recipes-extended/lsof/lsof_4.98.0.bb
+++ b/meta/recipes-extended/lsof/lsof_4.99.3.bb
@@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=a48ac97a8550eff12395a2c0d6151510"
 
 SRC_URI = "git://github.com/lsof-org/lsof;branch=master;protocol=https \
file://remove-host-information.patch"
-SRCREV = "546eb1c9910e7c137fdff551683c35a736021e05"
+SRCREV = "2e4c7a1a9bc7258dc5b6a3ab28ebca44174279a8"
 
 S = "${WORKDIR}/git"
 
-- 
2.42.0



0001-lsof-upgrade-4.98.0-4.99.3.patch
Description: Binary data
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1850 entries from dependency cache.
Parsing recipes...done.
Parsing of 914 .bb files complete (913 cached, 1 parsed). 1850 targets, 38 
skipped, 0 masked, 0 errors.
Removing 1 recipes from the core2-64 sysroot...done.
Removing 1 recipes from the qemux86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 98 Local 87 Mirrors 0 Missed 11 Current 200 (88% match, 
96% complete)
done.
NOTE: Executing Tasks
NOTE: Running setscene task 235 of 298 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-extended/lsof/lsof_4.99.3.bb:do_recipe_qa_setscene)

[OE-core] [AUH] piglit: upgrading to f3f1b3f960611a88cb1a037114ba4724f1bf330e SUCCEEDED

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

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

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

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

Regards,
The Upgrade Helper

-- >8 --
>From 455c4a6bf8115531b55ae5a761252e7f2a489342 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 12:43:03 +
Subject: [PATCH] piglit: upgrade to latest revision

---
 ...-tests-Fix-narrowing-errors-seen-with-clang.patch |  6 ++
 ...ke-use-proper-WAYLAND_INCLUDE_DIRS-variable.patch |  8 +++-
 ...l-piglit-shader.c-do-not-hardcode-build-pat.patch | 12 +---
 meta/recipes-graphics/piglit/piglit_git.bb   |  2 +-
 4 files changed, 11 insertions(+), 17 deletions(-)

diff --git 
a/meta/recipes-graphics/piglit/piglit/0001-tests-Fix-narrowing-errors-seen-with-clang.patch
 
b/meta/recipes-graphics/piglit/piglit/0001-tests-Fix-narrowing-errors-seen-with-clang.patch
index b1bb00e052..6a159b7dc9 100644
--- 
a/meta/recipes-graphics/piglit/piglit/0001-tests-Fix-narrowing-errors-seen-with-clang.patch
+++ 
b/meta/recipes-graphics/piglit/piglit/0001-tests-Fix-narrowing-errors-seen-with-clang.patch
@@ -1,4 +1,4 @@
-From cd38c91e8c743bfc1841bcdd08e1ab18bf22f0e1 Mon Sep 17 00:00:00 2001
+From 08117c50e434a02f27a0783ffd47eec7320eeeff Mon Sep 17 00:00:00 2001
 From: Khem Raj 
 Date: Wed, 3 May 2023 21:59:43 -0700
 Subject: [PATCH] tests: Fix narrowing errors seen with clang
@@ -9,6 +9,7 @@ zer list [-Wc++11-narrowing]
 
 Upstream-Status: Submitted 
[https://gitlab.freedesktop.org/mesa/piglit/-/merge_requests/807]
 Signed-off-by: Khem Raj 
+
 ---
  .../spec/ext_framebuffer_multisample/draw-buffers-common.cpp  | 4 ++--
  tests/util/piglit-test-pattern.cpp| 4 ++--
@@ -48,6 +49,3 @@ index 43d451d6a..52ee94457 100644
glClearBufferuiv(GL_COLOR, 0, clear_color);
break;
}
--- 
-2.40.1
-
diff --git 
a/meta/recipes-graphics/piglit/piglit/0002-cmake-use-proper-WAYLAND_INCLUDE_DIRS-variable.patch
 
b/meta/recipes-graphics/piglit/piglit/0002-cmake-use-proper-WAYLAND_INCLUDE_DIRS-variable.patch
index 5d6ec368ba..58319ab693 100644
--- 
a/meta/recipes-graphics/piglit/piglit/0002-cmake-use-proper-WAYLAND_INCLUDE_DIRS-variable.patch
+++ 
b/meta/recipes-graphics/piglit/piglit/0002-cmake-use-proper-WAYLAND_INCLUDE_DIRS-variable.patch
@@ -1,4 +1,4 @@
-From 3bf1beee1ddd19bc536ff2856e04ac269d43daa2 Mon Sep 17 00:00:00 2001
+From 66459644c9a0cd19fc58e54fc13a69bb4f6ea1b6 Mon Sep 17 00:00:00 2001
 From: Pascal Bach 
 Date: Thu, 4 Oct 2018 14:43:17 +0200
 Subject: [PATCH] cmake: use proper WAYLAND_INCLUDE_DIRS variable
@@ -10,12 +10,13 @@ when cross compiling.
 Signed-off-by: Pascal Bach 
 
 Upstream-Status: Submitted [pig...@lists.freedesktop.org]
+
 ---
  tests/util/CMakeLists.txt | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/tests/util/CMakeLists.txt b/tests/util/CMakeLists.txt
-index a5f080156..a303a9f58 100644
+index 1714ab41f..3b67aa7da 100644
 --- a/tests/util/CMakeLists.txt
 +++ b/tests/util/CMakeLists.txt
 @@ -97,7 +97,7 @@ if(PIGLIT_USE_WAFFLE)
@@ -27,6 +28,3 @@ index a5f080156..a303a9f58 100644
)
endif()
if(PIGLIT_HAS_X11)
--- 
-2.11.0
-
diff --git 
a/meta/recipes-graphics/piglit/piglit/0003-tests-util-piglit-shader.c-do-not-hardcode-build-pat.patch
 
b/meta/recipes-graphics/piglit/piglit/0003-tests-util-piglit-shader.c-do-not-hardcode-build-pat.patch
index 16c7c5c803..e014f27ffa 100644
--- 
a/meta/recipes-graphics/piglit/piglit/0003-tests-util-piglit-shader.c-do-not-hardcode-build-pat.patch
+++ 
b/meta/recipes-graphics/piglit/piglit/0003-tests-util-piglit-shader.c-do-not-hardcode-build-pat.patch
@@ -1,19 +1,20 @@
-From 1c67250308a92d4991ed05d9d240090ab84accae Mon Sep 17 00:00:00 2001
+From d0e402eb15f85e3bc867cc2ca8b4ce9d0f61ef0f Mon Sep 17 00:00:00 2001
 From: Alexander Kanavin 
 Date: Tue, 10 Nov 2020 17:13:50 +
-Subject: [PATCH 2/2] tests/util/piglit-shader.c: do not hardcode build path
- into target binary
+Subject: [PATCH] tests/util/piglit-shader.c: do not hardcode build path into
+ target binary
 
 This helps reproducibilty.
 
 Upstream-Status: Inappropriate [oe-core 

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

2024-01-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.10* 
has Succeeded.

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

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

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

Regards,
The Upgrade Helper

-- >8 --
>From 37d59fb129ce03f9cc64115a0665fa70cf71d1f2 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 13:08:19 +
Subject: [PATCH] xserver-xorg: upgrade 21.1.9 -> 21.1.10

---
 ...001-Avoid-duplicate-definitions-of-IOPortBase.patch |  2 +-
 ...Bus.c-use-Intel-ddx-only-for-pre-gen4-hardwar.patch | 10 --
 ...{xserver-xorg_21.1.9.bb => xserver-xorg_21.1.10.bb} |  2 +-
 3 files changed, 6 insertions(+), 8 deletions(-)
 rename meta/recipes-graphics/xorg-xserver/{xserver-xorg_21.1.9.bb => 
xserver-xorg_21.1.10.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..21fe5267a9 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 4229fca3376e14f93f3e06bdff5ed7770d1a67c8 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
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..1ee7b40948 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 379c1122503a94fa731b46d3ef41d54a17ea9ea9 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
@@ -15,15 +15,16 @@ Upstream-Status: Pending [Debian/Fedora patch
 
https://src.fedoraproject.org/rpms/xorg-x11-server/c/ee515e44b07e37689abf48cf2fffb41578f3bc1d]
 
 Signed-off-by: California Sullivan 
+
 ---
  hw/xfree86/common/xf86pciBus.c | 18 +-
  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 +49,3 @@ index e61ae0cd4..d70c99197 100644
driverList[0] = "intel";
break;
  }
--- 
-2.14.3
-
diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xorg_21.1.9.bb 
b/meta/recipes-graphics/xorg-xserver/xserver-xorg_21.1.10.bb
similarity index 92%
rename from meta/recipes-graphics/xorg-xserver/xserver-xorg_21.1.9.bb
rename to meta/recipes-graphics/xorg-xserver/xserver-xorg_21.1.10.bb
index 43c06181e3..0a180950f5 100644
--- a/meta/recipes-graphics/xorg-xserver/xserver-xorg_21.1.9.bb
+++ b/meta/recipes-graphics/xorg-xserver/xserver-xorg_21.1.10.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] = 
"ff697be2011b4c4966b7806929e51b7a08e9d33800d505305d26d9ccde4b533a"
+SRC_URI[sha256sum] = 
"ceb0b3a2efc57ac3ccf388d3dc88b97615068639fb284d469689ae3d105611d0"
 
 # These extensions are now 

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

2024-01-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 *8.2.0* has Failed 
(devtool error).

Detailed error information:

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

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 5 Local 5 Mirrors 0 Missed 0 Current 28 (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 1851 entries from dependency cache.
Parsing recipes...done.
Parsing of 915 .bb files complete (913 cached, 2 parsed). 1851 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 6 Local 5 Mirrors 0 Missed 1 Current 22 (83% 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:00:51
Adding changed files:   1% || ETA:  0:00:46
Adding changed files:   2% || ETA:  0:00:39
Adding changed files:   2% |#   | ETA:  0:00:35
Adding changed files:   3% |#   | ETA:  0:00:32
Adding changed files:   4% |#   | ETA:  0:00:30
Adding changed files:   5% |#   | ETA:  0:00:29
Adding changed files:   5% |##  | ETA:  0:00:28
Adding changed files:   6% |##  | ETA:  0:00:27
Adding changed files:   7% |##  | ETA:  0:00:26
Adding changed files:   8% |##  | ETA:  0:00:26
Adding changed files:   8% |### | ETA:  0:00:25
Adding changed files:   9% |### | ETA:  0:00:25
Adding changed files:  10% |### | ETA:  0:00:24
Adding changed files:  11% || ETA:  0:00:24
Adding changed files:  11% || ETA:  0:00:23
Adding changed files:  12% || ETA:  0:00:23
Adding changed files:  13% || ETA:  0:00:22
Adding changed files:  14% |#   | ETA:  0:00:22
Adding changed files:  14% |#   | ETA:  0:00:22
Adding changed files:  15% |#   | ETA:  0:00:21
Adding changed files:  16% |#   | ETA:  0:00:21
Adding changed files:  17% |##  | ETA:  0:00:21
Adding changed files:  17% |##  | ETA:  0:00:20
Adding changed files:  18% |##  | ETA:  0:00:20
Adding changed files:  19% |### | ETA:  0:00:20
Adding changed files:  20% |### | ETA:  0:00:19
Adding changed files:  20% |### | ETA:  0:00:19
Adding changed files:  21% |###   

[OE-core] [AUH] python3-pycryptodomex: upgrading to 3.20.0 SUCCEEDED

2024-01-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-pycryptodomex* to 
*3.20.0* has Succeeded.

Next steps:
- apply the patch: git am 
0001-python3-pycryptodomex-upgrade-3.19.1-3.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 c4f3b38a687f8bd9e1304c6faff030bfa0ddb660 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 07:56:45 +
Subject: [PATCH] python3-pycryptodomex: upgrade 3.19.1 -> 3.20.0

---
 ...-pycryptodomex_3.19.1.bb => python3-pycryptodomex_3.20.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-pycryptodomex_3.19.1.bb => 
python3-pycryptodomex_3.20.0.bb} (69%)

diff --git a/meta/recipes-devtools/python/python3-pycryptodomex_3.19.1.bb 
b/meta/recipes-devtools/python/python3-pycryptodomex_3.20.0.bb
similarity index 69%
rename from meta/recipes-devtools/python/python3-pycryptodomex_3.19.1.bb
rename to meta/recipes-devtools/python/python3-pycryptodomex_3.20.0.bb
index d6e5c6d3ee..2673ea8326 100644
--- a/meta/recipes-devtools/python/python3-pycryptodomex_3.19.1.bb
+++ b/meta/recipes-devtools/python/python3-pycryptodomex_3.20.0.bb
@@ -1,7 +1,7 @@
 require python-pycryptodome.inc
 inherit setuptools3
 
-SRC_URI[sha256sum] = 
"0b7154aff2272962355f8941fd514104a88cb29db2d8f43a29af900d6398eb1c"
+SRC_URI[sha256sum] = 
"7a710b79baddd65b806402e14766c721aee8fb83381769c27920f26476276c1e"
 
 FILES:${PN}-tests = " \
 ${PYTHON_SITEPACKAGES_DIR}/Cryptodome/SelfTest/ \
-- 
2.42.0



0001-python3-pycryptodomex-upgrade-3.19.1-3.20.0.patch
Description: Binary data
packages/core2-64-poky-linux/python3-pycryptodomex/python3-pycryptodomex-tests: 
FILELIST: added 
"/usr/lib/python3.11/site-packages/Cryptodome/SelfTest/Hash/__pycache__/test_TurboSHAKE.cpython-311.pyc
 /usr/lib/python3.11/site-packages/Cryptodome/SelfTest/Hash/test_TurboSHAKE.py"
packages/core2-64-poky-linux/python3-pycryptodomex/python3-pycryptodomex: 
FILELIST: directory renamed 
/usr/lib/python3.11/site-packages/pycryptodomex-3.19.1.dist-info -> 
/usr/lib/python3.11/site-packages/pycryptodomex-3.20.0.dist-info, added 
"/usr/lib/python3.11/site-packages/Cryptodome/Hash/__pycache__/TurboSHAKE128.cpython-311.pyc
 
/usr/lib/python3.11/site-packages/Cryptodome/Hash/__pycache__/TurboSHAKE256.cpython-311.pyc
 /usr/lib/python3.11/site-packages/Cryptodome/Hash/TurboSHAKE128.py 
/usr/lib/python3.11/site-packages/Cryptodome/Hash/TurboSHAKE256.pyi 
/usr/lib/python3.11/site-packages/Cryptodome/Hash/TurboSHAKE128.pyi 
/usr/lib/python3.11/site-packages/Cryptodome/Hash/TurboSHAKE256.py"
Changes to packages/core2-64-poky-linux/python3-pycryptodomex (sysroot):
  /usr/lib/python3.11/site-packages/pycryptodomex-3.19.1.dist-info moved to 
/usr/lib/python3.11/site-packages/pycryptodomex-3.20.0.dist-info
  
/usr/lib/python3.11/site-packages/Cryptodome/Hash/__pycache__/TurboSHAKE128.cpython-311.pyc
 was added
  
/usr/lib/python3.11/site-packages/Cryptodome/Hash/__pycache__/TurboSHAKE256.cpython-311.pyc
 was added
  /usr/lib/python3.11/site-packages/Cryptodome/Hash/TurboSHAKE128.py was added
  /usr/lib/python3.11/site-packages/Cryptodome/Hash/TurboSHAKE128.pyi was added
  /usr/lib/python3.11/site-packages/Cryptodome/Hash/TurboSHAKE256.py was added
  /usr/lib/python3.11/site-packages/Cryptodome/Hash/TurboSHAKE256.pyi was added
  
/usr/lib/python3.11/site-packages/Cryptodome/SelfTest/Hash/__pycache__/test_TurboSHAKE.cpython-311.pyc
 was added
  /usr/lib/python3.11/site-packages/Cryptodome/SelfTest/Hash/test_TurboSHAKE.py 
was added
packages/core2-64-poky-linux/python3-pycryptodomex: PV changed from "3.19.1" to 
"3.20.0"
packages/core2-64-poky-linux/python3-pycryptodomex: SRC_URI changed from 
"https://files.pythonhosted.org/packages/source/p/pycryptodomex/pycryptodomex-3.19.1.tar.gz;downloadfilename=pycryptodomex-3.19.1.tar.gz;
 to 
"https://files.pythonhosted.org/packages/source/p/pycryptodomex/pycryptodomex-3.20.0.tar.gz;downloadfilename=pycryptodomex-3.20.0.tar.gz;
packages/core2-64-poky-linux/python3-pycryptodomex: PKGV changed from 3.19.1 
[default] to 3.20.0 [default]
packages/core2-64-poky-linux/python3-pycryptodomex/python3-pycryptodomex-dbg: 
PV changed from "3.19.1" to "3.20.0"

[OE-core] [AUH] cpio: upgrading to 2.15 SUCCEEDED

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

Next steps:
- apply the patch: git am 0001-cpio-upgrade-2.14-2.15.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 02c32b74b07a73c71465a2013c68b588a4ba9eae Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 10:03:38 +
Subject: [PATCH] cpio: upgrade 2.14 -> 2.15

---
 .../cpio/{cpio_2.14.bb => cpio_2.15.bb}   |  3 +-
 ...e-needed-header-for-major-minor-macr.patch | 48 ---
 2 files changed, 1 insertion(+), 50 deletions(-)
 rename meta/recipes-extended/cpio/{cpio_2.14.bb => cpio_2.15.bb} (94%)
 delete mode 100644 
meta/recipes-extended/cpio/files/0001-configure-Include-needed-header-for-major-minor-macr.patch

diff --git a/meta/recipes-extended/cpio/cpio_2.14.bb 
b/meta/recipes-extended/cpio/cpio_2.15.bb
similarity index 94%
rename from meta/recipes-extended/cpio/cpio_2.14.bb
rename to meta/recipes-extended/cpio/cpio_2.15.bb
index 560038d2a6..55e9add5cd 100644
--- a/meta/recipes-extended/cpio/cpio_2.14.bb
+++ b/meta/recipes-extended/cpio/cpio_2.15.bb
@@ -7,12 +7,11 @@ LICENSE = "GPL-3.0-only"
 LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949"
 
 SRC_URI = "${GNU_MIRROR}/cpio/cpio-${PV}.tar.gz \
-   
file://0001-configure-Include-needed-header-for-major-minor-macr.patch \
file://run-ptest \
file://test.sh \
"
 
-SRC_URI[sha256sum] = 
"145a340fd9d55f0b84779a44a12d5f79d77c99663967f8cfa168d7905ca52454"
+SRC_URI[sha256sum] = 
"efa50ef983137eefc0a02fdb51509d624b5e3295c980aa127ceee4183455499e"
 
 inherit autotools gettext texinfo ptest
 
diff --git 
a/meta/recipes-extended/cpio/files/0001-configure-Include-needed-header-for-major-minor-macr.patch
 
b/meta/recipes-extended/cpio/files/0001-configure-Include-needed-header-for-major-minor-macr.patch
deleted file mode 100644
index 95ece0bbf3..00
--- 
a/meta/recipes-extended/cpio/files/0001-configure-Include-needed-header-for-major-minor-macr.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-From 8179be21e664cedb2e9d238cc2f6d04965e97275 Mon Sep 17 00:00:00 2001
-From: Sergey Poznyakoff 
-Date: Thu, 11 May 2023 10:18:44 +0300
-Subject: [PATCH] configure: Include needed header for major/minor macros
-
-This helps in avoiding the warning about implicit function declaration
-which is elevated as error with newer compilers e.g. clang 16
-
-Signed-off-by: Khem Raj 
-
-Upstream-Status: Backport
-Signed-off-by: Ross Burton 

- configure.ac | 18 --
- 1 file changed, 16 insertions(+), 2 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index de479e7..c601029 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -43,8 +43,22 @@ AC_TYPE_UID_T
- AC_CHECK_TYPE(gid_t, int)
- 
- AC_HEADER_DIRENT
--AX_COMPILE_CHECK_RETTYPE([major], [0])
--AX_COMPILE_CHECK_RETTYPE([minor], [0])
-+AX_COMPILE_CHECK_RETTYPE([major], [0], [
-+#include 
-+#ifdef MAJOR_IN_MKDEV
-+# include 
-+#endif
-+#ifdef MAJOR_IN_SYSMACROS
-+# include 
-+#endif])
-+AX_COMPILE_CHECK_RETTYPE([minor], [0], [
-+#include 
-+#ifdef MAJOR_IN_MKDEV
-+# include 
-+#endif
-+#ifdef MAJOR_IN_SYSMACROS
-+# include 
-+#endif])
- 
- AC_CHECK_FUNCS([fchmod fchown])
- # This is needed for mingw build
--- 
-2.34.1
-
-- 
2.42.0

packages/core2-64-poky-linux/cpio/cpio-locale-da: PKGSIZE changed from 27611 to 
31195 (+13%)
packages/core2-64-poky-linux/cpio/cpio-locale-de: PKGSIZE changed from 30096 to 
33477 (+11%)
packages/core2-64-poky-linux/cpio/cpio-locale-ko: PKGSIZE changed from 30826 to 
34250 (+11%)
packages/core2-64-poky-linux/cpio/cpio-locale-pl: PKGSIZE changed from 29735 to 
33318 (+12%)
packages/core2-64-poky-linux/cpio/cpio-locale-ro: PKGSIZE changed from 31926 to 
35904 (+12%)
packages/core2-64-poky-linux/cpio/cpio-locale-sr: PKGSIZE changed from 37941 to 
42382 (+12%)
packages/core2-64-poky-linux/cpio/cpio-locale-zh-cn: PKGSIZE changed from 27031 
to 30119 (+11%)
packages/core2-64-poky-linux/cpio: PACKAGES: added "cpio-locale-bg"


0001-cpio-upgrade-2.14-2.15.patch
Description: Binary data
packages/core2-64-poky-linux/cpio/cpio-dbg: PKGSIZE changed from 1126048 to 
1134864 (+1%)
packages/core2-64-poky-linux/cpio/cpio-dbg: PKGV changed from 2.14 [default] to 
2.15 

[OE-core] [AUH] libsecret: upgrading to 0.21.2 SUCCEEDED

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

Next steps:
- apply the patch: git am 0001-libsecret-upgrade-0.21.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 b17bb9d77f2b8356ec9765ef50d8bcb6670d169e Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 11:58:47 +
Subject: [PATCH] libsecret: upgrade 0.21.1 -> 0.21.2

---
 .../libsecret/{libsecret_0.21.1.bb => libsecret_0.21.2.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-gnome/libsecret/{libsecret_0.21.1.bb => 
libsecret_0.21.2.bb} (91%)

diff --git a/meta/recipes-gnome/libsecret/libsecret_0.21.1.bb 
b/meta/recipes-gnome/libsecret/libsecret_0.21.2.bb
similarity index 91%
rename from meta/recipes-gnome/libsecret/libsecret_0.21.1.bb
rename to meta/recipes-gnome/libsecret/libsecret_0.21.2.bb
index f762d7c343..2d8ea952c5 100644
--- a/meta/recipes-gnome/libsecret/libsecret_0.21.1.bb
+++ b/meta/recipes-gnome/libsecret/libsecret_0.21.2.bb
@@ -13,7 +13,7 @@ inherit gnomebase gi-docgen vala gobject-introspection 
manpages
 
 DEPENDS += "glib-2.0 libgcrypt gettext-native"
 
-SRC_URI[archive.sha256sum] = 
"674f51323a5f74e4cb7e3277da68b5afddd333eca25bc9fd2d820a92972f90b1"
+SRC_URI[archive.sha256sum] = 
"e4a341496a0815e64c8d3b8fabab33d7bae7efdeab77b843669731d5b181dcee"
 
 GTKDOC_MESON_OPTION = 'gtk_doc'
 
-- 
2.42.0

packages/core2-64-poky-linux/libsecret: SRC_URI changed from 
"https://download.gnome.org/sources//libsecret/0.21/libsecret-0.21.1.tar.xz;name=archive;
 to 
"https://download.gnome.org/sources//libsecret/0.21/libsecret-0.21.2.tar.xz;name=archive;
packages/core2-64-poky-linux/libsecret: PKGV changed from 0.21.1 [default] to 
0.21.2 [default]
packages/core2-64-poky-linux/libsecret: PV changed from "0.21.1" to "0.21.2"
packages/core2-64-poky-linux/libsecret/libsecret-dbg: PKGV changed from 0.21.1 
[default] to 0.21.2 [default]
packages/core2-64-poky-linux/libsecret/libsecret-dbg: PV changed from "0.21.1" 
to "0.21.2"
packages/core2-64-poky-linux/libsecret/libsecret-dbg: PKGSIZE changed from 
1175720 to 1185384 (+1%)
packages/core2-64-poky-linux/libsecret/libsecret-dev: PKGV changed from 0.21.1 
[default] to 0.21.2 [default]
packages/core2-64-poky-linux/libsecret/libsecret-dev: PV changed from "0.21.1" 
to "0.21.2"
packages/core2-64-poky-linux/libsecret/libsecret-dev: PKGSIZE changed from 
669619 to 673348 (+1%)
packages/core2-64-poky-linux/libsecret/libsecret-doc: PKGV changed from 0.21.1 
[default] to 0.21.2 [default]
packages/core2-64-poky-linux/libsecret/libsecret-doc: PV changed from "0.21.1" 
to "0.21.2"
packages/core2-64-poky-linux/libsecret/libsecret-locale-ab: PKGV changed from 
0.21.1 [default] to 0.21.2 [default]
packages/core2-64-poky-linux/libsecret/libsecret-locale-ab: PV changed from 
"0.21.1" to "0.21.2"
packages/core2-64-poky-linux/libsecret/libsecret-locale-an: PKGV changed from 
0.21.1 [default] to 0.21.2 [default]
packages/core2-64-poky-linux/libsecret/libsecret-locale-an: PV changed from 
"0.21.1" to "0.21.2"
packages/core2-64-poky-linux/libsecret/libsecret-locale-ar: PKGV changed from 
0.21.1 [default] to 0.21.2 [default]
packages/core2-64-poky-linux/libsecret/libsecret-locale-ar: PV changed from 
"0.21.1" to "0.21.2"
packages/core2-64-poky-linux/libsecret/libsecret-locale-as: PKGV changed from 
0.21.1 [default] to 0.21.2 [default]
packages/core2-64-poky-linux/libsecret/libsecret-locale-as: PV changed from 
"0.21.1" to "0.21.2"
packages/core2-64-poky-linux/libsecret/libsecret-locale-be: PKGV changed from 
0.21.1 [default] to 0.21.2 [default]
packages/core2-64-poky-linux/libsecret/libsecret-locale-be: PV changed from 
"0.21.1" to "0.21.2"
packages/core2-64-poky-linux/libsecret/libsecret-locale-bg: PKGV changed from 
0.21.1 [default] to 0.21.2 [default]
packages/core2-64-poky-linux/libsecret/libsecret-locale-bg: PV changed from 
"0.21.1" to "0.21.2"
packages/core2-64-poky-linux/libsecret/libsecret-locale-bs: PKGV changed from 
0.21.1 [default] to 0.21.2 [default]
packages/core2-64-poky-linux/libsecret/libsecret-locale-bs: PV changed from 
"0.21.1" to "0.21.2"
packages/core2-64-poky-linux/libsecret/libsecret-locale-ca+valencia: PKGV 
changed from 0.21.1 [default] to 0.21.2 

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

2024-01-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-helloworld* to 
*1d6d2400d4027025cb8edc86a139c9c581d672f7* has Failed (devtool error).

Detailed error information:

The following devtool command failed:  upgrade go-helloworld -S 
1d6d2400d4027025cb8edc86a139c9c581d672f7
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1850 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 4 Local 4 Mirrors 0 Missed 0 Current 26 (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: Execution of 'git checkout 1d6d2400d4027025cb8edc86a139c9c581d672f7' 
failed with exit code 128:
fatal: reference is not a tree: 1d6d2400d4027025cb8edc86a139c9c581d672f7



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

Regards,
The Upgrade Helper

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



[OE-core] [AUH] python3-sphinxcontrib-applehelp: upgrading to 1.0.8 SUCCEEDED

2024-01-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-sphinxcontrib-applehelp* to *1.0.8* has Succeeded.

Next steps:
- apply the patch: git am 
0001-python3-sphinxcontrib-applehelp-upgrade-1.0.7-1.0.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 83368ac047d5e61b03877cf50049d9bff714b3b1 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 08:02:57 +
Subject: [PATCH] python3-sphinxcontrib-applehelp: upgrade 1.0.7 -> 1.0.8

---
 ...lehelp_1.0.7.bb => python3-sphinxcontrib-applehelp_1.0.8.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-sphinxcontrib-applehelp_1.0.7.bb 
=> python3-sphinxcontrib-applehelp_1.0.8.bb} (82%)

diff --git 
a/meta/recipes-devtools/python/python3-sphinxcontrib-applehelp_1.0.7.bb 
b/meta/recipes-devtools/python/python3-sphinxcontrib-applehelp_1.0.8.bb
similarity index 82%
rename from 
meta/recipes-devtools/python/python3-sphinxcontrib-applehelp_1.0.7.bb
rename to meta/recipes-devtools/python/python3-sphinxcontrib-applehelp_1.0.8.bb
index ec3670641d..6ea7c516d5 100644
--- a/meta/recipes-devtools/python/python3-sphinxcontrib-applehelp_1.0.7.bb
+++ b/meta/recipes-devtools/python/python3-sphinxcontrib-applehelp_1.0.8.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://www.sphinx-doc.org;
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=c7715857042d4c8c0105999ca0c072c5"
 
-SRC_URI[sha256sum] = 
"39fdc8d762d33b01a7d8f026a3b7d71563ea3b72787d5f00ad8465bd9d6dfbfa"
+SRC_URI[sha256sum] = 
"c40a4f96f3776c4393d933412053962fac2b84f4c99a7982ba42e09576a70619"
 
 inherit pypi python_flit_core
 
-- 
2.42.0

Changes to packages/core2-64-poky-linux/python3-sphinxcontrib-applehelp 
(sysroot):
  /usr/lib/python3.11/site-packages/sphinxcontrib_applehelp-1.0.7.dist-info 
moved to 
/usr/lib/python3.11/site-packages/sphinxcontrib_applehelp-1.0.8.dist-info
packages/core2-64-poky-linux/python3-sphinxcontrib-applehelp: SRC_URI changed 
from 
"https://files.pythonhosted.org/packages/source/s/sphinxcontrib-applehelp/sphinxcontrib_applehelp-1.0.7.tar.gz;downloadfilename=sphinxcontrib_applehelp-1.0.7.tar.gz;
 to 
"https://files.pythonhosted.org/packages/source/s/sphinxcontrib-applehelp/sphinxcontrib_applehelp-1.0.8.tar.gz;downloadfilename=sphinxcontrib_applehelp-1.0.8.tar.gz;
packages/core2-64-poky-linux/python3-sphinxcontrib-applehelp: PV changed from 
"1.0.7" to "1.0.8"
packages/core2-64-poky-linux/python3-sphinxcontrib-applehelp: PKGV changed from 
1.0.7 [default] to 1.0.8 [default]
packages/core2-64-poky-linux/python3-sphinxcontrib-applehelp/python3-sphinxcontrib-applehelp-dbg:
 PV changed from "1.0.7" to "1.0.8"
packages/core2-64-poky-linux/python3-sphinxcontrib-applehelp/python3-sphinxcontrib-applehelp-dbg:
 PKGV changed from 1.0.7 [default] to 1.0.8 [default]
packages/core2-64-poky-linux/python3-sphinxcontrib-applehelp/python3-sphinxcontrib-applehelp-dev:
 PV changed from "1.0.7" to "1.0.8"
packages/core2-64-poky-linux/python3-sphinxcontrib-applehelp/python3-sphinxcontrib-applehelp-dev:
 PKGV changed from 1.0.7 [default] to 1.0.8 [default]
packages/core2-64-poky-linux/python3-sphinxcontrib-applehelp/python3-sphinxcontrib-applehelp-doc:
 PV changed from "1.0.7" to "1.0.8"
packages/core2-64-poky-linux/python3-sphinxcontrib-applehelp/python3-sphinxcontrib-applehelp-doc:
 PKGV changed from 1.0.7 [default] to 1.0.8 [default]
packages/core2-64-poky-linux/python3-sphinxcontrib-applehelp/python3-sphinxcontrib-applehelp-locale:
 PV changed from "1.0.7" to "1.0.8"
packages/core2-64-poky-linux/python3-sphinxcontrib-applehelp/python3-sphinxcontrib-applehelp-locale:
 PKGV changed from 1.0.7 [default] to 1.0.8 [default]
packages/core2-64-poky-linux/python3-sphinxcontrib-applehelp/python3-sphinxcontrib-applehelp-src:
 PV changed from "1.0.7" to "1.0.8"
packages/core2-64-poky-linux/python3-sphinxcontrib-applehelp/python3-sphinxcontrib-applehelp-src:
 PKGV changed from 1.0.7 [default] to 1.0.8 [default]
packages/core2-64-poky-linux/python3-sphinxcontrib-applehelp/python3-sphinxcontrib-applehelp-staticdev:
 PV changed from "1.0.7" to "1.0.8"
packages/core2-64-poky-linux/python3-sphinxcontrib-applehelp/python3-sphinxcontrib-applehelp-staticdev:
 PKGV changed from 1.0.7 [default] to 

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

2024-01-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.75.0* has 
Failed (devtool error).

Detailed error information:

Running 'devtool upgrade' for recipe rust-llvm failed.
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1855 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.7.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-6af811472204f3938ee808ff624734a88e7158c2"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:6af811472204f3938ee808ff624734a88e7158c2"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 5 Local 5 Mirrors 0 Missed 0 Current 28 (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 1855 entries from dependency cache.
Parsing recipes...done.
Parsing of 915 .bb files complete (913 cached, 2 parsed). 1851 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 6 Local 5 Mirrors 0 Missed 1 Current 22 (83% 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:02:06
Adding changed files:   1% || ETA:  0:01:31
Adding changed files:   1% || ETA:  0:01:24
Adding changed files:   2% || ETA:  0:01:16
Adding changed files:   2% || ETA:  0:01:12
Adding changed files:   3% |#   | ETA:  0:01:10
Adding changed files:   3% |#   | ETA:  0:01:09
Adding changed files:   4% |#   | ETA:  0:01:08
Adding changed files:   4% |#   | ETA:  0:01:07
Adding changed files:   5% |#   | ETA:  0:01:06
Adding changed files:   6% |##  | ETA:  0:01:05
Adding changed files:   6% |##  | ETA:  0:01:04
Adding changed files:   7% |##  | ETA:  0:01:04
Adding changed files:   7% |##  | ETA:  0:01:03
Adding changed files:   8% |##  | ETA:  0:01:02
Adding changed files:   8% |### | ETA:  0:01:02
Adding changed files:   9% |### | ETA:  0:01:01
Adding changed files:   9% |### | ETA:  0:01:01
Adding changed files:  10% |### | ETA:  0:01:01
Adding changed files:  11% |### | ETA:  0:01:00
Adding changed files:  11% || ETA:  0:01:00
Adding changed files:  12% || ETA:  0:00:59
Adding changed files:  12% || ETA:  0:00:59
Adding changed files:  13% || ETA:  0:00:58
Adding changed files:  13% || ETA:  0:00:58
Adding changed files:  14% |#   | ETA:  0:00:57
Adding changed files:  14% |#   | ETA:  0:00:57
Adding changed files:  15% |#   | ETA:  

[OE-core] [AUH] kexec-tools: upgrading to 2.0.28 SUCCEEDED

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

Next steps:
- apply the patch: git am 0001-kexec-tools-upgrade-2.0.27-2.0.28.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 a1a8e7c414ec49c580d534a2c92b785a01e50dd5 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 13:11:15 +
Subject: [PATCH] kexec-tools: upgrade 2.0.27 -> 2.0.28

---
 ...xec-disabled-check-if-kaslr-seed-dtb-propert.patch |  8 +++-
 .../0001-powerpc-change-the-memory-size-limit.patch   |  3 ++-
 .../0002-purgatory-Pass-r-directly-to-linker.patch|  7 ---
 ...xec-ARM-Fix-add_buffer_phys_virt-align-issue.patch | 11 ++-
 .../kexec-tools/0005-Disable-PIE-during-link.patch|  7 ---
 .../{kexec-tools_2.0.27.bb => kexec-tools_2.0.28.bb}  |  2 +-
 6 files changed, 20 insertions(+), 18 deletions(-)
 rename meta/recipes-kernel/kexec/{kexec-tools_2.0.27.bb => 
kexec-tools_2.0.28.bb} (97%)

diff --git 
a/meta/recipes-kernel/kexec/kexec-tools/0001-arm64-kexec-disabled-check-if-kaslr-seed-dtb-propert.patch
 
b/meta/recipes-kernel/kexec/kexec-tools/0001-arm64-kexec-disabled-check-if-kaslr-seed-dtb-propert.patch
index ddc1519126..adcc3e09b0 100644
--- 
a/meta/recipes-kernel/kexec/kexec-tools/0001-arm64-kexec-disabled-check-if-kaslr-seed-dtb-propert.patch
+++ 
b/meta/recipes-kernel/kexec/kexec-tools/0001-arm64-kexec-disabled-check-if-kaslr-seed-dtb-propert.patch
@@ -1,4 +1,4 @@
-From d48ec5e1a5fb7907520dee71b1d94045486a0c29 Mon Sep 17 00:00:00 2001
+From 91855300bfda18fde0d03b82c773e7bc504555b1 Mon Sep 17 00:00:00 2001
 From: Alexander Kamensky 
 Date: Thu, 12 Nov 2020 12:56:46 -0800
 Subject: [PATCH] arm64: kexec: disabled check if kaslr-seed dtb property was
@@ -29,12 +29,13 @@ as kaslr is disabled anyway.
 
 Signed-off-by: Alexander Kamensky 
 Upstream-Status: Submitted 
[http://lists.infradead.org/pipermail/kexec/2020-November/021740.html]
+
 ---
  kexec/arch/arm64/kexec-arm64.c | 14 +-
  1 file changed, 1 insertion(+), 13 deletions(-)
 
 diff --git a/kexec/arch/arm64/kexec-arm64.c b/kexec/arch/arm64/kexec-arm64.c
-index ec6df4b..10238d9 100644
+index 4a67b0d..b208275 100644
 --- a/kexec/arch/arm64/kexec-arm64.c
 +++ b/kexec/arch/arm64/kexec-arm64.c
 @@ -503,7 +503,7 @@ static int setup_2nd_dtb(struct dtb *dtb, char 
*command_line, int on_crash)
@@ -65,6 +66,3 @@ index ec6df4b..10238d9 100644
/*
 * Invoke the getrandom system call with
 * GRND_NONBLOCK, to make sure we
--- 
-2.25.1
-
diff --git 
a/meta/recipes-kernel/kexec/kexec-tools/0001-powerpc-change-the-memory-size-limit.patch
 
b/meta/recipes-kernel/kexec/kexec-tools/0001-powerpc-change-the-memory-size-limit.patch
index 029650f35c..06c7651ff1 100644
--- 
a/meta/recipes-kernel/kexec/kexec-tools/0001-powerpc-change-the-memory-size-limit.patch
+++ 
b/meta/recipes-kernel/kexec/kexec-tools/0001-powerpc-change-the-memory-size-limit.patch
@@ -1,4 +1,4 @@
-From 211cae4b6a02a4d9d37bfcd76f3702696e095fc3 Mon Sep 17 00:00:00 2001
+From b60861420caed6abf788f380d987741f3201ac7b Mon Sep 17 00:00:00 2001
 From: Quanyang Wang 
 Date: Tue, 16 Jun 2015 12:59:57 +0800
 Subject: [PATCH] powerpc: change the memory size limit
@@ -16,6 +16,7 @@ locate_hole failed
 Upstream-Status: Pending
 
 Signed-off-by: Quanyang Wang 
+
 ---
  kexec/arch/ppc/kexec-ppc.h | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 
a/meta/recipes-kernel/kexec/kexec-tools/0002-purgatory-Pass-r-directly-to-linker.patch
 
b/meta/recipes-kernel/kexec/kexec-tools/0002-purgatory-Pass-r-directly-to-linker.patch
index 363d5da4ae..41f3b7db78 100644
--- 
a/meta/recipes-kernel/kexec/kexec-tools/0002-purgatory-Pass-r-directly-to-linker.patch
+++ 
b/meta/recipes-kernel/kexec/kexec-tools/0002-purgatory-Pass-r-directly-to-linker.patch
@@ -1,4 +1,4 @@
-From a04bcf8f683c1a5a7d015920124457ad56fb7cf0 Mon Sep 17 00:00:00 2001
+From 972deaf4dc65503bb9c48a33025014cb6a5387f7 Mon Sep 17 00:00:00 2001
 From: Khem Raj 
 Date: Mon, 7 Sep 2015 07:59:45 +
 Subject: [PATCH] purgatory: Pass -r directly to linker
@@ -10,15 +10,16 @@ unfiltered
 Signed-off-by: Khem Raj 
 
 Upstream-Status: Pending
+
 ---
  purgatory/Makefile | 2 +-
  1 file changed, 

[OE-core] [AUH] python3-sphinxcontrib-devhelp: upgrading to 1.0.6 SUCCEEDED

2024-01-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-sphinxcontrib-devhelp* to *1.0.6* has Succeeded.

Next steps:
- apply the patch: git am 
0001-python3-sphinxcontrib-devhelp-upgrade-1.0.5-1.0.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 fe58aa04a339a6e7e95ef6633e7f60bbf6f0713b Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 08:06:06 +
Subject: [PATCH] python3-sphinxcontrib-devhelp: upgrade 1.0.5 -> 1.0.6

---
 ...-devhelp_1.0.5.bb => python3-sphinxcontrib-devhelp_1.0.6.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-sphinxcontrib-devhelp_1.0.5.bb => 
python3-sphinxcontrib-devhelp_1.0.6.bb} (83%)

diff --git 
a/meta/recipes-devtools/python/python3-sphinxcontrib-devhelp_1.0.5.bb 
b/meta/recipes-devtools/python/python3-sphinxcontrib-devhelp_1.0.6.bb
similarity index 83%
rename from meta/recipes-devtools/python/python3-sphinxcontrib-devhelp_1.0.5.bb
rename to meta/recipes-devtools/python/python3-sphinxcontrib-devhelp_1.0.6.bb
index 47934bd6f5..dd7ba3dc95 100644
--- a/meta/recipes-devtools/python/python3-sphinxcontrib-devhelp_1.0.5.bb
+++ b/meta/recipes-devtools/python/python3-sphinxcontrib-devhelp_1.0.6.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://www.sphinx-doc.org;
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=fd30d9972a142c857a80c9f312e92b93"
 
-SRC_URI[sha256sum] = 
"63b41e0d38207ca40ebbeabcf4d8e51f76c03e78cd61abe118cf4435c73d4212"
+SRC_URI[sha256sum] = 
"9893fd3f90506bc4b97bdb977ceb8fbd823989f4316b28c3841ec128544372d3"
 
 PYPI_PACKAGE = "sphinxcontrib-devhelp"
 
-- 
2.42.0



0001-python3-sphinxcontrib-devhelp-upgrade-1.0.5-1.0.6.patch
Description: Binary data
Changes to packages/core2-64-poky-linux/python3-sphinxcontrib-devhelp (sysroot):
  /usr/lib/python3.11/site-packages/sphinxcontrib_devhelp-1.0.5.dist-info moved 
to /usr/lib/python3.11/site-packages/sphinxcontrib_devhelp-1.0.6.dist-info
packages/core2-64-poky-linux/python3-sphinxcontrib-devhelp: PV changed from 
"1.0.5" to "1.0.6"
packages/core2-64-poky-linux/python3-sphinxcontrib-devhelp: PKGV changed from 
1.0.5 [default] to 1.0.6 [default]
packages/core2-64-poky-linux/python3-sphinxcontrib-devhelp: SRC_URI changed 
from 
"https://files.pythonhosted.org/packages/source/s/sphinxcontrib-devhelp/sphinxcontrib_devhelp-1.0.5.tar.gz;downloadfilename=sphinxcontrib_devhelp-1.0.5.tar.gz;
 to 
"https://files.pythonhosted.org/packages/source/s/sphinxcontrib-devhelp/sphinxcontrib_devhelp-1.0.6.tar.gz;downloadfilename=sphinxcontrib_devhelp-1.0.6.tar.gz;
packages/core2-64-poky-linux/python3-sphinxcontrib-devhelp/python3-sphinxcontrib-devhelp-dbg:
 PV changed from "1.0.5" to "1.0.6"
packages/core2-64-poky-linux/python3-sphinxcontrib-devhelp/python3-sphinxcontrib-devhelp-dbg:
 PKGV changed from 1.0.5 [default] to 1.0.6 [default]
packages/core2-64-poky-linux/python3-sphinxcontrib-devhelp/python3-sphinxcontrib-devhelp-dev:
 PV changed from "1.0.5" to "1.0.6"
packages/core2-64-poky-linux/python3-sphinxcontrib-devhelp/python3-sphinxcontrib-devhelp-dev:
 PKGV changed from 1.0.5 [default] to 1.0.6 [default]
packages/core2-64-poky-linux/python3-sphinxcontrib-devhelp/python3-sphinxcontrib-devhelp-doc:
 PV changed from "1.0.5" to "1.0.6"
packages/core2-64-poky-linux/python3-sphinxcontrib-devhelp/python3-sphinxcontrib-devhelp-doc:
 PKGV changed from 1.0.5 [default] to 1.0.6 [default]
packages/core2-64-poky-linux/python3-sphinxcontrib-devhelp/python3-sphinxcontrib-devhelp-locale:
 PV changed from "1.0.5" to "1.0.6"
packages/core2-64-poky-linux/python3-sphinxcontrib-devhelp/python3-sphinxcontrib-devhelp-locale:
 PKGV changed from 1.0.5 [default] to 1.0.6 [default]
packages/core2-64-poky-linux/python3-sphinxcontrib-devhelp/python3-sphinxcontrib-devhelp-src:
 PV changed from "1.0.5" to "1.0.6"
packages/core2-64-poky-linux/python3-sphinxcontrib-devhelp/python3-sphinxcontrib-devhelp-src:
 PKGV changed from 1.0.5 [default] to 1.0.6 [default]
packages/core2-64-poky-linux/python3-sphinxcontrib-devhelp/python3-sphinxcontrib-devhelp-staticdev:
 PV changed from "1.0.5" to "1.0.6"
packages/core2-64-poky-linux/python3-sphinxcontrib-devhelp/python3-sphinxcontrib-devhelp-staticdev:
 PKGV changed from 1.0.5 [default] to 

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

2024-01-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 *74-2* has Failed 
(devtool error).

Detailed error information:

The following devtool command failed:  upgrade icu -V 74-2
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1850 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.7.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-e1464fc515ffb3a315e3b8525f240b1defc5f6e3"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:e1464fc515ffb3a315e3b8525f240b1defc5f6e3"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 6 Local 6 Mirrors 0 Missed 0 Current 27 (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 1850 entries from dependency cache.
Parsing recipes...done.
Parsing of 915 .bb files complete (913 cached, 2 parsed). 1851 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

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://github.com/unicode-org/icu/releases/download/release-74-2/icu4c-74_2-src.tgz;name=code...
INFO: Rebasing devtool onto 23452d66fec190575c7ac8c515d18a43d62a45f7
INFO: Rebasing devtool-override-class-target onto 
23452d66fec190575c7ac8c515d18a43d62a45f7
Traceback (most recent call last):
  File "/home/pokybuild/yocto-worker/auh/build/scripts/devtool", line 349, in 

ret = main()
  ^^
  File "/home/pokybuild/yocto-worker/auh/build/scripts/devtool", line 336, in 
main
ret = args.func(args, config, basepath, workspace)
  
  File "/home/pokybuild/yocto-worker/auh/build/scripts/lib/devtool/upgrade.py", 
line 582, 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 490, 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/icu/source/../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 (#193785): 
https://lists.openembedded.org/g/openembedded-core/message/193785
Mute This Topic: https://lists.openembedded.org/mt/103744123/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] gtk+3: upgrading to 3.24.39 FAILED

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

Running 'devtool upgrade' for recipe gtk+3 failed.
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1850 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.7.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-977148a3df589ab8752315a7e5e77fc83165b256"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:977148a3df589ab8752315a7e5e77fc83165b256"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 5 Local 5 Mirrors 0 Missed 0 Current 28 (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 1850 entries from dependency cache.
Parsing recipes...done.
Parsing of 915 .bb files complete (913 cached, 2 parsed). 1851 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 6 Local 5 Mirrors 0 Missed 1 Current 22 (83% 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: 2 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 
http://ftp.gnome.org/pub/gnome/sources/gtk+/3.24/gtk+-3.24.39.tar.xz...
INFO: Rebasing devtool onto 2a72bfc8fa987ccbad11b20a71d6f4fc0edae408
WARNING: Command 'git rebase 2a72bfc8fa987ccbad11b20a71d6f4fc0edae408' failed:
Auto-merging gdk/gdkdisplay.c
Auto-merging gdk/gdkgl.c
CONFLICT (content): Merge conflict in gdk/gdkgl.c
Auto-merging gdk/gdkglcontext.c
Auto-merging gdk/gdkwindow.c
Auto-merging 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/gtk+3
INFO: New recipe is 
/home/pokybuild/yocto-worker/auh/build/build/workspace/recipes/gtk+3/gtk+3_3.24.39.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 (#193742): 
https://lists.openembedded.org/g/openembedded-core/message/193742
Mute This Topic: https://lists.openembedded.org/mt/103744080/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] libtraceevent: upgrading to 1.8.2 FAILED

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

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

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 4 Local 4 Mirrors 0 Missed 0 Current 26 (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 6f6d5802f31992e7527a4c32b43a32fda6bf6bdf
WARNING: Command 'git rebase 6f6d5802f31992e7527a4c32b43a32fda6bf6bdf' failed:
Auto-merging meson.build
CONFLICT (content): Merge conflict in meson.build
Auto-merging meson_options.txt

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/libtraceevent
INFO: New recipe is 
/home/pokybuild/yocto-worker/auh/build/build/workspace/recipes/libtraceevent/libtraceevent_1.8.2.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 (#193780): 
https://lists.openembedded.org/g/openembedded-core/message/193780
Mute This Topic: https://lists.openembedded.org/mt/103744118/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] attr: upgrading to 2.5.2 FAILED

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 7 Local 4 Mirrors 0 Missed 3 Current 22 (57% match, 89% 
complete)
Removing 1 stale sstate objects for arch x86_64...done.
NOTE: Executing Tasks
WARNING: No source unpacked to S - either the attr recipe doesn't use any 
source or the correct source directory could not be determined
Log data follows:
| DEBUG: Executing python function do_unpack
| DEBUG: Executing python function base_do_unpack
| NOTE: Unpacking 
/srv/autobuilder/autobuilder.yocto.io/current_sources/attr-2.5.1.tar.gz to 
/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/attr/2.5.1/devtooltmp-zr91b77q/workdir/
| DEBUG: Searching for run-ptest in paths:
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/attr-2.5.1/poky
| /home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/attr/poky
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/files/poky
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/attr-2.5.1/
| /home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/attr/
| /home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/files/
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/attr-2.5.1/x86-64
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/attr/x86-64
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/files/x86-64
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/attr-2.5.1/
| /home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/attr/
| /home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/files/
| DEBUG: Using 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/attr/run-ptest 
for run-ptest
| NOTE: Unpacking 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/attr/run-ptest 
to 
/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/attr/2.5.1/devtooltmp-zr91b77q/workdir/
| DEBUG: Searching for 
0001-attr.c-Include-libgen.h-for-posix-version-of-basenam.patch in paths:
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/attr-2.5.1/poky
| /home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/attr/poky
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/files/poky
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/attr-2.5.1/
| /home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/attr/
| /home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/files/
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/attr-2.5.1/x86-64
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/attr/x86-64
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/files/x86-64
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/attr-2.5.1/
| /home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/attr/
| /home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/files/
| DEBUG: Using 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/attr/0001-attr.c-Include-libgen.h-for-posix-version-of-basenam.patch
 for 0001-attr.c-Include-libgen.h-for-posix-version-of-basenam.patch
| NOTE: Unpacking 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/attr/0001-attr.c-Include-libgen.h-for-posix-version-of-basenam.patch
 to 
/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/attr/2.5.1/devtooltmp-zr91b77q/workdir/
| DEBUG: Python function base_do_unpack finished
| DEBUG: Python function do_unpack finished
| DEBUG: Executing python function create_source_date_epoch_stamp
| DEBUG: Newest file found: 
/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/attr/2.5.1/devtooltmp-zr91b77q/workdir/attr-2.5.1/po/nl.po
| DEBUG: 

[OE-core] [AUH] ruby: upgrading to 3.3.0 FAILED

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

Running 'devtool upgrade' for recipe ruby failed.
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1852 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.7.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-6af811472204f3938ee808ff624734a88e7158c2"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:6af811472204f3938ee808ff624734a88e7158c2"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 4 Local 4 Mirrors 0 Missed 0 Current 26 (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 1852 entries from dependency cache.
Parsing recipes...done.
Parsing of 915 .bb files complete (913 cached, 2 parsed). 1851 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

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:   1% || ETA:  0:00:11
Adding changed files:   2% || ETA:  0:00:08
Adding changed files:   4% |#   | ETA:  0:00:07
Adding changed files:   5% |#   | ETA:  0:00:06
Adding changed files:   6% |##  | ETA:  0:00:06
Adding changed files:   8% |##  | ETA:  0:00:06
Adding changed files:   9% |### | ETA:  0:00:05
Adding changed files:  10% |### | ETA:  0:00:05
Adding changed files:  12% || ETA:  0:00:06
Adding changed files:  13% || ETA:  0:00:05
Adding changed files:  15% |#   | ETA:  0:00:05
Adding changed files:  16% |#   | ETA:  0:00:05
Adding changed files:  17% |##  | ETA:  0:00:05
Adding changed files:  19% |##  | ETA:  0:00:05
Adding changed files:  20% |### | ETA:  0:00:05
Adding changed files:  21% |### | ETA:  0:00:04
Adding changed files:  23% || ETA:  0:00:04
Adding changed files:  24% || ETA:  0:00:04
Adding changed files:  25% |#   | ETA:  0:00:04
Adding changed files:  27% |#   | ETA:  0:00:04
Adding changed files:  28% |##  | ETA:  0:00:04
Adding changed files:  30% |##  | ETA:  0:00:04
Adding changed files:  31% |### | ETA:  0:00:04
Adding changed files:  32% |### | ETA:  0:00:03
Adding changed files:  34% || ETA:  0:00:03
Adding changed files:  35% || ETA:  0:00:03
Adding changed files:  36% |#   | ETA:  0:00:03
Adding changed files:  38% |#   | ETA:  0:00:03
Adding 

[OE-core] [AUH] rpm: upgrading to 4.19.1 FAILED

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

Running 'devtool upgrade' for recipe rpm failed.
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1852 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.7.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-6af811472204f3938ee808ff624734a88e7158c2"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:6af811472204f3938ee808ff624734a88e7158c2"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 4 Local 4 Mirrors 0 Missed 0 Current 26 (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 98b301ebb44fb5cabb56fc24bc3aaa437c47c038
WARNING: Command 'git rebase 98b301ebb44fb5cabb56fc24bc3aaa437c47c038' failed:
Auto-merging python/header-py.c
CONFLICT (content): Merge conflict in python/header-py.c
Auto-merging python/rpmds-py.c
CONFLICT (content): Merge conflict in python/rpmds-py.c
CONFLICT (modify/delete): python/rpmfi-py.c deleted in HEAD and modified in 
84cda9af2 (Add bunch of deprecation/obsoletion warnings to python bindings).  
Version 84cda9af2 (Add bunch of deprecation/obsoletion warnings to python 
bindings) of python/rpmfi-py.c left in tree.
Auto-merging python/rpmmodule.c
CONFLICT (content): Merge conflict in python/rpmmodule.c
Auto-merging python/rpmts-py.c
CONFLICT (content): Merge conflict in python/rpmts-py.c

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



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

Regards,
The Upgrade Helper

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



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

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 4 Local 4 Mirrors 0 Missed 0 Current 26 (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 1850 entries from dependency cache.
Parsing recipes...done.
Parsing of 915 .bb files complete (913 cached, 2 parsed). 1851 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

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:   1% || ETA:  0:00:09
Adding changed files:   3% |#   | ETA:  0:00:06
Adding changed files:   5% |##  | ETA:  0:00:05
Adding changed files:   7% |##  | ETA:  0:00:04
Adding changed files:   9% |### | ETA:  0:00:04
Adding changed files:  11% || ETA:  0:00:04
Adding changed files:  13% || ETA:  0:00:03
Adding changed files:  14% |#   | ETA:  0:00:03
Adding changed files:  16% |##  | ETA:  0:00:03
Adding changed files:  18% |##  | ETA:  0:00:03
Adding changed files:  20% |### | ETA:  0:00:03
Adding changed files:  22% || ETA:  0:00:03
INFO: Extracting current version source...
INFO: Extracting upgraded version source...
INFO: Fetching https://ftp.gnu.org/gnu/texinfo/texinfo-7.1.tar.gz...
ERROR: Execution of 'git add -f -A 
"tp/tests/customization/res_parser/sectioning_directions_split_chapter/First-node.html"
 
"tp/tests/customization/res_parser/sectioning_directions_split_chapter/Last-node-no-description.html"
 
"tp/tests/customization/res_parser/sectioning_directions_split_chapter/Second-node.html"
 
"tp/tests/customization/res_parser/sectioning_directions_split_chapter/Third-node-unnumbered.html"
 
"tp/tests/customization/res_parser/sectioning_directions_split_chapter/between-node.html"
 
"tp/tests/customization/res_parser/sectioning_directions_split_chapter/index.html"
 
"tp/tests/customization/res_parser/sectioning_directions_split_chapter/numbered-sub.html"
 
"tp/tests/customization/res_parser/sectioning_directions_split_chapter/numbered-sub2.html"
 
"tp/tests/customization/res_parser/sectioning_directions_split_chapter/numbered-sub3.html"
 
"tp/tests/customization/res_parser/sectioning_directions_split_chapter/numbered.html"
 "tp/tests/customization/res_parser/sectioning_directio
 ns_split_chapter/sectioning.1" 

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

2024-01-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.04* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-stress-ng-upgrade-0.17.03-0.17.04.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 f813d2cc01e50eb67cbac1de5a9bda80e09f6ec6 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 10:16:13 +
Subject: [PATCH] stress-ng: upgrade 0.17.03 -> 0.17.04

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

diff --git a/meta/recipes-extended/stress-ng/stress-ng_0.17.03.bb 
b/meta/recipes-extended/stress-ng/stress-ng_0.17.04.bb
similarity index 94%
rename from meta/recipes-extended/stress-ng/stress-ng_0.17.03.bb
rename to meta/recipes-extended/stress-ng/stress-ng_0.17.04.bb
index 0da5294f31..fde51f67ac 100644
--- a/meta/recipes-extended/stress-ng/stress-ng_0.17.03.bb
+++ b/meta/recipes-extended/stress-ng/stress-ng_0.17.04.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 = "8c39f5a2d9b199189456f414afd9e536dae69d1b"
+SRCREV = "2f22ad595f067aa940cfe4f64107e10872c2f7b5"
 S = "${WORKDIR}/git"
 
 DEPENDS = "coreutils-native libbsd"
-- 
2.42.0

packages/core2-64-poky-linux/stress-ng: PV changed from "0.17.03" to "0.17.04"
packages/core2-64-poky-linux/stress-ng: PKGV changed from 0.17.03 [default] to 
0.17.04 [default]
packages/core2-64-poky-linux/stress-ng/stress-ng-bash-completion: PV changed 
from "0.17.03" to "0.17.04"
packages/core2-64-poky-linux/stress-ng/stress-ng-bash-completion: PKGV changed 
from 0.17.03 [default] to 0.17.04 [default]
packages/core2-64-poky-linux/stress-ng/stress-ng-dbg: PV changed from "0.17.03" 
to "0.17.04"
packages/core2-64-poky-linux/stress-ng/stress-ng-dbg: PKGSIZE changed from 
18461584 to 18575200 (+1%)
packages/core2-64-poky-linux/stress-ng/stress-ng-dbg: PKGV changed from 0.17.03 
[default] to 0.17.04 [default]
packages/core2-64-poky-linux/stress-ng/stress-ng-dev: PV changed from "0.17.03" 
to "0.17.04"
packages/core2-64-poky-linux/stress-ng/stress-ng-dev: PKGV changed from 0.17.03 
[default] to 0.17.04 [default]
packages/core2-64-poky-linux/stress-ng/stress-ng-doc: PV changed from "0.17.03" 
to "0.17.04"
packages/core2-64-poky-linux/stress-ng/stress-ng-doc: PKGSIZE changed from 
80754 to 81049 (+0%)
packages/core2-64-poky-linux/stress-ng/stress-ng-doc: PKGV changed from 0.17.03 
[default] to 0.17.04 [default]
packages/core2-64-poky-linux/stress-ng/stress-ng-locale: PV changed from 
"0.17.03" to "0.17.04"
packages/core2-64-poky-linux/stress-ng/stress-ng-locale: PKGV changed from 
0.17.03 [default] to 0.17.04 [default]
packages/core2-64-poky-linux/stress-ng/stress-ng-src: PV changed from "0.17.03" 
to "0.17.04"
packages/core2-64-poky-linux/stress-ng/stress-ng-src: FILELIST: removed 
"/usr/src/debug/stress-ng/0.17.03/core-shared-heap.h 
/usr/src/debug/stress-ng/0.17.03/stress-itimer.c 
/usr/src/debug/stress-ng/0.17.03/core-shared-heap.c 
/usr/src/debug/stress-ng/0.17.03/stress-sigq.c 
/usr/src/debug/stress-ng/0.17.03/stress-vm-rw.c 
/usr/src/debug/stress-ng/0.17.03/stress-full.c 
/usr/src/debug/stress-ng/0.17.03/stress-dynlib.c 
/usr/src/debug/stress-ng/0.17.03/stress-unshare.c 
/usr/src/debug/stress-ng/0.17.03/stress-sockdiag.c 
/usr/src/debug/stress-ng/0.17.03/stress-sockmany.c 
/usr/src/debug/stress-ng/0.17.03/stress-sockpair.c 
/usr/src/debug/stress-ng/0.17.03/stress-rseq.c 
/usr/src/debug/stress-ng/0.17.03/stress-fp-error.c 
/usr/src/debug/stress-ng/0.17.03/stress-sctp.c 
/usr/src/debug/stress-ng/0.17.03/core-thermal-zone.h 
/usr/src/debug/stress-ng/0.17.03/core-sched.c 
/usr/src/debug/stress-ng/0.17.03/core-numa.c 
/usr/src/debug/stress-ng/0.17.03/stress-fpunch.c 
/usr/src/debug/stress-ng/0.17.03/stress-
 sockabuse.c /usr/src/debug/stress-ng/0.17.03/core-sched.h 
/usr/src/debug/stress-ng/0.17.03/core-thermal-zone.c 
/usr/src/debug/stress-ng/0.17.03/stress-forkheavy.c 
/usr/src/debug/stress-ng/0.17.03/core-numa.h 

[OE-core] [AUH] shaderc: upgrading to 2023.8 FAILED

2024-01-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 *2023.8* has 
Failed (devtool error).

Detailed error information:

Running 'devtool upgrade' for recipe shaderc failed.
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1850 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.7.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-7ab466aa4717567524c7299716384b95f74f57bd"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:7ab466aa4717567524c7299716384b95f74f57bd"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 4 Local 4 Mirrors 0 Missed 0 Current 26 (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 e6edd6d48fa5bdd9d176794c6810fae7f8e938e1
WARNING: Command 'git rebase e6edd6d48fa5bdd9d176794c6810fae7f8e938e1' failed:
Auto-merging glslc/CMakeLists.txt
CONFLICT (content): Merge conflict in glslc/CMakeLists.txt
Auto-merging libshaderc/CMakeLists.txt
CONFLICT (content): Merge conflict in libshaderc/CMakeLists.txt
Auto-merging libshaderc/README.md
CONFLICT (content): Merge conflict in libshaderc/README.md
Auto-merging libshaderc_util/CMakeLists.txt
CONFLICT (content): Merge conflict in libshaderc_util/CMakeLists.txt

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/shaderc
INFO: New recipe is 
/home/pokybuild/yocto-worker/auh/build/build/workspace/recipes/shaderc/shaderc_2023.8.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 (#193739): 
https://lists.openembedded.org/g/openembedded-core/message/193739
Mute This Topic: https://lists.openembedded.org/mt/103744077/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [AUH] python3-sphinxcontrib-qthelp: upgrading to 1.0.7 SUCCEEDED

2024-01-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-sphinxcontrib-qthelp* 
to *1.0.7* has Succeeded.

Next steps:
- apply the patch: git am 
0001-python3-sphinxcontrib-qthelp-upgrade-1.0.6-1.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 e6d9b0a10d3034e45156d590812f52d0ca4e680f Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 08:12:25 +
Subject: [PATCH] python3-sphinxcontrib-qthelp: upgrade 1.0.6 -> 1.0.7

---
 ...ib-qthelp_1.0.6.bb => python3-sphinxcontrib-qthelp_1.0.7.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-sphinxcontrib-qthelp_1.0.6.bb => 
python3-sphinxcontrib-qthelp_1.0.7.bb} (82%)

diff --git a/meta/recipes-devtools/python/python3-sphinxcontrib-qthelp_1.0.6.bb 
b/meta/recipes-devtools/python/python3-sphinxcontrib-qthelp_1.0.7.bb
similarity index 82%
rename from meta/recipes-devtools/python/python3-sphinxcontrib-qthelp_1.0.6.bb
rename to meta/recipes-devtools/python/python3-sphinxcontrib-qthelp_1.0.7.bb
index 3538b063d6..b24f7f8e6f 100644
--- a/meta/recipes-devtools/python/python3-sphinxcontrib-qthelp_1.0.6.bb
+++ b/meta/recipes-devtools/python/python3-sphinxcontrib-qthelp_1.0.7.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "http://babel.edgewall.org/;
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=f7a83b72ea86d04827575ec0b63430eb"
 
-SRC_URI[sha256sum] = 
"62b9d1a186ab7f5ee3356d906f648cacb7a6bdb94d201ee7adf26db55092982d"
+SRC_URI[sha256sum] = 
"053dedc38823a80a7209a80860b16b722e9e0209e32fea98c90e4e6624588ed6"
 
 PYPI_PACKAGE = "sphinxcontrib-qthelp"
 
-- 
2.42.0

Changes to packages/core2-64-poky-linux/python3-sphinxcontrib-qthelp (sysroot):
  /usr/lib/python3.11/site-packages/sphinxcontrib_qthelp-1.0.6.dist-info moved 
to /usr/lib/python3.11/site-packages/sphinxcontrib_qthelp-1.0.7.dist-info
packages/core2-64-poky-linux/python3-sphinxcontrib-qthelp: SRC_URI changed from 
"https://files.pythonhosted.org/packages/source/s/sphinxcontrib-qthelp/sphinxcontrib_qthelp-1.0.6.tar.gz;downloadfilename=sphinxcontrib_qthelp-1.0.6.tar.gz;
 to 
"https://files.pythonhosted.org/packages/source/s/sphinxcontrib-qthelp/sphinxcontrib_qthelp-1.0.7.tar.gz;downloadfilename=sphinxcontrib_qthelp-1.0.7.tar.gz;
packages/core2-64-poky-linux/python3-sphinxcontrib-qthelp: PKGV changed from 
1.0.6 [default] to 1.0.7 [default]
packages/core2-64-poky-linux/python3-sphinxcontrib-qthelp: PV changed from 
"1.0.6" to "1.0.7"
packages/core2-64-poky-linux/python3-sphinxcontrib-qthelp/python3-sphinxcontrib-qthelp-dbg:
 PKGV changed from 1.0.6 [default] to 1.0.7 [default]
packages/core2-64-poky-linux/python3-sphinxcontrib-qthelp/python3-sphinxcontrib-qthelp-dbg:
 PV changed from "1.0.6" to "1.0.7"
packages/core2-64-poky-linux/python3-sphinxcontrib-qthelp/python3-sphinxcontrib-qthelp-dev:
 PKGV changed from 1.0.6 [default] to 1.0.7 [default]
packages/core2-64-poky-linux/python3-sphinxcontrib-qthelp/python3-sphinxcontrib-qthelp-dev:
 PV changed from "1.0.6" to "1.0.7"
packages/core2-64-poky-linux/python3-sphinxcontrib-qthelp/python3-sphinxcontrib-qthelp-doc:
 PKGV changed from 1.0.6 [default] to 1.0.7 [default]
packages/core2-64-poky-linux/python3-sphinxcontrib-qthelp/python3-sphinxcontrib-qthelp-doc:
 PV changed from "1.0.6" to "1.0.7"
packages/core2-64-poky-linux/python3-sphinxcontrib-qthelp/python3-sphinxcontrib-qthelp-locale:
 PKGV changed from 1.0.6 [default] to 1.0.7 [default]
packages/core2-64-poky-linux/python3-sphinxcontrib-qthelp/python3-sphinxcontrib-qthelp-locale:
 PV changed from "1.0.6" to "1.0.7"
packages/core2-64-poky-linux/python3-sphinxcontrib-qthelp/python3-sphinxcontrib-qthelp-src:
 PKGV changed from 1.0.6 [default] to 1.0.7 [default]
packages/core2-64-poky-linux/python3-sphinxcontrib-qthelp/python3-sphinxcontrib-qthelp-src:
 PV changed from "1.0.6" to "1.0.7"
packages/core2-64-poky-linux/python3-sphinxcontrib-qthelp/python3-sphinxcontrib-qthelp-staticdev:
 PKGV changed from 1.0.6 [default] to 1.0.7 [default]
packages/core2-64-poky-linux/python3-sphinxcontrib-qthelp/python3-sphinxcontrib-qthelp-staticdev:
 PV changed from "1.0.6" to "1.0.7"
packages/core2-64-poky-linux/python3-sphinxcontrib-qthelp/python3-sphinxcontrib-qthelp:
 PKGSIZE changed from 161351 to 

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

2024-01-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.75.0* has Failed 
(devtool error).

Detailed error information:

Running 'devtool upgrade' for recipe cargo failed.
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1853 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.7.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-6af811472204f3938ee808ff624734a88e7158c2"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:6af811472204f3938ee808ff624734a88e7158c2"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 5 Local 5 Mirrors 0 Missed 0 Current 28 (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 1853 entries from dependency cache.
Parsing recipes...done.
Parsing of 915 .bb files complete (913 cached, 2 parsed). 1851 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 6 Local 5 Mirrors 0 Missed 1 Current 22 (83% 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:02:13
Adding changed files:   1% || ETA:  0:01:35
Adding changed files:   1% || ETA:  0:01:25
Adding changed files:   2% || ETA:  0:01:18
Adding changed files:   2% || ETA:  0:01:14
Adding changed files:   3% |#   | ETA:  0:01:11
Adding changed files:   3% |#   | ETA:  0:01:10
Adding changed files:   4% |#   | ETA:  0:01:09
Adding changed files:   4% |#   | ETA:  0:01:07
Adding changed files:   5% |#   | ETA:  0:01:06
Adding changed files:   6% |##  | ETA:  0:01:05
Adding changed files:   6% |##  | ETA:  0:01:05
Adding changed files:   7% |##  | ETA:  0:01:04
Adding changed files:   7% |##  | ETA:  0:01:03
Adding changed files:   8% |##  | ETA:  0:01:03
Adding changed files:   8% |### | ETA:  0:01:02
Adding changed files:   9% |### | ETA:  0:01:01
Adding changed files:   9% |### | ETA:  0:01:01
Adding changed files:  10% |### | ETA:  0:01:01
Adding changed files:  11% |### | ETA:  0:01:00
Adding changed files:  11% || ETA:  0:01:00
Adding changed files:  12% || ETA:  0:00:59
Adding changed files:  12% || ETA:  0:00:59
Adding changed files:  13% || ETA:  0:00:59
Adding changed files:  13% || ETA:  0:00:58
Adding changed files:  14% |#   | ETA:  0:00:57
Adding changed files:  14% |#   | ETA:  0:00:57
Adding changed files:  15% |#   | ETA:  0:00:57

[OE-core] [AUH] linux-firmware: upgrading to 20231211 FAILED

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 
0001-linux-firmware-upgrade-20231030-20231211.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 0e6872c47beac70df864894d6d3e5f8518fa6a43 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 13:15:17 +
Subject: [PATCH] linux-firmware: upgrade 20231030 -> 20231211

---
 ...20231030.bb => linux-firmware_20231211.bb} | 508 +-
 1 file changed, 506 insertions(+), 2 deletions(-)
 rename meta/recipes-kernel/linux-firmware/{linux-firmware_20231030.bb => 
linux-firmware_20231211.bb} (79%)

diff --git a/meta/recipes-kernel/linux-firmware/linux-firmware_20231030.bb 
b/meta/recipes-kernel/linux-firmware/linux-firmware_20231211.bb
similarity index 79%
rename from meta/recipes-kernel/linux-firmware/linux-firmware_20231030.bb
rename to meta/recipes-kernel/linux-firmware/linux-firmware_20231211.bb
index b1f5247975..edc25f9b49 100644
--- a/meta/recipes-kernel/linux-firmware/linux-firmware_20231030.bb
+++ b/meta/recipes-kernel/linux-firmware/linux-firmware_20231211.bb
@@ -1,3 +1,507 @@
+# FIXME: the LIC_FILES_CHKSUM values have been updated by 'devtool upgrade'.
+# The following is the difference between the old and the new license text.
+# Please update the LICENSE value if needed, and summarize the changes in
+# the commit message via 'License-Update:' tag.
+# (example: 'License-Update: copyright years updated.')
+#
+# The changes:
+#
+# --- WHENCE
+# +++ WHENCE
+# @@ -536,14 +536,14 @@
+#  
+#  File: cxgb4/t4fw-1.14.4.0.bin
+#  File: cxgb4/t4fw-1.15.37.0.bin
+# -File: cxgb4/t4fw-1.27.4.0.bin
+# -Link: cxgb4/t4fw.bin -> t4fw-1.27.4.0.bin
+# +File: cxgb4/t4fw-1.27.5.0.bin
+# +Link: cxgb4/t4fw.bin -> t4fw-1.27.5.0.bin
+#  File: cxgb4/t5fw-1.14.4.0.bin
+#  File: cxgb4/t5fw-1.15.37.0.bin
+# -File: cxgb4/t5fw-1.27.4.0.bin
+# -Link: cxgb4/t5fw.bin -> t5fw-1.27.4.0.bin
+# -File: cxgb4/t6fw-1.27.4.0.bin
+# -Link: cxgb4/t6fw.bin -> t6fw-1.27.4.0.bin
+# +File: cxgb4/t5fw-1.27.5.0.bin
+# +Link: cxgb4/t5fw.bin -> t5fw-1.27.5.0.bin
+# +File: cxgb4/t6fw-1.27.5.0.bin
+# +Link: cxgb4/t6fw.bin -> t6fw-1.27.5.0.bin
+#  File: cxgb4/aq1202_fw.cld
+#  File: cxgb4/bcm8483.bin
+#  File: cxgb4/configs/t4-config-default.txt
+# @@ -1017,22 +1017,22 @@
+#  Version: 74.a5e9588b.0
+#  
+#  File: iwlwifi-cc-a0-77.ucode
+# -Version: 74.bd067429.0
+# +Version: 74.ad46c98b.0
+#  
+#  File: iwlwifi-Qu-b0-hr-b0-77.ucode
+# -Version: 74.bd067429.0
+# +Version: 74.ad46c98b.0
+#  
+#  File: iwlwifi-Qu-b0-jf-b0-77.ucode
+# -Version: 74.bd067429.0
+# +Version: 74.ad46c98b.0
+#  
+#  File: iwlwifi-Qu-c0-hr-b0-77.ucode
+# -Version: 74.bd067429.0
+# +Version: 74.ad46c98b.0
+#  
+#  File: iwlwifi-Qu-c0-jf-b0-77.ucode
+# -Version: 74.bd067429.0
+# +Version: 74.ad46c98b.0
+#  
+#  File: iwlwifi-QuZ-a0-hr-b0-77.ucode
+# -Version: 74.bd06742.0
+# +Version: 74.ad46c98b.0
+#  
+#  File: iwlwifi-QuZ-a0-jf-b0-77.ucode
+#  Version: 74.206b0184.0
+# @@ -1055,6 +1055,9 @@
+#  File: iwlwifi-ty-a0-gf-a0-84.ucode
+#  Version: 81.8e5c544c.0
+#  
+# +File: iwlwifi-ty-a0-gf-a0-86.ucode
+# +Version: 83.fb5c9aeb.0
+# +
+#  File: iwlwifi-so-a0-gf4-a0-77.ucode
+#  Version: 74.f92b5fed.0
+#  
+# @@ -1073,6 +1076,9 @@
+#  File: iwlwifi-so-a0-gf4-a0-84.ucode
+#  Version: 81.8e5c544c.0
+#  
+# +File: iwlwifi-so-a0-gf4-a0-86.ucode
+# +Version: 83.fb5c9aeb.0
+# +
+#  File: iwlwifi-so-a0-gf-a0-77.ucode
+#  Version: 74.f92b5fed.0
+#  
+# @@ -1091,6 +1097,9 @@
+#  File: iwlwifi-so-a0-gf-a0-84.ucode
+#  Version: 81.8e5c544c.0
+#  
+# +File: iwlwifi-so-a0-gf-a0-86.ucode
+# +Version: 83.fb5c9aeb.0
+# +
+#  File: iwlwifi-so-a0-hr-b0-77.ucode
+#  Version: 74.f92b5fed.0
+#  
+# @@ -1106,6 +1115,9 @@
+#  File: iwlwifi-so-a0-hr-b0-84.ucode
+#  Version: 81.8e5c544c.0
+#  
+# +File: iwlwifi-so-a0-hr-b0-86.ucode
+# +Version: 83.fb5c9aeb.0
+# +
+#  File: iwlwifi-so-a0-jf-b0-77.ucode
+#  Version: 74.f92b5fed.0
+#  
+# @@ -1114,20 +1126,32 @@
+#  File: iwlwifi-gl-c0-fm-c0-83.ucode
+#  Version: 80.d24e06ed.0
+#  
+# +File: iwlwifi-gl-c0-fm-c0-86.ucode
+# +Version: 83.fb5c9aeb.0
+# +
+#  File: iwlwifi-gl-c0-fm-c0.pnvm
+#  
+#  

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

2024-01-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.75.0* has 
Failed (devtool error).

Detailed error information:

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

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 5 Local 5 Mirrors 0 Missed 0 Current 28 (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 1854 entries from dependency cache.
Parsing recipes...done.
Parsing of 915 .bb files complete (913 cached, 2 parsed). 1851 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 6 Local 5 Mirrors 0 Missed 1 Current 22 (83% 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:02:04
Adding changed files:   1% || ETA:  0:01:30
Adding changed files:   1% || ETA:  0:01:23
Adding changed files:   2% || ETA:  0:01:17
Adding changed files:   2% || ETA:  0:01:13
Adding changed files:   3% |#   | ETA:  0:01:11
Adding changed files:   3% |#   | ETA:  0:01:10
Adding changed files:   4% |#   | ETA:  0:01:08
Adding changed files:   4% |#   | ETA:  0:01:07
Adding changed files:   5% |#   | ETA:  0:01:06
Adding changed files:   6% |##  | ETA:  0:01:05
Adding changed files:   6% |##  | ETA:  0:01:05
Adding changed files:   7% |##  | ETA:  0:01:04
Adding changed files:   7% |##  | ETA:  0:01:03
Adding changed files:   8% |##  | ETA:  0:01:03
Adding changed files:   8% |### | ETA:  0:01:02
Adding changed files:   9% |### | ETA:  0:01:01
Adding changed files:   9% |### | ETA:  0:01:01
Adding changed files:  10% |### | ETA:  0:01:01
Adding changed files:  11% |### | ETA:  0:01:00
Adding changed files:  11% || ETA:  0:01:00
Adding changed files:  12% || ETA:  0:00:59
Adding changed files:  12% || ETA:  0:00:59
Adding changed files:  13% || ETA:  0:00:58
Adding changed files:  13% || ETA:  0:00:58
Adding changed files:  14% |#   | ETA:  0:00:57
Adding changed files:  14% |#   | ETA:  0:00:57
Adding changed files:  15% |#   | ETA:  0:00:56
Adding changed files:  16% |#  

[OE-core] [AUH] xz: upgrading to 5.4.5 SUCCEEDED

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

Next steps:
- apply the patch: git am 0001-xz-upgrade-5.4.4-5.4.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 6b7f06e22d645166a98598dc83255529429e45af Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 10:38:39 +
Subject: [PATCH] xz: upgrade 5.4.4 -> 5.4.5

---
 meta/recipes-extended/xz/{xz_5.4.4.bb => xz_5.4.5.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-extended/xz/{xz_5.4.4.bb => xz_5.4.5.bb} (95%)

diff --git a/meta/recipes-extended/xz/xz_5.4.4.bb 
b/meta/recipes-extended/xz/xz_5.4.5.bb
similarity index 95%
rename from meta/recipes-extended/xz/xz_5.4.4.bb
rename to meta/recipes-extended/xz/xz_5.4.5.bb
index 90f4c3d82c..09eade8be0 100644
--- a/meta/recipes-extended/xz/xz_5.4.4.bb
+++ b/meta/recipes-extended/xz/xz_5.4.5.bb
@@ -25,7 +25,7 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=c8ea84ebe7b93cce676b54355dc6b2c0 \
 "
 
 SRC_URI = "https://tukaani.org/xz/xz-${PV}.tar.gz;
-SRC_URI[sha256sum] = 
"aae39544e254cfd27e942d35a048d592959bd7a79f9a624afb0498bb5613bdf8"
+SRC_URI[sha256sum] = 
"135c90b934aee8fbc0d467de87a05cb70d627da36abe518c357a873709e5b7d6"
 UPSTREAM_CHECK_REGEX = "xz-(?P\d+(\.\d+)+)\.tar"
 
 CACHED_CONFIGUREVARS += "gl_cv_posix_shell=/bin/sh"
-- 
2.42.0



0001-xz-upgrade-5.4.4-5.4.5.patch
Description: Binary data
packages/core2-64-poky-linux/xz/liblzma: FILELIST: removed 
"/usr/lib/liblzma.so.5.4.4", added "/usr/lib/liblzma.so.5.4.5"
Changes to packages/core2-64-poky-linux/xz (sysroot):
  /usr/lib/liblzma.so.5 changed symlink target from liblzma.so.5.4.4 to 
liblzma.so.5.4.5
  /usr/lib/liblzma.so changed symlink target from liblzma.so.5.4.4 to 
liblzma.so.5.4.5
  /usr/lib/liblzma.so.5.4.4 moved to /usr/lib/liblzma.so.5.4.5
Changes to packages/x86_64-linux/xz-native (sysroot):
  /usr/lib/liblzma.so.5 changed symlink target from liblzma.so.5.4.4 to 
liblzma.so.5.4.5
  /usr/lib/liblzma.so changed symlink target from liblzma.so.5.4.4 to 
liblzma.so.5.4.5
  /usr/lib/liblzma.so.5.4.4 moved to /usr/lib/liblzma.so.5.4.5
packages/core2-64-poky-linux/xz: SRC_URI changed from 
"https://tukaani.org/xz/xz-5.4.4.tar.gz; to 
"https://tukaani.org/xz/xz-5.4.5.tar.gz;
packages/core2-64-poky-linux/xz: PKGV changed from 5.4.4 [default] to 5.4.5 
[default]
packages/core2-64-poky-linux/xz: PV changed from "5.4.4" to "5.4.5"
packages/core2-64-poky-linux/xz/liblzma: PKGV changed from 5.4.4 [default] to 
5.4.5 [default]
packages/core2-64-poky-linux/xz/liblzma: FILELIST: removed 
"/usr/lib/liblzma.so.5.4.4", added "/usr/lib/liblzma.so.5.4.5"
packages/core2-64-poky-linux/xz/liblzma: PV changed from "5.4.4" to "5.4.5"
Changes to packages/core2-64-poky-linux/xz (sysroot):
  /usr/lib/liblzma.so.5 changed symlink target from liblzma.so.5.4.4 to 
liblzma.so.5.4.5
  /usr/lib/liblzma.so changed symlink target from liblzma.so.5.4.4 to 
liblzma.so.5.4.5
  /usr/lib/liblzma.so.5.4.4 moved to /usr/lib/liblzma.so.5.4.5
packages/core2-64-poky-linux/xz/xz-dbg: PKGV changed from 5.4.4 [default] to 
5.4.5 [default]
packages/core2-64-poky-linux/xz/xz-dbg: FILELIST: removed 
"/usr/lib/.debug/liblzma.so.5.4.4", added "/usr/lib/.debug/liblzma.so.5.4.5"
packages/core2-64-poky-linux/xz/xz-dbg: PKGSIZE changed from 1048912 to 1047928 
(-0%)
packages/core2-64-poky-linux/xz/xz-dbg: PV changed from "5.4.4" to "5.4.5"
packages/core2-64-poky-linux/xz/xz-dev: PKGV changed from 5.4.4 [default] to 
5.4.5 [default]
packages/core2-64-poky-linux/xz/xz-dev: PKGSIZE changed from 225642 to 225688 
(+0%)
packages/core2-64-poky-linux/xz/xz-dev: PV changed from "5.4.4" to "5.4.5"
packages/core2-64-poky-linux/xz/xz-doc: PKGV changed from 5.4.4 [default] to 
5.4.5 [default]
packages/core2-64-poky-linux/xz/xz-doc: PKGSIZE changed from 1790015 to 1792415 
(+0%)
packages/core2-64-poky-linux/xz/xz-doc: PV changed from "5.4.4" to "5.4.5"
packages/core2-64-poky-linux/xz/xz-locale-ca: PKGV changed from 5.4.4 [default] 
to 5.4.5 [default]
packages/core2-64-poky-linux/xz/xz-locale-ca: PV changed from "5.4.4" to "5.4.5"
packages/core2-64-poky-linux/xz/xz-locale-cs: PKGV changed from 5.4.4 [default] 
to 5.4.5 [default]

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

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

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

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 4 Local 4 Mirrors 0 Missed 0 Current 26 (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 580b912a30085528886603942c100c7b309b3bdb
WARNING: Command 'git rebase 580b912a30085528886603942c100c7b309b3bdb' failed:
Auto-merging meson.build
CONFLICT (content): Merge conflict in meson.build
Auto-merging src/waffle/meson.build
CONFLICT (content): Merge conflict in src/waffle/meson.build

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



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

Regards,
The Upgrade Helper

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



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

2024-01-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.75.0* has Failed 
(devtool error).

Detailed error information:

Running 'devtool upgrade' for recipe rust failed.
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1856 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.7.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-6af811472204f3938ee808ff624734a88e7158c2"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:6af811472204f3938ee808ff624734a88e7158c2"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 5 Local 5 Mirrors 0 Missed 0 Current 28 (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 1856 entries from dependency cache.
Parsing recipes...done.
Parsing of 915 .bb files complete (913 cached, 2 parsed). 1851 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 6 Local 5 Mirrors 0 Missed 1 Current 22 (83% 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:02:05
Adding changed files:   1% || ETA:  0:01:31
Adding changed files:   1% || ETA:  0:01:23
Adding changed files:   2% || ETA:  0:01:16
Adding changed files:   2% || ETA:  0:01:12
Adding changed files:   3% |#   | ETA:  0:01:10
Adding changed files:   3% |#   | ETA:  0:01:09
Adding changed files:   4% |#   | ETA:  0:01:08
Adding changed files:   4% |#   | ETA:  0:01:07
Adding changed files:   5% |#   | ETA:  0:01:06
Adding changed files:   6% |##  | ETA:  0:01:05
Adding changed files:   6% |##  | ETA:  0:01:04
Adding changed files:   7% |##  | ETA:  0:01:04
Adding changed files:   7% |##  | ETA:  0:01:03
Adding changed files:   8% |##  | ETA:  0:01:02
Adding changed files:   8% |### | ETA:  0:01:02
Adding changed files:   9% |### | ETA:  0:01:01
Adding changed files:   9% |### | ETA:  0:01:01
Adding changed files:  10% |### | ETA:  0:01:01
Adding changed files:  11% |### | ETA:  0:01:00
Adding changed files:  11% || ETA:  0:01:00
Adding changed files:  12% || ETA:  0:00:59
Adding changed files:  12% || ETA:  0:00:59
Adding changed files:  13% || ETA:  0:00:58
Adding changed files:  13% || ETA:  0:00:58
Adding changed files:  14% |#   | ETA:  0:00:57
Adding changed files:  14% |#   | ETA:  0:00:57
Adding changed files:  15% |#   | ETA:  0:00:56

[OE-core] [AUH] libtest-warnings-perl: upgrading to 0.032 SUCCEEDED

2024-01-15 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *libtest-warnings-perl* to 
*0.032* has Succeeded.

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

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

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

Regards,
The Upgrade Helper

-- >8 --
>From 0c3e8efc07ff1d895017a4c8aae053bbf5c1f012 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 06:44:44 +
Subject: [PATCH] libtest-warnings-perl: upgrade 0.031 -> 0.032

---
 .../perl/libtest-warnings-perl_0.031.bb   |  39 ---
 .../perl/libtest-warnings-perl_0.032.bb   | 286 ++
 2 files changed, 286 insertions(+), 39 deletions(-)
 delete mode 100644 meta/recipes-devtools/perl/libtest-warnings-perl_0.031.bb
 create mode 100644 meta/recipes-devtools/perl/libtest-warnings-perl_0.032.bb

diff --git a/meta/recipes-devtools/perl/libtest-warnings-perl_0.031.bb 
b/meta/recipes-devtools/perl/libtest-warnings-perl_0.031.bb
deleted file mode 100644
index e03deaf15f..00
--- a/meta/recipes-devtools/perl/libtest-warnings-perl_0.031.bb
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright (C) 2020 Jens Rehsack 
-# Released under the MIT license (see COPYING.MIT for the terms)
-
-SUMMARY = "Test::Warnings - Test for warnings and the lack of them"
-DESCRIPTION = "If you've ever tried to use Test::NoWarnings to confirm there 
are no \
-warnings generated by your tests, combined with the convenience of \
-\\"done_testing\\" to not have to declare a test count, you'll have discovered 
\
-that these two features do not play well together, as the test count will \
-be calculated *before* the warnings test is run, resulting in a TAP error. \
-(See "examples/test_nowarnings.pl" in this distribution for a \
-demonstration.)"
-HOMEPAGE = "https://github.com/karenetheridge/Test-Warnings;
-BUGTRACKER = "https://rt.cpan.org/Public/Dist/Display.html?Name=Test-Warnings;
-SECTION = "libs"
-LICENSE = "Artistic-1.0 | GPL-1.0-or-later"
-
-LIC_FILES_CHKSUM = "file://LICENCE;md5=6f2b02f39e7d359efd9525fbc56c84a1"
-
-SRC_URI = "${CPAN_MIRROR}/authors/id/E/ET/ETHER/Test-Warnings-${PV}.tar.gz"
-
-SRC_URI[sha256sum] = 
"1e542909fef305e45563e9878ea1c3b0c7cef1b28bb7ae07eba2e1efabec477b"
-
-S = "${WORKDIR}/Test-Warnings-${PV}"
-
-inherit cpan ptest-perl
-
-RDEPENDS:${PN} += "\
-perl-module-test-builder \
-"
-
-# Many hidden dependencies and mysterious failures occur without full 
perl-modules
-RDEPENDS:${PN}-ptest += "perl-modules"
-
-do_install_ptest_perl:append () {
-cp -r ${B}/t/lib ${D}${PTEST_PATH}/t/
-chown -R root:root ${D}${PTEST_PATH}/t/lib
-}
-
-BBCLASSEXTEND = "native nativesdk"
diff --git a/meta/recipes-devtools/perl/libtest-warnings-perl_0.032.bb 
b/meta/recipes-devtools/perl/libtest-warnings-perl_0.032.bb
new file mode 100644
index 00..ff199cb63b
--- /dev/null
+++ b/meta/recipes-devtools/perl/libtest-warnings-perl_0.032.bb
@@ -0,0 +1,286 @@
+# FIXME: the LIC_FILES_CHKSUM values have been updated by 'devtool upgrade'.
+# The following is the difference between the old and the new license text.
+# Please update the LICENSE value if needed, and summarize the changes in
+# the commit message via 'License-Update:' tag.
+# (example: 'License-Update: copyright years updated.')
+#
+# The changes:
+#
+# --- LICENCE
+# +++ LICENCE
+# @@ -270,110 +270,143 @@
+#  That's all there is to it!
+#  
+#  
+#  The Artistic License 1.0 ---
+# +--- The Perl Artistic License 1.0 ---
+#  
+#  This software is Copyright (c) 2013 by Karen Etheridge.
+#  
+#  This is free software, licensed under:
+#  
+# -  The Artistic License 1.0
+# -
+# -The Artistic License
+# -
+# -Preamble
+# -
+# -The intent of this document is to state the conditions under which a Package
+# -may be copied, such that the Copyright Holder maintains some semblance of
+# -artistic control over the development of the package, while giving the 
users of
+# -the package the right to use and distribute the Package in a more-or-less
+# -customary fashion, plus the right to make reasonable modifications.
+# +  The Perl Artistic License 1.0
+# +
+# +
+# +
+# +
+# +
+# + The "Artistic License"
+# +
+# +Preamble
+# +
+# +The intent of this document is to state the conditions under which a

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

2024-01-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-markdown* to *3.5.2* 
has Succeeded.

Next steps:
- apply the patch: git am 0001-python3-markdown-upgrade-3.5-3.5.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 b45bd6271338f36841a3a1389e060d396ca10a20 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 07:27:41 +
Subject: [PATCH] python3-markdown: upgrade 3.5 -> 3.5.2

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

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

Changes to packages/core2-64-poky-linux/python3-markdown (sysroot):
  /usr/lib/python3.11/site-packages/Markdown-3.5.2.dist-info was added
  /usr/lib/python3.11/site-packages/Markdown-3.5.2.dist-info/entry_points.txt 
was added
  /usr/lib/python3.11/site-packages/Markdown-3.5.2.dist-info/LICENSE.md was 
added
  /usr/lib/python3.11/site-packages/Markdown-3.5.2.dist-info/METADATA was added
  /usr/lib/python3.11/site-packages/Markdown-3.5.2.dist-info/RECORD was added
  /usr/lib/python3.11/site-packages/Markdown-3.5.2.dist-info/top_level.txt was 
added
  /usr/lib/python3.11/site-packages/Markdown-3.5.2.dist-info/WHEEL was added
  /usr/lib/python3.11/site-packages/Markdown-3.5.dist-info was removed
  /usr/lib/python3.11/site-packages/Markdown-3.5.dist-info/entry_points.txt was 
removed
  /usr/lib/python3.11/site-packages/Markdown-3.5.dist-info/LICENSE.md was 
removed
  /usr/lib/python3.11/site-packages/Markdown-3.5.dist-info/METADATA was removed
  /usr/lib/python3.11/site-packages/Markdown-3.5.dist-info/RECORD was removed
  /usr/lib/python3.11/site-packages/Markdown-3.5.dist-info/top_level.txt was 
removed
  /usr/lib/python3.11/site-packages/Markdown-3.5.dist-info/WHEEL was removed
packages/core2-64-poky-linux/python3-markdown: SRC_URI changed from 
"https://files.pythonhosted.org/packages/source/M/Markdown/Markdown-3.5.tar.gz;downloadfilename=Markdown-3.5.tar.gz;
 to 
"https://files.pythonhosted.org/packages/source/M/Markdown/Markdown-3.5.2.tar.gz;downloadfilename=Markdown-3.5.2.tar.gz;
packages/core2-64-poky-linux/python3-markdown: PKGV changed from 3.5 [default] 
to 3.5.2 [default]
packages/core2-64-poky-linux/python3-markdown: PV changed from "3.5" to "3.5.2"
packages/core2-64-poky-linux/python3-markdown/python3-markdown-dbg: PKGV 
changed from 3.5 [default] to 3.5.2 [default]
packages/core2-64-poky-linux/python3-markdown/python3-markdown-dbg: PV changed 
from "3.5" to "3.5.2"
packages/core2-64-poky-linux/python3-markdown/python3-markdown-dev: PKGV 
changed from 3.5 [default] to 3.5.2 [default]
packages/core2-64-poky-linux/python3-markdown/python3-markdown-dev: PV changed 
from "3.5" to "3.5.2"
packages/core2-64-poky-linux/python3-markdown/python3-markdown-doc: PKGV 
changed from 3.5 [default] to 3.5.2 [default]
packages/core2-64-poky-linux/python3-markdown/python3-markdown-doc: PV changed 
from "3.5" to "3.5.2"
packages/core2-64-poky-linux/python3-markdown/python3-markdown-locale: PKGV 
changed from 3.5 [default] to 3.5.2 [default]
packages/core2-64-poky-linux/python3-markdown/python3-markdown-locale: PV 
changed from "3.5" to "3.5.2"
packages/core2-64-poky-linux/python3-markdown/python3-markdown-src: PKGV 
changed from 3.5 [default] to 3.5.2 [default]
packages/core2-64-poky-linux/python3-markdown/python3-markdown-src: 

[OE-core] [AUH] python3-sphinxcontrib-htmlhelp: upgrading to 2.0.5 SUCCEEDED

2024-01-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-sphinxcontrib-htmlhelp* to *2.0.5* has Succeeded.

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

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

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

Regards,
The Upgrade Helper

-- >8 --
>From 0a2666596afc15cc1110008aa95b3802c9ab5ee2 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 08:09:13 +
Subject: [PATCH] python3-sphinxcontrib-htmlhelp: upgrade 2.0.4 -> 2.0.5

---
 ...tmlhelp_2.0.4.bb => python3-sphinxcontrib-htmlhelp_2.0.5.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-sphinxcontrib-htmlhelp_2.0.4.bb 
=> python3-sphinxcontrib-htmlhelp_2.0.5.bb} (83%)

diff --git 
a/meta/recipes-devtools/python/python3-sphinxcontrib-htmlhelp_2.0.4.bb 
b/meta/recipes-devtools/python/python3-sphinxcontrib-htmlhelp_2.0.5.bb
similarity index 83%
rename from meta/recipes-devtools/python/python3-sphinxcontrib-htmlhelp_2.0.4.bb
rename to meta/recipes-devtools/python/python3-sphinxcontrib-htmlhelp_2.0.5.bb
index a0a4b4496f..532d1fc22a 100644
--- a/meta/recipes-devtools/python/python3-sphinxcontrib-htmlhelp_2.0.4.bb
+++ b/meta/recipes-devtools/python/python3-sphinxcontrib-htmlhelp_2.0.5.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://www.sphinx-doc.org;
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=24dce5ef6a13563241c24bc366f48886"
 
-SRC_URI[sha256sum] = 
"6c26a118a05b76000738429b724a0568dbde5b72391a688577da08f11891092a"
+SRC_URI[sha256sum] = 
"0dc87637d5de53dd5eec3a6a01753b1ccf99494bd756aafecd74b4fa9e729015"
 
 PYPI_PACKAGE = "sphinxcontrib-htmlhelp"
 
-- 
2.42.0



0001-python3-sphinxcontrib-htmlhelp-upgrade-2.0.4-2.0.5.patch
Description: Binary data
Changes to packages/core2-64-poky-linux/python3-sphinxcontrib-htmlhelp 
(sysroot):
  /usr/lib/python3.11/site-packages/sphinxcontrib_htmlhelp-2.0.4.dist-info 
moved to 
/usr/lib/python3.11/site-packages/sphinxcontrib_htmlhelp-2.0.5.dist-info
packages/core2-64-poky-linux/python3-sphinxcontrib-htmlhelp: PV changed from 
"2.0.4" to "2.0.5"
packages/core2-64-poky-linux/python3-sphinxcontrib-htmlhelp: SRC_URI changed 
from 
"https://files.pythonhosted.org/packages/source/s/sphinxcontrib-htmlhelp/sphinxcontrib_htmlhelp-2.0.4.tar.gz;downloadfilename=sphinxcontrib_htmlhelp-2.0.4.tar.gz;
 to 
"https://files.pythonhosted.org/packages/source/s/sphinxcontrib-htmlhelp/sphinxcontrib_htmlhelp-2.0.5.tar.gz;downloadfilename=sphinxcontrib_htmlhelp-2.0.5.tar.gz;
packages/core2-64-poky-linux/python3-sphinxcontrib-htmlhelp: PKGV changed from 
2.0.4 [default] to 2.0.5 [default]
packages/core2-64-poky-linux/python3-sphinxcontrib-htmlhelp/python3-sphinxcontrib-htmlhelp-dbg:
 PV changed from "2.0.4" to "2.0.5"
packages/core2-64-poky-linux/python3-sphinxcontrib-htmlhelp/python3-sphinxcontrib-htmlhelp-dbg:
 PKGV changed from 2.0.4 [default] to 2.0.5 [default]
packages/core2-64-poky-linux/python3-sphinxcontrib-htmlhelp/python3-sphinxcontrib-htmlhelp-dev:
 PV changed from "2.0.4" to "2.0.5"
packages/core2-64-poky-linux/python3-sphinxcontrib-htmlhelp/python3-sphinxcontrib-htmlhelp-dev:
 PKGV changed from 2.0.4 [default] to 2.0.5 [default]
packages/core2-64-poky-linux/python3-sphinxcontrib-htmlhelp/python3-sphinxcontrib-htmlhelp-doc:
 PV changed from "2.0.4" to "2.0.5"
packages/core2-64-poky-linux/python3-sphinxcontrib-htmlhelp/python3-sphinxcontrib-htmlhelp-doc:
 PKGV changed from 2.0.4 [default] to 2.0.5 [default]
packages/core2-64-poky-linux/python3-sphinxcontrib-htmlhelp/python3-sphinxcontrib-htmlhelp-locale:
 PV changed from "2.0.4" to "2.0.5"
packages/core2-64-poky-linux/python3-sphinxcontrib-htmlhelp/python3-sphinxcontrib-htmlhelp-locale:
 PKGV changed from 2.0.4 [default] to 2.0.5 [default]
packages/core2-64-poky-linux/python3-sphinxcontrib-htmlhelp/python3-sphinxcontrib-htmlhelp-src:
 PV changed from "2.0.4" to "2.0.5"
packages/core2-64-poky-linux/python3-sphinxcontrib-htmlhelp/python3-sphinxcontrib-htmlhelp-src:
 PKGV changed from 2.0.4 [default] to 2.0.5 [default]
packages/core2-64-poky-linux/python3-sphinxcontrib-htmlhelp/python3-sphinxcontrib-htmlhelp-staticdev:
 PV changed from "2.0.4" to "2.0.5"

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

2024-01-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* to *3.12.1* has 
Failed (devtool error).

Detailed error information:

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 5 Local 5 Mirrors 0 Missed 0 Current 28 (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 1850 entries from dependency cache.
Parsing recipes...done.
Parsing of 915 .bb files complete (913 cached, 2 parsed). 1851 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 6 Local 5 Mirrors 0 Missed 1 Current 22 (83% 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:05
Adding changed files:   7% |##  | ETA:  0:00:03
Adding changed files:  11% |### | ETA:  0:00:02
Adding changed files:  14% |#   | ETA:  0:00:02
Adding changed files:  18% |##  | ETA:  0:00:02
Adding changed files:  22% |### | ETA:  0:00:02
Adding changed files:  25% |#   | ETA:  0:00:02
Adding changed files:  29% |##  | ETA:  0:00:01
Adding changed files:  33% |### | ETA:  0:00:01
Adding changed files:  36% |#   | ETA:  0:00:01
Adding changed files:  40% |##  | ETA:  0:00:01
Adding changed files:  44% |### | ETA:  0:00:01
Adding changed files:  47% |#   | ETA:  0:00:01
Adding changed files:  51% |##  | ETA:  0:00:01
Adding changed files:  55% |### | ETA:  0:00:01
Adding changed files:  58% |#   | ETA:  0:00:01
Adding changed files:  62% |##  | ETA:  0:00:00
Adding changed files:  66% |### | ETA:  0:00:00
Adding changed files:  69% |#   | ETA:  0:00:00
Adding changed files:  73% |##  | ETA:  0:00:00
Adding changed files:  77% |### | ETA:  0:00:00
Adding changed files:  81% |#   | ETA:  0:00:00
Adding changed files:  84% |##  | ETA:  0:00:00
Adding changed files:  88% |### | ETA:  0:00:00
Adding changed files:  92% |#   | ETA:  0:00:00
Adding changed files:  95% |##  | ETA:  0:00:00
Adding changed files:  99% |### | ETA:  0:00:00
Adding changed files: 100% 

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

2024-01-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.22.0* has 
Failed(do_compile).

Detailed error information:

do_compile failed



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

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

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

Regards,
The Upgrade Helper

-- >8 --
>From 42b6e5182629aff4cc80c64f89c5e69700f838e9 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 09:59:08 +
Subject: [PATCH] valgrind: upgrade 3.21.0 -> 3.22.0

---
 ...ions-static-to-avoid-assembler-error.patch |  24 +-
 ...rn-a-valid-exit_code-from-vg_regtest.patch |  10 +-
 .../0001-docs-Disable-manual-validation.patch |  10 +-
 ...opcode-not-supported-on-mips32-linux.patch |  18 +-
 ...etting-mcpu-to-cortex-a8-on-arm-arch.patch |  20 +-
 ...check-tests-Fix-timerfd-syscall-test.patch |  33 +-
 ...-vgtests-remove-fullpath-after-flags.patch |  10 +-
 ...eak_cmsg.stderr.exp-adjust-tmp-paths.patch |   8 +-
 ...inux-seg_override.c-add-missing-incl.patch |  30 --
 ...ame-_sifields-to-__si_fields-on-musl.patch |  10 +-
 ...-filter_xml_frames-do-not-filter-usr.patch |  10 +-
 ...ntext-APIs-are-not-available-on-musl.patch |  14 +-
 ...-include-directive-path-for-config.h.patch |  10 +-
 ...est-wrapper-to-support-PTEST-formats.patch |   6 +-
 ...020-Committing-changes-from-do_patch.patch | 332 ++
 ...t-for-PPC-instructions-mfatbu-mfatbl.patch |  26 +-
 ...n-for-targets-which-don-t-support-it.patch |   6 +-
 .../valgrind/valgrind/fixed-perl-path.patch   |   2 +-
 .../valgrind/valgrind/s390x_vec_op_t.patch|  12 +-
 ...te-march-mcpu-mfpu-for-ARM-test-apps.patch |  10 +-
 ...-ld-XXX.so-strlen-intercept-optional.patch |  10 +-
 ...{valgrind_3.21.0.bb => valgrind_3.22.0.bb} |   4 +-
 22 files changed, 445 insertions(+), 170 deletions(-)
 delete mode 100644 
meta/recipes-devtools/valgrind/valgrind/0001-none-tests-x86-linux-seg_override.c-add-missing-incl.patch
 create mode 100644 
meta/recipes-devtools/valgrind/valgrind/0020-Committing-changes-from-do_patch.patch
 rename meta/recipes-devtools/valgrind/{valgrind_3.21.0.bb => 
valgrind_3.22.0.bb} (98%)

diff --git 
a/meta/recipes-devtools/valgrind/valgrind/0001-Make-local-functions-static-to-avoid-assembler-error.patch
 
b/meta/recipes-devtools/valgrind/valgrind/0001-Make-local-functions-static-to-avoid-assembler-error.patch
index 8d2ca5733e..0807b7d626 100644
--- 
a/meta/recipes-devtools/valgrind/valgrind/0001-Make-local-functions-static-to-avoid-assembler-error.patch
+++ 
b/meta/recipes-devtools/valgrind/valgrind/0001-Make-local-functions-static-to-avoid-assembler-error.patch
@@ -1,4 +1,4 @@
-From 2155c1b2cf00e744e280c493eb74bf457dfcc3b1 Mon Sep 17 00:00:00 2001
+From 0716e03cc6560509dfafd6ae6d58beaae336e848 Mon Sep 17 00:00:00 2001
 From: Randy MacLeod 
 Date: Sun, 21 Oct 2018 15:09:31 -0400
 Subject: [PATCH] Make local functions static to avoid assembler error
@@ -21,12 +21,13 @@ and more importantly also avoid an assembler error:
 Upstream-Status: Submitted https://bugs.kde.org/show_bug.cgi?id=400164
 
 Signed-off-by: Randy MacLeod 
+
 ---
  helgrind/tests/annotate_hbefore.c | 34 +++
  1 file changed, 17 insertions(+), 17 deletions(-)
 
 diff --git a/helgrind/tests/annotate_hbefore.c 
b/helgrind/tests/annotate_hbefore.c
-index e311714f7..f55514e45 100644
+index 259d3b6..8438701 100644
 --- a/helgrind/tests/annotate_hbefore.c
 +++ b/helgrind/tests/annotate_hbefore.c
 @@ -24,7 +24,7 @@ typedef  unsigned long int  UWord;
@@ -101,7 +102,7 @@ index e311714f7..f55514e45 100644
  {
UWord success;
UWord block[3] = { (UWord)addr, nyu, expected};
-@@ -256,7 +256,7 @@ UWord do_acasW ( UWord* addr, UWord expected, UWord nyu )
+@@ -285,7 +285,7 @@ UWord do_acasW ( UWord* addr, UWord expected, UWord nyu )
  
  // mips64
  /* return 1 if success, 0 if failure */
@@ -110,7 +111,7 @@ index e311714f7..f55514e45 100644
  {
UWord success;
UWord block[3] = { (UWord)addr, nyu, expected};
-@@ -287,7 +287,7 @@ UWord do_acasW ( UWord* addr, UWord expected, UWord nyu )
+@@ -316,7 +316,7 @@ UWord do_acasW ( UWord* addr, UWord expected, UWord nyu )
  
  #endif
  
@@ -119,7 +120,7 @@ index e311714f7..f55514e45 100644
  {
 while (1) {
UWord old = *w;
-@@ -301,7 +301,7 @@ void 

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

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

Next steps:
- apply the patch: git am 0001-cronie-upgrade-1.7.0-1.7.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 6a909cc2e5bc513b4535b6bedb1da26c211ab715 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 10:06:54 +
Subject: [PATCH] cronie: upgrade 1.7.0 -> 1.7.1

---
 .../cronie/cronie/crond_pam_config.patch   | 10 ++
 .../cronie/{cronie_1.7.0.bb => cronie_1.7.1.bb}|  2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)
 rename meta/recipes-extended/cronie/{cronie_1.7.0.bb => cronie_1.7.1.bb} (97%)

diff --git a/meta/recipes-extended/cronie/cronie/crond_pam_config.patch 
b/meta/recipes-extended/cronie/cronie/crond_pam_config.patch
index c374790d1d..464d1470e3 100644
--- a/meta/recipes-extended/cronie/cronie/crond_pam_config.patch
+++ b/meta/recipes-extended/cronie/cronie/crond_pam_config.patch
@@ -1,9 +1,19 @@
+From f5b325cba73018e5be984570fd4e680e59e7865d Mon Sep 17 00:00:00 2001
+From: Wenzong Fan 
+Date: Wed, 20 Jul 2011 02:42:28 +
+Subject: [PATCH] cronie: enable PAM support for cronie
+
 password-auth is the Fedora's common pam configure file, use oe common pam
 configure files instead.
 
 Upstream-Status: Pending
 
 Signed-off-by: Wenzong Fan 
+
+---
+ pam/crond | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
 diff --git a/pam/crond b/pam/crond
 index 560529d..95a6457 100644
 --- a/pam/crond
diff --git a/meta/recipes-extended/cronie/cronie_1.7.0.bb 
b/meta/recipes-extended/cronie/cronie_1.7.1.bb
similarity index 97%
rename from meta/recipes-extended/cronie/cronie_1.7.0.bb
rename to meta/recipes-extended/cronie/cronie_1.7.1.bb
index 24c419b1c5..854b68163c 100644
--- a/meta/recipes-extended/cronie/cronie_1.7.0.bb
+++ b/meta/recipes-extended/cronie/cronie_1.7.1.bb
@@ -25,7 +25,7 @@ SRC_URI = 
"${GITHUB_BASE_URI}/download/cronie-${PV}/cronie-${PV}.tar.gz \
 PAM_SRC_URI = "file://crond_pam_config.patch"
 PAM_DEPS = "libpam libpam-runtime pam-plugin-access pam-plugin-loginuid"
 
-SRC_URI[sha256sum] = 
"6827f5a47760cc64afeef0a60d3cb5376f52569109fc9a73957dd5e9fdae7619"
+SRC_URI[sha256sum] = 
"78033100c24413f0c40f93e6138774d6a4f55bc31050567b90db45a2f9f1b954"
 
 inherit autotools update-rc.d useradd systemd github-releases
 UPSTREAM_CHECK_REGEX = "releases/tag/cronie-(?P\d+(\.\d+)+)"
-- 
2.42.0



0001-cronie-upgrade-1.7.0-1.7.1.patch
Description: Binary data
packages/core2-64-poky-linux/cronie/cronie-dbg: PKGV changed from 1.7.0 
[default] to 1.7.1 [default]
packages/core2-64-poky-linux/cronie/cronie-dbg: PV changed from "1.7.0" to 
"1.7.1"
packages/core2-64-poky-linux/cronie/cronie-dbg: PKGSIZE changed from 430448 to 
431056 (+0%)
packages/core2-64-poky-linux/cronie/cronie-dev: PKGV changed from 1.7.0 
[default] to 1.7.1 [default]
packages/core2-64-poky-linux/cronie/cronie-dev: PV changed from "1.7.0" to 
"1.7.1"
packages/core2-64-poky-linux/cronie/cronie-doc: PKGV changed from 1.7.0 
[default] to 1.7.1 [default]
packages/core2-64-poky-linux/cronie/cronie-doc: PV changed from "1.7.0" to 
"1.7.1"
packages/core2-64-poky-linux/cronie/cronie-locale: PKGV changed from 1.7.0 
[default] to 1.7.1 [default]
packages/core2-64-poky-linux/cronie/cronie-locale: PV changed from "1.7.0" to 
"1.7.1"
packages/core2-64-poky-linux/cronie/cronie-src: PKGV changed from 1.7.0 
[default] to 1.7.1 [default]
packages/core2-64-poky-linux/cronie/cronie-src: PV changed from "1.7.0" to 
"1.7.1"
packages/core2-64-poky-linux/cronie/cronie-src: PKGSIZE changed from 188710 to 
188935 (+0%)
packages/core2-64-poky-linux/cronie/cronie-staticdev: PKGV changed from 1.7.0 
[default] to 1.7.1 [default]
packages/core2-64-poky-linux/cronie/cronie-staticdev: PV changed from "1.7.0" 
to "1.7.1"
packages/core2-64-poky-linux/cronie/cronie: PKGV changed from 1.7.0 [default] 
to 1.7.1 [default]
packages/core2-64-poky-linux/cronie/cronie: PV changed from "1.7.0" to "1.7.1"
packages/core2-64-poky-linux/cronie: PKGV changed from 1.7.0 [default] to 1.7.1 
[default]
packages/core2-64-poky-linux/cronie: SRC_URI changed from 
"https://github.com/cronie-crond/cronie/releases//download/cronie-1.7.0/cronie-1.7.0.tar.gz
 file://crond.init 

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

2024-01-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-trove-classifiers* to 
*2024.1.8* has Succeeded.

Next steps:
- apply the patch: git am 
0001-python3-trove-classifiers-upgrade-2023.11.29-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 9b8da39fe3fd4c0ff57becde4ff106218a716f81 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 08:22:02 +
Subject: [PATCH] python3-trove-classifiers: upgrade 2023.11.29 -> 2024.1.8

---
 ...iers_2023.11.29.bb => python3-trove-classifiers_2024.1.8.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-trove-classifiers_2023.11.29.bb 
=> python3-trove-classifiers_2024.1.8.bb} (87%)

diff --git 
a/meta/recipes-devtools/python/python3-trove-classifiers_2023.11.29.bb 
b/meta/recipes-devtools/python/python3-trove-classifiers_2024.1.8.bb
similarity index 87%
rename from meta/recipes-devtools/python/python3-trove-classifiers_2023.11.29.bb
rename to meta/recipes-devtools/python/python3-trove-classifiers_2024.1.8.bb
index a06d08455c..9e7e61a37e 100644
--- a/meta/recipes-devtools/python/python3-trove-classifiers_2023.11.29.bb
+++ b/meta/recipes-devtools/python/python3-trove-classifiers_2024.1.8.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/pypa/trove-classifiers;
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
 
-SRC_URI[sha256sum] = 
"ff8f7fd82c7932113b46e7ef6742c70091cc63640c8c65db00d91f2e940b9514"
+SRC_URI[sha256sum] = 
"6e36caf430ff6485c4b57a4c6b364a13f6a898d16b9417c6c37467e59c14b05a"
 
 inherit pypi python_setuptools_build_meta ptest
 
-- 
2.42.0

Changes to packages/core2-64-poky-linux/python3-trove-classifiers (sysroot):
  /usr/lib/python3.11/site-packages/trove_classifiers-2024.1.8.dist-info was 
added
  
/usr/lib/python3.11/site-packages/trove_classifiers-2024.1.8.dist-info/LICENSE 
was added
  
/usr/lib/python3.11/site-packages/trove_classifiers-2024.1.8.dist-info/METADATA 
was added
  /usr/lib/python3.11/site-packages/trove_classifiers-2024.1.8.dist-info/RECORD 
was added
  
/usr/lib/python3.11/site-packages/trove_classifiers-2024.1.8.dist-info/top_level.txt
 was added
  /usr/lib/python3.11/site-packages/trove_classifiers-2024.1.8.dist-info/WHEEL 
was added
  /usr/lib/python3.11/site-packages/trove_classifiers-2023.11.29.dist-info was 
removed
  
/usr/lib/python3.11/site-packages/trove_classifiers-2023.11.29.dist-info/LICENSE
 was removed
  
/usr/lib/python3.11/site-packages/trove_classifiers-2023.11.29.dist-info/METADATA
 was removed
  
/usr/lib/python3.11/site-packages/trove_classifiers-2023.11.29.dist-info/RECORD 
was removed
  
/usr/lib/python3.11/site-packages/trove_classifiers-2023.11.29.dist-info/top_level.txt
 was removed
  
/usr/lib/python3.11/site-packages/trove_classifiers-2023.11.29.dist-info/WHEEL 
was removed
Changes to packages/x86_64-linux/python3-more-itertools-native (sysroot):
  /usr/lib/python3.11/site-packages/more_itertools-10.2.0.dist-info moved to 
/usr/lib/python3.11/site-packages/more_itertools-10.1.0.dist-info
Changes to packages/x86_64-linux/python3-trove-classifiers-native (sysroot):
  /usr/lib/python3.11/site-packages/trove_classifiers-2024.1.8.dist-info was 
added
  
/usr/lib/python3.11/site-packages/trove_classifiers-2024.1.8.dist-info/LICENSE 
was added
  
/usr/lib/python3.11/site-packages/trove_classifiers-2024.1.8.dist-info/METADATA 
was added
  /usr/lib/python3.11/site-packages/trove_classifiers-2024.1.8.dist-info/RECORD 
was added
  
/usr/lib/python3.11/site-packages/trove_classifiers-2024.1.8.dist-info/top_level.txt
 was added
  /usr/lib/python3.11/site-packages/trove_classifiers-2024.1.8.dist-info/WHEEL 
was added
  /usr/lib/python3.11/site-packages/trove_classifiers-2023.11.29.dist-info was 
removed
  
/usr/lib/python3.11/site-packages/trove_classifiers-2023.11.29.dist-info/LICENSE
 was removed
  
/usr/lib/python3.11/site-packages/trove_classifiers-2023.11.29.dist-info/METADATA
 was removed
  
/usr/lib/python3.11/site-packages/trove_classifiers-2023.11.29.dist-info/RECORD 
was removed
  
/usr/lib/python3.11/site-packages/trove_classifiers-2023.11.29.dist-info/top_level.txt
 was removed
  

[OE-core] [AUH] python3-cython: upgrading to 3.0.8 SUCCEEDED

2024-01-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-cython* to *3.0.8* 
has Succeeded.

Next steps:
- apply the patch: git am 0001-python3-cython-upgrade-3.0.7-3.0.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 50cc3da80c455dc8e37308fd7f02ebab4e1ddbd8 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 07:04:42 +
Subject: [PATCH] python3-cython: upgrade 3.0.7 -> 3.0.8

---
 meta/recipes-devtools/python/python-cython.inc  | 2 +-
 .../python/{python3-cython_3.0.7.bb => python3-cython_3.0.8.bb} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-cython_3.0.7.bb => 
python3-cython_3.0.8.bb} (100%)

diff --git a/meta/recipes-devtools/python/python-cython.inc 
b/meta/recipes-devtools/python/python-cython.inc
index bc1953c504..d116eb826d 100644
--- a/meta/recipes-devtools/python/python-cython.inc
+++ b/meta/recipes-devtools/python/python-cython.inc
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSE.txt;md5=61c3ee8961575861fa86c7e62bc9f69c"
 PYPI_PACKAGE = "Cython"
 BBCLASSEXTEND = "native nativesdk"
 
-SRC_URI[sha256sum] = 
"fb299acf3a578573c190c858d49e0cf9d75f4bc49c3f24c5a63804997ef09213"
+SRC_URI[sha256sum] = 
"8333423d8fd5765e7cceea3a9985dd1e0a5dfeb2734629e1a2ed2d6233d39de6"
 UPSTREAM_CHECK_REGEX = "Cython-(?P.*)\.tar"
 
 inherit pypi
diff --git a/meta/recipes-devtools/python/python3-cython_3.0.7.bb 
b/meta/recipes-devtools/python/python3-cython_3.0.8.bb
similarity index 100%
rename from meta/recipes-devtools/python/python3-cython_3.0.7.bb
rename to meta/recipes-devtools/python/python3-cython_3.0.8.bb
-- 
2.42.0

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

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 443 Local 428 Mirrors 0 Missed 15 Current 218 (96% 
match, 97% complete)
Removing 5 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 233 of 661 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/python/python3-pyparsing_3.1.1.bb:do_create_spdx_setscene)
NOTE: Running setscene task 234 of 661 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/python/python3-pyparsing_3.1.1.bb:do_package_write_deb_setscene)
NOTE: Running setscene task 235 of 661 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/python/python3-pyparsing_3.1.1.bb:do_package_write_ipk_setscene)
NOTE: Running setscene task 236 of 661 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/python/python3-pyparsing_3.1.1.bb:do_package_write_rpm_setscene)
NOTE: Running setscene task 237 of 661 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/python/python3-setuptools_69.0.3.bb:do_create_spdx_setscene)
NOTE: Running setscene task 238 of 661 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/python/python3-setuptools_69.0.3.bb:do_package_write_deb_setscene)
NOTE: Running setscene task 239 of 661 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/python/python3-setuptools_69.0.3.bb:do_package_write_ipk_setscene)
NOTE: Running setscene task 240 of 661 

[OE-core] [AUH] python3-numpy: upgrading to 1.26.3 SUCCEEDED

2024-01-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-numpy* to *1.26.3* 
has Succeeded.

Next steps:
- apply the patch: git am 0001-python3-numpy-upgrade-1.26.2-1.26.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 14b6473143aa5449eeda14d5d4f4fccde9886153 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 07:48:37 +
Subject: [PATCH] python3-numpy: upgrade 1.26.2 -> 1.26.3

---
 ...-and-so-on-for-libraries-by-default-.patch | 10 -
 ...1-numpy-core-Define-RISCV-32-support.patch |  8 +++
 .../python3-numpy/fix_reproducibility.patch   | 22 +--
 ...umpy_1.26.2.bb => python3-numpy_1.26.3.bb} |  2 +-
 4 files changed, 23 insertions(+), 19 deletions(-)
 rename meta/recipes-devtools/python/{python3-numpy_1.26.2.bb => 
python3-numpy_1.26.3.bb} (96%)

diff --git 
a/meta/recipes-devtools/python/python3-numpy/0001-Don-t-search-usr-and-so-on-for-libraries-by-default-.patch
 
b/meta/recipes-devtools/python/python3-numpy/0001-Don-t-search-usr-and-so-on-for-libraries-by-default-.patch
index 9f5f25f9b5..7f40eb13cc 100644
--- 
a/meta/recipes-devtools/python/python3-numpy/0001-Don-t-search-usr-and-so-on-for-libraries-by-default-.patch
+++ 
b/meta/recipes-devtools/python/python3-numpy/0001-Don-t-search-usr-and-so-on-for-libraries-by-default-.patch
@@ -1,4 +1,4 @@
-From 27f6687e49bf555fc494d2f14bae6ecd0fa30f14 Mon Sep 17 00:00:00 2001
+From fa527d4a79e604062a1a53e531544812ba776eb6 Mon Sep 17 00:00:00 2001
 From: Alexander Kanavin 
 Date: Thu, 10 Dec 2015 13:20:30 +0200
 Subject: [PATCH] Don't search /usr and so on for libraries by default to
@@ -8,15 +8,16 @@ Subject: [PATCH] Don't search /usr and so on for libraries by 
default to
 Upstream-Status: Inappropriate (As the code stands, this is a hack)
 Signed-off-by: Ross Burton 
 Signed-off-by: Alexander Kanavin 
+
 ---
  numpy/distutils/system_info.py | 42 +-
  1 file changed, 6 insertions(+), 36 deletions(-)
 
 diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py
-index 82e864a..135246d 100644
+index feb28f6..a48d6d1 100644
 --- a/numpy/distutils/system_info.py
 +++ b/numpy/distutils/system_info.py
-@@ -323,44 +323,14 @@ if sys.platform == 'win32':
+@@ -327,44 +327,14 @@ def add_system_root(library_root):
  add_system_root(os.path.join(conda_dir, 'Library'))
  
  else:
@@ -67,6 +68,3 @@ index 82e864a..135246d 100644
  
  if os.path.join(sys.prefix, 'lib') not in default_lib_dirs:
  default_lib_dirs.insert(0, os.path.join(sys.prefix, 'lib'))
--- 
-2.25.1
-
diff --git 
a/meta/recipes-devtools/python/python3-numpy/0001-numpy-core-Define-RISCV-32-support.patch
 
b/meta/recipes-devtools/python/python3-numpy/0001-numpy-core-Define-RISCV-32-support.patch
index 676bdbb3af..b2a0dc3f66 100644
--- 
a/meta/recipes-devtools/python/python3-numpy/0001-numpy-core-Define-RISCV-32-support.patch
+++ 
b/meta/recipes-devtools/python/python3-numpy/0001-numpy-core-Define-RISCV-32-support.patch
@@ -1,4 +1,4 @@
-From eb6d6579150bf4684603ce377c51e90ad3bb8109 Mon Sep 17 00:00:00 2001
+From fa40e92c68b99bf2c7028413fe01e7055b2147e4 Mon Sep 17 00:00:00 2001
 From: Khem Raj 
 Date: Sun, 15 Nov 2020 15:32:39 -0800
 Subject: [PATCH] numpy/core: Define RISCV-32 support
@@ -7,13 +7,14 @@ Helps compile on riscv32
 
 Upstream-Status: Submitted [https://github.com/numpy/numpy/pull/17780]
 Signed-off-by: Khem Raj 
+
 ---
  numpy/core/include/numpy/npy_cpu.h| 3 +++
  numpy/core/include/numpy/npy_endian.h | 1 +
  2 files changed, 4 insertions(+)
 
 diff --git a/numpy/core/include/numpy/npy_cpu.h 
b/numpy/core/include/numpy/npy_cpu.h
-index 78d229e..04be511 100644
+index a19f8e6..d824d4e 100644
 --- a/numpy/core/include/numpy/npy_cpu.h
 +++ b/numpy/core/include/numpy/npy_cpu.h
 @@ -19,6 +19,7 @@
@@ -45,6 +46,3 @@ index 5e58a7f..0926212 100644
  || defined(NPY_CPU_LOONGARCH) \
  || defined(NPY_CPU_WASM)
  #define NPY_BYTE_ORDER NPY_LITTLE_ENDIAN
--- 
-2.20.1
-
diff --git 
a/meta/recipes-devtools/python/python3-numpy/fix_reproducibility.patch 
b/meta/recipes-devtools/python/python3-numpy/fix_reproducibility.patch
index d952aed00c..917ab916f4 100644
--- 

[OE-core] [AUH] python3-pycryptodome: upgrading to 3.20.0 SUCCEEDED

2024-01-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-pycryptodome* to 
*3.20.0* has Succeeded.

Next steps:
- apply the patch: git am 
0001-python3-pycryptodome-upgrade-3.19.1-3.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 07f7c0a641292f19770e67668df12729ed8d4559 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 07:52:41 +
Subject: [PATCH] python3-pycryptodome: upgrade 3.19.1 -> 3.20.0

---
 ...n3-pycryptodome_3.19.1.bb => python3-pycryptodome_3.20.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-pycryptodome_3.19.1.bb => 
python3-pycryptodome_3.20.0.bb} (38%)

diff --git a/meta/recipes-devtools/python/python3-pycryptodome_3.19.1.bb 
b/meta/recipes-devtools/python/python3-pycryptodome_3.20.0.bb
similarity index 38%
rename from meta/recipes-devtools/python/python3-pycryptodome_3.19.1.bb
rename to meta/recipes-devtools/python/python3-pycryptodome_3.20.0.bb
index 70f16c7f6d..d24fa58d43 100644
--- a/meta/recipes-devtools/python/python3-pycryptodome_3.19.1.bb
+++ b/meta/recipes-devtools/python/python3-pycryptodome_3.20.0.bb
@@ -1,5 +1,5 @@
 require python-pycryptodome.inc
 inherit setuptools3
 
-SRC_URI[sha256sum] = 
"8ae0dd1bcfada451c35f9e29a3e5db385caabc190f98e4a80ad02a61098fb776"
+SRC_URI[sha256sum] = 
"09609209ed7de61c2b560cc5c8c4fbf892f8b15b1faf7e4cbffac97db1fffda7"
 
-- 
2.42.0



0001-python3-pycryptodome-upgrade-3.19.1-3.20.0.patch
Description: Binary data
packages/core2-64-poky-linux/python3-pycryptodome/python3-pycryptodome-tests: 
FILELIST: added 
"/usr/lib/python3.11/site-packages/Crypto/SelfTest/Hash/test_TurboSHAKE.py 
/usr/lib/python3.11/site-packages/Crypto/SelfTest/Hash/__pycache__/test_TurboSHAKE.cpython-311.pyc"
packages/core2-64-poky-linux/python3-pycryptodome/python3-pycryptodome: 
FILELIST: directory renamed 
/usr/lib/python3.11/site-packages/pycryptodome-3.19.1.dist-info -> 
/usr/lib/python3.11/site-packages/pycryptodome-3.20.0.dist-info, added 
"/usr/lib/python3.11/site-packages/Crypto/Hash/TurboSHAKE128.py 
/usr/lib/python3.11/site-packages/Crypto/Hash/__pycache__/TurboSHAKE256.cpython-311.pyc
 /usr/lib/python3.11/site-packages/Crypto/Hash/TurboSHAKE128.pyi 
/usr/lib/python3.11/site-packages/Crypto/Hash/__pycache__/TurboSHAKE128.cpython-311.pyc
 /usr/lib/python3.11/site-packages/Crypto/Hash/TurboSHAKE256.pyi 
/usr/lib/python3.11/site-packages/Crypto/Hash/TurboSHAKE256.py"
Changes to packages/core2-64-poky-linux/python3-pycryptodome (sysroot):
  /usr/lib/python3.11/site-packages/pycryptodome-3.19.1.dist-info moved to 
/usr/lib/python3.11/site-packages/pycryptodome-3.20.0.dist-info
  
/usr/lib/python3.11/site-packages/Crypto/Hash/__pycache__/TurboSHAKE128.cpython-311.pyc
 was added
  
/usr/lib/python3.11/site-packages/Crypto/Hash/__pycache__/TurboSHAKE256.cpython-311.pyc
 was added
  /usr/lib/python3.11/site-packages/Crypto/Hash/TurboSHAKE128.py was added
  /usr/lib/python3.11/site-packages/Crypto/Hash/TurboSHAKE128.pyi was added
  /usr/lib/python3.11/site-packages/Crypto/Hash/TurboSHAKE256.py was added
  /usr/lib/python3.11/site-packages/Crypto/Hash/TurboSHAKE256.pyi was added
  
/usr/lib/python3.11/site-packages/Crypto/SelfTest/Hash/__pycache__/test_TurboSHAKE.cpython-311.pyc
 was added
  /usr/lib/python3.11/site-packages/Crypto/SelfTest/Hash/test_TurboSHAKE.py was 
added
packages/core2-64-poky-linux/python3-pycryptodome: SRC_URI changed from 
"https://files.pythonhosted.org/packages/source/p/pycryptodome/pycryptodome-3.19.1.tar.gz;downloadfilename=pycryptodome-3.19.1.tar.gz;
 to 
"https://files.pythonhosted.org/packages/source/p/pycryptodome/pycryptodome-3.20.0.tar.gz;downloadfilename=pycryptodome-3.20.0.tar.gz;
packages/core2-64-poky-linux/python3-pycryptodome: PKGV changed from 3.19.1 
[default] to 3.20.0 [default]
packages/core2-64-poky-linux/python3-pycryptodome: PV changed from "3.19.1" to 
"3.20.0"
packages/core2-64-poky-linux/python3-pycryptodome/python3-pycryptodome-dbg: 
PKGV changed from 3.19.1 [default] to 3.20.0 [default]
packages/core2-64-poky-linux/python3-pycryptodome/python3-pycryptodome-dbg: PV 
changed from "3.19.1" to "3.20.0"
packages/core2-64-poky-linux/python3-pycryptodome/python3-pycryptodome-dev: 
PKGV changed 

[OE-core] [AUH] python3-lxml: upgrading to 5.1.0 FAILED

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

Detailed error information:

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

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 5 Local 5 Mirrors 0 Missed 0 Current 28 (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 1850 entries from dependency cache.
Parsing recipes...done.
Parsing of 915 .bb files complete (913 cached, 2 parsed). 1851 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 3 Local 2 Mirrors 0 Missed 1 Current 4 (66% match, 85% 
complete)
done.
NOTE: Executing Tasks
WARNING: Failed to fetch URL 
https://files.pythonhosted.org/packages/source/l/lxml/lxml-5.1.0.zip;downloadfilename=lxml-5.1.0.zip,
 attempting MIRRORS if available
NOTE: Tasks Summary: Attempted 22 tasks of which 20 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_20240115072458.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_20240115072458.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/l/lxml/lxml-5.1.0.zip;downloadfilename=lxml-5.1.0.zip...
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-am00sa6y/work/recipe-sysroot-native/usr/bin/x86_64-poky-linux:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipetool-am00sa6y/work/recipe-sysroot/usr/bin/crossscripts:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipetool-am00sa6y/work/recipe-sysroot-native/usr/sbin:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipe
 
tool-am00sa6y/work/recipe-sysroot-native/usr/bin:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipetool-am00sa6y/work/recipe-sysroot-native/sbin:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/recipetool-am00sa6y/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 --passive-ftp -O 
/srv/autobuilder/autobuilder.yocto.io/current_sources/lxml-5.1.0.zip.tmp -P 

[OE-core] [AUH] python3-subunit: upgrading to 1.4.4 SUCCEEDED

2024-01-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-subunit* to *1.4.4* 
has Succeeded.

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

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

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

Regards,
The Upgrade Helper

-- >8 --
>From b87f274cbb65764c399501ce836376764abc711b Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 08:18:44 +
Subject: [PATCH] python3-subunit: upgrade 1.4.2 -> 1.4.4

---
 ...unit_1.4.2.bb => python3-subunit_1.4.4.bb} | 26 +--
 1 file changed, 24 insertions(+), 2 deletions(-)
 rename meta/recipes-devtools/python/{python3-subunit_1.4.2.bb => 
python3-subunit_1.4.4.bb} (31%)

diff --git a/meta/recipes-devtools/python/python3-subunit_1.4.2.bb 
b/meta/recipes-devtools/python/python3-subunit_1.4.4.bb
similarity index 31%
rename from meta/recipes-devtools/python/python3-subunit_1.4.2.bb
rename to meta/recipes-devtools/python/python3-subunit_1.4.4.bb
index a018ef1dc8..8eab656a46 100644
--- a/meta/recipes-devtools/python/python3-subunit_1.4.2.bb
+++ b/meta/recipes-devtools/python/python3-subunit_1.4.4.bb
@@ -1,12 +1,34 @@
+# FIXME: the LIC_FILES_CHKSUM values have been updated by 'devtool upgrade'.
+# The following is the difference between the old and the new license text.
+# Please update the LICENSE value if needed, and summarize the changes in
+# the commit message via 'License-Update:' tag.
+# (example: 'License-Update: copyright years updated.')
+#
+# The changes:
+#
+# --- README.rst
+# +++ README.rst
+# @@ -15,6 +15,6 @@
+#  
+#See the COPYING file for full details on the licensing of Subunit.
+#  
+# -  subunit reuses iso8601 by Michael Twomey, distributed under an MIT style
+# -  licence - see python/iso8601/LICENSE for details.
+# +Subunit
+# +---
+#  
+# 
+#
+
 SUMMARY = "Python implementation of subunit test streaming protocol"
 HOMEPAGE = "https://pypi.org/project/python-subunit/;
 SECTION = "devel/python"
 LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = 
"file://README.rst;beginline=1;endline=20;md5=909c08e291647fd985fbe5d9836d51b6"
+LIC_FILES_CHKSUM = 
"file://README.rst;beginline=1;endline=20;md5=571e2d702e247b9d8a7745b3b54315ed"
 
 PYPI_PACKAGE = "python-subunit"
 
-SRC_URI[sha256sum] = 
"2988d324d55ec35dd037e502e3f74ac38f4e457bd44ee0edf5e898f7ee1134d4"
+SRC_URI[sha256sum] = 
"1079363131aa1d3f45259237265bc2e61a77e35f20edfb6e3d1d2558a2cdea34"
 
 inherit pypi setuptools3
 
-- 
2.42.0

packages/core2-64-poky-linux/python3-subunit/python3-subunit: FILELIST: 
directory renamed 
/usr/lib/python3.11/site-packages/python_subunit-1.4.2.dist-info -> 
/usr/lib/python3.11/site-packages/python_subunit-1.4.4.dist-info, removed 
"/usr/lib/python3.11/site-packages/subunit/__pycache__/iso8601.cpython-311.pyc 
/usr/lib/python3.11/site-packages/subunit/iso8601.py"
Changes to packages/core2-64-poky-linux/python3-subunit (sysroot):
  /usr/lib/python3.11/site-packages/python_subunit-1.4.2.dist-info moved to 
/usr/lib/python3.11/site-packages/python_subunit-1.4.4.dist-info
  /usr/lib/python3.11/site-packages/subunit/iso8601.py was removed
  /usr/lib/python3.11/site-packages/subunit/__pycache__/iso8601.cpython-311.pyc 
was removed
packages/core2-64-poky-linux/python3-subunit: PKGV changed from 1.4.2 [default] 
to 1.4.4 [default]
packages/core2-64-poky-linux/python3-subunit: PV changed from "1.4.2" to "1.4.4"
packages/core2-64-poky-linux/python3-subunit: SRC_URI changed from 
"https://files.pythonhosted.org/packages/source/p/python-subunit/python-subunit-1.4.2.tar.gz;downloadfilename=python-subunit-1.4.2.tar.gz;
 to 
"https://files.pythonhosted.org/packages/source/p/python-subunit/python-subunit-1.4.4.tar.gz;downloadfilename=python-subunit-1.4.4.tar.gz;
packages/core2-64-poky-linux/python3-subunit/python3-subunit-dbg: PKGV changed 
from 1.4.2 [default] to 1.4.4 [default]
packages/core2-64-poky-linux/python3-subunit/python3-subunit-dbg: PV changed 
from "1.4.2" to "1.4.4"
packages/core2-64-poky-linux/python3-subunit/python3-subunit-dev: PKGV changed 
from 1.4.2 [default] to 1.4.4 [default]
packages/core2-64-poky-linux/python3-subunit/python3-subunit-dev: PV changed 
from "1.4.2" to "1.4.4"
packages/core2-64-poky-linux/python3-subunit/python3-subunit-doc: PKGV changed 
from 1.4.2 [default] to 1.4.4 [default]

[OE-core] [AUH] python3-sphinxcontrib-serializinghtml: upgrading to 1.1.10 SUCCEEDED

2024-01-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-sphinxcontrib-serializinghtml* to *1.1.10* has Succeeded.

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

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

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

Regards,
The Upgrade Helper

-- >8 --
>From e548ead8de1a549d047c7481042975f4c6b97a47 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 08:15:33 +
Subject: [PATCH] python3-sphinxcontrib-serializinghtml: upgrade 1.1.9 ->
 1.1.10

---
 ...1.1.9.bb => python3-sphinxcontrib-serializinghtml_1.1.10.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename 
meta/recipes-devtools/python/{python3-sphinxcontrib-serializinghtml_1.1.9.bb => 
python3-sphinxcontrib-serializinghtml_1.1.10.bb} (85%)

diff --git 
a/meta/recipes-devtools/python/python3-sphinxcontrib-serializinghtml_1.1.9.bb 
b/meta/recipes-devtools/python/python3-sphinxcontrib-serializinghtml_1.1.10.bb
similarity index 85%
rename from 
meta/recipes-devtools/python/python3-sphinxcontrib-serializinghtml_1.1.9.bb
rename to 
meta/recipes-devtools/python/python3-sphinxcontrib-serializinghtml_1.1.10.bb
index fbf0c3c9b2..b13bc82977 100644
--- 
a/meta/recipes-devtools/python/python3-sphinxcontrib-serializinghtml_1.1.9.bb
+++ 
b/meta/recipes-devtools/python/python3-sphinxcontrib-serializinghtml_1.1.10.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://www.sphinx-doc.org;
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=32a84ac5cd3bbd10c4d479233ad588b6"
 
-SRC_URI[sha256sum] = 
"0c64ff898339e1fac29abd2bf5f11078f3ec413cfe9c046d3120d7ca65530b54"
+SRC_URI[sha256sum] = 
"93f3f5dc458b91b192fe10c397e324f262cf163d79f3282c158e8436a2c4511f"
 
 PYPI_PACKAGE = "sphinxcontrib-serializinghtml"
 
-- 
2.42.0



0001-python3-sphinxcontrib-serializinghtml-upgrade-1.1.9-.patch
Description: Binary data
Changes to packages/core2-64-poky-linux/python3-sphinxcontrib-serializinghtml 
(sysroot):
  
/usr/lib/python3.11/site-packages/sphinxcontrib_serializinghtml-1.1.10.dist-info
 was added
  
/usr/lib/python3.11/site-packages/sphinxcontrib_serializinghtml-1.1.10.dist-info/LICENSE
 was added
  
/usr/lib/python3.11/site-packages/sphinxcontrib_serializinghtml-1.1.10.dist-info/METADATA
 was added
  
/usr/lib/python3.11/site-packages/sphinxcontrib_serializinghtml-1.1.10.dist-info/RECORD
 was added
  
/usr/lib/python3.11/site-packages/sphinxcontrib_serializinghtml-1.1.10.dist-info/WHEEL
 was added
  
/usr/lib/python3.11/site-packages/sphinxcontrib_serializinghtml-1.1.9.dist-info 
was removed
  
/usr/lib/python3.11/site-packages/sphinxcontrib_serializinghtml-1.1.9.dist-info/LICENSE
 was removed
  
/usr/lib/python3.11/site-packages/sphinxcontrib_serializinghtml-1.1.9.dist-info/METADATA
 was removed
  
/usr/lib/python3.11/site-packages/sphinxcontrib_serializinghtml-1.1.9.dist-info/RECORD
 was removed
  
/usr/lib/python3.11/site-packages/sphinxcontrib_serializinghtml-1.1.9.dist-info/WHEEL
 was removed
packages/core2-64-poky-linux/python3-sphinxcontrib-serializinghtml: SRC_URI 
changed from 
"https://files.pythonhosted.org/packages/source/s/sphinxcontrib-serializinghtml/sphinxcontrib_serializinghtml-1.1.9.tar.gz;downloadfilename=sphinxcontrib_serializinghtml-1.1.9.tar.gz;
 to 
"https://files.pythonhosted.org/packages/source/s/sphinxcontrib-serializinghtml/sphinxcontrib_serializinghtml-1.1.10.tar.gz;downloadfilename=sphinxcontrib_serializinghtml-1.1.10.tar.gz;
packages/core2-64-poky-linux/python3-sphinxcontrib-serializinghtml: PKGV 
changed from 1.1.9 [default] to 1.1.10 [default]
packages/core2-64-poky-linux/python3-sphinxcontrib-serializinghtml: PV changed 
from "1.1.9" to "1.1.10"
packages/core2-64-poky-linux/python3-sphinxcontrib-serializinghtml/python3-sphinxcontrib-serializinghtml-dbg:
 PKGV changed from 1.1.9 [default] to 1.1.10 [default]
packages/core2-64-poky-linux/python3-sphinxcontrib-serializinghtml/python3-sphinxcontrib-serializinghtml-dbg:
 PV changed from "1.1.9" to "1.1.10"
packages/core2-64-poky-linux/python3-sphinxcontrib-serializinghtml/python3-sphinxcontrib-serializinghtml-dev:
 PKGV changed from 1.1.9 [default] to 1.1.10 [default]
packages/core2-64-poky-linux/python3-sphinxcontrib-serializinghtml/python3-sphinxcontrib-serializinghtml-dev:
 PV changed from "1.1.9" to 

[OE-core] [AUH] python3-dtschema: upgrading to 2023.11 FAILED

2024-01-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-dtschema* to 
*2023.11* has Failed(do_compile).

Detailed error information:

do_compile failed



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

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

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

Regards,
The Upgrade Helper

-- >8 --
>From c8a991103c5eb9598eeea1f118f556df3e1b4f57 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 07:07:16 +
Subject: [PATCH] python3-dtschema: upgrade 2023.7 -> 2023.11

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

diff --git a/meta/recipes-devtools/python/python3-dtschema_2023.7.bb 
b/meta/recipes-devtools/python/python3-dtschema_2023.11.bb
similarity index 85%
rename from meta/recipes-devtools/python/python3-dtschema_2023.7.bb
rename to meta/recipes-devtools/python/python3-dtschema_2023.11.bb
index c1dc3e019a..5453d96f8a 100644
--- a/meta/recipes-devtools/python/python3-dtschema_2023.7.bb
+++ b/meta/recipes-devtools/python/python3-dtschema_2023.11.bb
@@ -7,7 +7,7 @@ inherit pypi setuptools3
 
 PYPI_PACKAGE = "dtschema"
 
-SRC_URI[sha256sum] = 
"de7cd73a35244cf76a8cdd9919bbeb31f362aa5744f3c76c80e0e612489dd0c0"
+SRC_URI[sha256sum] = 
"cf9a449ea743c0a955cf6034ef246668fa5ea177684977c61fef7604af5f273b"
 
 DEPENDS += "python3-setuptools-scm-native"
 RDEPENDS:${PN} += "\
-- 
2.42.0

NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1853 entries from dependency cache.
Parsing recipes...done.
Parsing of 914 .bb files complete (913 cached, 1 parsed). 1850 targets, 38 
skipped, 0 masked, 0 errors.
Removing 1 recipes from the core2-64 sysroot...done.
Removing 1 recipes from the qemux86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 337 Local 325 Mirrors 0 Missed 12 Current 455 (96% 
match, 98% complete)
done.
NOTE: Executing Tasks
NOTE: Running setscene task 529 of 792 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/python/python3-dtschema_2023.11.bb:do_recipe_qa_setscene)
NOTE: recipe python3-dtschema-2023.11-r0: task do_recipe_qa_setscene: Started
NOTE: recipe python3-dtschema-2023.11-r0: task do_recipe_qa_setscene: Succeeded
NOTE: Setscene tasks completed
NOTE: Running task 1656 of 2240 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/python/python3-dtschema_2023.11.bb:do_fetch)
NOTE: recipe python3-dtschema-2023.11-r0: task do_fetch: Started
NOTE: recipe python3-dtschema-2023.11-r0: task do_fetch: Succeeded
NOTE: Running task 2020 of 2240 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/python/python3-dtschema_2023.11.bb:do_unpack)
NOTE: Running task 2021 of 2240 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/python/python3-dtschema_2023.11.bb:do_prepare_recipe_sysroot)
NOTE: recipe python3-dtschema-2023.11-r0: task do_unpack: Started
NOTE: recipe python3-dtschema-2023.11-r0: task do_prepare_recipe_sysroot: 
Started
NOTE: recipe python3-dtschema-2023.11-r0: task do_unpack: Succeeded
NOTE: Running task 2224 of 2240 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/python/python3-dtschema_2023.11.bb:do_patch)
NOTE: Running task 2225 of 2240 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/python/python3-dtschema_2023.11.bb:do_collect_spdx_deps)
NOTE: recipe python3-dtschema-2023.11-r0: task do_patch: Started
NOTE: recipe python3-dtschema-2023.11-r0: task do_collect_spdx_deps: Started
NOTE: recipe 

[OE-core] [AUH] python3-git: upgrading to 3.1.41 SUCCEEDED

2024-01-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-git* to *3.1.41* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-python3-git-upgrade-3.1.40-3.1.41.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 d881b241e1d724087cd5272ea4bae820f8b6c006 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 07:11:01 +
Subject: [PATCH] python3-git: upgrade 3.1.40 -> 3.1.41

---
 .../python/{python3-git_3.1.40.bb => python3-git_3.1.41.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-git_3.1.40.bb => 
python3-git_3.1.41.bb} (92%)

diff --git a/meta/recipes-devtools/python/python3-git_3.1.40.bb 
b/meta/recipes-devtools/python/python3-git_3.1.41.bb
similarity index 92%
rename from meta/recipes-devtools/python/python3-git_3.1.40.bb
rename to meta/recipes-devtools/python/python3-git_3.1.41.bb
index 47aa7f09ac..de199ef18b 100644
--- a/meta/recipes-devtools/python/python3-git_3.1.40.bb
+++ b/meta/recipes-devtools/python/python3-git_3.1.41.bb
@@ -12,7 +12,7 @@ PYPI_PACKAGE = "GitPython"
 
 inherit pypi python_setuptools_build_meta
 
-SRC_URI[sha256sum] = 
"22b126e9ffb671fdd0c129796343a02bf67bf2994b35449ffc9321aa755e18a4"
+SRC_URI[sha256sum] = 
"ed66e624884f76df22c8e16066d567aaa5a37d5b5fa19db2c6df6f7156db9048"
 
 DEPENDS += " ${PYTHON_PN}-gitdb"
 
-- 
2.42.0



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

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

[OE-core] [AUH] libxml-parser-perl: upgrading to 2.47 FAILED

2024-01-15 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *libxml-parser-perl* to *2.47* 
has Failed (devtool error).

Detailed error information:

Running 'devtool upgrade' for recipe libxml-parser-perl failed.
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1850 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.7.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-e34a6ec557c069fecb298a95db9a386411339726"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:e34a6ec557c069fecb298a95db9a386411339726"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 6 Local 6 Mirrors 0 Missed 0 Current 24 (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 1850 entries from dependency cache.
Parsing recipes...done.
Parsing of 915 .bb files complete (913 cached, 2 parsed). 1851 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

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 
http://www.cpan.org/modules/by-module/XML/XML-Parser-2.47.tar.gz...
INFO: Rebasing devtool onto 9bf32f231e5e9f33345478177e3a44a487bde872
WARNING: Command 'git rebase 9bf32f231e5e9f33345478177e3a44a487bde872' failed:
Auto-merging inc/Devel/CheckLib.pm
CONFLICT (content): Merge conflict in inc/Devel/CheckLib.pm

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/libxml-parser-perl
INFO: New recipe is 
/home/pokybuild/yocto-worker/auh/build/build/workspace/recipes/libxml-parser-perl/libxml-parser-perl_2.47.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 (#193717): 
https://lists.openembedded.org/g/openembedded-core/message/193717
Mute This Topic: https://lists.openembedded.org/mt/103744055/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] gnu-config: upgrading to 948ae97ca5703224bd3eada06b7a69f40dd15a02 FAILED

2024-01-15 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *gnu-config* to 
*948ae97ca5703224bd3eada06b7a69f40dd15a02* has Failed (devtool error).

Detailed error information:

The following devtool command failed:  upgrade gnu-config -S 
948ae97ca5703224bd3eada06b7a69f40dd15a02
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1850 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.7.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-522272899d2b29bcdf124b8eaaf1c6d579fd7781"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:522272899d2b29bcdf124b8eaaf1c6d579fd7781"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 13 Local 5 Mirrors 0 Missed 8 Current 16 (38% match, 72% 
complete)
Removing 6 stale sstate objects for arch x86_64...done.
NOTE: Executing Tasks
WARNING: Failed to find a git repository in WORKDIR: 
/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/gnu-config/20231127+git/devtooltmp-ihfgnnp7/workdir
WARNING: gnu-config: the directory ${WORKDIR}/git 
(/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/gnu-config/20231127+git/devtooltmp-ihfgnnp7/workdir/git)
 pointed to by the S variable doesn't exist - please set S within the recipe to 
point to where the source has been unpacked to
WARNING: No source unpacked to S - either the gnu-config recipe doesn't use any 
source or the correct source directory could not be determined
NOTE: Tasks Summary: Attempted 65 tasks of which 54 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_20240115063533.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_20240115063533.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...
ERROR: Bitbake Fetcher Error: FetchError('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/scripts/native-intercept:/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/core2-64-poky-linux/gnu-config/20231127+git/devtooltmp-ihfgnnp7/workdir/recipe-sysroot-native/usr/bin/x86_64-linux:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/gnu-config/20231127+git/devtooltmp-ihfgnnp7/workdir/recipe-sysroot-native/usr/bin:/home
 
/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/gnu-config/20231127+git/devtooltmp-ihfgnnp7/workdir/recipe-sysroot-native/usr/sbin:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/gnu-config/20231127+git/devtooltmp-ihfgnnp7/workdir/recipe-sysroot-native/usr/bin:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/gnu-config/20231127+git/devtooltmp-ihfgnnp7/workdir/recipe-sysroot-native/sbin:/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/gnu-config/20231127+git/devtooltmp-ihfgnnp7/workdir/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"; git -c gc.autoDetach=false -c core.pager=cat 
clone -n -s 
/srv/autobuilder/autobuilder.yocto.io/current_sources/git2/git.savannah.gnu.org.git.config.git/
 
/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/gnu-config/202
 31127+git/devtooltmp-ihfgnnp7/workdir/git/ failed with exit code 128, 
output:\nfatal: destination path 
\'/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/gnu-config/20231127+git/devtooltmp-ihfgnnp7/workdir/git\'
 already 

[OE-core] [AUH] pkgconf: upgrading to 2.1.0 SUCCEEDED

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

Next steps:
- apply the patch: git am 0001-pkgconf-upgrade-2.0.3-2.1.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 88856918cb7fd9c4708d3c72a4820f67e5bbd292 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 06:49:03 +
Subject: [PATCH] pkgconf: upgrade 2.0.3 -> 2.1.0

---
 .../pkgconf/{pkgconf_2.0.3.bb => pkgconf_2.1.0.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/pkgconf/{pkgconf_2.0.3.bb => pkgconf_2.1.0.bb} 
(96%)

diff --git a/meta/recipes-devtools/pkgconf/pkgconf_2.0.3.bb 
b/meta/recipes-devtools/pkgconf/pkgconf_2.1.0.bb
similarity index 96%
rename from meta/recipes-devtools/pkgconf/pkgconf_2.0.3.bb
rename to meta/recipes-devtools/pkgconf/pkgconf_2.1.0.bb
index 5aa5a191f2..1921f3a086 100644
--- a/meta/recipes-devtools/pkgconf/pkgconf_2.0.3.bb
+++ b/meta/recipes-devtools/pkgconf/pkgconf_2.1.0.bb
@@ -20,7 +20,7 @@ SRC_URI = "\
 file://pkg-config-native.in \
 file://pkg-config-esdk.in \
 "
-SRC_URI[sha256sum] = 
"cabdf3c474529854f7ccce8573c5ac68ad34a7e621037535cbc3981f6b23836c"
+SRC_URI[sha256sum] = 
"266d5861ee51c52bc710293a1d36622ae16d048d71ec56034a02eb9cf9677761"
 
 inherit autotools
 
-- 
2.42.0



0001-pkgconf-upgrade-2.0.3-2.1.0.patch
Description: Binary data
packages/core2-64-poky-linux/pkgconf: SRC_URI changed from 
"https://distfiles.ariadne.space/pkgconf/pkgconf-2.0.3.tar.xz 
file://pkg-config-wrapper file://pkg-config-native.in 
file://pkg-config-esdk.in" to 
"https://distfiles.ariadne.space/pkgconf/pkgconf-2.1.0.tar.xz 
file://pkg-config-wrapper file://pkg-config-native.in file://pkg-config-esdk.in"
packages/core2-64-poky-linux/pkgconf: PKGV changed from 2.0.3 [default] to 
2.1.0 [default]
packages/core2-64-poky-linux/pkgconf: PV changed from "2.0.3" to "2.1.0"
packages/core2-64-poky-linux/pkgconf/pkgconf-dbg: PKGSIZE changed from 310288 
to 314232 (+1%)
packages/core2-64-poky-linux/pkgconf/pkgconf-dbg: PKGV changed from 2.0.3 
[default] to 2.1.0 [default]
packages/core2-64-poky-linux/pkgconf/pkgconf-dbg: PV changed from "2.0.3" to 
"2.1.0"
packages/core2-64-poky-linux/pkgconf/pkgconf-dev: PKGSIZE changed from 24195 to 
24354 (+1%)
packages/core2-64-poky-linux/pkgconf/pkgconf-dev: PKGV changed from 2.0.3 
[default] to 2.1.0 [default]
packages/core2-64-poky-linux/pkgconf/pkgconf-dev: PV changed from "2.0.3" to 
"2.1.0"
packages/core2-64-poky-linux/pkgconf/pkgconf-doc: PKGV changed from 2.0.3 
[default] to 2.1.0 [default]
packages/core2-64-poky-linux/pkgconf/pkgconf-doc: PV changed from "2.0.3" to 
"2.1.0"
packages/core2-64-poky-linux/pkgconf/pkgconf-locale: PKGV changed from 2.0.3 
[default] to 2.1.0 [default]
packages/core2-64-poky-linux/pkgconf/pkgconf-locale: PV changed from "2.0.3" to 
"2.1.0"
packages/core2-64-poky-linux/pkgconf/pkgconf-src: PKGSIZE changed from 269541 
to 273448 (+1%)
packages/core2-64-poky-linux/pkgconf/pkgconf-src: PKGV changed from 2.0.3 
[default] to 2.1.0 [default]
packages/core2-64-poky-linux/pkgconf/pkgconf-src: PV changed from "2.0.3" to 
"2.1.0"
packages/core2-64-poky-linux/pkgconf/pkgconf-staticdev: PKGV changed from 2.0.3 
[default] to 2.1.0 [default]
packages/core2-64-poky-linux/pkgconf/pkgconf-staticdev: PV changed from "2.0.3" 
to "2.1.0"
packages/core2-64-poky-linux/pkgconf/pkgconf: PKGSIZE changed from 154025 to 
154057 (+0%)
packages/core2-64-poky-linux/pkgconf/pkgconf: PKGV changed from 2.0.3 [default] 
to 2.1.0 [default]
packages/core2-64-poky-linux/pkgconf/pkgconf: PV changed from "2.0.3" to "2.1.0"

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

2024-01-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.6.3* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-btrfs-tools-upgrade-6.5.3-6.6.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 2deda554e1c04528be31db2ed3c3a74699416539 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 06:01:09 +
Subject: [PATCH] btrfs-tools: upgrade 6.5.3 -> 6.6.3

---
 ...-a-possibility-to-specify-where-python-modules-ar.patch | 7 ---
 .../{btrfs-tools_6.5.3.bb => btrfs-tools_6.6.3.bb} | 2 +-
 2 files changed, 5 insertions(+), 4 deletions(-)
 rename meta/recipes-devtools/btrfs-tools/{btrfs-tools_6.5.3.bb => 
btrfs-tools_6.6.3.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 5846f04d1a..287888b62e 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 d3adfc21c9cc264bd191722f102963cbc4794259 Mon Sep 17 00:00:00 2001
+From 17fd0ef090e5df2b26069f160873444960aa6322 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
@@ -6,15 +6,16 @@ Subject: [PATCH] Add a possibility to specify where python 
modules are
 
 Upstream-Status: Inappropriate [oe-core specific to solve multilib use case]
 Signed-off-by: Alexander Kanavin 
+
 ---
  Makefile | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/Makefile b/Makefile
-index 1697794c..8ab38818 100644
+index 374f59b9..ed083f6b 100644
 --- a/Makefile
 +++ b/Makefile
-@@ -651,7 +651,7 @@ endif
+@@ -959,7 +959,7 @@ endif
  ifeq ($(PYTHON_BINDINGS),1)
  install_python: libbtrfsutil_python
$(Q)cd libbtrfsutil/python; \
diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools_6.5.3.bb 
b/meta/recipes-devtools/btrfs-tools/btrfs-tools_6.6.3.bb
similarity index 98%
rename from meta/recipes-devtools/btrfs-tools/btrfs-tools_6.5.3.bb
rename to meta/recipes-devtools/btrfs-tools/btrfs-tools_6.6.3.bb
index 873d5e7a14..ef40f553fb 100644
--- a/meta/recipes-devtools/btrfs-tools/btrfs-tools_6.5.3.bb
+++ b/meta/recipes-devtools/btrfs-tools/btrfs-tools_6.6.3.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 = "a45c360b64660477c726e192d9e92ceb73a50f80"
+SRCREV = "92e18dbce521789e02057d406769b073d474fa72"
 S = "${WORKDIR}/git"
 
 PACKAGECONFIG ??= " \
-- 
2.42.0



0001-btrfs-tools-upgrade-6.5.3-6.6.3.patch
Description: Binary data
Changes to packages/core2-64-poky-linux/btrfs-tools (sysroot):
  /usr/lib/python3.11/site-packages/btrfsutil-6.5.3-py3.11.egg-info moved to 
/usr/lib/python3.11/site-packages/btrfsutil-6.6.3-py3.11.egg-info
packages/core2-64-poky-linux/btrfs-tools/btrfs-tools-dbg: PKGV changed from 
6.5.3 [default] to 6.6.3 [default]
packages/core2-64-poky-linux/btrfs-tools/btrfs-tools-dbg: PV changed from 
"6.5.3" to "6.6.3"
packages/core2-64-poky-linux/btrfs-tools/btrfs-tools-dbg: PKGSIZE changed from 
24925904 to 25012304 (+0%)
packages/core2-64-poky-linux/btrfs-tools/btrfs-tools-dev: PKGV changed from 
6.5.3 [default] to 6.6.3 [default]
packages/core2-64-poky-linux/btrfs-tools/btrfs-tools-dev: PV changed from 
"6.5.3" to "6.6.3"
packages/core2-64-poky-linux/btrfs-tools/btrfs-tools-doc: PKGV changed from 
6.5.3 [default] to 6.6.3 [default]
packages/core2-64-poky-linux/btrfs-tools/btrfs-tools-doc: PV changed from 
"6.5.3" to "6.6.3"
packages/core2-64-poky-linux/btrfs-tools/btrfs-tools-locale: PKGV changed from 
6.5.3 [default] to 6.6.3 [default]
packages/core2-64-poky-linux/btrfs-tools/btrfs-tools-locale: PV changed from 
"6.5.3" to "6.6.3"
packages/core2-64-poky-linux/btrfs-tools/btrfs-tools-src: PKGV changed from 
6.5.3 

[OE-core] [AUH] python3-alabaster: upgrading to 0.7.16 FAILED

2024-01-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-alabaster* to 
*0.7.16* has Failed (devtool error).

Detailed error information:

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

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 4 Local 4 Mirrors 0 Missed 0 Current 26 (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 1850 entries from dependency cache.
Parsing recipes...done.
Parsing of 915 .bb files complete (913 cached, 2 parsed). 1851 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

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/a/alabaster/alabaster-0.7.16.tar.gz;downloadfilename=alabaster-0.7.16.tar.gz...
INFO: Rebasing devtool onto f9b09485a0a6dd7d61ad9c831e3a68a350d3a338
Traceback (most recent call last):
  File "/home/pokybuild/yocto-worker/auh/build/scripts/devtool", line 349, in 

ret = main()
  ^^
  File "/home/pokybuild/yocto-worker/auh/build/scripts/devtool", line 336, in 
main
ret = args.func(args, config, basepath, workspace)
  
  File "/home/pokybuild/yocto-worker/auh/build/scripts/lib/devtool/upgrade.py", 
line 582, 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 490, 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-alabaster/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 (#193714): 
https://lists.openembedded.org/g/openembedded-core/message/193714
Mute This Topic: https://lists.openembedded.org/mt/103744052/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] ovmf: upgrading to edk2-stable202311 FAILED

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 
0001-ovmf-upgrade-edk2-stable202308-edk2-stable202311.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 e14724a09cfc1168826f30123d9465ecaf0e0f3c Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 05:48:40 +
Subject: [PATCH] ovmf: upgrade edk2-stable202308 -> edk2-stable202311

---
 ...ovmf-update-path-to-native-BaseTools.patch | 10 ++-
 ...ile-adjust-to-build-in-under-bitbake.patch |  6 +-
 .../ovmf/ovmf/0003-debug-prefix-map.patch | 24 ---
 .../ovmf/ovmf/0004-reproducible.patch | 18 +++---
 ...005-Committing-changes-from-do_patch.patch | 64 +++
 meta/recipes-core/ovmf/ovmf_git.bb|  5 +-
 6 files changed, 92 insertions(+), 35 deletions(-)
 create mode 100644 
meta/recipes-core/ovmf/ovmf/0005-Committing-changes-from-do_patch.patch

diff --git 
a/meta/recipes-core/ovmf/ovmf/0001-ovmf-update-path-to-native-BaseTools.patch 
b/meta/recipes-core/ovmf/ovmf/0001-ovmf-update-path-to-native-BaseTools.patch
index 490d9e8046..abdc080f99 100644
--- 
a/meta/recipes-core/ovmf/ovmf/0001-ovmf-update-path-to-native-BaseTools.patch
+++ 
b/meta/recipes-core/ovmf/ovmf/0001-ovmf-update-path-to-native-BaseTools.patch
@@ -1,7 +1,7 @@
-From d8df6b6433351763e1db791dd84d432983d2b249 Mon Sep 17 00:00:00 2001
+From 09e2513456b785c990f50bd3e9451f2a3e69b642 Mon Sep 17 00:00:00 2001
 From: Ricardo Neri 
 Date: Thu, 9 Jun 2016 02:23:01 -0700
-Subject: [PATCH 1/4] ovmf: update path to native BaseTools
+Subject: [PATCH] ovmf: update path to native BaseTools
 
 BaseTools is a set of utilities to build EDK-based firmware. These utilities
 are used during the build process. Thus, they need to be built natively.
@@ -11,12 +11,13 @@ with the appropriate location before building.
 
 Signed-off-by: Ricardo Neri 
 Upstream-Status: Inappropriate [oe-core cross compile specific]
+
 ---
  OvmfPkg/build.sh | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/OvmfPkg/build.sh b/OvmfPkg/build.sh
-index b0334fb76e..094f86f096 100755
+index 279f0d099a..285f061bf4 100755
 --- a/OvmfPkg/build.sh
 +++ b/OvmfPkg/build.sh
 @@ -24,7 +24,7 @@ then
@@ -28,6 +29,3 @@ index b0334fb76e..094f86f096 100755
echo $EDK_TOOLS_PATH
source edksetup.sh BaseTools
  else
--- 
-2.30.2
-
diff --git 
a/meta/recipes-core/ovmf/ovmf/0002-BaseTools-makefile-adjust-to-build-in-under-bitbake.patch
 
b/meta/recipes-core/ovmf/ovmf/0002-BaseTools-makefile-adjust-to-build-in-under-bitbake.patch
index eeedc9e20f..8dc5f11413 100644
--- 
a/meta/recipes-core/ovmf/ovmf/0002-BaseTools-makefile-adjust-to-build-in-under-bitbake.patch
+++ 
b/meta/recipes-core/ovmf/ovmf/0002-BaseTools-makefile-adjust-to-build-in-under-bitbake.patch
@@ -1,4 +1,4 @@
-From ac9df4fb92965f1f95a5bdbde5f2f86d0c569711 Mon Sep 17 00:00:00 2001
+From ec2ee3ada86ea9fd7a705e90687d04631291d528 Mon Sep 17 00:00:00 2001
 From: Ricardo Neri 
 Date: Fri, 26 Jul 2019 17:34:26 -0400
 Subject: [PATCH] BaseTools: makefile: adjust to build in under bitbake
@@ -13,6 +13,7 @@ to fight against how upstream wants to configure the build.
 
 Signed-off-by: Ricardo Neri 
 Upstream-Status: Inappropriate [needs to be converted to in-recipe fixups]
+
 ---
  BaseTools/Source/C/Makefiles/header.makefile | 15 +++
  1 file changed, 7 insertions(+), 8 deletions(-)
@@ -64,6 +65,3 @@ index d369908a09..22c670f316 100644
  ifeq ($(HOST_ARCH), IA32)
  #
  # Snow Leopard  is a 32-bit and 64-bit environment. uname -m returns i386, 
but gcc defaults
--- 
-2.30.2
-
diff --git a/meta/recipes-core/ovmf/ovmf/0003-debug-prefix-map.patch 
b/meta/recipes-core/ovmf/ovmf/0003-debug-prefix-map.patch
index c0c763c1cf..a741e11a0f 100644
--- a/meta/recipes-core/ovmf/ovmf/0003-debug-prefix-map.patch
+++ b/meta/recipes-core/ovmf/ovmf/0003-debug-prefix-map.patch
@@ -1,7 +1,7 @@
-From 03e536b20d0b72cf078052f6748de8df3836625c Mon Sep 17 00:00:00 2001
+From f3e51d74770a62e2a2ca0cacdf262d1df348ad4e Mon Sep 17 00:00:00 2001
 From: Alexander Kanavin 
 Date: Mon, 14 Jun 2021 19:56:28 +0200
-Subject: [PATCH 3/4] debug prefix map

[OE-core] [AUH] dpkg: upgrading to 1.22.2 FAILED

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

Running 'devtool upgrade' for recipe dpkg failed.
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1850 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.7.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-1e2b3a9a497eeb999aa477a181c57f6494e9e95c"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:1e2b3a9a497eeb999aa477a181c57f6494e9e95c"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 6 Local 6 Mirrors 0 Missed 0 Current 24 (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: SRC_URI contains some conditional appends/prepends - will create branches 
to represent these
INFO: Extracting upgraded version source...
INFO: Rebasing devtool onto ff343eb85df0ea45edd6b7a6a9d52945f3d7e773
WARNING: Command 'git rebase ff343eb85df0ea45edd6b7a6a9d52945f3d7e773' failed:
Auto-merging data/ostable
Auto-merging data/tupletable
CONFLICT (content): Merge conflict in data/tupletable

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

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/dpkg
INFO: New recipe is 
/home/pokybuild/yocto-worker/auh/build/build/workspace/recipes/dpkg/dpkg_1.22.2.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 (#193711): 
https://lists.openembedded.org/g/openembedded-core/message/193711
Mute This Topic: https://lists.openembedded.org/mt/103744049/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] go-runtime: upgrading to 1.21.6 FAILED

2024-01-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.21.6* has 
Failed (devtool error).

Detailed error information:

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

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 6 Local 6 Mirrors 0 Missed 0 Current 24 (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 1850 entries from dependency cache.
Parsing recipes...done.
Parsing of 915 .bb files complete (913 cached, 2 parsed). 1851 targets, 38 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

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

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:   2% || ETA:  0:00:05
Adding changed files:   4% |#   | ETA:  0:00:03
Adding changed files:   7% |##  | ETA:  0:00:03
Adding changed files:   9% |### | ETA:  0:00:03
Adding changed files:  12% || ETA:  0:00:02
Adding changed files:  14% |#   | ETA:  0:00:02
Adding changed files:  17% |##  | ETA:  0:00:02
Adding changed files:  19% |### | ETA:  0:00:02
Adding changed files:  22% |### | ETA:  0:00:02
Adding changed files:  24% || ETA:  0:00:02
Adding changed files:  27% |#   | ETA:  0:00:02
Adding changed files:  29% |##  | ETA:  0:00:02
Adding changed files:  31% |### | ETA:  0:00:02
Adding changed files:  34% || ETA:  0:00:02
Adding changed files:  36% |#   | ETA:  0:00:02
Adding changed files:  39% |##  | ETA:  0:00:02
Adding changed files:  41% |### | ETA:  0:00:02
Adding changed files:  44% |### | ETA:  0:00:02
Adding changed files:  46% || ETA:  0:00:01
Adding changed files:  49% |#   | ETA:  0:00:01
Adding changed files:  51% |##  | ETA:  0:00:01
Adding changed files:  54% |### | ETA:  0:00:01
Adding changed files:  56% || ETA:  0:00:01
Adding changed files:  59% |#   | ETA:  0:00:01
Adding changed files:  61% |##  | ETA:  0:00:01
Adding changed files:  63% |### | ETA:  0:00:01
Adding changed files:  66% |### | ETA:  0:00:01
Adding changed files:  68% || ETA:  0:00:01
Adding changed files:  71% 

[OE-core] [AUH] update-rc.d: upgrading to b8f950105010270a768aa12245d6abf166346015 SUCCEEDED

2024-01-15 Thread Auto Upgrade Helper
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *update-rc.d* to 
*b8f950105010270a768aa12245d6abf166346015* has Succeeded.

Next steps:
- apply the patch: git am 0001-update-rc.d-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 ad938c49a9e702c73cf66c1e7006e3b9493d7557 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 05:55:06 +
Subject: [PATCH] update-rc.d: upgrade to latest revision

---
 meta/recipes-core/update-rc.d/update-rc.d_0.8.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-core/update-rc.d/update-rc.d_0.8.bb 
b/meta/recipes-core/update-rc.d/update-rc.d_0.8.bb
index 043cb3f13e..ba622fe716 100644
--- a/meta/recipes-core/update-rc.d/update-rc.d_0.8.bb
+++ b/meta/recipes-core/update-rc.d/update-rc.d_0.8.bb
@@ -7,7 +7,7 @@ LICENSE = "GPL-2.0-or-later"
 LIC_FILES_CHKSUM = 
"file://update-rc.d;beginline=5;endline=15;md5=d40a07c27f535425934bb5001f2037d9"
 
 SRC_URI = "git://git.yoctoproject.org/update-rc.d;branch=master;protocol=https"
-SRCREV = "8636cf478d426b568c1be11dbd9346f67e03adac"
+SRCREV = "b8f950105010270a768aa12245d6abf166346015"
 
 UPSTREAM_CHECK_COMMITS = "1"
 
-- 
2.42.0



0001-update-rc.d-upgrade-to-latest-revision.patch
Description: Binary data

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

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

Next steps:
- apply the patch: git am 0001-ofono-upgrade-2.2-2.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 13a21b48ac6a8d9530bf1d945901ba7252b65812 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 05:34:13 +
Subject: [PATCH] ofono: upgrade 2.2 -> 2.3

---
 ...mbim-add-an-optional-TEMP_FAILURE_RETRY-macro-copy.patch | 6 ++
 ...im-Fix-build-with-ell-0.39-by-restoring-unlikely-m.patch | 5 +++--
 .../ofono/{ofono_2.2.bb => ofono_2.3.bb}| 2 +-
 3 files changed, 6 insertions(+), 7 deletions(-)
 rename meta/recipes-connectivity/ofono/{ofono_2.2.bb => ofono_2.3.bb} (95%)

diff --git 
a/meta/recipes-connectivity/ofono/ofono/0001-mbim-add-an-optional-TEMP_FAILURE_RETRY-macro-copy.patch
 
b/meta/recipes-connectivity/ofono/ofono/0001-mbim-add-an-optional-TEMP_FAILURE_RETRY-macro-copy.patch
index 8a5a300adc..572705a0b1 100644
--- 
a/meta/recipes-connectivity/ofono/ofono/0001-mbim-add-an-optional-TEMP_FAILURE_RETRY-macro-copy.patch
+++ 
b/meta/recipes-connectivity/ofono/ofono/0001-mbim-add-an-optional-TEMP_FAILURE_RETRY-macro-copy.patch
@@ -1,4 +1,4 @@
-From 22b52db4842611ac31a356f023fc09595384e2ad Mon Sep 17 00:00:00 2001
+From 14b7e987e6835bedc14832004200c1993c6c4e55 Mon Sep 17 00:00:00 2001
 From: Khem Raj 
 Date: Thu, 23 May 2019 18:11:22 -0700
 Subject: [PATCH] mbim: add an optional TEMP_FAILURE_RETRY macro copy
@@ -7,6 +7,7 @@ Fixes build on musl which does not provide this macro
 
 Upstream-Status: Submitted 
[https://lists.ofono.org/pipermail/ofono/2019-May/019370.html]
 Signed-off-by: Khem Raj 
+
 ---
  drivers/mbimmodem/mbim-private.h | 9 +
  1 file changed, 9 insertions(+)
@@ -31,6 +32,3 @@ index e159235..51693ea 100644
  enum mbim_control_message {
MBIM_OPEN_MSG = 0x1,
MBIM_CLOSE_MSG = 0x2,
--- 
-2.21.0
-
diff --git 
a/meta/recipes-connectivity/ofono/ofono/0002-mbim-Fix-build-with-ell-0.39-by-restoring-unlikely-m.patch
 
b/meta/recipes-connectivity/ofono/ofono/0002-mbim-Fix-build-with-ell-0.39-by-restoring-unlikely-m.patch
index 3655b3fd66..9b7f1d1242 100644
--- 
a/meta/recipes-connectivity/ofono/ofono/0002-mbim-Fix-build-with-ell-0.39-by-restoring-unlikely-m.patch
+++ 
b/meta/recipes-connectivity/ofono/ofono/0002-mbim-Fix-build-with-ell-0.39-by-restoring-unlikely-m.patch
@@ -1,4 +1,4 @@
-From 76e4054801350ebd4a44057379431a33d460ad0f Mon Sep 17 00:00:00 2001
+From acd59d1f6efc83b10fa392028ea3fe239a575e1b Mon Sep 17 00:00:00 2001
 From: Martin Jansa 
 Date: Wed, 21 Apr 2021 11:01:34 +
 Subject: [PATCH] mbim: Fix build with ell-0.39 by restoring unlikely macro
@@ -7,12 +7,13 @@ Subject: [PATCH] mbim: Fix build with ell-0.39 by restoring 
unlikely macro
 Upstream-Status: Pending
 
 Signed-off-by: Martin Jansa 
+
 ---
  drivers/mbimmodem/mbim-private.h | 4 
  1 file changed, 4 insertions(+)
 
 diff --git a/drivers/mbimmodem/mbim-private.h 
b/drivers/mbimmodem/mbim-private.h
-index 51693eae..d917312c 100644
+index 51693ea..d917312 100644
 --- a/drivers/mbimmodem/mbim-private.h
 +++ b/drivers/mbimmodem/mbim-private.h
 @@ -30,6 +30,10 @@
diff --git a/meta/recipes-connectivity/ofono/ofono_2.2.bb 
b/meta/recipes-connectivity/ofono/ofono_2.3.bb
similarity index 95%
rename from meta/recipes-connectivity/ofono/ofono_2.2.bb
rename to meta/recipes-connectivity/ofono/ofono_2.3.bb
index 4e60f196ce..db5c8173de 100644
--- a/meta/recipes-connectivity/ofono/ofono_2.2.bb
+++ b/meta/recipes-connectivity/ofono/ofono_2.3.bb
@@ -13,7 +13,7 @@ SRC_URI = "\
 file://0001-mbim-add-an-optional-TEMP_FAILURE_RETRY-macro-copy.patch \
 file://0002-mbim-Fix-build-with-ell-0.39-by-restoring-unlikely-m.patch \
 "
-SRC_URI[sha256sum] = 
"5e13121c0f885a81ad882db065549ea13477abbcc219f150b38a8d2ac92521de"
+SRC_URI[sha256sum] = 
"658f9c16aec09c56bd36424982afc6ef292c0942b3a9e8ffefdda5974f01dac3"
 
 inherit autotools pkgconfig update-rc.d systemd gobject-introspection-data
 
-- 
2.42.0

NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 0 entries from dependency cache.
Parsing recipes...done.
Parsing of 914 .bb files complete (0 cached, 914 parsed). 1851 targets, 49 
skipped, 0 masked, 0 errors.

[OE-core] [AUH] systemd: upgrading to 255.2 FAILED

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

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

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

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: 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: Rebasing devtool onto 2c9e1ae02a74bd5383065885941aa272bbe0d1f8
WARNING: Command 'git rebase 2c9e1ae02a74bd5383065885941aa272bbe0d1f8' failed:
Auto-merging src/hibernate-resume/hibernate-resume-generator.c
CONFLICT (content): Merge conflict in 
src/hibernate-resume/hibernate-resume-generator.c

You will need to resolve conflicts in order to complete the upgrade.
INFO: Rebasing devtool-override-libc-musl onto 
2c9e1ae02a74bd5383065885941aa272bbe0d1f8
WARNING: Command 'git rebase 2c9e1ae02a74bd5383065885941aa272bbe0d1f8' failed:
Auto-merging src/hibernate-resume/hibernate-resume-generator.c
CONFLICT (content): Merge conflict in 
src/hibernate-resume/hibernate-resume-generator.c

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

2024-01-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.21.6* has 
Failed(other errors).

Detailed error information:

'MACHINE=qemux86-64 bitbake go' failed
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1851 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 102 Local 88 Mirrors 0 Missed 14 Current 202 (86% match, 
95% complete)
Removing 5 stale sstate objects for arch core2-64...done.
Removing 1 stale sstate objects for arch qemux86_64...done.
NOTE: Executing Tasks
NOTE: Running setscene task 239 of 304 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/go/go_1.20.12.bb:do_populate_lic_setscene)
NOTE: Running setscene task 240 of 304 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/go/go_1.20.12.bb:do_populate_sysroot_setscene)
NOTE: Running task 833 of 914 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/go/go-runtime_1.20.12.bb:do_package)
NOTE: recipe go-1.20.12-r0: task do_populate_lic_setscene: Started
NOTE: recipe go-1.20.12-r0: task do_populate_sysroot_setscene: Started
NOTE: recipe go-1.20.12-r0: task do_populate_lic_setscene: Succeeded
NOTE: recipe go-runtime-1.20.12-r0: task do_package: Started
NOTE: recipe go-1.20.12-r0: task do_populate_sysroot_setscene: Succeeded
NOTE: Running setscene task 303 of 304 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/go/go_1.20.12.bb:do_deploy_source_date_epoch_setscene)
NOTE: recipe go-1.20.12-r0: task do_deploy_source_date_epoch_setscene: Started
NOTE: recipe go-1.20.12-r0: task do_deploy_source_date_epoch_setscene: Succeeded
NOTE: Running setscene task 304 of 304 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/go/go_1.20.12.bb:do_recipe_qa_setscene)
NOTE: recipe go-1.20.12-r0: task do_recipe_qa_setscene: Started
NOTE: recipe go-1.20.12-r0: task do_recipe_qa_setscene: Succeeded
NOTE: Setscene tasks completed
NOTE: Running task 890 of 914 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/go/go_1.20.12.bb:do_fetch)
NOTE: recipe go-1.20.12-r0: task do_fetch: Started
NOTE: recipe go-1.20.12-r0: task do_fetch: Succeeded
NOTE: Running task 891 of 914 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/go/go_1.20.12.bb:do_unpack)
NOTE: Running task 892 of 914 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/go/go_1.20.12.bb:do_prepare_recipe_sysroot)
NOTE: recipe go-1.20.12-r0: task do_unpack: Started
NOTE: recipe go-1.20.12-r0: task do_prepare_recipe_sysroot: Started
NOTE: recipe go-1.20.12-r0: task do_prepare_recipe_sysroot: Succeeded
NOTE: recipe go-1.20.12-r0: task do_unpack: Succeeded
NOTE: Running task 893 of 914 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/go/go_1.20.12.bb:do_patch)
NOTE: Running task 894 of 914 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/go/go_1.20.12.bb:do_collect_spdx_deps)
NOTE: recipe go-1.20.12-r0: task do_patch: Started
NOTE: recipe go-1.20.12-r0: task do_collect_spdx_deps: Started
NOTE: recipe go-1.20.12-r0: task do_collect_spdx_deps: Succeeded
NOTE: recipe go-1.20.12-r0: task do_patch: Succeeded
NOTE: Running noexec task 896 of 914 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/go/go_1.20.12.bb:do_configure)
NOTE: Running task 897 of 914 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/go/go_1.20.12.bb:do_compile)
NOTE: recipe go-1.20.12-r0: task do_compile: Started
NOTE: recipe go-runtime-1.20.12-r0: task do_package: Succeeded
NOTE: Task 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/go/go-runtime_1.20.12.bb:do_package
 unihash changed to 
19229c88b683790edc77d1e7a3f7bfc460c75ae3c8acd0e1c5e993223dca9b2f
NOTE: Setscene task 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/go/go-runtime_1.20.12.bb:do_package_write_deb
 became valid
NOTE: Setscene task 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/go/go-runtime_1.20.12.bb:do_package_write_rpm
 became valid
NOTE: Setscene task 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/go/go-runtime_1.20.12.bb:do_package_write_ipk
 became valid
NOTE: Setscene task 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/go/go-runtime_1.20.12.bb:do_create_spdx
 became valid
NOTE: Setscene 

[OE-core] [AUH] systemd-boot: upgrading to 255.2 FAILED

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

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

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

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 2c9e1ae02a74bd5383065885941aa272bbe0d1f8
WARNING: Command 'git rebase 2c9e1ae02a74bd5383065885941aa272bbe0d1f8' failed:
Auto-merging src/hibernate-resume/hibernate-resume-generator.c
CONFLICT (content): Merge conflict in 
src/hibernate-resume/hibernate-resume-generator.c

You will need to resolve conflicts in order to complete the upgrade.
INFO: Upgraded source extracted to 
/home/pokybuild/yocto-worker/auh/build/build/workspace/sources/systemd-boot
INFO: New recipe is 
/home/pokybuild/yocto-worker/auh/build/build/workspace/recipes/systemd-boot/systemd-boot_255.2.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 (#193712): 
https://lists.openembedded.org/g/openembedded-core/message/193712
Mute This Topic: https://lists.openembedded.org/mt/103744050/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] cmake: upgrading to 3.28.1 FAILED

2024-01-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.28.1* has 
Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-cmake-upgrade-3.27.7-3.28.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 903792f491e9a8b975a22fbf360f30d0d056b2d3 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 06:06:56 +
Subject: [PATCH] cmake: upgrade 3.27.7 -> 3.28.1

---
 meta/recipes-devtools/cmake/cmake.inc   | 2 +-
 .../recipes-devtools/cmake/{cmake_3.27.7.bb => cmake_3.28.1.bb} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/cmake/{cmake_3.27.7.bb => cmake_3.28.1.bb} (100%)

diff --git a/meta/recipes-devtools/cmake/cmake.inc 
b/meta/recipes-devtools/cmake/cmake.inc
index ecb0e487df..16bdb34b5e 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] = 
"08f71a106036bf051f692760ef9558c0577c42ac39e96ba097e7662bd4158d8e"
+SRC_URI[sha256sum] = 
"15e94f83e647f7d620a140a7a5da76349fc47a1bfed66d0f5cdee8e7344079ad"
 
 UPSTREAM_CHECK_REGEX = "cmake-(?P\d+(\.\d+)+)\.tar"
 
diff --git a/meta/recipes-devtools/cmake/cmake_3.27.7.bb 
b/meta/recipes-devtools/cmake/cmake_3.28.1.bb
similarity index 100%
rename from meta/recipes-devtools/cmake/cmake_3.27.7.bb
rename to meta/recipes-devtools/cmake/cmake_3.28.1.bb
-- 
2.42.0

NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1852 entries from dependency cache.
Parsing recipes...done.
Parsing of 914 .bb files complete (912 cached, 2 parsed). 1850 targets, 38 
skipped, 0 masked, 0 errors.
Removing 1 recipes from the core2-64 sysroot...done.
Removing 1 recipes from the qemux86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 232 Local 135 Mirrors 0 Missed 97 Current 182 (58% 
match, 76% complete)
Removing 17 stale sstate objects for arch core2-64...done.
Removing 15 stale sstate objects for arch x86_64...done.
Removing 20 stale sstate objects for arch qemux86_64...done.
NOTE: Executing Tasks
NOTE: Running setscene task 201 of 414 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-core/expat/expat_2.5.0.bb:do_deploy_source_date_epoch_setscene)
NOTE: Running setscene task 203 of 414 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/cmake/cmake_3.28.1.bb:do_recipe_qa_setscene)
NOTE: Running setscene task 212 of 414 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-extended/bzip2/bzip2_1.0.8.bb:do_deploy_source_date_epoch_setscene)
NOTE: Running setscene task 214 of 414 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-extended/libarchive/libarchive_3.7.2.bb:do_deploy_source_date_epoch_setscene)
NOTE: Running setscene task 219 of 414 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-extended/xz/xz_5.4.4.bb:do_deploy_source_date_epoch_setscene)
NOTE: Running setscene task 223 of 414 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-extended/zstd/zstd_1.5.5.bb:do_deploy_source_date_epoch_setscene)
NOTE: Running setscene task 227 of 414 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/acl_2.3.1.bb:do_deploy_source_date_epoch_setscene)
NOTE: Running setscene task 231 of 414 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/attr/attr_2.5.1.bb:do_deploy_source_date_epoch_setscene)
NOTE: Running setscene task 240 of 414 

[OE-core] [AUH] librepo: upgrading to 1.17.0 FAILED

2024-01-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.0* has 
Failed (devtool error).

Detailed error information:

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

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

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 6 Local 6 Mirrors 0 Missed 0 Current 24 (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 ae727d99086f70f39fba5695af5460e1da908c1b
WARNING: Command 'git rebase ae727d99086f70f39fba5695af5460e1da908c1b' failed:
Auto-merging CMakeLists.txt
CONFLICT (content): Merge conflict in CMakeLists.txt

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/librepo
INFO: New recipe is 
/home/pokybuild/yocto-worker/auh/build/build/workspace/recipes/librepo/librepo_1.17.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 (#193705): 
https://lists.openembedded.org/g/openembedded-core/message/193705
Mute This Topic: https://lists.openembedded.org/mt/103744043/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] libxml2: upgrading to 2.12.3 SUCCEEDED

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

Next steps:
- apply the patch: git am 0001-libxml2-upgrade-2.11.5-2.12.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 07ff27a5d5f95e37236cf539629802b7c0b5685d Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 05:44:09 +
Subject: [PATCH] libxml2: upgrade 2.11.5 -> 2.12.3

---
 .../libxml/libxml2/install-tests.patch|  8 +--
 .../{libxml2_2.11.5.bb => libxml2_2.12.3.bb}  | 50 +--
 2 files changed, 50 insertions(+), 8 deletions(-)
 rename meta/recipes-core/libxml/{libxml2_2.11.5.bb => libxml2_2.12.3.bb} (69%)

diff --git a/meta/recipes-core/libxml/libxml2/install-tests.patch 
b/meta/recipes-core/libxml/libxml2/install-tests.patch
index 14ccce5873..85b140842c 100644
--- a/meta/recipes-core/libxml/libxml2/install-tests.patch
+++ b/meta/recipes-core/libxml/libxml2/install-tests.patch
@@ -1,4 +1,4 @@
-From 3fc716357ce1372d9418dc86f24315b34d9808de Mon Sep 17 00:00:00 2001
+From 8ccd0f80c72468c00c2939d237b9fc3b2df37088 Mon Sep 17 00:00:00 2001
 From: Ross Burton 
 Date: Mon, 5 Dec 2022 17:02:32 +
 Subject: [PATCH] add yocto-specific install-ptest target
@@ -13,11 +13,11 @@ Signed-off-by: Ross Burton 
  1 file changed, 10 insertions(+)
 
 diff --git a/Makefile.am b/Makefile.am
-index 5bc4018..57d27af 100644
+index 0a49d37..1097c63 100644
 --- a/Makefile.am
 +++ b/Makefile.am
-@@ -26,6 +26,16 @@ check_PROGRAMS = \
-   testlimits \
+@@ -27,6 +27,16 @@ check_PROGRAMS = \
+   testparser \
testrecurse
  
 +ptestdir=$(libexecdir)
diff --git a/meta/recipes-core/libxml/libxml2_2.11.5.bb 
b/meta/recipes-core/libxml/libxml2_2.12.3.bb
similarity index 69%
rename from meta/recipes-core/libxml/libxml2_2.11.5.bb
rename to meta/recipes-core/libxml/libxml2_2.12.3.bb
index 319833f053..dc61d5f862 100644
--- a/meta/recipes-core/libxml/libxml2_2.11.5.bb
+++ b/meta/recipes-core/libxml/libxml2_2.12.3.bb
@@ -1,13 +1,55 @@
+# 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
+# +++ Copyright
+# @@ -1,4 +1,4 @@
+# -Except where otherwise noted in the source code (e.g. the files hash.c,
+# +Except where otherwise noted in the source code (e.g. the files dict.c,
+#  list.c and the trio files, which are covered by a similar licence but
+#  with different Copyright notices) all the files are:
+#  
+# --- hash.c
+# +++ hash.c
+# @@ -1,10 +1,10 @@
+# - * Copyright (C) 2000,2012 Bjorn Reese and Daniel Veillard.
+#   *
+# - * Permission to use, copy, modify, and distribute this software for any
+# - * purpose with or without fee is hereby granted, provided that the above
+# - * copyright notice and this permission notice appear in all copies.
+# - *
+# - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
+# - * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
+# - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE AUTHORS AND
+# - * CONTRIBUTORS ACCEPT NO RESPONSIBILITY IN ANY CONCEIVABLE MANNER.
+# + * See Copyright for the status of this software.
+# + */
+# +
+# +#define IN_LIBXML
+# +#include "libxml.h"
+# +
+# +#include 
+# +#include 
+# +
+# 
+#
+
 SUMMARY = "XML C Parser Library and Toolkit"
 DESCRIPTION = "The XML Parser Library allows for manipulation of XML files.  
Libxml2 exports Push and Pull type parser interfaces for both XML and HTML.  It 
can do DTD validation at parse time, on a parsed document instance or with an 
arbitrary DTD.  Libxml2 includes complete XPath, XPointer and Xinclude 
implementations.  It also has a SAX like interface, which is designed to be 
compatible with Expat."
 HOMEPAGE = "https://gitlab.gnome.org/GNOME/libxml2;
 BUGTRACKER = "http://bugzilla.gnome.org/buglist.cgi?product=libxml2;
 SECTION = "libs"
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://Copyright;md5=2044417e2e5006b65a8b9067b683fcf1 \
-

[OE-core] [AUH] autoconf: upgrading to 2.72e FAILED

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

Detailed error information:

The following devtool command failed:  upgrade autoconf -V 2.72e
NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1850 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.7.1"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "4.3+snapshot-c41f9d0eb006b99014a83e1bcb27696608082aa5"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   
workspace= 
"tmp-auh-upgrades:c41f9d0eb006b99014a83e1bcb27696608082aa5"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 15 Local 9 Mirrors 0 Missed 6 Current 14 (60% match, 79% 
complete)
Removing 4 stale sstate objects for arch x86_64...done.
NOTE: Executing Tasks
Log data follows:
| DEBUG: Executing python function do_unpack
| DEBUG: Executing python function base_do_unpack
| NOTE: Unpacking 
/srv/autobuilder/autobuilder.yocto.io/current_sources/autoconf-2.72d.tar.gz to 
/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/autoconf/2.72d/devtooltmp-7xs6et3j/workdir/
| DEBUG: Searching for program_prefix.patch in paths:
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/autoconf-2.72d/poky
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/autoconf/poky
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/files/poky
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/autoconf-2.72d/
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/autoconf/
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/files/
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/autoconf-2.72d/x86-64
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/autoconf/x86-64
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/files/x86-64
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/autoconf-2.72d/
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/autoconf/
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/files/
| DEBUG: Using 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/autoconf/program_prefix.patch
 for program_prefix.patch
| NOTE: Unpacking 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/autoconf/program_prefix.patch
 to 
/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/autoconf/2.72d/devtooltmp-7xs6et3j/workdir/
| DEBUG: Searching for autoreconf-exclude.patch in paths:
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/autoconf-2.72d/poky
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/autoconf/poky
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/files/poky
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/autoconf-2.72d/
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/autoconf/
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/files/
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/autoconf-2.72d/x86-64
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/autoconf/x86-64
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/files/x86-64
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/autoconf-2.72d/
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/autoconf/
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/files/
| DEBUG: Using 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/autoconf/autoreconf-exclude.patch
 for autoreconf-exclude.patch
| NOTE: Unpacking 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/autoconf/autoreconf-exclude.patch
 to 
/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/autoconf/2.72d/devtooltmp-7xs6et3j/workdir/
| DEBUG: Searching for remove-usr-local-lib-from-m4.patch in paths:
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/autoconf-2.72d/poky
| 
/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/autoconf/autoconf/poky
| 

[OE-core] [AUH] bluez5: upgrading to 5.72 SUCCEEDED

2024-01-15 Thread Auto Upgrade Helper
Hello,

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

Next steps:
- apply the patch: git am 0001-bluez5-upgrade-5.71-5.72.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 7041b7aa16df7a05a3cf3289ae352efaec9ee7ac Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Mon, 15 Jan 2024 05:22:13 +
Subject: [PATCH] bluez5: upgrade 5.71 -> 5.72

---
 .../bluez5/bluez5/0001-test-gatt-Fix-hung-issue.patch   | 6 +++---
 ...sts-add-a-target-for-building-tests-without-runnin.patch | 4 ++--
 .../0004-src-shared-util.c-include-linux-limits.h.patch | 4 ++--
 .../bluez5/{bluez5_5.71.bb => bluez5_5.72.bb}   | 2 +-
 4 files changed, 8 insertions(+), 8 deletions(-)
 rename meta/recipes-connectivity/bluez5/{bluez5_5.71.bb => bluez5_5.72.bb} 
(94%)

diff --git 
a/meta/recipes-connectivity/bluez5/bluez5/0001-test-gatt-Fix-hung-issue.patch 
b/meta/recipes-connectivity/bluez5/bluez5/0001-test-gatt-Fix-hung-issue.patch
index 3546c7c305..b1e93dbe19 100644
--- 
a/meta/recipes-connectivity/bluez5/bluez5/0001-test-gatt-Fix-hung-issue.patch
+++ 
b/meta/recipes-connectivity/bluez5/bluez5/0001-test-gatt-Fix-hung-issue.patch
@@ -1,4 +1,4 @@
-From e8808a2f5e17d375411c7409eaffb17e72f65022 Mon Sep 17 00:00:00 2001
+From fb583a57f9f4ab956a09e9bb96d89aa13553bf21 Mon Sep 17 00:00:00 2001
 From: Mingli Yu 
 Date: Fri, 24 Aug 2018 12:04:03 +0800
 Subject: [PATCH] test-gatt: Fix hung issue
@@ -27,10 +27,10 @@ Signed-off-by: Mingli Yu 
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/unit/test-gatt.c b/unit/test-gatt.c
-index f92d860..a5f7117 100644
+index 5e06d4e..4864d36 100644
 --- a/unit/test-gatt.c
 +++ b/unit/test-gatt.c
-@@ -4479,7 +4479,7 @@ int main(int argc, char *argv[])
+@@ -4546,7 +4546,7 @@ int main(int argc, char *argv[])
test_server, service_db_1, NULL,
raw_pdu(0x03, 0x00, 0x02),
raw_pdu(0xbf, 0x00),
diff --git 
a/meta/recipes-connectivity/bluez5/bluez5/0001-tests-add-a-target-for-building-tests-without-runnin.patch
 
b/meta/recipes-connectivity/bluez5/bluez5/0001-tests-add-a-target-for-building-tests-without-runnin.patch
index be05093551..881494a354 100644
--- 
a/meta/recipes-connectivity/bluez5/bluez5/0001-tests-add-a-target-for-building-tests-without-runnin.patch
+++ 
b/meta/recipes-connectivity/bluez5/bluez5/0001-tests-add-a-target-for-building-tests-without-runnin.patch
@@ -1,4 +1,4 @@
-From 3724958858b0ee430f37fb83388c3737d2039a3a Mon Sep 17 00:00:00 2001
+From 738e73b386352fd90f1f26cc1ee75427cf4dc23b Mon Sep 17 00:00:00 2001
 From: Alexander Kanavin 
 Date: Fri, 1 Apr 2016 17:07:34 +0300
 Subject: [PATCH] tests: add a target for building tests without running them
@@ -11,7 +11,7 @@ Signed-off-by: Alexander Kanavin 
  1 file changed, 3 insertions(+)
 
 diff --git a/Makefile.am b/Makefile.am
-index e7221bd..9595fd1 100644
+index e738eb3..dab17dd 100644
 --- a/Makefile.am
 +++ b/Makefile.am
 @@ -710,6 +710,9 @@ endif
diff --git 
a/meta/recipes-connectivity/bluez5/bluez5/0004-src-shared-util.c-include-linux-limits.h.patch
 
b/meta/recipes-connectivity/bluez5/bluez5/0004-src-shared-util.c-include-linux-limits.h.patch
index 6ef135327d..516d859069 100644
--- 
a/meta/recipes-connectivity/bluez5/bluez5/0004-src-shared-util.c-include-linux-limits.h.patch
+++ 
b/meta/recipes-connectivity/bluez5/bluez5/0004-src-shared-util.c-include-linux-limits.h.patch
@@ -1,4 +1,4 @@
-From ad069fadfcce2cf70f45b1c4a42665448675297e Mon Sep 17 00:00:00 2001
+From b53df61b41088b68c127ac76cc71683ac3453b9d Mon Sep 17 00:00:00 2001
 From: Alexander Kanavin 
 Date: Mon, 12 Dec 2022 13:10:19 +0100
 Subject: [PATCH] src/shared/util.c: include linux/limits.h
@@ -14,7 +14,7 @@ Signed-off-by: Alexander Kanavin 
  1 file changed, 1 insertion(+)
 
 diff --git a/src/shared/util.c b/src/shared/util.c
-index 34491f4..412f3ad 100644
+index c0c2c4a..036dc0d 100644
 --- a/src/shared/util.c
 +++ b/src/shared/util.c
 @@ -23,6 +23,7 @@
diff --git a/meta/recipes-connectivity/bluez5/bluez5_5.71.bb 
b/meta/recipes-connectivity/bluez5/bluez5_5.72.bb
similarity index 94%
rename from meta/recipes-connectivity/bluez5/bluez5_5.71.bb
rename to 

  1   2   >