[OE-core] OE-core CVE metrics for master on Sun 15 Jan 2023 02:00:01 AM HST

2023-01-15 Thread Steve Sakoman
Branch: master New this week: 5 CVEs CVE-2022-46456 (CVSS3: 7.8 HIGH): nasm:nasm-native https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-46456 * CVE-2022-46457 (CVSS3: 5.5 MEDIUM): nasm:nasm-native https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-46457 * CVE-2023-0049 (CVSS3:

[OE-core][PATCH v3] gstreamer1.0-plugins-good: Fix libsoup runtime dependency

2023-01-15 Thread Tom Hochstein
The runtime dependency on libsoup set via PACKAGECONFIG does not work. The problem is the dependency is placed on the main package, but the soup package has no dependency on the main package. I considered modifying the call to do_split_packages from gstreamer1.0-plugins-packaging.inc, changing

[OE-core] OE-core CVE metrics for kirkstone on Sun 15 Jan 2023 03:00:01 AM HST

2023-01-15 Thread Steve Sakoman
Branch: kirkstone New this week: 3 CVEs CVE-2023-0049 (CVSS3: 7.8 HIGH): vim https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2023-0049 * CVE-2023-0051 (CVSS3: 7.8 HIGH): vim https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2023-0051 * CVE-2023-0054 (CVSS3: 7.8 HIGH): vim

Re: [OE-Core][PATCH v2] gstreamer1.0-plugins-good: Fix libsoup runtime dependency

2023-01-15 Thread Richard Purdie
On Sun, 2023-01-15 at 15:54 +, Tom Hochstein wrote: > Okay, will this do the trick? > > +RDEPENDS:${PN}-soup += "${MLPREFIX}${@bb.utils.contains('PACKAGECONFIG', > 'soup2', 'libsoup-2.4', 'libsoup', d)}" > > Is this a general rule that explicit RDEPENDS require explicit MLPREFIX? If

[OE-core] OE-core CVE metrics for dunfell on Sun 15 Jan 2023 02:30:01 AM HST

2023-01-15 Thread Steve Sakoman
Branch: dunfell New this week: 3 CVEs CVE-2022-3715 (CVSS3: 7.8 HIGH): bash https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-3715 * CVE-2023-0049 (CVSS3: 7.8 HIGH): vim https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2023-0049 * CVE-2023-0051 (CVSS3: 7.8 HIGH): vim

[OE-core] OE-core CVE metrics for langdale on Sun 15 Jan 2023 03:30:01 AM HST

2023-01-15 Thread Steve Sakoman
Branch: langdale New this week: 3 CVEs CVE-2023-0049 (CVSS3: 7.8 HIGH): vim https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2023-0049 * CVE-2023-0051 (CVSS3: 7.8 HIGH): vim https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2023-0051 * CVE-2023-0054 (CVSS3: 7.8 HIGH): vim

Re: [OE-Core][PATCH v2] gstreamer1.0-plugins-good: Fix libsoup runtime dependency

2023-01-15 Thread Richard Purdie
On Sat, 2023-01-14 at 17:49 -0600, Tom Hochstein wrote: > The runtime dependency on libsoup set via PACKAGECONFIG does not work. > The problem is the dependency is placed on the main package, but the > soup package has no dependency on the main package. > > I considered modifying the call to

Re: [OE-Core][PATCH v2] gstreamer1.0-plugins-good: Fix libsoup runtime dependency

2023-01-15 Thread Tom Hochstein
Okay, will this do the trick? +RDEPENDS:${PN}-soup += "${MLPREFIX}${@bb.utils.contains('PACKAGECONFIG', 'soup2', 'libsoup-2.4', 'libsoup', d)}" Is this a general rule that explicit RDEPENDS require explicit MLPREFIX? Tom -Original Message- From: Richard Purdie Sent: Sunday, January

[OE-core] [PATCH 1/6] libxcb: Fixed c2x standard undefined behaviour

2023-01-15 Thread Khem Raj
Signed-off-by: Khem Raj --- ...-use-_Alignof-to-avoid-UB-in-ALIGNOF.patch | 45 +++ meta/recipes-graphics/xorg-lib/libxcb_1.15.bb | 3 +- 2 files changed, 47 insertions(+), 1 deletion(-) create mode 100644

[OE-core] [PATCH 2/6] glib-2.0: Switch to using C11 std

2023-01-15 Thread Khem Raj
Signed-off-by: Khem Raj --- ...0001-Switch-from-C99-to-C11-standard.patch | 40 + ...efine-check_alignof-for-std-c11-and-.patch | 44 +++ meta/recipes-core/glib-2.0/glib-2.0_2.74.4.bb | 2 + 3 files changed, 86 insertions(+) create mode 100644

[OE-core] [PATCH 3/6] dbus: Use Alignof when using C11 or newer standard

2023-01-15 Thread Khem Raj
Fixes an UB found with with clang Signed-off-by: Khem Raj --- ...GNOF-using-_Alignof-when-using-C11-o.patch | 42 +++ meta/recipes-core/dbus/dbus_1.14.4.bb | 1 + 2 files changed, 43 insertions(+) create mode 100644

[OE-core] [PATCH 4/6] m4: Define alignof_slot using _Alignof when using C11 or newer

2023-01-15 Thread Khem Raj
Signed-off-by: Khem Raj --- meta/recipes-devtools/m4/m4-1.4.19.inc| 1 + ...lot-using-_Alignof-when-using-C11-or.patch | 49 +++ 2 files changed, 50 insertions(+) create mode 100644

[OE-core] [PATCH 5/6] opkg: Define alignof using _Alignof when using C11 or newer

2023-01-15 Thread Khem Raj
Signed-off-by: Khem Raj --- ...sing-_Alignof-when-using-C11-or-newe.patch | 51 +++ meta/recipes-devtools/opkg/opkg_0.6.1.bb | 1 + 2 files changed, 52 insertions(+) create mode 100644

[OE-core] [PATCH 2/3] binutils: Package libsframe

2023-01-15 Thread Khem Raj
libsframe is newly added in binutils 2.40 Signed-off-by: Khem Raj --- meta/recipes-devtools/binutils/binutils_2.40.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/binutils/binutils_2.40.bb b/meta/recipes-devtools/binutils/binutils_2.40.bb index

[OE-core] [PATCH 3/3] binutils: Delete gdb and supporting sources

2023-01-15 Thread Khem Raj
Signed-off-by: Khem Raj --- meta/recipes-devtools/binutils/binutils.inc | 10 ++ 1 file changed, 10 insertions(+) diff --git a/meta/recipes-devtools/binutils/binutils.inc b/meta/recipes-devtools/binutils/binutils.inc index 98acf0a222..2b38aeb62d 100644 ---

Re: [OE-core] [PATCH 2/2] curl: enable nghttp2 for support HTTP2

2023-01-15 Thread Alexandre Belloni via lists.openembedded.org
On 13/01/2023 16:04:42+0800, Changqing Li wrote: > > On 1/5/23 22:09, Alexandre Belloni wrote: > > CAUTION: This email comes from a non Wind River email account! > > Do not click links or open attachments unless you recognize the sender and > > know the content is safe. > > > > This fails on

[OE-core] [AUH] acpica: upgrading to 20221022 FAILED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *acpica* to *20221022* has Failed (devtool error). Detailed error information: The following devtool command failed: upgrade acpica -V 20221022 NOTE: Starting bitbake server...

[OE-core] [AUH] python3-pygments: upgrading to 2.14.0 SUCCEEDED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *python3-pygments* to *2.14.0* has Succeeded. Next steps: - apply the patch: git am 0001-python3-pygments-upgrade-2.13.0-2.14.0.patch - check the changes to upstream patches

[OE-core] [AUH] u-boot-tools: upgrading to 2023.01 FAILED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *u-boot-tools* to *2023.01* has Failed(do_compile). Detailed error information: do_compile failed Next steps: - apply the patch: git am

[OE-core] [AUH] python3-iniconfig: upgrading to 2.0.0 FAILED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *python3-iniconfig* to *2.0.0* has Failed(do_compile). Detailed error information: do_compile failed Next steps: - apply the patch: git am

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

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *rust* to *1.66.1* has Failed(do_compile). Detailed error information: do_compile failed Next steps: - apply the patch: git am 0001-rust-upgrade-1.66.0-1.66.1.patch -

[OE-core] [AUH] patchelf: upgrading to 0.17.2 SUCCEEDED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *patchelf* to *0.17.2* has Succeeded. Next steps: - apply the patch: git am 0001-patchelf-upgrade-0.17.0-0.17.2.patch - check the changes to upstream patches and summarize

[OE-core] [AUH] python3-pytest: upgrading to 7.2.1 SUCCEEDED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *python3-pytest* to *7.2.1* has Succeeded. Next steps: - apply the patch: git am 0001-python3-pytest-upgrade-7.2.0-7.2.1.patch - check the changes to upstream patches and

[OE-core] [AUH] python3-pytz: upgrading to 2022.7.1 SUCCEEDED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *python3-pytz* to *2022.7.1* has Succeeded. Next steps: - apply the patch: git am 0001-python3-pytz-upgrade-2022.7-2022.7.1.patch - check the changes to upstream patches and

[OE-core] [AUH] python3-importlib-metadata: upgrading to 6.0.0 SUCCEEDED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *python3-importlib-metadata* to *6.0.0* has Succeeded. Next steps: - apply the patch: git am 0001-python3-importlib-metadata-upgrade-5.2.0-6.0.0.patch - check the changes

[OE-core] [AUH] man-db: upgrading to 2.11.2 SUCCEEDED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *man-db* to *2.11.2* has Succeeded. Next steps: - apply the patch: git am 0001-man-db-upgrade-2.11.1-2.11.2.patch - check the changes to upstream patches and summarize them

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

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *mpg123* to *1.31.2* has Succeeded. Next steps: - apply the patch: git am 0001-mpg123-upgrade-1.31.1-1.31.2.patch - check the changes to upstream patches and summarize them

[OE-core] [AUH] igt-gpu-tools: upgrading to 1.27 FAILED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *igt-gpu-tools* to *1.27* has Failed(do_compile). Detailed error information: do_compile failed Next steps: - apply the patch: git am

[OE-core] [AUH] python3-urllib3: upgrading to 1.26.14 SUCCEEDED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *python3-urllib3* to *1.26.14* has Succeeded. Next steps: - apply the patch: git am 0001-python3-urllib3-upgrade-1.26.13-1.26.14.patch - check the changes to upstream

[OE-core] [AUH] lighttpd: upgrading to 1.4.68 FAILED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *lighttpd* to *1.4.68* has Failed(do_compile). Detailed error information: do_compile failed Next steps: - apply the patch: git am 0001-lighttpd-upgrade-1.4.67-1.4.68.patch

[OE-core] [AUH] libpcap: upgrading to 1.10.3 SUCCEEDED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *libpcap* to *1.10.3* has Succeeded. Next steps: - apply the patch: git am 0001-libpcap-upgrade-1.10.2-1.10.3.patch - check the changes to upstream patches and summarize

[OE-core] [AUH] ethtool: upgrading to 6.1 FAILED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *ethtool* to *6.1* has Failed(do_compile). Detailed error information: do_compile failed Next steps: - apply the patch: git am 0001-ethtool-upgrade-6.0-6.1.patch - check

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

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *puzzles* to *e66d027a81211d327319cf45bb4155e689513f72* has Succeeded. Next steps: - apply the patch: git am 0001-puzzles-upgrade-to-latest-revision.patch - check the

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

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *python3-setuptools* to *65.7.0* has Succeeded. Next steps: - apply the patch: git am 0001-python3-setuptools-upgrade-65.6.3-65.7.0.patch - check the changes to upstream

[OE-core] [AUH] python3-pbr: upgrading to 5.11.1 SUCCEEDED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *python3-pbr* to *5.11.1* has Succeeded. Next steps: - apply the patch: git am 0001-python3-pbr-upgrade-5.11.0-5.11.1.patch - check the changes to upstream patches and

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

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *python3-wcwidth* to *0.2.6* has Succeeded. Next steps: - apply the patch: git am 0001-python3-wcwidth-upgrade-0.2.5-0.2.6.patch - check the changes to upstream patches and

[OE-core] [AUH] man-pages: upgrading to 6.02 SUCCEEDED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *man-pages* to *6.02* has Succeeded. Next steps: - apply the patch: git am 0001-man-pages-upgrade-6.01-6.02.patch - check the changes to upstream patches and summarize them

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

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *vulkan-samples* to *a42d4eab1e5fe7814dfbe91e3bbaf8ab62cf03f6* has Failed(other errors). Detailed error information: 'MACHINE=qemux86 bitbake vulkan-samples' failed WARNING: Host

[OE-core] [AUH] lttng-tools: upgrading to 2.13.9 FAILED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *lttng-tools* to *2.13.9* has Failed (devtool error). Detailed error information: Running 'devtool upgrade' for recipe lttng-tools failed. NOTE: Starting bitbake server... NOTE:

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

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *piglit* to *d8cc3f2da5b429ac199438454ec7feaf7eff1bf3* has Succeeded. Next steps: - apply the patch: git am 0001-piglit-upgrade-to-latest-revision.patch - check the changes

[OE-core] [AUH] ed: upgrading to 1.19 SUCCEEDED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *ed* to *1.19* has Succeeded. Next steps: - apply the patch: git am 0001-ed-upgrade-1.18-1.19.patch - check the changes to upstream patches and summarize them in the commit

[OE-core] [AUH] rng-tools: upgrading to 6.16 FAILED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *rng-tools* to *6.16* has Failed (devtool error). Detailed error information: The following devtool command failed: finish -f rng-tools

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

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *lttng-modules* to *2.13.8* has Failed(do_compile). Detailed error information: do_compile failed Next steps: - apply the patch: git am

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

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *stress-ng* to *0.15.02* has Succeeded. Next steps: - apply the patch: git am 0001-stress-ng-upgrade-0.15.01-0.15.02.patch - check the changes to upstream patches and

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

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *diffoscope* to *232* has Succeeded. Next steps: - apply the patch: git am 0001-diffoscope-upgrade-230-232.patch - check the changes to upstream patches and summarize them

[OE-core] [AUH] libwebp: upgrading to 1.3.0 SUCCEEDED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *libwebp* to *1.3.0* has Succeeded. Next steps: - apply the patch: git am 0001-libwebp-upgrade-1.2.4-1.3.0.patch - check the changes to upstream patches and summarize them

[OE-core] [AUH] dpkg: upgrading to 1.21.18 SUCCEEDED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *dpkg* to *1.21.18* has Succeeded. Next steps: - apply the patch: git am 0001-dpkg-upgrade-1.21.17-1.21.18.patch - check the changes to upstream patches and summarize them

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

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *python3-hatchling* to *1.12.2* has Succeeded. Next steps: - apply the patch: git am 0001-python3-hatchling-upgrade-1.12.1-1.12.2.patch - check the changes to upstream

[OE-core] [AUH] u-boot: upgrading to 2023.01 FAILED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *u-boot* to *2023.01* has Failed (devtool error). Detailed error information: Running 'devtool upgrade' for recipe u-boot failed. NOTE: Starting bitbake server... NOTE:

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

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *go* to *1.19.5* has Failed(do_compile). Detailed error information: do_compile failed Next steps: - apply the patch: git am 0001-go-upgrade-1.19.4-1.19.5.patch - check

[OE-core] [AUH] ncurses: upgrading to 6.4 SUCCEEDED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *ncurses* to *6.4* has Succeeded. Next steps: - apply the patch: git am 0001-ncurses-upgrade-6.3-20220423-6.4.patch - check the changes to upstream patches and summarize

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

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *python3-cython* to *0.29.33* has Succeeded. Next steps: - apply the patch: git am 0001-python3-cython-upgrade-0.29.32-0.29.33.patch - check the changes to upstream patches

[OE-core] [AUH] python3-cryptography-vectors: upgrading to 39.0.0 SUCCEEDED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *python3-cryptography-vectors* to *39.0.0* has Succeeded. Next steps: - apply the patch: git am 0001-python3-cryptography-vectors-upgrade-38.0.4-39.0.0.patch - check the

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

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *python3-hypothesis* to *6.62.1* has Succeeded. Next steps: - apply the patch: git am 0001-python3-hypothesis-upgrade-6.61.0-6.62.1.patch - check the changes to upstream

[OE-core] [AUH] python3-packaging: upgrading to 23.0 SUCCEEDED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *python3-packaging* to *23.0* has Succeeded. Next steps: - apply the patch: git am 0001-python3-packaging-upgrade-22.0-23.0.patch - check the changes to upstream patches and

[OE-core] [AUH] mc: upgrading to 4.8.29 FAILED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *mc* to *4.8.29* has Failed (devtool error). Detailed error information: The following devtool command failed: upgrade mc -V 4.8.29 NOTE: Starting bitbake server... NOTE:

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

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *go-runtime* to *1.19.5* has Failed(do_compile). Detailed error information: do_compile failed Next steps: - apply the patch: git am

[OE-core] [AUH] python3-dbusmock: upgrading to 0.28.7 SUCCEEDED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *python3-dbusmock* to *0.28.7* has Succeeded. Next steps: - apply the patch: git am 0001-python3-dbusmock-upgrade-0.28.6-0.28.7.patch - check the changes to upstream patches

[OE-core] [AUH] busybox: upgrading to 1.36.0 FAILED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *busybox* to *1.36.0* has Failed (devtool error). Detailed error information: Running 'devtool upgrade' for recipe busybox failed. NOTE: Starting bitbake server... NOTE:

[OE-core] [AUH] python3-alabaster: upgrading to 0.7.13 SUCCEEDED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *python3-alabaster* to *0.7.13* has Succeeded. Next steps: - apply the patch: git am 0001-python3-alabaster-upgrade-0.7.12-0.7.13.patch - check the changes to upstream

[OE-core] [AUH] llvm: upgrading to 15.0.7 SUCCEEDED

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *llvm* to *15.0.7* has Succeeded. Next steps: - apply the patch: git am 0001-llvm-upgrade-15.0.6-15.0.7.patch - check the changes to upstream patches and summarize them in

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

2023-01-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *python3-cryptography* to *39.0.0* has Failed(do_compile). Detailed error information: do_compile failed Next steps: - apply the patch: git am

[OE-core] [PATCH 6/6] cpio: Fix gnulib alignof implementation on clang

2023-01-15 Thread Khem Raj
Backport needed patches Signed-off-by: Khem Raj --- .../0001-Use-__alignof__-with-clang.patch | 42 +++ meta/recipes-extended/cpio/cpio_2.13.bb | 1 + 2 files changed, 43 insertions(+) create mode 100644

Re: [OE-core] [PATCH] Make oe-setup-layers efficiently idempotent

2023-01-15 Thread Alexander Kanavin
Thanks. Do you think the tests for the script should as well be adjusted so that they fail without the change, and pass with it? (test_bitbakelayers_setup in meta/lib/oeqa/selftest/cases/bblayers.py) This is clearly fixing a problem you saw in local testing, and it would be good to ensure the

[OE-core] [langdale][patch] git: Upgrade to 2.37.4

2023-01-15 Thread Lee Chee Yang
From: Lee Chee Yang upgrade include fixes for CVE-2022-39253 CVE-2022-39260 Release notes: https://github.com/git/git/blob/master/Documentation/RelNotes/2.37.4.txt Signed-off-by: Lee Chee Yang --- meta/recipes-devtools/git/{git_2.37.3.bb => git_2.37.4.bb} | 2 +- 1 file changed, 1

Re: [OE-core] [PATCH v2] rust: Merge all rustc-source patches into rust-source.inc

2023-01-15 Thread Kokkonda, Sundeep
Hello Alex, This patch fixed the https://bugzilla.yoctoproject.org/show_bug.cgi?id=14975 ( 'bitbake core-image-full-cmdline' built without any issues.) But, I tried a ' hello world ' program in booted image (bitbake core-image-minimal by adding ' cargo ' to IMAGE_INSTALL:append) and getting

[OE-core] [kirkstone][PATCH] gcc: Fix build with musl and usrmerge on arm

2023-01-15 Thread Pavel Zhukov
Backport fix from master to allow gcc to use proper linker path for musl [Yocto #14977] Fixes: | qemu-arm: Could not open '/lib/ld-musl-armhf.so.1': No such file or directory Signed-off-by: Pavel Zhukov --- meta/recipes-devtools/gcc/gcc-11.3.inc | 1 +

[OE-core] [kirkstone][PATCH 1/1] gcc: Refactor linker patches and fix linker on arm with usrmerge

2023-01-15 Thread Pavel Zhukov
Backport fix from master to allow gcc to use proper linker path for musl [Yocto #14977]. Fixes: | qemu-arm: Could not open '/lib/ld-musl-armhf.so.1': No such file or directory Signed-off-by: Pavel Zhukov --- meta/recipes-devtools/gcc/gcc-11.3.inc| 1 -

[OE-core] [kirkstone][PATCH 0/1] gcc: Refactor linker patches and fix linker on arm with usrmerg

2023-01-15 Thread Pavel Zhukov
This is more complete (and more invasive) refactor of musl dynamic linker patches in kirkstone branch. No changes have been made to the master's version except removing of not yet existing loongarch. This obsoletes "gcc: Fix build with musl and usrmerge on arm" patch which has been sent earlier