[OE-core] [PATCH 1/2] kexec-tools: Fix additional duplicate symbols on aarch64/x86_64 builds

2020-08-15 Thread Khem Raj
Fixes build with -fno-common

Signed-off-by: Khem Raj 
---
 ...0001-kexec-Fix-build-with-fno-common.patch | 39 +++
 1 file changed, 32 insertions(+), 7 deletions(-)

diff --git 
a/meta/recipes-kernel/kexec/kexec-tools/0001-kexec-Fix-build-with-fno-common.patch
 
b/meta/recipes-kernel/kexec/kexec-tools/0001-kexec-Fix-build-with-fno-common.patch
index 355053363e..a3ba0912d4 100644
--- 
a/meta/recipes-kernel/kexec/kexec-tools/0001-kexec-Fix-build-with-fno-common.patch
+++ 
b/meta/recipes-kernel/kexec/kexec-tools/0001-kexec-Fix-build-with-fno-common.patch
@@ -12,8 +12,6 @@ Signed-off-by: Khem Raj 
  kexec/fs2dt.h  | 2 +-
  2 files changed, 1 insertion(+), 3 deletions(-)
 
-diff --git a/kexec/arch/ppc64/kexec-elf-ppc64.c 
b/kexec/arch/ppc64/kexec-elf-ppc64.c
-index 3510b70..695b8b0 100644
 --- a/kexec/arch/ppc64/kexec-elf-ppc64.c
 +++ b/kexec/arch/ppc64/kexec-elf-ppc64.c
 @@ -44,8 +44,6 @@
@@ -25,8 +23,6 @@ index 3510b70..695b8b0 100644
  
  int elf_ppc64_probe(const char *buf, off_t len)
  {
-diff --git a/kexec/fs2dt.h b/kexec/fs2dt.h
-index 7633273..fe24931 100644
 --- a/kexec/fs2dt.h
 +++ b/kexec/fs2dt.h
 @@ -30,7 +30,7 @@ extern struct bootblock bb[1];
@@ -38,6 +34,35 @@ index 7633273..fe24931 100644
  extern int dt_no_old_root;
  
  void reserve(unsigned long long where, unsigned long long length);
--- 
-2.28.0
-
+--- a/kexec/arch/arm64/kexec-arm64.h
 b/kexec/arch/arm64/kexec-arm64.h
+@@ -50,8 +50,8 @@ int zImage_arm64_load(int argc, char **a
+ void zImage_arm64_usage(void);
+ 
+ 
+-off_t initrd_base;
+-off_t initrd_size;
++extern off_t initrd_base;
++extern off_t initrd_size;
+ 
+ /**
+  * struct arm64_mem - Memory layout info.
+@@ -65,7 +65,7 @@ struct arm64_mem {
+ };
+ 
+ #define arm64_mem_ngv UINT64_MAX
+-struct arm64_mem arm64_mem;
++extern struct arm64_mem arm64_mem;
+ 
+ uint64_t get_phys_offset(void);
+ uint64_t get_vp_offset(void);
+--- a/kexec/arch/x86_64/kexec-bzImage64.c
 b/kexec/arch/x86_64/kexec-bzImage64.c
+@@ -42,7 +42,6 @@
+ #include 
+ 
+ static const int probe_debug = 0;
+-int bzImage_support_efi_boot;
+ 
+ int bzImage64_probe(const char *buf, off_t len)
+ {
-- 
2.28.0

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#141529): 
https://lists.openembedded.org/g/openembedded-core/message/141529
Mute This Topic: https://lists.openembedded.org/mt/76219780/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub  
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


[OE-core] [PATCH 2/2] buildcpio.py: Apply patch to fix build with -fno-common

2020-08-15 Thread Khem Raj
This sed expression implements the needed patch to fix compilation with
-fno-common, hopefully this patch will get included in 2.14 release and
we can remove this operation

Signed-off-by: Khem Raj 
---
 meta/lib/oeqa/runtime/cases/buildcpio.py | 3 ++-
 meta/lib/oeqa/sdk/cases/buildcpio.py | 1 +
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/meta/lib/oeqa/runtime/cases/buildcpio.py 
b/meta/lib/oeqa/runtime/cases/buildcpio.py
index d0f91668b2..e29bf16ccb 100644
--- a/meta/lib/oeqa/runtime/cases/buildcpio.py
+++ b/meta/lib/oeqa/runtime/cases/buildcpio.py
@@ -27,6 +27,7 @@ class BuildCpioTest(OERuntimeTestCase):
 @OEHasPackage(['autoconf'])
 def test_cpio(self):
 self.project.download_archive()
-self.project.run_configure('--disable-maintainer-mode','')
+self.project.run_configure('--disable-maintainer-mode',
+   'sed -i -e "/char \*program_name/d" 
src/global.c;')
 self.project.run_make()
 self.project.run_install()
diff --git a/meta/lib/oeqa/sdk/cases/buildcpio.py 
b/meta/lib/oeqa/sdk/cases/buildcpio.py
index 902e93f623..6fce47d953 100644
--- a/meta/lib/oeqa/sdk/cases/buildcpio.py
+++ b/meta/lib/oeqa/sdk/cases/buildcpio.py
@@ -28,6 +28,7 @@ class BuildCpioTest(OESDKTestCase):
 self.assertTrue(os.path.isdir(dirs["source"]))
 os.makedirs(dirs["build"])
 
+self._run("cd {source} && sed -i -e '/char \*program_name/d' 
src/global.c".format(**dirs))
 self._run("cd {build} && {source}/configure 
--disable-maintainer-mode $CONFIGURE_FLAGS".format(**dirs))
 self._run("cd {build} && make -j".format(**dirs))
 self._run("cd {build} && make install 
DESTDIR={install}".format(**dirs))
-- 
2.28.0

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#141530): 
https://lists.openembedded.org/g/openembedded-core/message/141530
Mute This Topic: https://lists.openembedded.org/mt/76219781/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] Upgrade status: 2020-08-16

2020-08-15 Thread auh
Recipe upgrade statistics:

* Succeeded: 38
libubootenv, 0.3, Stefano Babic 
iproute2, 5.8.0, Changhyeok Bae 
systemd-boot, 246.1, Chen Qi 
util-linux, 2.36, Chen Qi 
bison, 3.7.1, Chen Qi 
build-compare, 2020.05.29-new-commits-available, Paul Eggleton 

python3-numpy, 1.19.1, Oleksandr Kravchuk 

python3-setuptools, 49.6.0, Oleksandr Kravchuk 

rsync, 3.2.3, Yi Zhao 
vala, 0.48.9, Alexander Kanavin 
acpica, 20200717, Ross Burton 
asciidoc, 9.0.2, Yi Zhao 
libpipeline, 1.5.3, Alexander Kanavin 
man-pages, 5.08, Hongxu Jia 
mc, 4.8.25, Ross Burton 
stress-ng, 0.11.18, Anuj Mittal 
sysstat, 12.4.0, Chen Qi 
epiphany, 3.36.4, Alexander Kanavin 
gtk+3, 3.24.22, Ross Burton 
libhandy, 0.90.0, Alexander Kanavin 
harfbuzz, 2.7.1, Anuj Mittal 
mesa, 20.1.5, Otavio Salvador 
piglit, 1.0-new-commits-available, Ross Burton 
vulkan-headers, 1.2.148.0, Anuj Mittal 
libinput, 1.16.1, Ross Burton 
font-alias, 1.0.4, Armin Kuster 
libx11, 1.6.11, Armin Kuster 
cryptodev-linux, 1.11, Robert Yang 
cryptodev-module, 1.11, Robert Yang 
cryptodev-tests, 1.11, Robert Yang 
linux-firmware, 20200721, Otavio Salvador 

lttng-tools, 2.12.2, Richard Purdie 
x264, r2991-new-commits-available, Anuj Mittal 
webkitgtk, 2.28.4, Alexander Kanavin 
diffoscope, 156, Joshua Watt 
libcheck, 0.15.2, Yi Zhao 
re2c, 2.0.2, Khem Raj 
sqlite3, 3.33.0, Anuj Mittal 
* Failed (devtool error): 11
bind, 9.16.5, Armin Kuster 
gettext, 0.21, Robert Yang 
bootchart2, 0.14.9, Alexander Kanavin 
go-runtime, 1.15, Khem Raj 
go, 1.15, Khem Raj 
qemu, 5.1.0, Richard Purdie 
vulkan-demos, git-new-commits-available, Ross Burton 

xev, 1.2.4, Armin Kuster 
boost, 1.74.0, Alexander Kanavin 
gpgme, 1.14.0, Hongxu Jia 
libpsl, 0.21.1, Anuj Mittal 
* Failed(do_compile): 7
cmake, 3.18.1, Pascal Bach 
ethtool, 5.8, Changhyeok Bae 
pango, 1.46.0, Ross Burton 
vulkan-loader, 1.2.148.0, Anuj Mittal 
vulkan-tools, 1.2.148.0, Anuj Mittal 
weston, 8.0.92, Denys Dmytriyenko 
wpebackend-fdo, 1.7.1, Alexander Kanavin 
* Failed(other errors): 1
gcc-source-10.1.0, 10.2.0, Khem Raj 

TOTAL: attempted=57 succeeded=38(66.67%) failed=19(33.33%)

Recipe upgrade statistics per Maintainer:

Khem Raj -=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#141527): 
https://lists.openembedded.org/g/openembedded-core/message/141527
Mute This Topic: https://lists.openembedded.org/mt/76219693/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] sqlite3: upgrading to 3.33.0 SUCCEEDED

2020-08-15 Thread auh
Hello,

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

Next steps:
- apply the patch: git am 0001-sqlite3-upgrade-3.32.3-3.33.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
>From 828ef108cfaae8cdf9a14fb1e12ad3f24f559e34 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Sun, 16 Aug 2020 06:19:34 +
Subject: [PATCH] sqlite3: upgrade 3.32.3 -> 3.33.0

---
 .../sqlite/{sqlite3_3.32.3.bb => sqlite3_3.33.0.bb}| 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta/recipes-support/sqlite/{sqlite3_3.32.3.bb => sqlite3_3.33.0.bb} (68%)

diff --git a/meta/recipes-support/sqlite/sqlite3_3.32.3.bb b/meta/recipes-support/sqlite/sqlite3_3.33.0.bb
similarity index 68%
rename from meta/recipes-support/sqlite/sqlite3_3.32.3.bb
rename to meta/recipes-support/sqlite/sqlite3_3.33.0.bb
index 1d4e8d4772..611a1bd923 100644
--- a/meta/recipes-support/sqlite/sqlite3_3.32.3.bb
+++ b/meta/recipes-support/sqlite/sqlite3_3.33.0.bb
@@ -4,8 +4,7 @@ LICENSE = "PD"
 LIC_FILES_CHKSUM = "file://sqlite3.h;endline=11;md5=786d3dc581eff03f4fd9e4a77ed00c66"
 
 SRC_URI = "http://www.sqlite.org/2020/sqlite-autoconf-${SQLITE_PV}.tar.gz";
-SRC_URI[md5sum] = "2e3911a3c15e85c2f2d040154bbe5ce3"
-SRC_URI[sha256sum] = "a31507123c1c2e3a210afec19525fd7b5bb1e19a6a34ae5b998fbd7302568b66"
+SRC_URI[sha256sum] = "106a2c48c7f75a298a7557bcc0d5f4f454e5b43811cc738b7ca294d6956bbb15"
 
 # -19242 is only an issue in specific development branch commits
 CVE_CHECK_WHITELIST += "CVE-2019-19242"
-- 
2.17.1

packages/core2-32-poky-linux/sqlite3: PV changed from "3.32.3" to "3.33.0"
packages/core2-32-poky-linux/sqlite3: PKGV changed from 3.32.3 [default] to 
3.33.0 [default]
packages/core2-32-poky-linux/sqlite3/libsqlite3-dev: PV changed from "3.32.3" 
to "3.33.0"
packages/core2-32-poky-linux/sqlite3/libsqlite3-dev: PKGV changed from 3.32.3 
[default] to 3.33.0 [default]
packages/core2-32-poky-linux/sqlite3/libsqlite3-dev: PKGSIZE changed from 
616740 to 616116 (-0%)
packages/core2-32-poky-linux/sqlite3/libsqlite3-doc: PV changed from "3.32.3" 
to "3.33.0"
packages/core2-32-poky-linux/sqlite3/libsqlite3-doc: PKGV changed from 3.32.3 
[default] to 3.33.0 [default]
packages/core2-32-poky-linux/sqlite3/libsqlite3-staticdev: PV changed from 
"3.32.3" to "3.33.0"
packages/core2-32-poky-linux/sqlite3/libsqlite3-staticdev: PKGV changed from 
3.32.3 [default] to 3.33.0 [default]
packages/core2-32-poky-linux/sqlite3/libsqlite3: PV changed from "3.32.3" to 
"3.33.0"
packages/core2-32-poky-linux/sqlite3/libsqlite3: PKGV changed from 3.32.3 
[default] to 3.33.0 [default]
packages/core2-32-poky-linux/sqlite3/libsqlite3: PKGSIZE changed from 1362659 
to 1370851 (+1%)
packages/core2-32-poky-linux/sqlite3/sqlite3-dbg: PV changed from "3.32.3" to 
"3.33.0"
packages/core2-32-poky-linux/sqlite3/sqlite3-dbg: PKGV changed from 3.32.3 
[default] to 3.33.0 [default]
packages/core2-32-poky-linux/sqlite3/sqlite3-dbg: PKGSIZE changed from 5366048 
to 5455016 (+2%)
packages/core2-32-poky-linux/sqlite3/sqlite3-src: PV changed from "3.32.3" to 
"3.33.0"
packages/core2-32-poky-linux/sqlite3/sqlite3-src: PKGV changed from 3.32.3 
[default] to 3.33.0 [default]
packages/core2-32-poky-linux/sqlite3/sqlite3-src: PKGSIZE changed from 9305155 
to 9355305 (+1%)
packages/core2-32-poky-linux/sqlite3/sqlite3: PV changed from "3.32.3" to 
"3.33.0"
packages/core2-32-poky-linux/sqlite3/sqlite3: PKGV changed from 3.32.3 
[default] to 3.33.0 [default]
packages/core2-32-poky-linux/sqlite3/sqlite3: PKGSIZE changed from 239500 to 
255884 (+7%)
Changes to packages/x86_64-linux/binutils-cross-i686 (sysroot):
  /sysroot-providers/virtual_i686-poky-linux-musl-binutils was added
  /usr/bin/i686-poky-linux-musl was added
  /usr/bin/i686-poky-linux-musl/i686-poky-linux-musl-addr2line was added
  /usr/bin/i686-poky-linux-musl/i686-poky-linux-musl-ar was added
  /usr/bin/i686-poky-linux-musl/i686-poky-linux-musl-as was added
  /usr/bin/i686-poky-linux-musl/i686-poky-linux-musl-c++filt was added
  /usr/bin/i686-poky-linux-musl/i686-poky-linux-musl-dwp was added
  /usr/bin/i686-poky-linux-musl/i686-poky-linux-musl-elfedit was added
  /usr/bin/i686-poky-linux-musl/i686-poky-linux-musl-gprof was added
  /usr/bin/i686-poky-linu

[OE-core] [AUH] libcheck: upgrading to 0.15.2 SUCCEEDED

2020-08-15 Thread auh
Hello,

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

Next steps:
- apply the patch: git am 0001-libcheck-upgrade-0.15.0-0.15.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
packages/core2-32-poky-linux/libcheck/checkmk: PV changed from "0.15.0" to 
"0.15.2"
packages/core2-32-poky-linux/libcheck/checkmk: PKGV changed from 0.15.0 
[default] to 0.15.2 [default]
packages/core2-32-poky-linux/libcheck: PV changed from "0.15.0" to "0.15.2"
packages/core2-32-poky-linux/libcheck: PKGV changed from 0.15.0 [default] to 
0.15.2 [default]
packages/core2-32-poky-linux/libcheck/libcheck-dbg: PV changed from "0.15.0" to 
"0.15.2"
packages/core2-32-poky-linux/libcheck/libcheck-dbg: PKGSIZE changed from 113200 
to 113216 (+0%)
packages/core2-32-poky-linux/libcheck/libcheck-dbg: PKGV changed from 0.15.0 
[default] to 0.15.2 [default]
packages/core2-32-poky-linux/libcheck/libcheck-dev: PV changed from "0.15.0" to 
"0.15.2"
packages/core2-32-poky-linux/libcheck/libcheck-dev: PKGSIZE changed from 77335 
to 77684 (+0%)
packages/core2-32-poky-linux/libcheck/libcheck-dev: PKGV changed from 0.15.0 
[default] to 0.15.2 [default]
packages/core2-32-poky-linux/libcheck/libcheck-doc: PV changed from "0.15.0" to 
"0.15.2"
packages/core2-32-poky-linux/libcheck/libcheck-doc: PKGSIZE changed from 276470 
to 277124 (+0%)
packages/core2-32-poky-linux/libcheck/libcheck-doc: PKGV changed from 0.15.0 
[default] to 0.15.2 [default]
packages/core2-32-poky-linux/libcheck/libcheck-locale: PV changed from "0.15.0" 
to "0.15.2"
packages/core2-32-poky-linux/libcheck/libcheck-locale: PKGV changed from 0.15.0 
[default] to 0.15.2 [default]
packages/core2-32-poky-linux/libcheck/libcheck-src: PV changed from "0.15.0" to 
"0.15.2"
packages/core2-32-poky-linux/libcheck/libcheck-src: PKGSIZE changed from 255750 
to 256430 (+0%)
packages/core2-32-poky-linux/libcheck/libcheck-src: PKGV changed from 0.15.0 
[default] to 0.15.2 [default]
packages/core2-32-poky-linux/libcheck/libcheck-staticdev: PV changed from 
"0.15.0" to "0.15.2"
packages/core2-32-poky-linux/libcheck/libcheck-staticdev: PKGV changed from 
0.15.0 [default] to 0.15.2 [default]
packages/core2-32-poky-linux/libcheck/libcheck: PV changed from "0.15.0" to 
"0.15.2"
packages/core2-32-poky-linux/libcheck/libcheck: PKGSIZE changed from 50485 to 
50489 (+0%)
packages/core2-32-poky-linux/libcheck/libcheck: PKGV changed from 0.15.0 
[default] to 0.15.2 [default]
>From 708de8019813d150c414cfd3b9acc113a5fdecd9 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Sun, 16 Aug 2020 05:53:55 +
Subject: [PATCH] libcheck: upgrade 0.15.0 -> 0.15.2

---
 .../libcheck/{libcheck_0.15.0.bb => libcheck_0.15.2.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-support/libcheck/{libcheck_0.15.0.bb => libcheck_0.15.2.bb} (89%)

diff --git a/meta/recipes-support/libcheck/libcheck_0.15.0.bb b/meta/recipes-support/libcheck/libcheck_0.15.2.bb
similarity index 89%
rename from meta/recipes-support/libcheck/libcheck_0.15.0.bb
rename to meta/recipes-support/libcheck/libcheck_0.15.2.bb
index 177c0edc8f..33e07db93c 100644
--- a/meta/recipes-support/libcheck/libcheck_0.15.0.bb
+++ b/meta/recipes-support/libcheck/libcheck_0.15.2.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://COPYING.LESSER;md5=2d5025d4aa3495befef8f17206a5b0a1"
 
 SRC_URI = "https://github.com/${BPN}/check/releases/download/${PV}/check-${PV}.tar.gz \
file://not-echo-compiler-info-to-check_stdint.h.patch"
-SRC_URI[sha256sum] = "aea2e3c68fa6e1e92378e744b1c0db350ccda4b6bd0d19530d0ae185b3d1ac60"
+SRC_URI[sha256sum] = "a8de4e0bacfb4d76dd1c618ded263523b53b85d92a146d8835eb1a52932fa20a"
 UPSTREAM_CHECK_URI = "https://github.com/libcheck/check/releases/";
 
 S = "${WORKDIR}/check-${PV}"
-- 
2.17.1

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#141524): 
https://lists.openembedded.org/g/openembedded-core/message/141524
Mute This Topic: https://lists.openembedded.org/mt/76219687/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] libinput: upgrading to 1.16.1 SUCCEEDED

2020-08-15 Thread auh
Hello,

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

Next steps:
- apply the patch: git am 0001-libinput-upgrade-1.16.0-1.16.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
packages/core2-32-poky-linux/libinput: PV changed from "1.16.0" to "1.16.1"
packages/core2-32-poky-linux/libinput: PKGV changed from 1.16.0 [default] to 
1.16.1 [default]
packages/core2-32-poky-linux/libinput/libinput-bin: PKGV changed from 1.16.0 
[default] to 1.16.1 [default]
packages/core2-32-poky-linux/libinput/libinput-bin: PV changed from "1.16.0" to 
"1.16.1"
packages/core2-32-poky-linux/libinput/libinput-dbg: PKGV changed from 1.16.0 
[default] to 1.16.1 [default]
packages/core2-32-poky-linux/libinput/libinput-dbg: PV changed from "1.16.0" to 
"1.16.1"
packages/core2-32-poky-linux/libinput/libinput-dbg: PKGSIZE changed from 
4475576 to 4484364 (+0%)
packages/core2-32-poky-linux/libinput/libinput-dev: PKGV changed from 1.16.0 
[default] to 1.16.1 [default]
packages/core2-32-poky-linux/libinput/libinput-dev: PV changed from "1.16.0" to 
"1.16.1"
packages/core2-32-poky-linux/libinput/libinput-doc: PKGV changed from 1.16.0 
[default] to 1.16.1 [default]
packages/core2-32-poky-linux/libinput/libinput-doc: PV changed from "1.16.0" to 
"1.16.1"
packages/core2-32-poky-linux/libinput/libinput-locale: PKGV changed from 1.16.0 
[default] to 1.16.1 [default]
packages/core2-32-poky-linux/libinput/libinput-locale: PV changed from "1.16.0" 
to "1.16.1"
packages/core2-32-poky-linux/libinput/libinput-ptest: PKGV changed from 1.16.0 
[default] to 1.16.1 [default]
packages/core2-32-poky-linux/libinput/libinput-ptest: PV changed from "1.16.0" 
to "1.16.1"
packages/core2-32-poky-linux/libinput/libinput-ptest: PKGSIZE changed from 
1149478 to 1150822 (+0%)
packages/core2-32-poky-linux/libinput/libinput-src: PKGV changed from 1.16.0 
[default] to 1.16.1 [default]
packages/core2-32-poky-linux/libinput/libinput-src: PV changed from "1.16.0" to 
"1.16.1"
packages/core2-32-poky-linux/libinput/libinput-src: FILELIST: directory renamed 
/usr/src/debug/libinput/1.16.0-r0/libinput-1.16.0/tools -> 
/usr/src/debug/libinput/1.16.1-r0/libinput-1.16.1/tools, directory renamed 
/usr/src/debug/libinput/1.16.0-r0/libinput-1.16.0/udev -> 
/usr/src/debug/libinput/1.16.1-r0/libinput-1.16.1/udev, directory renamed 
/usr/src/debug/libinput/1.16.0-r0/libinput-1.16.0/include/linux/linux -> 
/usr/src/debug/libinput/1.16.1-r0/libinput-1.16.1/include/linux/linux, 
directory renamed 
/usr/src/debug/libinput/1.16.0-r0/libinput-1.16.0/include/valgrind -> 
/usr/src/debug/libinput/1.16.1-r0/libinput-1.16.1/include/valgrind, directory 
renamed /usr/src/debug/libinput/1.16.0-r0/libinput-1.16.0/src -> 
/usr/src/debug/libinput/1.16.1-r0/libinput-1.16.1/src, removed 
"/usr/src/debug/libinput/1.16.0-r0/libinput-1.16.0/test/litest-device-wacom-intuos5-pad.c
 
/usr/src/debug/libinput/1.16.0-r0/libinput-1.16.0/test/litest-device-trackpoint.c
 /usr/src/debug/libinput/1.16.0-r0/
 libinput-1.16.0/test/test-udev.c 
/usr/src/debug/libinput/1.16.0-r0/libinput-1.16.0/test/test-touchpad-buttons.c 
/usr/src/debug/libinput/1.16.0-r0/libinput-1.16.0/test/litest-device-ms-nano-transceiver-mouse.c
 
/usr/src/debug/libinput/1.16.0-r0/libinput-1.16.0/test/litest-device-wacom-intuos5-finger.c
 /usr/src/debug/libinput/1.16.0-r0/libinput-1.16.0/test/litest.c 
/usr/src/debug/libinput/1.16.0-r0/libinput-1.16.0/test/litest-device-huion-pentablet.c
 
/usr/src/debug/libinput/1.16.0-r0/libinput-1.16.0/test/litest-device-apple-internal-keyboard.c
 /usr/src/debug/libinput/1.16.0-r0/libinput-1.16.0/test/test-tablet.c 
/usr/src/debug/libinput/1.16.0-r0/libinput-1.16.0/test/litest-device-elantech-touchpad.c
 /usr/src/debug/libinput/1.16.0-r0/libinput-1.16.0/test/test-trackpoint.c 
/usr/src/debug/libinput/1.16.0-r0/libinput-1.16.0/test/litest-device-wheel-only.c
 
/usr/src/debug/libinput/1.16.0-r0/libinput-1.16.0/test/litest-device-wacom-cintiq-24hd-pen.c
 /usr/src/debug/libinput/1.16.0-r0/li
 binput-1.16.0/test/test-path.c 
/usr/src/debug/libinput/1.16.0-r0/libinput-1.16.0/test/test-touchpad-tap.c 
/usr/src/debug/libinput/1.16.0-r0/libinput-1.16.0/test/litest-device-tablet-mode-switch.c
 /usr/src/debug/libinput/1.16.0-r0/libinput-1.16.0/te

[OE-core] [AUH] xev: upgrading to 1.2.4 FAILED

2020-08-15 Thread auh
Hello,

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

Detailed error information:

Running 'devtool upgrade' for recipe xev failed.
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)...
Loading cache...done.
Loaded 1342 entries from dependency cache.
INFO: Extracting current version source...
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "1.47.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "3.1+snapshot-20200816"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:32d9ac602e08e797e83b7b6907a1083b16dba1e0"
workspace= "master:bd1da2aca0bc26720f438a9c1d54f5b04084da4e"

Initialising tasks...done.
Sstate summary: Wanted 0 Found 0 Missed 0 Current 20 (0% match, 100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 93 tasks of which 90 didn't need to be rerun and 
all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 0 seconds
INFO: Extracting upgraded version source...
INFO: Fetching https://www.x.org/releases//individual/app/xev-1.2.4.tar.bz2...
Loading cache...done.
Loaded 1342 entries from dependency cache.
Parsing recipes...done.
Parsing of 779 .bb files complete (777 cached, 2 parsed). 1343 targets, 33 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "1.47.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "3.1+snapshot-20200816"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:32d9ac602e08e797e83b7b6907a1083b16dba1e0"
workspace= "master:bd1da2aca0bc26720f438a9c1d54f5b04084da4e"

Initialising tasks...done.
Sstate summary: Wanted 0 Found 0 Missed 0 Current 0 (0% match, 0% complete)
NOTE: No setscene tasks
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 2 tasks of which 0 didn't need to be rerun and 
all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 0 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
WARNING: Command 'git rebase 165ab4f4f3a15c39894b50f2903e9b80a7004295' failed:
First, rewinding head to replay your work on top of it...
Applying: Add xev
Using index info to reconstruct a base tree...
M   xev.c
Falling back to patching base and 3-way merge...
Auto-merging xev.c
CONFLICT (content): Merge conflict in xev.c
error: Failed to merge in the changes.
Patch failed at 0001 Add xev
Use 'git am --show-current-patch' to see the failed patch

Resolve all conflicts manually, mark them as resolved with
"git add/rm ", then run "git rebase --continue".
You can instead skip this commit: run "git rebase --skip".
To abort and get back to the state before "git rebase", run "git rebase 
--abort".

You will need to resolve conflicts in order to complete the upgrade.
INFO: Upgraded source extracted to 
/home/pokybuild/yocto-worker/auh/build/build/build/workspace/sources/xev
INFO: New recipe is 
/home/pokybuild/yocto-worker/auh/build/build/build/workspace/recipes/xev/xev_1.2.4.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 (#141508): 
https://lists.openembedded.org/g/openembedded-core/message/141508
Mute This Topic: https://lists.openembedded.org/mt/76219668/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] libx11: upgrading to 1.6.11 SUCCEEDED

2020-08-15 Thread auh
Hello,

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

Next steps:
- apply the patch: git am 0001-libx11-upgrade-1.6.9-1.6.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
>From 0b036f92846dcd3cda9750030b9fdef444b2ba41 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Sun, 16 Aug 2020 02:09:54 +
Subject: [PATCH] libx11: upgrade 1.6.9 -> 1.6.11

---
 .../xorg-lib/{libx11_1.6.9.bb => libx11_1.6.11.bb} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta/recipes-graphics/xorg-lib/{libx11_1.6.9.bb => libx11_1.6.11.bb} (90%)

diff --git a/meta/recipes-graphics/xorg-lib/libx11_1.6.9.bb b/meta/recipes-graphics/xorg-lib/libx11_1.6.11.bb
similarity index 90%
rename from meta/recipes-graphics/xorg-lib/libx11_1.6.9.bb
rename to meta/recipes-graphics/xorg-lib/libx11_1.6.11.bb
index ff60a4240c..da47a6d9ec 100644
--- a/meta/recipes-graphics/xorg-lib/libx11_1.6.9.bb
+++ b/meta/recipes-graphics/xorg-lib/libx11_1.6.11.bb
@@ -14,8 +14,7 @@ SRC_URI += "file://Fix-hanging-issue-in-_XReply.patch \
 file://disable_tests.patch \
 file://libx11-whitespace.patch"
 
-SRC_URI[md5sum] = "55adbfb6d4370ecac5e70598c4e7eed2"
-SRC_URI[sha256sum] = "9cc7e8d000d6193fa5af580d50d689380b8287052270f5bb26a5fb6b58b2bed1"
+SRC_URI[sha256sum] = "b1cc4b802058be7e3fb438ee2490f66fcc52ac3b2a14f47a22cbf77638e33606"
 
 PROVIDES = "virtual/libx11"
 
-- 
2.17.1

packages/core2-32-poky-linux/libx11: PV changed from "1.6.9" to "1.6.11"
packages/core2-32-poky-linux/libx11: PKGV changed from 1.6.9 [default] to 
1.6.11 [default]
packages/core2-32-poky-linux/libx11/libx11-dbg: PV changed from "1.6.9" to 
"1.6.11"
packages/core2-32-poky-linux/libx11/libx11-dbg: PKGV changed from 1.6.9 
[default] to 1.6.11 [default]
packages/core2-32-poky-linux/libx11/libx11-dbg: PKGSIZE changed from 11172004 
to 11176772 (+0%)
packages/core2-32-poky-linux/libx11/libx11-dev: PV changed from "1.6.9" to 
"1.6.11"
packages/core2-32-poky-linux/libx11/libx11-dev: PKGV changed from 1.6.9 
[default] to 1.6.11 [default]
packages/core2-32-poky-linux/libx11/libx11-dev: PKGSIZE changed from 253665 to 
253735 (+0%)
packages/core2-32-poky-linux/libx11/libx11-doc: PV changed from "1.6.9" to 
"1.6.11"
packages/core2-32-poky-linux/libx11/libx11-doc: PKGV changed from 1.6.9 
[default] to 1.6.11 [default]
packages/core2-32-poky-linux/libx11/libx11-doc: PKGSIZE changed from 1997617 to 
1998891 (+0%)
packages/core2-32-poky-linux/libx11/libx11-locale: PV changed from "1.6.9" to 
"1.6.11"
packages/core2-32-poky-linux/libx11/libx11-locale: PKGV changed from 1.6.9 
[default] to 1.6.11 [default]
packages/core2-32-poky-linux/libx11/libx11-locale: PKGSIZE changed from 1233129 
to 1235627 (+0%)
packages/core2-32-poky-linux/libx11/libx11-src: PV changed from "1.6.9" to 
"1.6.11"
packages/core2-32-poky-linux/libx11/libx11-src: PKGV changed from 1.6.9 
[default] to 1.6.11 [default]
packages/core2-32-poky-linux/libx11/libx11-src: PKGSIZE changed from 5411625 to 
5415503 (+0%)
packages/core2-32-poky-linux/libx11/libx11-staticdev: PV changed from "1.6.9" 
to "1.6.11"
packages/core2-32-poky-linux/libx11/libx11-staticdev: PKGV changed from 1.6.9 
[default] to 1.6.11 [default]
packages/core2-32-poky-linux/libx11/libx11-xcb: PV changed from "1.6.9" to 
"1.6.11"
packages/core2-32-poky-linux/libx11/libx11-xcb: PKGV changed from 1.6.9 
[default] to 1.6.11 [default]
packages/core2-32-poky-linux/libx11/libx11: PV changed from "1.6.9" to "1.6.11"
packages/core2-32-poky-linux/libx11/libx11: PKGV changed from 1.6.9 [default] 
to 1.6.11 [default]
Changes to packages/x86_64-linux/binutils-cross-i686 (sysroot):
  /sysroot-providers/virtual_i686-poky-linux-musl-binutils was added
  /usr/bin/i686-poky-linux-musl was added
  /usr/bin/i686-poky-linux-musl/i686-poky-linux-musl-addr2line was added
  /usr/bin/i686-poky-linux-musl/i686-poky-linux-musl-ar was added
  /usr/bin/i686-poky-linux-musl/i686-poky-linux-musl-as was added
  /usr/bin/i686-poky-linux-musl/i686-poky-linux-musl-c++filt was added
  /usr/bin/i686-poky-linux-musl/i686-poky-linux-musl-dwp was added
  /usr/bin/i686-poky-linux-musl/i686-poky-linux-musl-elfedit was added
  /usr/bin/i686-poky-linux-musl/i686-poky-linux-musl-gprof was added
 

[OE-core] [AUH] boost: upgrading to 1.74.0 FAILED

2020-08-15 Thread auh
Hello,

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

Detailed error information:

Running 'devtool upgrade' for recipe boost failed.
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)...
Loading cache...done.
Loaded 1342 entries from dependency cache.
INFO: Extracting current version source...
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "1.47.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "3.1+snapshot-20200816"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:7a6a76f19d7fc3bbd8a945ce9c8f2717be9e6620"
workspace= "master:bd1da2aca0bc26720f438a9c1d54f5b04084da4e"

Initialising tasks...done.
Sstate summary: Wanted 0 Found 0 Missed 0 Current 20 (0% match, 100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 93 tasks of which 90 didn't need to be rerun and 
all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
INFO: Extracting upgraded version source...
INFO: Fetching 
https://dl.bintray.com/boostorg/release/1.74.0/source/boost_1_74_0.tar.bz2...
Loading cache...done.
Loaded 1342 entries from dependency cache.
Parsing recipes...done.
Parsing of 779 .bb files complete (777 cached, 2 parsed). 1343 targets, 33 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "1.47.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "3.1+snapshot-20200816"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:7a6a76f19d7fc3bbd8a945ce9c8f2717be9e6620"
workspace= "master:bd1da2aca0bc26720f438a9c1d54f5b04084da4e"

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

[OE-core] [AUH] gpgme: upgrading to 1.14.0 FAILED

2020-08-15 Thread auh
Hello,

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

Detailed error information:

Running 'devtool upgrade' for recipe gpgme failed.
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)...
Loading cache...done.
Loaded 1342 entries from dependency cache.
INFO: Extracting current version source...
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "1.47.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "3.1+snapshot-20200816"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:46acf55902e6e7f8a950d96c550ce2e141f51c28"
workspace= "master:bd1da2aca0bc26720f438a9c1d54f5b04084da4e"

Initialising tasks...done.
Sstate summary: Wanted 0 Found 0 Missed 0 Current 20 (0% match, 100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 93 tasks of which 90 didn't need to be rerun and 
all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
INFO: Extracting upgraded version source...
INFO: Fetching https://www.gnupg.org/ftp/gcrypt/gpgme/gpgme-1.14.0.tar.bz2...
Loading cache...done.
Loaded 1342 entries from dependency cache.
Parsing recipes...done.
Parsing of 779 .bb files complete (777 cached, 2 parsed). 1343 targets, 33 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "1.47.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "3.1+snapshot-20200816"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:46acf55902e6e7f8a950d96c550ce2e141f51c28"
workspace= "master:bd1da2aca0bc26720f438a9c1d54f5b04084da4e"

Initialising tasks...done.
Sstate summary: Wanted 0 Found 0 Missed 0 Current 0 (0% match, 0% complete)
NOTE: No setscene tasks
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 2 tasks of which 0 didn't need to be rerun and 
all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
DEBUG 5 [Errno 25] Inappropriate ioctl for device
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:  67% || ETA:  0:00:00
Adding changed files: 100% || Time: 0:00:00
WARNING: Command 'git rebase 98c864560ac75dc646b59ad18b1af0b2e9eb9f12' failed:
First, rewinding head to replay your work on top of it...
Applying: Revert "build: Make gpgme.m4 use gpgrt-config with *.pc."
Applying: pkgconfig
Applying: gpgme/lang/python: gpg-error-config should not be used
Applying: Correctly install python modules
Applying: python import
Applying: gpgme-config: skip all /lib* or /usr/lib* directories in output
Applying: fix build path issue
Applying: python: Add variables to tests
Applying: do not auto check var-PYTHON
Using index info to reconstruct a base tree...
M   configure.ac
Falling back to patching base and 3-way merge...
Auto-merging configure.ac
CONFLICT (content): Merge conflict in configure.ac
error: Failed to merge in the changes.
Patch failed at 0009 do not auto check var-PYTHON
Use 'git am --show-current-patch' to see the failed patch

Resolve all conflicts manually, mark them as resolved with
"git add/rm ", then run "git rebase --continue".
You can instead skip this commit: run "git rebase --skip".
To abort and get back to the state before "git rebase", run "git rebase 
--abort".

You will need to resolve conflicts in order to complete the upgrade.
INFO: Upgraded source extracted to 
/home/pokybuild/yocto-worker/auh/build/build/build/workspace/sources/gpgme
INFO: New recipe is 
/home/pokybuild/yocto-worker/auh/build/build/build/workspace/recipes/gpgme/gpgme_1.14.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 (#141523): 
https://lists.openembedded.org/g/openembedded-core/message/141523
Mute This Topic: https://lists.openembedded.org/mt/76219685/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub  
[arch...

[OE-core] [AUH] font-alias: upgrading to 1.0.4 SUCCEEDED

2020-08-15 Thread auh
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *font-alias* to *1.0.4* has 
Succeeded.

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

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

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

Regards,
The Upgrade Helper
packages/all-poky-linux/font-alias/font-alias-dbg: PKGR changed from r3 
[default] to r0 [default]
packages/all-poky-linux/font-alias/font-alias-dbg: PR changed from "r3" to "r0"
packages/all-poky-linux/font-alias/font-alias-dbg: PV changed from "1.0.3" to 
"1.0.4"
packages/all-poky-linux/font-alias/font-alias-dbg: PKGV changed from 1.0.3 
[default] to 1.0.4 [default]
packages/all-poky-linux/font-alias/font-alias-dev: PKGR changed from r3 
[default] to r0 [default]
packages/all-poky-linux/font-alias/font-alias-dev: PR changed from "r3" to "r0"
packages/all-poky-linux/font-alias/font-alias-dev: PV changed from "1.0.3" to 
"1.0.4"
packages/all-poky-linux/font-alias/font-alias-dev: PKGV changed from 1.0.3 
[default] to 1.0.4 [default]
packages/all-poky-linux/font-alias/font-alias-doc: PKGR changed from r3 
[default] to r0 [default]
packages/all-poky-linux/font-alias/font-alias-doc: PR changed from "r3" to "r0"
packages/all-poky-linux/font-alias/font-alias-doc: PV changed from "1.0.3" to 
"1.0.4"
packages/all-poky-linux/font-alias/font-alias-doc: PKGV changed from 1.0.3 
[default] to 1.0.4 [default]
packages/all-poky-linux/font-alias/font-alias-locale: PKGR changed from r3 
[default] to r0 [default]
packages/all-poky-linux/font-alias/font-alias-locale: PR changed from "r3" to 
"r0"
packages/all-poky-linux/font-alias/font-alias-locale: PV changed from "1.0.3" 
to "1.0.4"
packages/all-poky-linux/font-alias/font-alias-locale: PKGV changed from 1.0.3 
[default] to 1.0.4 [default]
packages/all-poky-linux/font-alias/font-alias-src: PKGR changed from r3 
[default] to r0 [default]
packages/all-poky-linux/font-alias/font-alias-src: PR changed from "r3" to "r0"
packages/all-poky-linux/font-alias/font-alias-src: PV changed from "1.0.3" to 
"1.0.4"
packages/all-poky-linux/font-alias/font-alias-src: PKGV changed from 1.0.3 
[default] to 1.0.4 [default]
packages/all-poky-linux/font-alias/font-alias-staticdev: PKGR changed from r3 
[default] to r0 [default]
packages/all-poky-linux/font-alias/font-alias-staticdev: PR changed from "r3" 
to "r0"
packages/all-poky-linux/font-alias/font-alias-staticdev: PV changed from 
"1.0.3" to "1.0.4"
packages/all-poky-linux/font-alias/font-alias-staticdev: PKGV changed from 
1.0.3 [default] to 1.0.4 [default]
packages/all-poky-linux/font-alias/font-alias: PKGR changed from r3 [default] 
to r0 [default]
packages/all-poky-linux/font-alias/font-alias: PR changed from "r3" to "r0"
packages/all-poky-linux/font-alias/font-alias: PV changed from "1.0.3" to 
"1.0.4"
packages/all-poky-linux/font-alias/font-alias: PKGV changed from 1.0.3 
[default] to 1.0.4 [default]
packages/all-poky-linux/font-alias/font-alias: PKGSIZE changed from 15738 to 
15663 (-0%)
packages/all-poky-linux/font-alias: PKGR changed from r3 [default] to r0 
[default]
packages/all-poky-linux/font-alias: PR changed from "r3" to "r0"
packages/all-poky-linux/font-alias: PV changed from "1.0.3" to "1.0.4"
packages/all-poky-linux/font-alias: PKGV changed from 1.0.3 [default] to 1.0.4 
[default]
>From df969681ff0ad12d09a91c88a826dca37325f3ff Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Sun, 16 Aug 2020 02:01:40 +
Subject: [PATCH] font-alias: upgrade 1.0.3 -> 1.0.4

---
 .../nocompiler.patch  | 24 +++
 ...ont-alias_1.0.3.bb => font-alias_1.0.4.bb} | 40 ---
 2 files changed, 51 insertions(+), 13 deletions(-)
 rename meta/recipes-graphics/xorg-font/{font-alias-1.0.3 => font-alias-1.0.4}/nocompiler.patch (52%)
 rename meta/recipes-graphics/xorg-font/{font-alias_1.0.3.bb => font-alias_1.0.4.bb} (25%)

diff --git a/meta/recipes-graphics/xorg-font/font-alias-1.0.3/nocompiler.patch b/meta/recipes-graphics/xorg-font/font-alias-1.0.4/nocompiler.patch
similarity index 52%
rename from meta/recipes-graphics/xorg-font/font-alias-1.0.3/nocompiler.patch
rename to meta/recipes-graphics/xorg-font/font-alias-1.0.4/nocompiler.patch
index 0b9fb8ccc0..e54eee4ea9 100644
--- a/meta/recipes-graphics/xorg-font/font-alias-1.0.3/nocompiler.patch
+++ b/meta

[OE-core] [AUH] weston: upgrading to 8.0.92 FAILED

2020-08-15 Thread auh
Hello,

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

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-weston-upgrade-8.0.0-8.0.92.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
>From 0480a45c40631dbb0f2279df804a3300ce783ae9 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Sun, 16 Aug 2020 01:53:47 +
Subject: [PATCH] weston: upgrade 8.0.0 -> 8.0.92

---
 ...ovide-a-default-version-that-doesn-t.patch | 34 +--
 .../{weston_8.0.0.bb => weston_8.0.92.bb} |  3 +-
 2 files changed, 18 insertions(+), 19 deletions(-)
 rename meta/recipes-graphics/wayland/{weston_8.0.0.bb => weston_8.0.92.bb} (97%)

diff --git a/meta/recipes-graphics/wayland/weston/0001-weston-launch-Provide-a-default-version-that-doesn-t.patch b/meta/recipes-graphics/wayland/weston/0001-weston-launch-Provide-a-default-version-that-doesn-t.patch
index 62b864c134..eb7b1c74d8 100644
--- a/meta/recipes-graphics/wayland/weston/0001-weston-launch-Provide-a-default-version-that-doesn-t.patch
+++ b/meta/recipes-graphics/wayland/weston/0001-weston-launch-Provide-a-default-version-that-doesn-t.patch
@@ -1,4 +1,4 @@
-From 5f2d71998eb77068cbaee2d468cbb296a42d5739 Mon Sep 17 00:00:00 2001
+From 9a7f54f946b745da1607c0c360120f33991ea435 Mon Sep 17 00:00:00 2001
 From: Tom Hochstein 
 Date: Wed, 22 Feb 2017 15:53:30 +0200
 Subject: [PATCH] weston-launch: Provide a default version that doesn't require
@@ -57,7 +57,7 @@ index 08d23ec..cb9fd3f 100644
  		install: true
  	)
 diff --git a/libweston/weston-launch.c b/libweston/weston-launch.c
-index 8a711b4..54c567a 100644
+index 521cb2c..2d42d33 100644
 --- a/libweston/weston-launch.c
 +++ b/libweston/weston-launch.c
 @@ -51,7 +51,9 @@
@@ -97,7 +97,7 @@ index 8a711b4..54c567a 100644
  
  static int
  setup_launcher_socket(struct weston_launch *wl)
-@@ -431,6 +437,7 @@ quit(struct weston_launch *wl, int status)
+@@ -466,6 +472,7 @@ quit(struct weston_launch *wl, int status)
  	close(wl->signalfd);
  	close(wl->sock[0]);
  
@@ -105,15 +105,15 @@ index 8a711b4..54c567a 100644
  	if (wl->new_user) {
  		err = pam_close_session(wl->ph, 0);
  		if (err)
-@@ -438,6 +445,7 @@ quit(struct weston_launch *wl, int status)
+@@ -473,6 +480,7 @@ quit(struct weston_launch *wl, int status)
  err, pam_strerror(wl->ph, err));
  		pam_end(wl->ph, err);
  	}
 +#endif
  
- 	if (ioctl(wl->tty, KDSKBMUTE, 0) &&
- 	ioctl(wl->tty, KDSKBMODE, wl->kb_mode))
-@@ -666,6 +674,7 @@ setup_session(struct weston_launch *wl, char **child_argv)
+ 	/*
+ 	 * Get a fresh handle to the tty as the previous one is in
+@@ -710,6 +718,7 @@ setup_session(struct weston_launch *wl, char **child_argv)
  	setenv("HOME", wl->pw->pw_dir, 1);
  	setenv("SHELL", wl->pw->pw_shell, 1);
  
@@ -121,7 +121,7 @@ index 8a711b4..54c567a 100644
  	env = pam_getenvlist(wl->ph);
  	if (env) {
  		for (i = 0; env[i]; ++i) {
-@@ -674,6 +683,7 @@ setup_session(struct weston_launch *wl, char **child_argv)
+@@ -718,6 +727,7 @@ setup_session(struct weston_launch *wl, char **child_argv)
  		}
  		free(env);
  	}
@@ -129,7 +129,7 @@ index 8a711b4..54c567a 100644
  
  	/*
  	 * We open a new session, so it makes sense
-@@ -745,8 +755,10 @@ static void
+@@ -789,8 +799,10 @@ static void
  help(const char *name)
  {
  	fprintf(stderr, "Usage: %s [args...] [-- [weston args..]]\n", name);
@@ -140,7 +140,7 @@ index 8a711b4..54c567a 100644
  	fprintf(stderr, "  -t, --tty   Start session on alternative tty,\n"
  			"  e.g. -t /dev/tty4, requires -u option.\n");
  	fprintf(stderr, "  -v, --verbose   Be verbose\n");
-@@ -760,7 +772,9 @@ main(int argc, char *argv[])
+@@ -804,7 +816,9 @@ main(int argc, char *argv[])
  	int i, c;
  	char *tty = NULL;
  	struct option opts[] = {
@@ -150,7 +150,7 @@ index 8a711b4..54c567a 100644
  		{ "tty", required_argument, NULL, 't' },
  		{ "verbose", no_argument,   NULL, 'v' },
  		{ "help",no_argument,   NULL, 'h' },
-@@ -772,11 +786,16 @@ main(int argc, char *argv[])
+@@ -816,11 +830,16 @@ main(int argc, char *argv[])
  	while ((c = getopt_long(argc, argv, "u:t:vh", opts, &i)) != -1) {
  		switch (c) {
  		case 'u':
@@ -167,7 +167,7 @@ index 8a711b4..54c567a 100644

[OE-core] [AUH] wpebackend-fdo: upgrading to 1.7.1 FAILED

2020-08-15 Thread auh
Hello,

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

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-wpebackend-fdo-upgrade-1.6.1-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
>From 146de886f58157d5ba482576c4ad46eb486b8c7d Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Sun, 16 Aug 2020 05:22:07 +
Subject: [PATCH] wpebackend-fdo: upgrade 1.6.1 -> 1.7.1

---
 .../webkit/{wpebackend-fdo_1.6.1.bb => wpebackend-fdo_1.7.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-sato/webkit/{wpebackend-fdo_1.6.1.bb => wpebackend-fdo_1.7.1.bb} (85%)

diff --git a/meta/recipes-sato/webkit/wpebackend-fdo_1.6.1.bb b/meta/recipes-sato/webkit/wpebackend-fdo_1.7.1.bb
similarity index 85%
rename from meta/recipes-sato/webkit/wpebackend-fdo_1.6.1.bb
rename to meta/recipes-sato/webkit/wpebackend-fdo_1.7.1.bb
index 2fdab42c38..df057092e3 100644
--- a/meta/recipes-sato/webkit/wpebackend-fdo_1.6.1.bb
+++ b/meta/recipes-sato/webkit/wpebackend-fdo_1.7.1.bb
@@ -13,5 +13,5 @@ inherit cmake features_check
 REQUIRED_DISTRO_FEATURES = "opengl"
 
 SRC_URI = "https://wpewebkit.org/releases/${BPN}-${PV}.tar.xz";
-SRC_URI[sha256sum] = "740eee3327acfb462b8460519a219e30dc0a870326e88e2ddc4fe2c8de20b1c9"
+SRC_URI[sha256sum] = "9b980a73ea4e3762266c48f81ded56d9dcad4acf32bad9bd05d0dffdd454c6f5"
 
-- 
2.17.1

Loading cache...done.
Loaded 1342 entries from dependency cache.
Parsing recipes...done.
Parsing of 778 .bb files complete (777 cached, 1 parsed). 1342 targets, 33 
skipped, 0 masked, 0 errors.
Removing 1 recipes from the core2-32 sysroot...done.
Removing 1 recipes from the qemux86 sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "1.47.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "i686-poky-linux"
MACHINE  = "qemux86"
DISTRO   = "poky"
DISTRO_VERSION   = "3.1+snapshot-20200816"
TUNE_FEATURES= "m32 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:9606244567de0f29cdf25a8bd59c4270c6596715"
workspace= "master:bd1da2aca0bc26720f438a9c1d54f5b04084da4e"

Initialising tasks...done.
Sstate summary: Wanted 225 Found 217 Missed 8 Current 571 (96% match, 98% 
complete)
NOTE: Executing Tasks
NOTE: Setscene tasks completed
NOTE: Running task 1673 of 2460 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-sato/webkit/wpebackend-fdo_1.7.1.bb:do_fetch)
NOTE: recipe wpebackend-fdo-1.7.1-r0: task do_fetch: Started
NOTE: recipe wpebackend-fdo-1.7.1-r0: task do_fetch: Succeeded
NOTE: Running task 2029 of 2460 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-sato/webkit/wpebackend-fdo_1.7.1.bb:do_unpack)
NOTE: Running task 2030 of 2460 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-sato/webkit/wpebackend-fdo_1.7.1.bb:do_prepare_recipe_sysroot)
NOTE: recipe wpebackend-fdo-1.7.1-r0: task do_unpack: Started
NOTE: recipe wpebackend-fdo-1.7.1-r0: task do_prepare_recipe_sysroot: Started
NOTE: recipe wpebackend-fdo-1.7.1-r0: task do_unpack: Succeeded
NOTE: Running task 2448 of 2460 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-sato/webkit/wpebackend-fdo_1.7.1.bb:do_patch)
NOTE: recipe wpebackend-fdo-1.7.1-r0: task do_patch: Started
NOTE: recipe wpebackend-fdo-1.7.1-r0: task do_patch: Succeeded
NOTE: Running task 2449 of 2460 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-sato/webkit/wpebackend-fdo_1.7.1.bb:do_generate_toolchain_file)
NOTE: Running task 2450 of 2460 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-sato/webkit/wpebackend-fdo_1.7.1.bb:do_deploy_source_date_epoch)
NOTE: Running task 2451 of 2460 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-sato/webkit/wpebackend-fdo_1.7.1.bb:do_populate_lic)
NOTE: recipe wpebackend-fdo-1.7.1-r0: task do_prepare_recipe_sysroot: Succeeded
NOTE: recipe wpebackend-fdo-1.7.1-r0: task do_deploy_source_date_epoch: Started
NOTE: recipe wpebackend-fdo-1.7.1-r0: task do_generate_toolchain_file: Started
NOTE

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

2020-08-15 Thread auh
Hello,

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

Next steps:
- apply the patch: git am 
0001-linux-firmware-upgrade-20200619-20200721.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
packages/all-poky-linux/linux-firmware: PV changed from "20200619" to "20200721"
packages/all-poky-linux/linux-firmware: PKGV changed from 20200619 [default] to 
20200721 [default]
packages/all-poky-linux/linux-firmware/linux-firmware-adsp-sst-license: PV 
changed from "20200619" to "20200721"
packages/all-poky-linux/linux-firmware/linux-firmware-adsp-sst-license: PKGV 
changed from 20200619 [default] to 20200721 [default]
packages/all-poky-linux/linux-firmware/linux-firmware-adsp-sst: PV changed from 
"20200619" to "20200721"
packages/all-poky-linux/linux-firmware/linux-firmware-adsp-sst: PKGV changed 
from 20200619 [default] to 20200721 [default]
packages/all-poky-linux/linux-firmware/linux-firmware-ar3k-license: PV changed 
from "20200619" to "20200721"
packages/all-poky-linux/linux-firmware/linux-firmware-ar3k-license: PKGV 
changed from 20200619 [default] to 20200721 [default]
packages/all-poky-linux/linux-firmware/linux-firmware-ar3k: PV changed from 
"20200619" to "20200721"
packages/all-poky-linux/linux-firmware/linux-firmware-ar3k: PKGV changed from 
20200619 [default] to 20200721 [default]
packages/all-poky-linux/linux-firmware/linux-firmware-ar9170: PV changed from 
"20200619" to "20200721"
packages/all-poky-linux/linux-firmware/linux-firmware-ar9170: PKGV changed from 
20200619 [default] to 20200721 [default]
packages/all-poky-linux/linux-firmware/linux-firmware-ath10k-license: PV 
changed from "20200619" to "20200721"
packages/all-poky-linux/linux-firmware/linux-firmware-ath10k-license: PKGV 
changed from 20200619 [default] to 20200721 [default]
packages/all-poky-linux/linux-firmware/linux-firmware-ath10k: PV changed from 
"20200619" to "20200721"
packages/all-poky-linux/linux-firmware/linux-firmware-ath10k: PKGV changed from 
20200619 [default] to 20200721 [default]
packages/all-poky-linux/linux-firmware/linux-firmware-ath6k: PV changed from 
"20200619" to "20200721"
packages/all-poky-linux/linux-firmware/linux-firmware-ath6k: PKGV changed from 
20200619 [default] to 20200721 [default]
packages/all-poky-linux/linux-firmware/linux-firmware-ath9k: PV changed from 
"20200619" to "20200721"
packages/all-poky-linux/linux-firmware/linux-firmware-ath9k: PKGV changed from 
20200619 [default] to 20200721 [default]
packages/all-poky-linux/linux-firmware/linux-firmware-atheros-license: PV 
changed from "20200619" to "20200721"
packages/all-poky-linux/linux-firmware/linux-firmware-atheros-license: PKGV 
changed from 20200619 [default] to 20200721 [default]
packages/all-poky-linux/linux-firmware/linux-firmware-bcm-0bb4-0306: PV changed 
from "20200619" to "20200721"
packages/all-poky-linux/linux-firmware/linux-firmware-bcm-0bb4-0306: PKGV 
changed from 20200619 [default] to 20200721 [default]
packages/all-poky-linux/linux-firmware/linux-firmware-bcm43143: PV changed from 
"20200619" to "20200721"
packages/all-poky-linux/linux-firmware/linux-firmware-bcm43143: PKGV changed 
from 20200619 [default] to 20200721 [default]
packages/all-poky-linux/linux-firmware/linux-firmware-bcm43236b: PV changed 
from "20200619" to "20200721"
packages/all-poky-linux/linux-firmware/linux-firmware-bcm43236b: PKGV changed 
from 20200619 [default] to 20200721 [default]
packages/all-poky-linux/linux-firmware/linux-firmware-bcm43241b0: PV changed 
from "20200619" to "20200721"
packages/all-poky-linux/linux-firmware/linux-firmware-bcm43241b0: PKGV changed 
from 20200619 [default] to 20200721 [default]
packages/all-poky-linux/linux-firmware/linux-firmware-bcm43241b4: PV changed 
from "20200619" to "20200721"
packages/all-poky-linux/linux-firmware/linux-firmware-bcm43241b4: PKGV changed 
from 20200619 [default] to 20200721 [default]
packages/all-poky-linux/linux-firmware/linux-firmware-bcm43241b5: PV changed 
from "20200619" to "20200721"
packages/all-poky-linux/linux-firmware/linux-firmware-bcm43241b5: PKGV changed 
from 20200619 [default] to 20200721 [default]
packages/all-poky-linux/linux-firmware/linux-firmware-bcm43242a: PV changed 
from "20200619" to "20200721

[OE-core] [AUH] vulkan-demos: upgrading to e6956acfbdaf082f930e9cc6bb2c337695d9cebb FAILED

2020-08-15 Thread auh
Hello,

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

Detailed error information:

The following devtool command failed:  upgrade vulkan-demos -S 
e6956acfbdaf082f930e9cc6bb2c337695d9cebb
NOTE: Starting bitbake server...
Loading cache...done.
Loaded 1342 entries from dependency cache.
INFO: Extracting current version source...
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "1.47.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "3.1+snapshot-20200816"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:ad9ed5d4452f83e86f267207c5962070e0d90ff1"
workspace= "master:bd1da2aca0bc26720f438a9c1d54f5b04084da4e"

Initialising tasks...done.
Sstate summary: Wanted 0 Found 0 Missed 0 Current 20 (0% match, 100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 93 tasks of which 90 didn't need to be rerun and 
all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
INFO: Extracting upgraded version source...
ERROR: Execution of 'git checkout e6956acfbdaf082f930e9cc6bb2c337695d9cebb' 
failed with exit code 1:
error: The following untracked working tree files would be overwritten by 
checkout:
external/ktx/LICENSE.md
external/ktx/NOTICE.md
external/ktx/README.md
external/ktx/include/ktx.h
external/ktx/include/ktxvulkan.h
external/ktx/lib/checkheader.c
external/ktx/lib/errstr.c
external/ktx/lib/etcdec.cxx
external/ktx/lib/etcunpack.cxx
external/ktx/lib/filestream.c
external/ktx/lib/filestream.h
external/ktx/lib/gl_format.h
external/ktx/lib/gl_funcptrs.h
external/ktx/lib/gles1_funcptrs.h
external/ktx/lib/gles2_funcptrs.h
external/ktx/lib/gles3_funcptrs.h
external/ktx/lib/glloader.c
external/ktx/lib/hashlist.c
external/ktx/lib/hashtable.c
external/ktx/lib/ktxgl.h
external/ktx/lib/ktxint.h
external/ktx/lib/libktx.gypi
external/ktx/lib/mainpage.md
external/ktx/lib/memstream.c
external/ktx/lib/memstream.h
external/ktx/lib/stream.h
external/ktx/lib/swap.c
external/ktx/lib/texture.c
external/ktx/lib/uthash.h
external/ktx/lib/vk_format.h
external/ktx/lib/vk_funclist.inl
external/ktx/lib/vk_funcs.c
external/ktx/lib/vk_funcs.h
external/ktx/lib/vkloader.c
external/ktx/lib/writer.c
external/ktx/lib/writer_v1.c
external/ktx/other_include/KHR/khrplatform.h
Please move or remove them before you switch branches.
Aborting




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 (#141499): 
https://lists.openembedded.org/g/openembedded-core/message/141499
Mute This Topic: https://lists.openembedded.org/mt/76219659/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] libpsl: upgrading to 0.21.1 FAILED

2020-08-15 Thread auh
Hello,

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

Detailed error information:

The following devtool command failed:  upgrade libpsl -V 0.21.1
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)...
Loading cache...done.
Loaded 1342 entries from dependency cache.
INFO: Extracting current version source...
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "1.47.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "3.1+snapshot-20200816"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:0947e5ba5c75f2562f75f371958964b957300b09"
workspace= "master:bd1da2aca0bc26720f438a9c1d54f5b04084da4e"

Initialising tasks...done.
Sstate summary: Wanted 0 Found 0 Missed 0 Current 20 (0% match, 100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 93 tasks of which 90 didn't need to be rerun and 
all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
INFO: Extracting upgraded version source...
INFO: Fetching 
https://github.com/rockdaboot/libpsl/releases/download/libpsl-0.21.1/libpsl-0.21.1.tar.gz...
Loading cache...done.
Loaded 1342 entries from dependency cache.
Parsing recipes...done.
Parsing of 779 .bb files complete (777 cached, 2 parsed). 1343 targets, 33 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "1.47.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "3.1+snapshot-20200816"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:0947e5ba5c75f2562f75f371958964b957300b09"
workspace= "master:bd1da2aca0bc26720f438a9c1d54f5b04084da4e"

Initialising tasks...done.
Sstate summary: Wanted 0 Found 0 Missed 0 Current 0 (0% match, 0% complete)
NOTE: No setscene tasks
NOTE: Executing Tasks
WARNING: Failed to fetch URL 
https://github.com/rockdaboot/libpsl/releases/download/libpsl-0.21.1/libpsl-0.21.1.tar.gz,
 attempting MIRRORS if available
ERROR: Fetcher failure: Fetch command export PSEUDO_DISABLED=1; unset 
_PYTHON_SYSCONFIGDATA_NAME; export ftp_proxy="http://proxy.yocto.io:5187/";; 
export FTP_PROXY="http://proxy.yocto.io:5187/";; export 
PATH="/home/pokybuild/yocto-worker/auh/build/build/build/tmp/sysroots-uninative/x86_64-linux/usr/bin:/home/pokybuild/yocto-worker/auh/build/build/poky/scripts:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-ouvt1ved/work/recipe-sysroot-native/usr/bin/x86_64-poky-linux:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-ouvt1ved/work/recipe-sysroot/usr/bin/crossscripts:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-ouvt1ved/work/recipe-sysroot-native/usr/sbin:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-ouvt1ved/work/recipe-sysroot-native/usr/bin:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-ouvt1ved/work/recipe-sysroot-native/sbin:/home/pokybuild/yocto-worker/auh/
 
build/build/build/tmp/work/recipetool-ouvt1ved/work/recipe-sysroot-native/bin:/home/pokybuild/yocto-worker/auh/build/build/poky/bitbake/bin:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/hosttools";
 export HOME="/home/pokybuild"; /usr/bin/env wget -t 2 -T 30 --passive-ftp 
--no-check-certificate -P 
/home/pokybuild/yocto-worker/auh/build/build/build/downloads 
'https://github.com/rockdaboot/libpsl/releases/download/libpsl-0.21.1/libpsl-0.21.1.tar.gz'
 --progress=dot -v failed with exit code 8, output:
--2020-08-16 05:55:01--  
https://github.com/rockdaboot/libpsl/releases/download/libpsl-0.21.1/libpsl-0.21.1.tar.gz
Resolving github.com (github.com)... 192.30.255.112
Connecting to github.com (github.com)|192.30.255.112|:443... connected.
HTTP request sent, awaiting response... 404 Not Found
2020-08-16 05:55:01 ERROR 404: Not Found.


ERROR: Fetcher failure for URL: 
'https://github.com/rockdaboot/libpsl/releases/download/libpsl-0.21.1/libpsl-0.21.1.tar.gz'.
 Unable to fetch URL from any source.
ERROR: Logfile of failure stored in: 
/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-ouvt1ved/work/temp/log.do_fetch.7967
NOTE: Tasks Summary: Attempted 1 tasks of which 0 didn't need to be rerun and 1 
failed.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 0 seconds
ERROR: Failed to fetch URL 
https://github.com/rockdaboot

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

2020-08-15 Thread auh
Hello,

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

Next steps:
- apply the patch: git am 0001-diffoscope-upgrade-153-156.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
Loading cache...done.
Loaded 0 entries from dependency cache.
Parsing recipes...done.
Parsing of 778 .bb files complete (0 cached, 778 parsed). 1342 targets, 44 
skipped, 0 masked, 0 errors.
Removing 146 recipes from the core2-32 sysroot...done.
Removing 150 recipes from the qemux86 sysroot...done.
ERROR: Nothing PROVIDES 'diffoscope'
diffoscope was skipped: incompatible with host i686-poky-linux-musl (not in 
COMPATIBLE_HOST)

Summary: There was 1 ERROR message shown, returning a non-zero exit code.
packages/core2-32-poky-linux/diffoscope/diffoscope-dbg: PV changed from "153" 
to "156"
packages/core2-32-poky-linux/diffoscope/diffoscope-dbg: PKGV changed from 153 
[default] to 156 [default]
packages/core2-32-poky-linux/diffoscope/diffoscope-dev: PV changed from "153" 
to "156"
packages/core2-32-poky-linux/diffoscope/diffoscope-dev: PKGV changed from 153 
[default] to 156 [default]
packages/core2-32-poky-linux/diffoscope/diffoscope-doc: PV changed from "153" 
to "156"
packages/core2-32-poky-linux/diffoscope/diffoscope-doc: PKGV changed from 153 
[default] to 156 [default]
packages/core2-32-poky-linux/diffoscope/diffoscope-locale: PV changed from 
"153" to "156"
packages/core2-32-poky-linux/diffoscope/diffoscope-locale: PKGV changed from 
153 [default] to 156 [default]
packages/core2-32-poky-linux/diffoscope/diffoscope-src: PV changed from "153" 
to "156"
packages/core2-32-poky-linux/diffoscope/diffoscope-src: PKGV changed from 153 
[default] to 156 [default]
packages/core2-32-poky-linux/diffoscope/diffoscope-staticdev: PV changed from 
"153" to "156"
packages/core2-32-poky-linux/diffoscope/diffoscope-staticdev: PKGV changed from 
153 [default] to 156 [default]
packages/core2-32-poky-linux/diffoscope/diffoscope: PV changed from "153" to 
"156"
packages/core2-32-poky-linux/diffoscope/diffoscope: PKGV changed from 153 
[default] to 156 [default]
packages/core2-32-poky-linux/diffoscope/diffoscope: PKGSIZE changed from 885091 
to 886881 (+0%)
packages/core2-32-poky-linux/diffoscope: PV changed from "153" to "156"
packages/core2-32-poky-linux/diffoscope: PKGV changed from 153 [default] to 156 
[default]
Changes to packages/core2-32-poky-linux/diffoscope (sysroot):
  /usr/lib/python3.8/site-packages/diffoscope-153-py3.8.egg-info moved to 
/usr/lib/python3.8/site-packages/diffoscope-156-py3.8.egg-info
Changes to packages/core2-32-poky-linux/diffoscope (sysroot):
  /usr/lib/python3.8/site-packages/diffoscope-153-py3.8.egg-info moved to 
/usr/lib/python3.8/site-packages/diffoscope-156-py3.8.egg-info
>From c2e6c3f186cddd42f76959f06018d10a85d22c02 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Sun, 16 Aug 2020 05:44:47 +
Subject: [PATCH] diffoscope: upgrade 153 -> 156

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

diff --git a/meta/recipes-support/diffoscope/diffoscope_153.bb b/meta/recipes-support/diffoscope/diffoscope_156.bb
similarity index 83%
rename from meta/recipes-support/diffoscope/diffoscope_153.bb
rename to meta/recipes-support/diffoscope/diffoscope_156.bb
index 77f5254aec..94e6e56d41 100644
--- a/meta/recipes-support/diffoscope/diffoscope_153.bb
+++ b/meta/recipes-support/diffoscope/diffoscope_156.bb
@@ -7,7 +7,7 @@ PYPI_PACKAGE = "diffoscope"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "b5104b5e72252df45ba6b7cbb0169e2e3407715b6b063fa5b38a2649b0d719a2"
+SRC_URI[sha256sum] = "428f5d75197c3d9449ffbac52f8d79dd782a7ed67aba759e0452515b2d8e1441"
 
 RDEPENDS_${PN} += "binutils vim squashfs-tools python3-libarchive-c python3-magic"
 
-- 
2.17.1

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#141520): 
https://lists.openembedded.org/g/openembedded-core/message/141520
Mute This Topic: https://lists.openembedded.org/mt/76219681/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openemb

[OE-core] [AUH] rsync: upgrading to 3.2.3 SUCCEEDED

2020-08-15 Thread auh
Hello,

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

Next steps:
- apply the patch: git am 0001-rsync-upgrade-3.2.2-3.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
>From 97f644677719dbcc16d6497ab2a7918e0918cfd8 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Sat, 15 Aug 2020 17:50:39 +
Subject: [PATCH] rsync: upgrade 3.2.2 -> 3.2.3

---
 meta/recipes-devtools/rsync/{rsync_3.2.2.bb => rsync_3.2.3.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/rsync/{rsync_3.2.2.bb => rsync_3.2.3.bb} (95%)

diff --git a/meta/recipes-devtools/rsync/rsync_3.2.2.bb b/meta/recipes-devtools/rsync/rsync_3.2.3.bb
similarity index 95%
rename from meta/recipes-devtools/rsync/rsync_3.2.2.bb
rename to meta/recipes-devtools/rsync/rsync_3.2.3.bb
index 182628f4b4..375efa0dea 100644
--- a/meta/recipes-devtools/rsync/rsync_3.2.2.bb
+++ b/meta/recipes-devtools/rsync/rsync_3.2.3.bb
@@ -14,7 +14,7 @@ SRC_URI = "https://download.samba.org/pub/${BPN}/src/${BP}.tar.gz \
file://makefile-no-rebuild.patch \
"
 
-SRC_URI[sha256sum] = "644bd3841779507665211fd7db8359c8a10670c57e305b4aab61b4e40037afa8"
+SRC_URI[sha256sum] = "becc3c504ceea499f4167a260040ccf4d9f2ef9499ad5683c179a697146ce50e"
 
 # -16548 required for v3.1.3pre1. Already in v3.1.3.
 CVE_CHECK_WHITELIST += " CVE-2017-16548 "
-- 
2.17.1

packages/core2-32-poky-linux/rsync: PKGV changed from 3.2.2 [default] to 3.2.3 
[default]
packages/core2-32-poky-linux/rsync: PV changed from "3.2.2" to "3.2.3"
packages/core2-32-poky-linux/rsync/rsync-dbg: PKGV changed from 3.2.2 [default] 
to 3.2.3 [default]
packages/core2-32-poky-linux/rsync/rsync-dbg: PKGSIZE changed from 1252888 to 
1274088 (+2%)
packages/core2-32-poky-linux/rsync/rsync-dbg: PV changed from "3.2.2" to "3.2.3"
packages/core2-32-poky-linux/rsync/rsync-dev: PKGV changed from 3.2.2 [default] 
to 3.2.3 [default]
packages/core2-32-poky-linux/rsync/rsync-dev: PV changed from "3.2.2" to "3.2.3"
packages/core2-32-poky-linux/rsync/rsync-doc: PKGV changed from 3.2.2 [default] 
to 3.2.3 [default]
packages/core2-32-poky-linux/rsync/rsync-doc: PKGSIZE changed from 260696 to 
266534 (+2%)
packages/core2-32-poky-linux/rsync/rsync-doc: PV changed from "3.2.2" to "3.2.3"
packages/core2-32-poky-linux/rsync/rsync-locale: PKGV changed from 3.2.2 
[default] to 3.2.3 [default]
packages/core2-32-poky-linux/rsync/rsync-locale: PV changed from "3.2.2" to 
"3.2.3"
packages/core2-32-poky-linux/rsync/rsync-src: PKGV changed from 3.2.2 [default] 
to 3.2.3 [default]
packages/core2-32-poky-linux/rsync/rsync-src: PKGSIZE changed from 1575777 to 
1595040 (+1%)
packages/core2-32-poky-linux/rsync/rsync-src: FILELIST: directory renamed 
/usr/src/debug/rsync/3.2.2-r0/rsync-3.2.2/zlib -> 
/usr/src/debug/rsync/3.2.3-r0/rsync-3.2.3/zlib, directory renamed 
/usr/src/debug/rsync/3.2.2-r0/rsync-3.2.2/lib -> 
/usr/src/debug/rsync/3.2.3-r0/rsync-3.2.3/lib, removed 
"/usr/src/debug/rsync/3.2.2-r0/rsync-3.2.2/generator.c 
/usr/src/debug/rsync/3.2.2-r0/rsync-3.2.2/socket.c 
/usr/src/debug/rsync/3.2.2-r0/rsync-3.2.2/inums.h 
/usr/src/debug/rsync/3.2.2-r0/rsync-3.2.2/delete.c 
/usr/src/debug/rsync/3.2.2-r0/rsync-3.2.2/xattrs.c 
/usr/src/debug/rsync/3.2.2-r0/rsync-3.2.2/batch.c 
/usr/src/debug/rsync/3.2.2-r0/rsync-3.2.2/sender.c 
/usr/src/debug/rsync/3.2.2-r0/rsync-3.2.2/util.c 
/usr/src/debug/rsync/3.2.2-r0/rsync-3.2.2/clientserver.c 
/usr/src/debug/rsync/3.2.2-r0/rsync-3.2.2/access.c 
/usr/src/debug/rsync/3.2.2-r0/rsync-3.2.2/daemon-parm.h 
/usr/src/debug/rsync/3.2.2-r0/rsync-3.2.2/compat.c 
/usr/src/debug/rsync/3.2.2-r0/rsync-3.2.2/pipe.c /usr/src/debug/rsync/3.2
 .2-r0/rsync-3.2.2/receiver.c 
/usr/src/debug/rsync/3.2.2-r0/rsync-3.2.2/byteorder.h 
/usr/src/debug/rsync/3.2.2-r0/rsync-3.2.2/token.c 
/usr/src/debug/rsync/3.2.2-r0/rsync-3.2.2/progress.c 
/usr/src/debug/rsync/3.2.2-r0/rsync-3.2.2/backup.c 
/usr/src/debug/rsync/3.2.2-r0/rsync-3.2.2/hlink.c 
/usr/src/debug/rsync/3.2.2-r0/rsync-3.2.2/ifuncs.h 
/usr/src/debug/rsync/3.2.2-r0/rsync-3.2.2/loadparm.c 
/usr/src/debug/rsync/3.2.2-r0/rsync-3.2.2/flist.c 
/usr/src/debug/rsync/3.2.2-r0/rsync-3.2.2/match.c 
/usr/src/debug/rsync/3.2.2-r0/rsync-3.2.2/cleanup.c 
/usr/src/debug/rsync/3.2.2

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

2020-08-15 Thread auh
Hello,

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

Next steps:
- apply the patch: git am 
0001-vulkan-headers-upgrade-1.2.135.0-1.2.148.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
>From 7d0649c195341ef18202945a0d2369f29c91e1f3 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Sun, 16 Aug 2020 01:36:20 +
Subject: [PATCH] vulkan-headers: upgrade 1.2.135.0 -> 1.2.148.0

---
 ...ulkan-headers_1.2.135.0.bb => vulkan-headers_1.2.148.0.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-graphics/vulkan/{vulkan-headers_1.2.135.0.bb => vulkan-headers_1.2.148.0.bb} (89%)

diff --git a/meta/recipes-graphics/vulkan/vulkan-headers_1.2.135.0.bb b/meta/recipes-graphics/vulkan/vulkan-headers_1.2.148.0.bb
similarity index 89%
rename from meta/recipes-graphics/vulkan/vulkan-headers_1.2.135.0.bb
rename to meta/recipes-graphics/vulkan/vulkan-headers_1.2.148.0.bb
index d21c3d62b9..8bb50ca3bc 100644
--- a/meta/recipes-graphics/vulkan/vulkan-headers_1.2.135.0.bb
+++ b/meta/recipes-graphics/vulkan/vulkan-headers_1.2.148.0.bb
@@ -6,9 +6,9 @@ SECTION = "libs"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57"
 # was sdk-1.2.135 branch but it was removed upstream, commit is in master branch though
-SRC_URI = "git://github.com/KhronosGroup/Vulkan-Headers.git;branch=master"
+SRC_URI = "git://github.com/KhronosGroup/Vulkan-Headers.git;branch=sdk-1.2.148"
 
-SRCREV = "fb7f9c9bcd1d1544ea203a1f3d4253d0e90c5a90"
+SRCREV = "fc87182aab33a63b43db41d7a424eed27283aebf"
 
 S = "${WORKDIR}/git"
 
-- 
2.17.1

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#141501): 
https://lists.openembedded.org/g/openembedded-core/message/141501
Mute This Topic: https://lists.openembedded.org/mt/76219661/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] ethtool: upgrading to 5.8 FAILED

2020-08-15 Thread auh
Hello,

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

Detailed error information:

do_compile failed



Next steps:
- apply the patch: git am 0001-ethtool-upgrade-5.7-5.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
>From d280009f7e3b9582f759e59870933bcbf894db85 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Sat, 15 Aug 2020 18:12:38 +
Subject: [PATCH] ethtool: upgrade 5.7 -> 5.8

---
 .../ethtool/ethtool/avoid_parallel_tests.patch  | 6 +++---
 .../ethtool/{ethtool_5.7.bb => ethtool_5.8.bb}  | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)
 rename meta/recipes-extended/ethtool/{ethtool_5.7.bb => ethtool_5.8.bb} (93%)

diff --git a/meta/recipes-extended/ethtool/ethtool/avoid_parallel_tests.patch b/meta/recipes-extended/ethtool/ethtool/avoid_parallel_tests.patch
index 8ecfde1417..9686a77308 100644
--- a/meta/recipes-extended/ethtool/ethtool/avoid_parallel_tests.patch
+++ b/meta/recipes-extended/ethtool/ethtool/avoid_parallel_tests.patch
@@ -1,4 +1,4 @@
-From 1c6c017e56ec536f5cceacdb02092777d390debb Mon Sep 17 00:00:00 2001
+From 119ac16fee900843591535bef713c0cf7908e3c6 Mon Sep 17 00:00:00 2001
 From: Tudor Florea 
 Date: Wed, 28 May 2014 18:59:54 +0200
 Subject: [PATCH] ethtool: use serial-tests config needed by ptest.
@@ -15,11 +15,11 @@ Upstream-Status: Inappropriate
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/configure.ac b/configure.ac
-index 1169b7f..ed82524 100644
+index 19223f7..8a58d15 100644
 --- a/configure.ac
 +++ b/configure.ac
 @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
- AC_INIT(ethtool, 5.7, net...@vger.kernel.org)
+ AC_INIT(ethtool, 5.8, net...@vger.kernel.org)
  AC_PREREQ(2.52)
  AC_CONFIG_SRCDIR([ethtool.c])
 -AM_INIT_AUTOMAKE([gnu subdir-objects])
diff --git a/meta/recipes-extended/ethtool/ethtool_5.7.bb b/meta/recipes-extended/ethtool/ethtool_5.8.bb
similarity index 93%
rename from meta/recipes-extended/ethtool/ethtool_5.7.bb
rename to meta/recipes-extended/ethtool/ethtool_5.8.bb
index d9fc30cb55..0a6e7a2b1f 100644
--- a/meta/recipes-extended/ethtool/ethtool_5.7.bb
+++ b/meta/recipes-extended/ethtool/ethtool_5.8.bb
@@ -11,7 +11,7 @@ SRC_URI = "${KERNELORG_MIRROR}/software/network/ethtool/ethtool-${PV}.tar.gz \
file://avoid_parallel_tests.patch \
"
 
-SRC_URI[sha256sum] = "c2e16f8bf510c5822f8e25061c2533972308a421767c54abcacb1038b08bb782"
+SRC_URI[sha256sum] = "91e8bbda48a7fd5d374efacca542364ceb3a6c1f286f024b64ec40ccc799e125"
 
 UPSTREAM_CHECK_URI = "https://www.kernel.org/pub/software/network/ethtool/";
 
-- 
2.17.1

Loading cache...done.
Loaded 1342 entries from dependency cache.
Parsing recipes...done.
Parsing of 778 .bb files complete (777 cached, 1 parsed). 1342 targets, 33 
skipped, 0 masked, 0 errors.
Removing 1 recipes from the core2-32 sysroot...done.
Removing 1 recipes from the qemux86 sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "1.47.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "i686-poky-linux"
MACHINE  = "qemux86"
DISTRO   = "poky"
DISTRO_VERSION   = "3.1+snapshot-20200815"
TUNE_FEATURES= "m32 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:00465e8942fbb2953f54d610127eaa24855859a4"
workspace= "master:bd1da2aca0bc26720f438a9c1d54f5b04084da4e"

Initialising tasks...done.
Sstate summary: Wanted 314 Found 306 Missed 8 Current 467 (97% match, 98% 
complete)
NOTE: Executing Tasks
NOTE: Setscene tasks completed
NOTE: Running task 1245 of 2424 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-extended/ethtool/ethtool_5.8.bb:do_fetch)
NOTE: recipe ethtool-5.8-r0: task do_fetch: Started
NOTE: recipe ethtool-5.8-r0: task do_fetch: Succeeded
NOTE: Running task 1638 of 2424 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-extend

[OE-core] [AUH] libpipeline: upgrading to 1.5.3 SUCCEEDED

2020-08-15 Thread auh
Hello,

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

Next steps:
- apply the patch: git am 0001-libpipeline-upgrade-1.5.2-1.5.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
packages/core2-32-poky-linux/libpipeline: PV changed from "1.5.2" to "1.5.3"
packages/core2-32-poky-linux/libpipeline: PKGV changed from 1.5.2 [default] to 
1.5.3 [default]
packages/core2-32-poky-linux/libpipeline/libpipeline-dbg: FILELIST: removed 
"/usr/lib/.debug/libpipeline.so.1.5.2", added 
"/usr/lib/.debug/libpipeline.so.1.5.3"
packages/core2-32-poky-linux/libpipeline/libpipeline-dbg: PV changed from 
"1.5.2" to "1.5.3"
packages/core2-32-poky-linux/libpipeline/libpipeline-dbg: PKGSIZE changed from 
157964 to 158076 (+0%)
packages/core2-32-poky-linux/libpipeline/libpipeline-dbg: PKGV changed from 
1.5.2 [default] to 1.5.3 [default]
packages/core2-32-poky-linux/libpipeline/libpipeline-dev: PV changed from 
"1.5.2" to "1.5.3"
packages/core2-32-poky-linux/libpipeline/libpipeline-dev: PKGV changed from 
1.5.2 [default] to 1.5.3 [default]
packages/core2-32-poky-linux/libpipeline/libpipeline-doc: PV changed from 
"1.5.2" to "1.5.3"
packages/core2-32-poky-linux/libpipeline/libpipeline-doc: PKGV changed from 
1.5.2 [default] to 1.5.3 [default]
packages/core2-32-poky-linux/libpipeline/libpipeline-locale: PV changed from 
"1.5.2" to "1.5.3"
packages/core2-32-poky-linux/libpipeline/libpipeline-locale: PKGV changed from 
1.5.2 [default] to 1.5.3 [default]
packages/core2-32-poky-linux/libpipeline/libpipeline-src: PV changed from 
"1.5.2" to "1.5.3"
packages/core2-32-poky-linux/libpipeline/libpipeline-src: PKGSIZE changed from 
572255 to 572395 (+0%)
packages/core2-32-poky-linux/libpipeline/libpipeline-src: PKGV changed from 
1.5.2 [default] to 1.5.3 [default]
packages/core2-32-poky-linux/libpipeline/libpipeline-staticdev: PV changed from 
"1.5.2" to "1.5.3"
packages/core2-32-poky-linux/libpipeline/libpipeline-staticdev: PKGV changed 
from 1.5.2 [default] to 1.5.3 [default]
packages/core2-32-poky-linux/libpipeline/libpipeline: FILELIST: removed 
"/usr/lib/libpipeline.so.1.5.2", added "/usr/lib/libpipeline.so.1.5.3"
packages/core2-32-poky-linux/libpipeline/libpipeline: PV changed from "1.5.2" 
to "1.5.3"
packages/core2-32-poky-linux/libpipeline/libpipeline: PKGV changed from 1.5.2 
[default] to 1.5.3 [default]
Changes to packages/core2-32-poky-linux/libpipeline (sysroot):
  /usr/lib/libpipeline.so.1 changed symlink target from libpipeline.so.1.5.2 to 
libpipeline.so.1.5.3
  /usr/lib/libpipeline.so changed symlink target from libpipeline.so.1.5.2 to 
libpipeline.so.1.5.3
  /usr/lib/libpipeline.so.1.5.2 moved to /usr/lib/libpipeline.so.1.5.3
packages/core2-32-poky-linux/libpipeline/libpipeline: FILELIST: removed 
"/usr/lib/libpipeline.so.1.5.2", added "/usr/lib/libpipeline.so.1.5.3"
Changes to packages/core2-32-poky-linux/libpipeline (sysroot):
  /usr/lib/libpipeline.so.1 changed symlink target from libpipeline.so.1.5.2 to 
libpipeline.so.1.5.3
  /usr/lib/libpipeline.so changed symlink target from libpipeline.so.1.5.2 to 
libpipeline.so.1.5.3
  /usr/lib/libpipeline.so.1.5.2 moved to /usr/lib/libpipeline.so.1.5.3
>From 14a17fb2914f551a285f01c7fec35e791eff9c30 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Sat, 15 Aug 2020 18:20:18 +
Subject: [PATCH] libpipeline: upgrade 1.5.2 -> 1.5.3

---
 .../libpipeline/{libpipeline_1.5.2.bb => libpipeline_1.5.3.bb} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta/recipes-extended/libpipeline/{libpipeline_1.5.2.bb => libpipeline_1.5.3.bb} (78%)

diff --git a/meta/recipes-extended/libpipeline/libpipeline_1.5.2.bb b/meta/recipes-extended/libpipeline/libpipeline_1.5.3.bb
similarity index 78%
rename from meta/recipes-extended/libpipeline/libpipeline_1.5.2.bb
rename to meta/recipes-extended/libpipeline/libpipeline_1.5.3.bb
index a182461607..ee15fd0644 100644
--- a/meta/recipes-extended/libpipeline/libpipeline_1.5.2.bb
+++ b/meta/recipes-extended/libpipeline/libpipeline_1.5.3.bb
@@ -7,8 +7,7 @@ LICENSE = "GPLv3"
 LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
 
 SRC_URI = "${SAVANNAH_GNU_MIRROR}/libpipeline/libpipeline-${PV}.tar.gz"
-SRC_URI[md5sum] = "169de4cc1f6f7f7d430a5bed858b2

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

2020-08-15 Thread auh
Hello,

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

Detailed error information:

Running 'devtool upgrade' for recipe qemu failed.
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)...
Loading cache...done.
Loaded 1342 entries from dependency cache.
INFO: Extracting current version source...
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "1.47.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "3.1+snapshot-20200815"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:ed32cbdb743d602e19b5527a222fad6884779b73"
workspace= "master:bd1da2aca0bc26720f438a9c1d54f5b04084da4e"

Initialising tasks...done.
Sstate summary: Wanted 0 Found 0 Missed 0 Current 22 (0% match, 100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 102 tasks of which 99 didn't need to be rerun 
and all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
INFO: Adding local source files to srctree...
INFO: Extracting upgraded version source...
INFO: Fetching https://download.qemu.org/qemu-5.1.0.tar.xz...
Loading cache...done.
Loaded 1342 entries from dependency cache.
Parsing recipes...done.
Parsing of 779 .bb files complete (777 cached, 2 parsed). 1343 targets, 33 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "1.47.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "3.1+snapshot-20200815"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:ed32cbdb743d602e19b5527a222fad6884779b73"
workspace= "master:bd1da2aca0bc26720f438a9c1d54f5b04084da4e"

Initialising tasks...done.
Sstate summary: Wanted 0 Found 0 Missed 0 Current 18 (0% match, 100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 83 tasks of which 81 didn't need to be rerun and 
all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
DEBUG 5 [Errno 25] Inappropriate ioctl for device
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   3% |#   | ETA:  0:00:07
Adding changed files:   7% |##  | ETA:  0:00:05
Adding changed files:  11% || ETA:  0:00:04
Adding changed files:  15% |#   | ETA:  0:00:04
Adding changed files:  19% |### | ETA:  0:00:04
Adding changed files:  23% || ETA:  0:00:03
Adding changed files:  27% |#   | ETA:  0:00:03
Adding changed files:  31% |### | ETA:  0:00:03
Adding changed files:  35% || ETA:  0:00:03
Adding changed files:  39% |##  | ETA:  0:00:02
Adding changed files:  42% |### | ETA:  0:00:02
Adding changed files:  46% || ETA:  0:00:02
Adding changed files:  50% |##  | ETA:  0:00:02
Adding changed files:  54% |### | ETA:  0:00:02
Adding changed files:  58% |#   | ETA:  0:00:02
Adding changed files:  62% |##  | ETA:  0:00:01
Adding changed files:  66% |### | ETA:  0:00:01
Adding changed files:  70% |#   | ETA:  0:00:01
Adding changed files:  74% |##  | ETA:  0:00:01
Adding changed files:  78% || ETA:  0:00:01
Adding changed files:  81% |#   | ETA:  0:00:00
Adding changed files:  85% |##  | ETA:  0:00:00
Adding changed files:  89% || ETA:  0:00:00
Adding changed files:  93% |#   | ETA:  0:00:00
Adding changed files:  97% |##

[OE-core] [AUH] bootchart2: upgrading to 0.14.9 FAILED

2020-08-15 Thread auh
Hello,

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

Detailed error information:

The following devtool command failed:  upgrade bootchart2 -V 0.14.9 -S 
868a2afab9da34f32c007d773b77253c93104636
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)...
Loading cache...done.
Loaded 1342 entries from dependency cache.
INFO: Extracting current version source...
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "1.47.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "3.1+snapshot-20200815"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:4bcce359b4e5f12364ea98a3cda14d2c2ed68b67"
workspace= "master:bd1da2aca0bc26720f438a9c1d54f5b04084da4e"

Initialising tasks...done.
Sstate summary: Wanted 0 Found 0 Missed 0 Current 20 (0% match, 100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 93 tasks of which 90 didn't need to be rerun and 
all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
INFO: Adding local source files to srctree...
INFO: Extracting upgraded version source...
ERROR: Execution of 'git checkout 868a2afab9da34f32c007d773b77253c93104636' 
failed with exit code 128:
fatal: reference is not a tree: 868a2afab9da34f32c007d773b77253c93104636




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 (#141477): 
https://lists.openembedded.org/g/openembedded-core/message/141477
Mute This Topic: https://lists.openembedded.org/mt/76219632/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] build-compare: upgrading to d95eb3576a73164f3e6e7492ac01c00136239d71 SUCCEEDED

2020-08-15 Thread auh
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *build-compare* to 
*d95eb3576a73164f3e6e7492ac01c00136239d71* has Succeeded.

Next steps:
- apply the patch: git am 
0001-build-compare-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
packages/core2-32-poky-linux/build-compare/build-compare-dbg: PKGV changed from 
2020.05.29+git0+102d844ce0 to 2020.05.29+git0+d95eb3576a
packages/core2-32-poky-linux/build-compare/build-compare-dbg: PV changed from 
"2020.05.29+gitAUTOINC+102d844ce0" to "2020.05.29+gitAUTOINC+d95eb3576a"
packages/core2-32-poky-linux/build-compare/build-compare-dev: PKGV changed from 
2020.05.29+git0+102d844ce0 to 2020.05.29+git0+d95eb3576a
packages/core2-32-poky-linux/build-compare/build-compare-dev: PV changed from 
"2020.05.29+gitAUTOINC+102d844ce0" to "2020.05.29+gitAUTOINC+d95eb3576a"
packages/core2-32-poky-linux/build-compare/build-compare-doc: PKGV changed from 
2020.05.29+git0+102d844ce0 to 2020.05.29+git0+d95eb3576a
packages/core2-32-poky-linux/build-compare/build-compare-doc: PV changed from 
"2020.05.29+gitAUTOINC+102d844ce0" to "2020.05.29+gitAUTOINC+d95eb3576a"
packages/core2-32-poky-linux/build-compare/build-compare-locale: PKGV changed 
from 2020.05.29+git0+102d844ce0 to 2020.05.29+git0+d95eb3576a
packages/core2-32-poky-linux/build-compare/build-compare-locale: PV changed 
from "2020.05.29+gitAUTOINC+102d844ce0" to "2020.05.29+gitAUTOINC+d95eb3576a"
packages/core2-32-poky-linux/build-compare/build-compare-src: PKGV changed from 
2020.05.29+git0+102d844ce0 to 2020.05.29+git0+d95eb3576a
packages/core2-32-poky-linux/build-compare/build-compare-src: PV changed from 
"2020.05.29+gitAUTOINC+102d844ce0" to "2020.05.29+gitAUTOINC+d95eb3576a"
packages/core2-32-poky-linux/build-compare/build-compare-staticdev: PKGV 
changed from 2020.05.29+git0+102d844ce0 to 2020.05.29+git0+d95eb3576a
packages/core2-32-poky-linux/build-compare/build-compare-staticdev: PV changed 
from "2020.05.29+gitAUTOINC+102d844ce0" to "2020.05.29+gitAUTOINC+d95eb3576a"
packages/core2-32-poky-linux/build-compare/build-compare: PKGV changed from 
2020.05.29+git0+102d844ce0 to 2020.05.29+git0+d95eb3576a
packages/core2-32-poky-linux/build-compare/build-compare: PKGSIZE changed from 
56590 to 56913 (+1%)
packages/core2-32-poky-linux/build-compare/build-compare: PV changed from 
"2020.05.29+gitAUTOINC+102d844ce0" to "2020.05.29+gitAUTOINC+d95eb3576a"
packages/core2-32-poky-linux/build-compare: PKGV changed from 
2020.05.29+gitAUTOINC+102d844ce0 [default] to 2020.05.29+gitAUTOINC+d95eb3576a 
[default]
packages/core2-32-poky-linux/build-compare: PV changed from 
"2020.05.29+gitAUTOINC+102d844ce0" to "2020.05.29+gitAUTOINC+d95eb3576a"
>From 4042f8e9644c11d12fa21ca7cebd47926392f7af Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Sat, 15 Aug 2020 15:56:20 +
Subject: [PATCH] build-compare: upgrade to latest revision

---
 meta/recipes-devtools/build-compare/build-compare_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/build-compare/build-compare_git.bb b/meta/recipes-devtools/build-compare/build-compare_git.bb
index 74a954db46..a431ea7b66 100644
--- a/meta/recipes-devtools/build-compare/build-compare_git.bb
+++ b/meta/recipes-devtools/build-compare/build-compare_git.bb
@@ -9,7 +9,7 @@ SRC_URI = "git://github.com/openSUSE/build-compare.git"
 
 # Date matches entry in build-compare.changes and date of SRCREV.
 #
-SRCREV = "102d844ce052c6dec6c56ee1d471bde72a1b4633"
+SRCREV = "d95eb3576a73164f3e6e7492ac01c00136239d71"
 PE = "1"
 PV = "2020.05.29+git${SRCPV}"
 UPSTREAM_CHECK_COMMITS = "1"
-- 
2.17.1

packages/core2-32-poky-linux/build-compare/build-compare-dbg: PKGV changed from 
2020.05.29+git0+102d844ce0 to 2020.05.29+git0+d95eb3576a
packages/core2-32-poky-linux/build-compare/build-compare-dev: PKGV changed from 
2020.05.29+git0+102d844ce0 to 2020.05.29+git0+d95eb3576a
packages/core2-32-poky-linux/build-compare/build-compare-doc: PKGV changed from 
2020.05.29+git0+102d844ce0 to 2020.05.29+git0+d95eb3576a
packages/core2-32-poky-linux/build-compare/build-compare-locale: PKGV changed 
from 2020.05.29+git0+102d844ce0 to 2020.05.29+git0+d95eb3576a
packages/core2-32-poky-linux/build-compare/build-compare-src: PKG

[OE-core] [AUH] gcc-source-10.1.0: upgrading to 10.2.0 FAILED

2020-08-15 Thread auh
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *gcc-source-10.1.0* to 
*10.2.0* has Failed(other errors).

Detailed error information:

The following git command failed: log --pretty=format:"%H" -1 master
fatal: ambiguous argument 'master': unknown revision or path not in the working 
tree.
Use '--' to separate paths from revisions, like this:
'git  [...] -- [...]'



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 (#141479): 
https://lists.openembedded.org/g/openembedded-core/message/141479
Mute This Topic: https://lists.openembedded.org/mt/76219634/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] bison: upgrading to 3.7.1 SUCCEEDED

2020-08-15 Thread auh
Hello,

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

Next steps:
- apply the patch: git am 0001-bison-upgrade-3.6.4-3.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
packages/core2-32-poky-linux/bison/bison-dbg: PV changed from "3.6.4" to "3.7.1"
packages/core2-32-poky-linux/bison/bison-dbg: PKGV changed from 3.6.4 [default] 
to 3.7.1 [default]
packages/core2-32-poky-linux/bison/bison-dbg: PKGSIZE changed from 1567148 to 
1897576 (+21%)
packages/core2-32-poky-linux/bison/bison-dev: PV changed from "3.6.4" to "3.7.1"
packages/core2-32-poky-linux/bison/bison-dev: PKGV changed from 3.6.4 [default] 
to 3.7.1 [default]
packages/core2-32-poky-linux/bison/bison-doc: PV changed from "3.6.4" to "3.7.1"
packages/core2-32-poky-linux/bison/bison-doc: PKGV changed from 3.6.4 [default] 
to 3.7.1 [default]
packages/core2-32-poky-linux/bison/bison-doc: PKGSIZE changed from 976555 to 
1027730 (+5%)
packages/core2-32-poky-linux/bison/bison-locale-af: PV changed from "3.6.4" to 
"3.7.1"
packages/core2-32-poky-linux/bison/bison-locale-af: PKGV changed from 3.6.4 
[default] to 3.7.1 [default]
packages/core2-32-poky-linux/bison/bison-locale-af: PKGSIZE changed from 927 to 
1371 (+48%)
packages/core2-32-poky-linux/bison/bison-locale-ast: PV changed from "3.6.4" to 
"3.7.1"
packages/core2-32-poky-linux/bison/bison-locale-ast: PKGV changed from 3.6.4 
[default] to 3.7.1 [default]
packages/core2-32-poky-linux/bison/bison-locale-ast: PKGSIZE changed from 1393 
to 1352 (-3%)
packages/core2-32-poky-linux/bison/bison-locale-be: PV changed from "3.6.4" to 
"3.7.1"
packages/core2-32-poky-linux/bison/bison-locale-be: PKGV changed from 3.6.4 
[default] to 3.7.1 [default]
packages/core2-32-poky-linux/bison/bison-locale-be: PKGSIZE changed from 1160 
to 1762 (+52%)
packages/core2-32-poky-linux/bison/bison-locale-bg: PV changed from "3.6.4" to 
"3.7.1"
packages/core2-32-poky-linux/bison/bison-locale-bg: PKGV changed from 3.6.4 
[default] to 3.7.1 [default]
packages/core2-32-poky-linux/bison/bison-locale-bg: PKGSIZE changed from 41687 
to 42526 (+2%)
packages/core2-32-poky-linux/bison/bison-locale-ca: PV changed from "3.6.4" to 
"3.7.1"
packages/core2-32-poky-linux/bison/bison-locale-ca: PKGV changed from 3.6.4 
[default] to 3.7.1 [default]
packages/core2-32-poky-linux/bison/bison-locale-ca: PKGSIZE changed from 15536 
to 15919 (+2%)
packages/core2-32-poky-linux/bison/bison-locale-cs: PV changed from "3.6.4" to 
"3.7.1"
packages/core2-32-poky-linux/bison/bison-locale-cs: PKGV changed from 3.6.4 
[default] to 3.7.1 [default]
packages/core2-32-poky-linux/bison/bison-locale-cs: PKGSIZE changed from 1716 
to 2144 (+25%)
packages/core2-32-poky-linux/bison/bison-locale-da: PV changed from "3.6.4" to 
"3.7.1"
packages/core2-32-poky-linux/bison/bison-locale-da: PKGV changed from 3.6.4 
[default] to 3.7.1 [default]
packages/core2-32-poky-linux/bison/bison-locale-da: PKGSIZE changed from 17865 
to 18196 (+2%)
packages/core2-32-poky-linux/bison/bison-locale-de: PV changed from "3.6.4" to 
"3.7.1"
packages/core2-32-poky-linux/bison/bison-locale-de: PKGV changed from 3.6.4 
[default] to 3.7.1 [default]
packages/core2-32-poky-linux/bison/bison-locale-de: PKGSIZE changed from 31190 
to 34634 (+11%)
packages/core2-32-poky-linux/bison/bison-locale-el: PV changed from "3.6.4" to 
"3.7.1"
packages/core2-32-poky-linux/bison/bison-locale-el: PKGV changed from 3.6.4 
[default] to 3.7.1 [default]
packages/core2-32-poky-linux/bison/bison-locale-el: PKGSIZE changed from 22111 
to 21988 (-1%)
packages/core2-32-poky-linux/bison/bison-locale-eo: PV changed from "3.6.4" to 
"3.7.1"
packages/core2-32-poky-linux/bison/bison-locale-eo: PKGV changed from 3.6.4 
[default] to 3.7.1 [default]
packages/core2-32-poky-linux/bison/bison-locale-eo: PKGSIZE changed from 27653 
to 27983 (+1%)
packages/core2-32-poky-linux/bison/bison-locale-es: PV changed from "3.6.4" to 
"3.7.1"
packages/core2-32-poky-linux/bison/bison-locale-es: PKGV changed from 3.6.4 
[default] to 3.7.1 [default]
packages/core2-32-poky-linux/bison/bison-locale-es: PKGSIZE changed from 16353 
to 16730 (+2%)
packages/core2-32-poky-linux/bison/bison-locale-et: PV changed from "3.6.4" to 
"3.7.1"
packages/core2-32-poky-linux/bison/bison-local

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

2020-08-15 Thread auh
Hello,

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

Detailed error information:

The following devtool command failed:  finish -f go 
/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-devtools/go
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)...
Loading cache...done.
Loaded 1342 entries from dependency cache.
Parsing recipes...done.
Parsing of 779 .bb files complete (777 cached, 2 parsed). 1344 targets, 33 
skipped, 0 masked, 0 errors.
INFO: Handling main branch (devtool)...
ERROR: Traceback (most recent call last):
  File 
"/home/pokybuild/yocto-worker/auh/build/build/poky/bitbake/lib/bb/cookerdata.py",
 line 162, in wrapped
return func(fn, *args)
  File 
"/home/pokybuild/yocto-worker/auh/build/build/poky/bitbake/lib/bb/cookerdata.py",
 line 187, in parse_config_file
return bb.parse.handle(fn, data, include)
  File 
"/home/pokybuild/yocto-worker/auh/build/build/poky/bitbake/lib/bb/parse/__init__.py",
 line 107, in handle
return h['handle'](fn, data, include)
  File 
"/home/pokybuild/yocto-worker/auh/build/build/poky/bitbake/lib/bb/parse/parse_py/ConfHandler.py",
 line 121, in handle
abs_fn = resolve_file(fn, data)
  File 
"/home/pokybuild/yocto-worker/auh/build/build/poky/bitbake/lib/bb/parse/__init__.py",
 line 131, in resolve_file
raise IOError(errno.ENOENT, "file %s not found" % fn)
FileNotFoundError: [Errno 2] file 
/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-devtools/go/conf/layer.conf
 not found

ERROR: Unable to parse 
/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-devtools/go/conf/layer.conf:
 [Errno 2] file 
/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-devtools/go/conf/layer.conf
 not found



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 (#141482): 
https://lists.openembedded.org/g/openembedded-core/message/141482
Mute This Topic: https://lists.openembedded.org/mt/76219637/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.18.1 FAILED

2020-08-15 Thread auh
ude(${config})
-endforeach()
diff --git a/meta/recipes-devtools/cmake/cmake/environment.d-cmake.sh b/meta/recipes-devtools/cmake/cmake/environment.d-cmake.sh
deleted file mode 100644
index 7bdb19fb6c..00
--- a/meta/recipes-devtools/cmake/cmake/environment.d-cmake.sh
+++ /dev/null
@@ -1,2 +0,0 @@
-export OE_CMAKE_TOOLCHAIN_FILE="$OECORE_NATIVE_SYSROOT/usr/share/cmake/OEToolchainConfig.cmake"
-export OE_CMAKE_FIND_LIBRARY_CUSTOM_LIB_SUFFIX="`echo $OECORE_BASELIB | sed -e s/lib//`"
diff --git a/meta/recipes-devtools/cmake/cmake_3.17.3.bb b/meta/recipes-devtools/cmake/cmake_3.18.1.bb
similarity index 78%
rename from meta/recipes-devtools/cmake/cmake_3.17.3.bb
rename to meta/recipes-devtools/cmake/cmake_3.18.1.bb
index e0457677e8..c91a60c462 100644
--- a/meta/recipes-devtools/cmake/cmake_3.17.3.bb
+++ b/meta/recipes-devtools/cmake/cmake_3.18.1.bb
@@ -4,11 +4,12 @@ inherit cmake
 
 DEPENDS += "curl expat zlib libarchive xz ncurses bzip2"
 
-SRC_URI_append_class-nativesdk = " \
-file://OEToolchainConfig.cmake \
-file://environment.d-cmake.sh \
-file://0001-CMakeDetermineSystem-use-oe-environment-vars-to-load.patch \
-"
+SRC_URI += "https://cmake.org/files/v${CMAKE_MAJOR_VERSION}/cmake-${PV}.tar.gz \
+   file://0002-cmake-Prevent-the-detection-of-Qt5.patch \
+   file://0003-cmake-support-OpenEmbedded-Qt4-tool-binary-names.patch \
+   file://0004-Fail-silently-if-system-Qt-installation-is-broken.patch \
+   file://0001-CMakeDetermineSystem-use-oe-environment-vars-to-load.patch \
+   "
 
 # Strip ${prefix} from ${docdir}, set result into docdir_stripped
 python () {
-- 
2.17.1

Loading cache...done.
Loaded 1342 entries from dependency cache.
Parsing recipes...WARNING: 
/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-devtools/cmake/cmake-native_3.17.3.bb:
 Unable to get checksum for cmake-native SRC_URI entry OEToolchainConfig.cmake: 
file could not be found
WARNING: 
/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-devtools/cmake/cmake-native_3.17.3.bb:
 Unable to get checksum for cmake-native SRC_URI entry environment.d-cmake.sh: 
file could not be found
done.
Parsing of 778 .bb files complete (776 cached, 2 parsed). 1342 targets, 33 
skipped, 0 masked, 0 errors.
Removing 1 recipes from the core2-32 sysroot...done.
Removing 1 recipes from the qemux86 sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "1.47.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "i686-poky-linux"
MACHINE  = "qemux86"
DISTRO   = "poky"
DISTRO_VERSION   = "3.1+snapshot-20200815"
TUNE_FEATURES= "m32 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:f2c459b9fdaccaa697b278bfa61a411316ff3f20"
workspace= "master:bd1da2aca0bc26720f438a9c1d54f5b04084da4e"

Initialising tasks...done.
Sstate summary: Wanted 550 Found 137 Missed 413 Current 261 (24% match, 49% 
complete)
NOTE: Executing Tasks
NOTE: Running setscene task 272 of 811 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-core/dbus/dbus-test_1.12.20.bb:do_deploy_source_date_epoch_setscene)
NOTE: Running setscene task 282 of 811 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-core/initscripts/init-system-helpers_1.58.bb:do_deploy_source_date_epoch_setscene)
NOTE: Running setscene task 289 of 811 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-core/gettext/gettext_0.20.2.bb:do_deploy_source_date_epoch_setscene)
NOTE: Running setscene task 296 of 811 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-connectivity/iproute2/iproute2_5.7.0.bb:do_deploy_source_date_epoch_setscene)
NOTE: Running setscene task 299 of 811 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-connectivity/socat/socat_1.7.3.4.bb:do_deploy_source_date_epoch_setscene)
NOTE: Running setscene task 306 of 811 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-devtools/autoconf/autoconf_2.69.bb:do_deploy_source_date_epoch_setscene)
NOTE: Running setscene task 309 of 811 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-devtools/automake/automake_1.16.2.bb:do_deploy_source_date_epoch_setscene)
NOTE: Running setscene task 318 of 811 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-core/udev/eudev_3.2.9.bb:do_deploy_source_date_epoch_setscene)
NOTE: Running setscene task 319 of 811 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-devtools/btrfs-tools/btrfs-tools_5.7.bb:do_deploy_source_date_epoch_setscene)
NOTE: Running setscene task 328 of 811 
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-devtools/e2fsprogs/

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

2020-08-15 Thread auh
Hello,

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

Detailed error information:

The following devtool command failed:  finish -f go-runtime 
/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-devtools/go
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)...
Loading cache...done.
Loaded 1342 entries from dependency cache.
Parsing recipes...done.
Parsing of 779 .bb files complete (777 cached, 2 parsed). 1344 targets, 33 
skipped, 0 masked, 0 errors.
INFO: Handling main branch (devtool)...
ERROR: Traceback (most recent call last):
  File 
"/home/pokybuild/yocto-worker/auh/build/build/poky/bitbake/lib/bb/cookerdata.py",
 line 162, in wrapped
return func(fn, *args)
  File 
"/home/pokybuild/yocto-worker/auh/build/build/poky/bitbake/lib/bb/cookerdata.py",
 line 187, in parse_config_file
return bb.parse.handle(fn, data, include)
  File 
"/home/pokybuild/yocto-worker/auh/build/build/poky/bitbake/lib/bb/parse/__init__.py",
 line 107, in handle
return h['handle'](fn, data, include)
  File 
"/home/pokybuild/yocto-worker/auh/build/build/poky/bitbake/lib/bb/parse/parse_py/ConfHandler.py",
 line 121, in handle
abs_fn = resolve_file(fn, data)
  File 
"/home/pokybuild/yocto-worker/auh/build/build/poky/bitbake/lib/bb/parse/__init__.py",
 line 131, in resolve_file
raise IOError(errno.ENOENT, "file %s not found" % fn)
FileNotFoundError: [Errno 2] file 
/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-devtools/go/conf/layer.conf
 not found

ERROR: Unable to parse 
/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-devtools/go/conf/layer.conf:
 [Errno 2] file 
/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-devtools/go/conf/layer.conf
 not found



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 (#141481): 
https://lists.openembedded.org/g/openembedded-core/message/141481
Mute This Topic: https://lists.openembedded.org/mt/76219636/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-numpy: upgrading to 1.19.1 SUCCEEDED

2020-08-15 Thread auh
Hello,

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

Next steps:
- apply the patch: git am 0001-python3-numpy-upgrade-1.19.0-1.19.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
>From 8957a60d7695c2455f27378c1cfbd8173f77adab Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Sat, 15 Aug 2020 16:45:28 +
Subject: [PATCH] python3-numpy: upgrade 1.19.0 -> 1.19.1

---
 meta/recipes-devtools/python-numpy/python-numpy.inc | 2 +-
 .../{python3-numpy_1.19.0.bb => python3-numpy_1.19.1.bb}| 0
 2 files changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python-numpy/{python3-numpy_1.19.0.bb => python3-numpy_1.19.1.bb} (100%)

diff --git a/meta/recipes-devtools/python-numpy/python-numpy.inc b/meta/recipes-devtools/python-numpy/python-numpy.inc
index e37ab399ed..0113f4098d 100644
--- a/meta/recipes-devtools/python-numpy/python-numpy.inc
+++ b/meta/recipes-devtools/python-numpy/python-numpy.inc
@@ -8,7 +8,7 @@ SRCNAME = "numpy"
 SRC_URI = "https://github.com/${SRCNAME}/${SRCNAME}/releases/download/v${PV}/${SRCNAME}-${PV}.tar.gz \
file://0001-Don-t-search-usr-and-so-on-for-libraries-by-default-.patch \
"
-SRC_URI[sha256sum] = "153cf8b0176e57a611931981acfe093d2f7fef623b48f91176efa199798a6b90"
+SRC_URI[sha256sum] = "1396e6c3d20cbfc119195303b0272e749610b7042cc498be4134f013e9a3215c"
 
 UPSTREAM_CHECK_URI = "https://github.com/numpy/numpy/releases";
 UPSTREAM_CHECK_REGEX = "(?P\d+(\.\d+)+)\.tar"
diff --git a/meta/recipes-devtools/python-numpy/python3-numpy_1.19.0.bb b/meta/recipes-devtools/python-numpy/python3-numpy_1.19.1.bb
similarity index 100%
rename from meta/recipes-devtools/python-numpy/python3-numpy_1.19.0.bb
rename to meta/recipes-devtools/python-numpy/python3-numpy_1.19.1.bb
-- 
2.17.1

packages/core2-32-poky-linux/python3-numpy: PKGV changed from 1.19.0 [default] 
to 1.19.1 [default]
packages/core2-32-poky-linux/python3-numpy: PV changed from "1.19.0" to "1.19.1"
packages/core2-32-poky-linux/python3-numpy/python3-numpy-dbg: PKGSIZE changed 
from 29287516 to 29292756 (+0%)
packages/core2-32-poky-linux/python3-numpy/python3-numpy-dbg: PKGV changed from 
1.19.0 [default] to 1.19.1 [default]
packages/core2-32-poky-linux/python3-numpy/python3-numpy-dbg: PV changed from 
"1.19.0" to "1.19.1"
packages/core2-32-poky-linux/python3-numpy/python3-numpy-dev: PKGV changed from 
1.19.0 [default] to 1.19.1 [default]
packages/core2-32-poky-linux/python3-numpy/python3-numpy-dev: PV changed from 
"1.19.0" to "1.19.1"
packages/core2-32-poky-linux/python3-numpy/python3-numpy-doc: PKGV changed from 
1.19.0 [default] to 1.19.1 [default]
packages/core2-32-poky-linux/python3-numpy/python3-numpy-doc: PV changed from 
"1.19.0" to "1.19.1"
packages/core2-32-poky-linux/python3-numpy/python3-numpy-locale: PKGV changed 
from 1.19.0 [default] to 1.19.1 [default]
packages/core2-32-poky-linux/python3-numpy/python3-numpy-locale: PV changed 
from "1.19.0" to "1.19.1"
packages/core2-32-poky-linux/python3-numpy/python3-numpy-src: PKGSIZE changed 
from 17531356 to 17537242 (+0%)
packages/core2-32-poky-linux/python3-numpy/python3-numpy-src: PKGV changed from 
1.19.0 [default] to 1.19.1 [default]
packages/core2-32-poky-linux/python3-numpy/python3-numpy-src: PV changed from 
"1.19.0" to "1.19.1"
packages/core2-32-poky-linux/python3-numpy/python3-numpy-staticdev: PKGSIZE 
changed from 254510 to 254518 (+0%)
packages/core2-32-poky-linux/python3-numpy/python3-numpy-staticdev: PKGV 
changed from 1.19.0 [default] to 1.19.1 [default]
packages/core2-32-poky-linux/python3-numpy/python3-numpy-staticdev: PV changed 
from "1.19.0" to "1.19.1"
packages/core2-32-poky-linux/python3-numpy/python3-numpy: PKGSIZE changed from 
26811563 to 26827723 (+0%)
packages/core2-32-poky-linux/python3-numpy/python3-numpy: PKGV changed from 
1.19.0 [default] to 1.19.1 [default]
packages/core2-32-poky-linux/python3-numpy/python3-numpy: PV changed from 
"1.19.0" to "1.19.1"
Changes to packages/core2-32-poky-linux/python3-numpy (sysroot):
  /usr/lib/python3.8/site-packages/numpy-1.19.0-py3.8.egg-info moved to 
/usr/lib/python3.8/site-packages/numpy-1.19.1-py3.8.egg-info
Changes to packages/core2-32-poky-linux/python3-numpy (sysroot):
  /u

[OE-core] [AUH] systemd-boot: upgrading to 246.1 SUCCEEDED

2020-08-15 Thread auh
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *systemd-boot* to *246.1* has 
Succeeded.

Next steps:
- apply the patch: git am 0001-systemd-boot-upgrade-246-246.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
packages/core2-32-poky-linux/systemd-boot: PKGV changed from 246 [default] to 
246.1 [default]
packages/core2-32-poky-linux/systemd-boot: PV changed from "246" to "246.1"
packages/core2-32-poky-linux/systemd-boot/systemd-boot-dbg: PKGV changed from 
246 [default] to 246.1 [default]
packages/core2-32-poky-linux/systemd-boot/systemd-boot-dbg: PV changed from 
"246" to "246.1"
packages/core2-32-poky-linux/systemd-boot/systemd-boot-dev: PKGV changed from 
246 [default] to 246.1 [default]
packages/core2-32-poky-linux/systemd-boot/systemd-boot-dev: PV changed from 
"246" to "246.1"
packages/core2-32-poky-linux/systemd-boot/systemd-boot-doc: PKGV changed from 
246 [default] to 246.1 [default]
packages/core2-32-poky-linux/systemd-boot/systemd-boot-doc: PV changed from 
"246" to "246.1"
packages/core2-32-poky-linux/systemd-boot/systemd-boot-locale: PKGV changed 
from 246 [default] to 246.1 [default]
packages/core2-32-poky-linux/systemd-boot/systemd-boot-locale: PV changed from 
"246" to "246.1"
packages/core2-32-poky-linux/systemd-boot/systemd-boot-src: PKGV changed from 
246 [default] to 246.1 [default]
packages/core2-32-poky-linux/systemd-boot/systemd-boot-src: PV changed from 
"246" to "246.1"
packages/core2-32-poky-linux/systemd-boot/systemd-boot-staticdev: PKGV changed 
from 246 [default] to 246.1 [default]
packages/core2-32-poky-linux/systemd-boot/systemd-boot-staticdev: PV changed 
from "246" to "246.1"
packages/core2-32-poky-linux/systemd-boot/systemd-boot: PKGV changed from 246 
[default] to 246.1 [default]
packages/core2-32-poky-linux/systemd-boot/systemd-boot: PV changed from "246" 
to "246.1"
>From 144c4a4604e6a0556ad2fa97385f41cf4b86358b Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Sat, 15 Aug 2020 13:21:49 +
Subject: [PATCH] systemd-boot: upgrade 246 -> 246.1

---
 .../systemd/{systemd-boot_246.bb => systemd-boot_246.1.bb}  | 0
 meta/recipes-core/systemd/systemd.inc   | 2 +-
 2 files changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-core/systemd/{systemd-boot_246.bb => systemd-boot_246.1.bb} (100%)

diff --git a/meta/recipes-core/systemd/systemd-boot_246.bb b/meta/recipes-core/systemd/systemd-boot_246.1.bb
similarity index 100%
rename from meta/recipes-core/systemd/systemd-boot_246.bb
rename to meta/recipes-core/systemd/systemd-boot_246.1.bb
diff --git a/meta/recipes-core/systemd/systemd.inc b/meta/recipes-core/systemd/systemd.inc
index 8ce78efbbd..53f36cf73a 100644
--- a/meta/recipes-core/systemd/systemd.inc
+++ b/meta/recipes-core/systemd/systemd.inc
@@ -14,7 +14,7 @@ LICENSE = "GPLv2 & LGPLv2.1"
 LIC_FILES_CHKSUM = "file://LICENSE.GPL2;md5=751419260aa954499f7abaabaa882bbe \
 file://LICENSE.LGPL2.1;md5=4fbd65380cdd255951079008b364516c"
 
-SRCREV = "5c68ad14af6c89261f31f0abb4850fb1c99e8cfd"
+SRCREV = "972391ac396f8fa39d06773338605af5a9d5507d"
 SRCBRANCH = "v246-stable"
 SRC_URI = "git://github.com/systemd/systemd-stable.git;protocol=git;branch=${SRCBRANCH}"
 
-- 
2.17.1

Loading cache...done.
Loaded 0 entries from dependency cache.
Parsing recipes...done.
Parsing of 778 .bb files complete (0 cached, 778 parsed). 1342 targets, 51 
skipped, 0 masked, 0 errors.
Removing 1 recipes from the armv7vet2hf-neon sysroot...done.
Removing 1 recipes from the qemuarm sysroot...done.
ERROR: Nothing PROVIDES 'systemd-boot'
systemd-boot was skipped: incompatible with host arm-poky-linux-gnueabi (not in 
COMPATIBLE_HOST)

Summary: There was 1 ERROR message shown, returning a non-zero exit code.
Loading cache...done.
Loaded 0 entries from dependency cache.
Parsing recipes...done.
Parsing of 778 .bb files complete (0 cached, 778 parsed). 1342 targets, 60 
skipped, 0 masked, 0 errors.
Removing 1 recipes from the mips32r2 sysroot...done.
Removing 1 recipes from the qemumips sysroot...done.
ERROR: Nothing PROVIDES 'systemd-boot'
systemd-boot was skipped: incompatible with host mips-poky-linux (not in 
COMPATIBLE_HOST)

Summary: There was 1 ERROR message shown, returning a non-zero exit code.
Loading ca

[OE-core] [AUH] iproute2: upgrading to 5.8.0 SUCCEEDED

2020-08-15 Thread auh
Hello,

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

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

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

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

Regards,
The Upgrade Helper
>From b1e9825163949aa9a7280c3e3ef2a6c2848e0c63 Mon Sep 17 00:00:00 2001
From: Upgrade Helper 
Date: Sat, 15 Aug 2020 13:04:59 +
Subject: [PATCH] iproute2: upgrade 5.7.0 -> 5.8.0

---
 .../0001-devlink.c-add-missing-include.patch| 13 +++--
 .../{iproute2_5.7.0.bb => iproute2_5.8.0.bb}|  2 +-
 2 files changed, 8 insertions(+), 7 deletions(-)
 rename meta/recipes-connectivity/iproute2/{iproute2_5.7.0.bb => iproute2_5.8.0.bb} (79%)

diff --git a/meta/recipes-connectivity/iproute2/iproute2/0001-devlink.c-add-missing-include.patch b/meta/recipes-connectivity/iproute2/iproute2/0001-devlink.c-add-missing-include.patch
index f9580b7d44..6400051dda 100644
--- a/meta/recipes-connectivity/iproute2/iproute2/0001-devlink.c-add-missing-include.patch
+++ b/meta/recipes-connectivity/iproute2/iproute2/0001-devlink.c-add-missing-include.patch
@@ -1,23 +1,24 @@
-From 5df629d825df4ccc4283228bc0739da126326072 Mon Sep 17 00:00:00 2001
+From 1607d253990ee9e943b7303db9e2accdcfa08cfe Mon Sep 17 00:00:00 2001
 From: Alexander Kanavin 
 Date: Sat, 6 Jun 2020 18:00:13 +
 Subject: [PATCH] devlink.c: add missing include
 
 Upstream-Status: Pending
 Signed-off-by: Alexander Kanavin 
+
 ---
  devlink/devlink.c | 1 +
  1 file changed, 1 insertion(+)
 
 diff --git a/devlink/devlink.c b/devlink/devlink.c
-index 16602ab..c278e6d 100644
+index 0982fae..93dc01c 100644
 --- a/devlink/devlink.c
 +++ b/devlink/devlink.c
-@@ -26,6 +26,7 @@
- #include 
- #include 
+@@ -33,6 +33,7 @@
+ #include 
+ #include 
  #include 
 +#include 
  
- #include "SNAPSHOT.h"
+ #include "version.h"
  #include "list.h"
diff --git a/meta/recipes-connectivity/iproute2/iproute2_5.7.0.bb b/meta/recipes-connectivity/iproute2/iproute2_5.8.0.bb
similarity index 79%
rename from meta/recipes-connectivity/iproute2/iproute2_5.7.0.bb
rename to meta/recipes-connectivity/iproute2/iproute2_5.8.0.bb
index 276afeab11..3a590f9122 100644
--- a/meta/recipes-connectivity/iproute2/iproute2_5.7.0.bb
+++ b/meta/recipes-connectivity/iproute2/iproute2_5.8.0.bb
@@ -5,7 +5,7 @@ SRC_URI = "${KERNELORG_MIRROR}/linux/utils/net/${BPN}/${BP}.tar.xz \
file://0001-devlink.c-add-missing-include.patch \
"
 
-SRC_URI[sha256sum] = "725dc7ba94aae54c6f8d4223ca055d9fb4fe89d6994b1c03bfb4411c4dd10f21"
+SRC_URI[sha256sum] = "cfcd1f890290f8c8afcc91d9444ad929b9252c16f9ab3f286c50dd3c59dc646e"
 
 # CFLAGS are computed in Makefile and reference CCOPTS
 #
-- 
2.17.1

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#141472): 
https://lists.openembedded.org/g/openembedded-core/message/141472
Mute This Topic: https://lists.openembedded.org/mt/76219625/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] gettext: upgrading to 0.21 FAILED

2020-08-15 Thread auh
Hello,

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

Detailed error information:

Running 'devtool upgrade' for recipe gettext failed.
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)...
Loading cache...done.
Loaded 1342 entries from dependency cache.
INFO: Extracting current version source...
Removing 1 recipes from the x86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "1.47.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "3.1+snapshot-20200815"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:201806bf7d22d64827ad3acff97b8a951c57df8e"
workspace= "master:bd1da2aca0bc26720f438a9c1d54f5b04084da4e"

Initialising tasks...done.
Sstate summary: Wanted 0 Found 0 Missed 0 Current 20 (0% match, 100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 93 tasks of which 90 didn't need to be rerun and 
all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
INFO: Adding local source files to srctree...
INFO: Extracting upgraded version source...
INFO: Fetching https://ftp.gnu.org/gnu/gettext/gettext-0.21.tar.gz...
Loading cache...done.
Loaded 1342 entries from dependency cache.
Parsing recipes...done.
Parsing of 779 .bb files complete (777 cached, 2 parsed). 1343 targets, 33 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "1.47.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "3.1+snapshot-20200815"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:201806bf7d22d64827ad3acff97b8a951c57df8e"
workspace= "master:bd1da2aca0bc26720f438a9c1d54f5b04084da4e"

Initialising tasks...done.
Sstate summary: Wanted 0 Found 0 Missed 0 Current 0 (0% match, 0% complete)
NOTE: No setscene tasks
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 2 tasks of which 0 didn't need to be rerun and 
all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
DEBUG 5 [Errno 25] Inappropriate ioctl for device
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   0% |   | ETA:  --:--:--
Adding changed files:   4% |#   | ETA:  0:00:01
Adding changed files:   8% |### | ETA:  0:00:01
Adding changed files:  12% || ETA:  0:00:01
Adding changed files:  17% |##  | ETA:  0:00:01
Adding changed files:  21% |### | ETA:  0:00:01
Adding changed files:  25% |#   | ETA:  0:00:01
Adding changed files:  30% |##  | ETA:  0:00:01
Adding changed files:  34% || ETA:  0:00:01
Adding changed files:  38% |##  | ETA:  0:00:00
Adding changed files:  43% |### | ETA:  0:00:00
Adding changed files:  47% |#   | ETA:  0:00:00
Adding changed files:  51% |##  | ETA:  0:00:00
Adding changed files:  56% || ETA:  0:00:00
Adding changed files:  60% |#   | ETA:  0:00:00
Adding changed files:  64% |### | 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:  82% |#   | ETA:  0:00:00
Adding changed files:  86% |### | ETA:  0:00:00
Adding changed files:  90% || 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] bind: upgrading to 9.16.5 FAILED

2020-08-15 Thread auh
Hello,

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

Detailed error information:

The following devtool command failed:  upgrade bind -V 9.16.5
NOTE: Starting bitbake server...
NOTE: Reconnecting to bitbake server...
NOTE: Retrying server connection (#1)...
Loading cache...done.
Loaded 1342 entries from dependency cache.
INFO: Extracting current version source...
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "1.47.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "3.1+snapshot-20200815"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:641bf8cec1666761209f05c0131659f2f6a15d46"
workspace= "master:bd1da2aca0bc26720f438a9c1d54f5b04084da4e"

Initialising tasks...done.
Sstate summary: Wanted 0 Found 0 Missed 0 Current 20 (0% match, 100% complete)
NOTE: Executing Tasks
NOTE: Tasks Summary: Attempted 93 tasks of which 90 didn't need to be rerun and 
all succeeded.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
INFO: Adding local source files to srctree...
INFO: Extracting upgraded version source...
INFO: Fetching https://ftp.isc.org/isc/bind9/9.16.5/bind-9.16.5.tar.gz...
Loading cache...done.
Loaded 1342 entries from dependency cache.
Parsing recipes...done.
Parsing of 779 .bb files complete (777 cached, 2 parsed). 1343 targets, 33 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION   = "1.47.0"
BUILD_SYS= "x86_64-linux"
NATIVELSBSTRING  = "universal"
TARGET_SYS   = "x86_64-poky-linux"
MACHINE  = "qemux86-64"
DISTRO   = "poky"
DISTRO_VERSION   = "3.1+snapshot-20200815"
TUNE_FEATURES= "m64 core2"
TARGET_FPU   = ""
meta 
meta-poky
meta-yocto-bsp   = 
"tmp-auh-upgrades:641bf8cec1666761209f05c0131659f2f6a15d46"
workspace= "master:bd1da2aca0bc26720f438a9c1d54f5b04084da4e"

Initialising tasks...done.
Sstate summary: Wanted 0 Found 0 Missed 0 Current 0 (0% match, 0% complete)
NOTE: No setscene tasks
NOTE: Executing Tasks
WARNING: Failed to fetch URL 
https://ftp.isc.org/isc/bind9/9.16.5/bind-9.16.5.tar.gz, attempting MIRRORS if 
available
ERROR: Fetcher failure: Fetch command export PSEUDO_DISABLED=1; unset 
_PYTHON_SYSCONFIGDATA_NAME; export ftp_proxy="http://proxy.yocto.io:5187/";; 
export FTP_PROXY="http://proxy.yocto.io:5187/";; export 
PATH="/home/pokybuild/yocto-worker/auh/build/build/build/tmp/sysroots-uninative/x86_64-linux/usr/bin:/home/pokybuild/yocto-worker/auh/build/build/poky/scripts:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-uda27hb7/work/recipe-sysroot-native/usr/bin/x86_64-poky-linux:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-uda27hb7/work/recipe-sysroot/usr/bin/crossscripts:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-uda27hb7/work/recipe-sysroot-native/usr/sbin:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-uda27hb7/work/recipe-sysroot-native/usr/bin:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-uda27hb7/work/recipe-sysroot-native/sbin:/home/pokybuild/yocto-worker/auh/
 
build/build/build/tmp/work/recipetool-uda27hb7/work/recipe-sysroot-native/bin:/home/pokybuild/yocto-worker/auh/build/build/poky/bitbake/bin:/home/pokybuild/yocto-worker/auh/build/build/build/tmp/hosttools";
 export HOME="/home/pokybuild"; /usr/bin/env wget -t 2 -T 30 --passive-ftp 
--no-check-certificate -P 
/home/pokybuild/yocto-worker/auh/build/build/build/downloads 
'https://ftp.isc.org/isc/bind9/9.16.5/bind-9.16.5.tar.gz' --progress=dot -v 
failed with exit code 8, output:
--2020-08-15 11:36:33--  https://ftp.isc.org/isc/bind9/9.16.5/bind-9.16.5.tar.gz
Resolving ftp.isc.org (ftp.isc.org)... 2001:4f8:1:f::49, 149.20.1.49
Connecting to ftp.isc.org (ftp.isc.org)|2001:4f8:1:f::49|:443... connected.
HTTP request sent, awaiting response... 404 Not Found
2020-08-15 11:36:33 ERROR 404: Not Found.


ERROR: Fetcher failure for URL: 
'https://ftp.isc.org/isc/bind9/9.16.5/bind-9.16.5.tar.gz'. Unable to fetch URL 
from any source.
ERROR: Logfile of failure stored in: 
/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/recipetool-uda27hb7/work/temp/log.do_fetch.45149
NOTE: Tasks Summary: Attempted 1 t

Re: [OE-core] [PATCH] gcc10: Don't default back to -fcommon

2020-08-15 Thread Khem Raj
Bruce,

We need 
https://github.com/torvalds/linux/commit/168200b6d6ea0cb5765943ec5da5b8149701f36a
backported to 5.4 kernels for perf to build with -fno-common can you
queue this in your kernel updates as soon as you can ?

Thanks
-Khem

On Sat, Aug 15, 2020 at 6:56 PM Khem Raj  wrote:
>
> On Sat, Aug 15, 2020 at 3:10 PM Richard Purdie
>  wrote:
> >
> > On Tue, 2020-08-04 at 23:17 -0700, Khem Raj wrote:
> > > here is a recent build with clang11 which also switched to using
> > > -fno-common and errors are pretty much same you will see with gcc10
> > > with this patch to revert the -fcommon defaults.
> > >
> > > https://errors.yoctoproject.org/Errors/Build/107234/?limit=100
> > >
> > > I was waiting for upstream packages to get fixed before switching the
> > > defaults back to -fno-common.
> >
> > Khem requested I revisit this. I see at least:
> >
> > a) perf failures pretty much everywhere
>
> This is interesting
>
> | x86_64-poky-linux-gcc: error: unrecognized command-line option
> '-m64/include/uapi/asm-generic/errno.h'
>
> I wonder if its some kernel update which is causing this, it seems to
> be missing a space in commandline somewhere
>
> > b) kexec-tools in no-x11 build
>
> I think I dealt with this in meta-oe perhaps we need to use -fcommon in 
> cflags.
>
> > c) cpio build failures in testimage
> >
> cpio needs a patch to build see
> https://git.openembedded.org/openembedded-core/commit/?id=ca6e5511b59b585de793ff6424c7c6ccfcd8e61e
> I guess we need to either patch cpio with this patch on target before
> building or pass -fcommon to the test so this patch is not needed
>
> Thanks for the run, I will try to look into it, I think for cpio build
> failure perhaps we need to pass
>
> > https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/1264
> >
> > the world builds haven't completed yet.
> >
> > So looks much better but still a few things need fixes.
> >
> > Cheers,
> >
> > Richard
> >
> >
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#141470): 
https://lists.openembedded.org/g/openembedded-core/message/141470
Mute This Topic: https://lists.openembedded.org/mt/75983138/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] gcc10: Don't default back to -fcommon

2020-08-15 Thread Khem Raj
On Sat, Aug 15, 2020 at 3:10 PM Richard Purdie
 wrote:
>
> On Tue, 2020-08-04 at 23:17 -0700, Khem Raj wrote:
> > here is a recent build with clang11 which also switched to using
> > -fno-common and errors are pretty much same you will see with gcc10
> > with this patch to revert the -fcommon defaults.
> >
> > https://errors.yoctoproject.org/Errors/Build/107234/?limit=100
> >
> > I was waiting for upstream packages to get fixed before switching the
> > defaults back to -fno-common.
>
> Khem requested I revisit this. I see at least:
>
> a) perf failures pretty much everywhere

This is interesting

| x86_64-poky-linux-gcc: error: unrecognized command-line option
'-m64/include/uapi/asm-generic/errno.h'

I wonder if its some kernel update which is causing this, it seems to
be missing a space in commandline somewhere

> b) kexec-tools in no-x11 build

I think I dealt with this in meta-oe perhaps we need to use -fcommon in cflags.

> c) cpio build failures in testimage
>
cpio needs a patch to build see
https://git.openembedded.org/openembedded-core/commit/?id=ca6e5511b59b585de793ff6424c7c6ccfcd8e61e
I guess we need to either patch cpio with this patch on target before
building or pass -fcommon to the test so this patch is not needed

Thanks for the run, I will try to look into it, I think for cpio build
failure perhaps we need to pass

> https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/1264
>
> the world builds haven't completed yet.
>
> So looks much better but still a few things need fixes.
>
> Cheers,
>
> Richard
>
>
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#141469): 
https://lists.openembedded.org/g/openembedded-core/message/141469
Mute This Topic: https://lists.openembedded.org/mt/75983138/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] gcc10: Don't default back to -fcommon

2020-08-15 Thread Richard Purdie
On Tue, 2020-08-04 at 23:17 -0700, Khem Raj wrote:
> here is a recent build with clang11 which also switched to using
> -fno-common and errors are pretty much same you will see with gcc10
> with this patch to revert the -fcommon defaults.
> 
> https://errors.yoctoproject.org/Errors/Build/107234/?limit=100
> 
> I was waiting for upstream packages to get fixed before switching the
> defaults back to -fno-common.

Khem requested I revisit this. I see at least:

a) perf failures pretty much everywhere
b) kexec-tools in no-x11 build
c) cpio build failures in testimage

https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/1264

the world builds haven't completed yet.

So looks much better but still a few things need fixes.

Cheers,

Richard


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#141468): 
https://lists.openembedded.org/g/openembedded-core/message/141468
Mute This Topic: https://lists.openembedded.org/mt/75983138/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 v5 2/2] image_types: add Zstandard conversion support

2020-08-15 Thread Adrian Bunk
On Fri, Dec 06, 2019 at 12:00:54PM +, Ross Burton wrote:
>...
> Personally I'm leaning towards keeping zstd out of core *for now* but I
> struggle to have a strong opinion either way.
>...

Is there a chance the "for now" is over?

zstd is becoming more and more popular on the target side,
and right now cmake is already building an own copy also
on the native side.

> Ross

Thanks
Adrian
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#141467): 
https://lists.openembedded.org/g/openembedded-core/message/141467
Mute This Topic: https://lists.openembedded.org/mt/72388388/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] qemu: Upgrade 5.0.0 -> 5.1.0

2020-08-15 Thread Richard Purdie
* Drop backported CVE fixes
* Drop cpu backtrace patch from 2015 for debugging an issue which we no longer 
see
  (patch throws rejects, files have moved)
* Update mips patch to account for file renames
* Update chardev patch to match upstream code changes
* Update webkitgtk patch, qemumips build works ok but qemux86 musl webkitgtk 
still
  fails. Need to figure out the correct fix and upstream it for this, current
  revert patch is not maintainable.

Release notes for 5.1.0 mention slight qemumips performance improvements
which would be valuable to us. My tests show no improvement in qemumips
testimage execution time for core-image-sato-sdk.

Fix a ptest issue for a file looking for /usr/bin/bash when we have
/bin/bash.

Signed-off-by: Richard Purdie 
---
 meta/conf/distro/include/tcmode-default.inc   |   2 +-
 meta/recipes-devtools/qemu/qemu-native.inc|   4 -
 ...u-native_5.0.0.bb => qemu-native_5.1.0.bb} |   0
 ...e_5.0.0.bb => qemu-system-native_5.1.0.bb} |   0
 meta/recipes-devtools/qemu/qemu.inc   |  11 +-
 .../qemu/0001-Add-enable-disable-udev.patch   |  15 +-
 ...emu-Add-missing-wacom-HID-descriptor.patch |  17 +-
 ...mu-Do-not-include-file-if-not-exists.patch |  13 +-
 ...test-which-runs-all-unit-test-cases-.patch |  13 +-
 ...n-environment-space-to-boot-loader-q.patch |  10 +-
 .../qemu/0004-qemu-disable-Valgrind.patch |  10 +-
 ...ld.bfd-fix-cflags-and-set-some-envir.patch |  13 +-
 ...-connect-socket-to-a-spawned-command.patch |  56 +++
 .../0007-apic-fixup-fallthrough-to-PIC.patch  |  10 +-
 ...webkitgtk-hangs-on-32-bit-x86-target.patch |  10 +-
 .../qemu/qemu/0009-Fix-webkitgtk-builds.patch |  73 -
 ...dd-pkg-config-handling-for-libgcrypt.patch |  14 +-
 ...-messages-when-qemi_cpu_kick_thread-.patch |  74 -
 .../qemu/qemu/CVE-2020-10761.patch| 151 --
 .../qemu/qemu/CVE-2020-13361.patch|  61 ---
 .../qemu/qemu/CVE-2020-13362.patch|  55 ---
 .../qemu/qemu/CVE-2020-13659.patch|  58 ---
 .../qemu/qemu/CVE-2020-13791.patch|  53 --
 .../qemu/qemu/CVE-2020-13800.patch|  63 
 .../qemu/qemu/CVE-2020-15863.patch|  63 
 .../qemu/qemu/find_datadir.patch  |  14 +-
 .../qemu/{qemu_5.0.0.bb => qemu_5.1.0.bb} |   0
 27 files changed, 130 insertions(+), 733 deletions(-)
 rename meta/recipes-devtools/qemu/{qemu-native_5.0.0.bb => 
qemu-native_5.1.0.bb} (100%)
 rename meta/recipes-devtools/qemu/{qemu-system-native_5.0.0.bb => 
qemu-system-native_5.1.0.bb} (100%)
 delete mode 100644 
meta/recipes-devtools/qemu/qemu/0013-cpus.c-Add-error-messages-when-qemi_cpu_kick_thread-.patch
 delete mode 100644 meta/recipes-devtools/qemu/qemu/CVE-2020-10761.patch
 delete mode 100644 meta/recipes-devtools/qemu/qemu/CVE-2020-13361.patch
 delete mode 100644 meta/recipes-devtools/qemu/qemu/CVE-2020-13362.patch
 delete mode 100644 meta/recipes-devtools/qemu/qemu/CVE-2020-13659.patch
 delete mode 100644 meta/recipes-devtools/qemu/qemu/CVE-2020-13791.patch
 delete mode 100644 meta/recipes-devtools/qemu/qemu/CVE-2020-13800.patch
 delete mode 100644 meta/recipes-devtools/qemu/qemu/CVE-2020-15863.patch
 rename meta/recipes-devtools/qemu/{qemu_5.0.0.bb => qemu_5.1.0.bb} (100%)

diff --git a/meta/conf/distro/include/tcmode-default.inc 
b/meta/conf/distro/include/tcmode-default.inc
index c5cc4bdcdf3..d5e0e9ebbb2 100644
--- a/meta/conf/distro/include/tcmode-default.inc
+++ b/meta/conf/distro/include/tcmode-default.inc
@@ -22,7 +22,7 @@ BINUVERSION ?= "2.35%"
 GDBVERSION ?= "9.%"
 GLIBCVERSION ?= "2.32"
 LINUXLIBCVERSION ?= "5.4%"
-QEMUVERSION ?= "5.0%"
+QEMUVERSION ?= "5.1%"
 GOVERSION ?= "1.14%"
 # This can not use wildcards like 8.0.% since it is also used in mesa to denote
 # llvm version being used, so always bump it with llvm recipe version bump
diff --git a/meta/recipes-devtools/qemu/qemu-native.inc 
b/meta/recipes-devtools/qemu/qemu-native.inc
index dcf140ea1b0..aa5c9b9a72f 100644
--- a/meta/recipes-devtools/qemu/qemu-native.inc
+++ b/meta/recipes-devtools/qemu/qemu-native.inc
@@ -2,10 +2,6 @@ inherit native
 
 require qemu.inc
 
-SRC_URI_append = " \
-
file://0013-cpus.c-Add-error-messages-when-qemi_cpu_kick_thread-.patch \
-"
-
 EXTRA_OEMAKE_append = " LD='${LD}' AR='${AR}' OBJCOPY='${OBJCOPY}' 
LDFLAGS='${LDFLAGS}'"
 
 LDFLAGS_append = " -fuse-ld=bfd"
diff --git a/meta/recipes-devtools/qemu/qemu-native_5.0.0.bb 
b/meta/recipes-devtools/qemu/qemu-native_5.1.0.bb
similarity index 100%
rename from meta/recipes-devtools/qemu/qemu-native_5.0.0.bb
rename to meta/recipes-devtools/qemu/qemu-native_5.1.0.bb
diff --git a/meta/recipes-devtools/qemu/qemu-system-native_5.0.0.bb 
b/meta/recipes-devtools/qemu/qemu-system-native_5.1.0.bb
similarity index 100%
rename from meta/recipes-devtools/qemu/qemu-system-native_5.0.0.bb
rename to meta/recipes-devtools/qemu/qemu-system-native_5.1.0.bb
diff --git a/meta/recipes-devtools/qemu/qemu.inc 
b/m

Re: [OE-core] [dunfell] [PATCH] cmake-native: Use cmake-provided zstd library; supported host distro zstd may be too old.

2020-08-15 Thread Adrian Bunk
On Fri, Aug 14, 2020 at 11:44:17PM +0200, Alexander Kanavin wrote:
> This needs to go to master first probably?

Better for master might be moving zstd from meta-openembedded,
and then DEPENDS on zstd-native?

IMHO moving target zstd to OE-core is already overdue,
so this would not be solely for cmake.

> Alex
>...

cu
Adrian
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#141465): 
https://lists.openembedded.org/g/openembedded-core/message/141465
Mute This Topic: https://lists.openembedded.org/mt/76196110/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub  
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-