Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED

2023-02-15 Thread Petr Kubizňák
Hi Alex, May I kindly ask you for your opinion? Thank you, Petr From: openembedded-core@lists.openembedded.org on behalf of Petr Kubizňák - 2N Sent: Wednesday, February 1, 2023 5:04 PM To: openembedded-core@lists.openembedded.org Subject: Re:

Re: [OE-core] [PATCH v2 1/1] create-spdx-2.2: Add support for custom Annotations

2023-02-15 Thread Alexandre Belloni via lists.openembedded.org
V1 got merged, can you rebase ? :) On 14/02/2023 09:21:56-0800, Saul Wold wrote: > This change adds a new variable to track which recipe variables > are added as SPDX Annotations. > > Usage: add SPDX_CUSTOM_ANNOTATION_VARS = > > The recipe spdx json will contain an annotation stanza that looks

Re: [yocto] [OE-core] [PATCH 1/2] barebox: add initial support

2023-02-15 Thread Enrico Jörns
Am Mittwoch, dem 15.02.2023 um 14:43 +0100 schrieb Alexander Kanavin: > On Wed, 15 Feb 2023 at 12:22, Otavio Salvador > wrote: > > > Fair enough, I'm open to the idea. It would be interesting/useful to > > > see if anyone else in the community is in favour of this or not. I'm > > > sure you

[OE-core][kirkstone 00/27] Pull request (cover letter only)

2023-02-15 Thread Steve Sakoman
The following changes since commit cb64ace13db85e143d99627c8803fbb13ba18617: Fix missing leading whitespace with ':append' (2023-02-01 04:16:52 -1000) are available in the Git repository at: https://git.openembedded.org/openembedded-core-contrib stable/kirkstone-next

Re: [yocto] [OE-core] [PATCH 1/2] barebox: add initial support

2023-02-15 Thread Enrico Jörns
Am Mittwoch, dem 15.02.2023 um 10:53 -0300 schrieb Otavio Salvador: > Em qua., 15 de fev. de 2023 às 10:44, Alexander Kanavin > escreveu: > > On Wed, 15 Feb 2023 at 12:22, Otavio Salvador > > wrote: > > > > Fair enough, I'm open to the idea. It would be interesting/useful to > > > > see if

[OE-core] [PATCH v3 2/2] runqemu: kill qemu if it hangs

2023-02-15 Thread Mikko Rapeli
qemu doesn't always behave well and can hang too. kill it with force if it was still alive. Move clean up commands into cleanup() function. Signed-off-by: Mikko Rapeli --- scripts/runqemu | 24 +++- 1 file changed, 15 insertions(+), 9 deletions(-) v3: moved from

[OE-core] [PATCH v3 1/2] oeqa ssh.py: fix hangs in run()

2023-02-15 Thread Mikko Rapeli
When qemu machine hangs, the ssh commands done by tests are not timing out. do_testimage() task has last logs like this: DEBUG: time: 1673531086.3155053, endtime: 1673531686.315502 The test process is stuck for hours, or for ever if the executing command or test case did not set a timeout

Re: [yocto] [OE-core] [PATCH 1/2] barebox: add initial support

2023-02-15 Thread Otavio Salvador
Hello Richard, Em ter., 14 de fev. de 2023 às 10:56, Richard Purdie < richard.pur...@linuxfoundation.org> escreveu: > Fair enough, I'm open to the idea. It would be interesting/useful to > see if anyone else in the community is in favour of this or not. I'm > sure you appreciate why we need to

[OE-core] [PATCH] mesa: provide support for packing development and testing tools

2023-02-15 Thread Dmitry Baryshkov
Mesa contains several optional tools that can be useful for application and driver developers. Add a packageconfig option to build a mesa-tools package containing relevant programs. Signed-off-by: Dmitry Baryshkov --- meta/recipes-graphics/mesa/mesa.inc | 19 ++- 1 file changed,

Re: [OE-core][PATCH 1/2] kernel-module-split: make autoload and probeconf distribution specific

2023-02-15 Thread Otavio Salvador
Em qua., 15 de fev. de 2023 às 10:01, Jose Quaresma escreveu: > > The modules-load.d [1] - Configure kernel modules to load at boot > should install their configuration files in /usr/lib/modules-load.d. > > The modprobe.d [2] - Configuration directory for modprobe > should install their

Re: [yocto] [OE-core] [PATCH 1/2] barebox: add initial support

2023-02-15 Thread Otavio Salvador
Em qua., 15 de fev. de 2023 às 10:44, Alexander Kanavin escreveu: > On Wed, 15 Feb 2023 at 12:22, Otavio Salvador > wrote: > >> Fair enough, I'm open to the idea. It would be interesting/useful to > >> see if anyone else in the community is in favour of this or not. I'm > >> sure you appreciate

Re: [yocto] [OE-core] [PATCH 1/2] barebox: add initial support

2023-02-15 Thread Otavio Salvador
Em qua., 15 de fev. de 2023 às 11:11, Alexander Kanavin escreveu: > > On Wed, 15 Feb 2023 at 14:53, Otavio Salvador > wrote: > > I think the Barebox inside OE-Core allows a bigger integration and > > reuse of existing tooling for signing and other classes currently well > > integrated with

Re: [yocto] [OE-core] [PATCH 1/2] barebox: add initial support

2023-02-15 Thread Alexander Kanavin
On Wed, 15 Feb 2023 at 12:22, Otavio Salvador wrote: >> Fair enough, I'm open to the idea. It would be interesting/useful to >> see if anyone else in the community is in favour of this or not. I'm >> sure you appreciate why we need to ask the question and why we can't >> just add everything! :)

[OE-core][langdale 00/28] Pull request (cover letter only)

2023-02-15 Thread Steve Sakoman
The following changes since commit ab39d244cb844c9d183296945a095c17fdfef29e: Fix missing leading whitespace with ':append' (2023-01-31 13:15:53 -1000) are available in the Git repository at: https://git.openembedded.org/openembedded-core-contrib stable/langdale-next

Re: [OE-core] [PATCH] mesa: provide support for packing development and testing tools

2023-02-15 Thread Alexander Kanavin
On Wed, 15 Feb 2023 at 14:25, Dmitry Baryshkov wrote: > +# dependencies for tools. libconfig is optional, it is a part of meta-oe so > it needs special treatment > +TOOLS_DEPS_FREEDRENO_LIBCONFIG = " > ${@bb.utils.contains('BBFILE_COLLECTIONS', 'openembedded-layer', 'libconfig', > '', d)} "

Re: [yocto] [OE-core] [PATCH 1/2] barebox: add initial support

2023-02-15 Thread Alexander Kanavin
On Wed, 15 Feb 2023 at 14:53, Otavio Salvador wrote: > I think the Barebox inside OE-Core allows a bigger integration and > reuse of existing tooling for signing and other classes currently well > integrated with U-Boot. For me, a critical point for decision is if > Pengutronix will commit to

Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED

2023-02-15 Thread Alexander Kanavin
On Wed, 15 Feb 2023 at 10:39, Petr Kubizňák - 2N wrote: > > The way I read gtk4 and graphene source code, what the recipe claims > > is not true: you can disable introspection in graphene, and it would > > still build and install graphene-gobject.pc which is what gtk4 is > > looking for. If the

[OE-core][PATCH 2/2] kernel: autoload and probeconf are handled by kernel-module-split

2023-02-15 Thread Jose Quaresma
Signed-off-by: Jose Quaresma --- meta/classes-recipe/kernel.bbclass | 2 -- 1 file changed, 2 deletions(-) diff --git a/meta/classes-recipe/kernel.bbclass b/meta/classes-recipe/kernel.bbclass index d327cd6888..5718600eee 100644 --- a/meta/classes-recipe/kernel.bbclass +++

[OE-core][PATCH 1/2] kernel-module-split: make autoload and probeconf distribution specific

2023-02-15 Thread Jose Quaresma
The modules-load.d [1] - Configure kernel modules to load at boot should install their configuration files in /usr/lib/modules-load.d. The modprobe.d [2] - Configuration directory for modprobe should install their configuration files in /lib/modprobe.d [1]

Re: [OE-core][PATCH 1/2] kernel-module-split: make autoload and probeconf distribution specific

2023-02-15 Thread Jose Quaresma
Hi Octavio, Otavio Salvador escreveu no dia quarta, 15/02/2023 à(s) 13:25: > Em qua., 15 de fev. de 2023 às 10:01, Jose Quaresma > escreveu: > > > > The modules-load.d [1] - Configure kernel modules to load at boot > > should install their configuration files in /usr/lib/modules-load.d. > > >

[OE-core] [RFC][PATCH] libssh2: Update patch to apply and fix malformed Upstream-Status

2023-02-15 Thread Martin Jansa
* I've noticed this, because patchreview.py reports Malformed Upstream-Status in this one now, but the QA check in insane.bbclass wasn't reporting it before * the reason why insane.bbclass doesn't report it is because: SRC_URI:append:ptest = "

Re: [OE-core] [RFC][PATCH] libssh2: Update patch to apply and fix malformed Upstream-Status

2023-02-15 Thread Richard Purdie
o build a test > > -Upstream-Status: Inappropriate[oe specific] > +Upstream-Status: Inappropriate [oe specific] > > Signed-off-by: Changqing Li The patch is to fix ssh2.sh as a test. The test was disabled here: https://git.yoctoproject.org/poky/commit/meta/recipes-support/libssh

Re: [yocto] [OE-core] [PATCH 1/2] barebox: add initial support

2023-02-15 Thread Enrico Jörns
Am Mittwoch, dem 15.02.2023 um 15:11 +0100 schrieb Alexander Kanavin: > On Wed, 15 Feb 2023 at 14:53, Otavio Salvador > wrote: > > I think the Barebox inside OE-Core allows a bigger integration and > > reuse of existing tooling for signing and other classes currently well > > integrated with

Re: [yocto] [OE-core] [PATCH 1/2] barebox: add initial support

2023-02-15 Thread Alexander Kanavin
There was a parallel conversation on the irc meanwhile; we've concluded that Enrico will look into adding qemu based tests for barebox into oe-selftest like we already have for EFI bootloaders, and there will be a new patchset then. Alex On Wed, 15 Feb 2023 at 16:01, Enrico Jörns wrote: > > Am

[OE-core] [RFC][PATCH 3/3] patchreview: use check_upstream_status() from oe.qa

2023-02-15 Thread Martin Jansa
* the idea was to reuse the same function as I've noticed that the QA check which was added to insane.bbclass in: https://git.openembedded.org/openembedded-core/commit/?id=76a685bfcf927593eac67157762a53259089ea8a is in some cases more strcit than scripts/contrib/patchreview.py To be

[OE-core] [PATCH 1/3] insane.bbclass: use 4 spaces for indentation

2023-02-15 Thread Martin Jansa
* this block was using just 3 Signed-off-by: Martin Jansa --- meta/classes-global/insane.bbclass | 50 +++--- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/meta/classes-global/insane.bbclass b/meta/classes-global/insane.bbclass index

[OE-core] [RFC][PATCH 2/3] insane.bbclass: move Upstream-Status logic to oe.qa

2023-02-15 Thread Martin Jansa
* to be used by standalone script scripts/contrib/patchreview.py as well Signed-off-by: Martin Jansa --- meta/classes-global/insane.bbclass | 19 +++ meta/lib/oe/qa.py | 17 + 2 files changed, 20 insertions(+), 16 deletions(-) diff --git

Re: [OE-core] [RFC][PATCH] libssh2: Update patch to apply and fix malformed Upstream-Status

2023-02-15 Thread Alexander Kanavin
Please no. Much less readable without a space. Alex On Wed 15. Feb 2023 at 20.27, Khem Raj wrote: > On Wed, Feb 15, 2023 at 9:18 AM Martin Jansa > wrote: > > > > * I've noticed this, because patchreview.py reports Malformed > > Upstream-Status in this one now, but the QA check in

[OE-core] [langdale][PATCH] git: upgrade 2.37.4 -> 2.37.6

2023-02-15 Thread Sakib Sajal
Upgrade git to latest 2.37.x release to address security issues CVE-2022-23521 and CVE-2022-41903. Signed-off-by: Sakib Sajal --- meta/recipes-devtools/git/{git_2.37.4.bb => git_2.37.6.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/git/{git_2.37.4.bb =>

Re: [OE-core] [RFC][PATCH] libssh2: Update patch to apply and fix malformed Upstream-Status

2023-02-15 Thread Khem Raj
On Wed, Feb 15, 2023 at 11:26 AM Khem Raj wrote: > > On Wed, Feb 15, 2023 at 9:18 AM Martin Jansa wrote: > > > > * I've noticed this, because patchreview.py reports Malformed > > Upstream-Status in this one now, but the QA check in insane.bbclass > > wasn't reporting it before > > > > * the

Re: [OE-core] [RFC][PATCH] libssh2: Update patch to apply and fix malformed Upstream-Status

2023-02-15 Thread Khem Raj
On Wed, Feb 15, 2023 at 9:18 AM Martin Jansa wrote: > > * I've noticed this, because patchreview.py reports Malformed > Upstream-Status in this one now, but the QA check in insane.bbclass > wasn't reporting it before > > * the reason why insane.bbclass doesn't report it is because: >

[OE-core] [PATCH] lttng-modules: fix for kernel 6.2+

2023-02-15 Thread Bruce Ashfield
From: Bruce Ashfield Backporting a patching from the 2.13.x stable branch of lttng to fix the build against kernel 6.2+. Signed-off-by: Bruce Ashfield --- ...ccessor-helpers-into-accessors.h-v6..patch | 45 +++ .../lttng/lttng-modules_2.13.8.bb | 1 + 2 files

Re: [OE-core] [RFC][PATCH] libssh2: Update patch to apply and fix malformed Upstream-Status

2023-02-15 Thread Khem Raj
On Wed, Feb 15, 2023 at 12:46 PM Martin Jansa wrote: > > patchreview.py will care about the space (like insane.bbclass does) if > https://lists.openembedded.org/g/openembedded-core/message/177207 is merged > I see. thanks. I think this should be something every developer should then be able to

[OE-core][PATCH] classes/create-spdx-2.2: Report downloads as separate packages

2023-02-15 Thread Joshua Watt
Moves the downloaded items from SRC_URI into separate packages in the recipe document. This is much better than the previous implementation because: 1) It can report multiple download locations in SRC_URI, instead of just the first one reported. 2) It prevents the assumption that the source

Re: [OE-core] [PATCH v3 1/4] dtc: version bump and add python wrapper

2023-02-15 Thread Alexandre Belloni via lists.openembedded.org
Hello, The series caused different build failures: https://autobuilder.yoctoproject.org/typhoon/#/builders/50/builds/6713/steps/11/logs/stdio https://autobuilder.yoctoproject.org/typhoon/#/builders/65/builds/6727/steps/11/logs/stdio |

Re: [OE-core] [RFC][PATCH] libssh2: Update patch to apply and fix malformed Upstream-Status

2023-02-15 Thread Martin Jansa
patchreview.py will care about the space (like insane.bbclass does) if https://lists.openembedded.org/g/openembedded-core/message/177207 is merged On Wed, Feb 15, 2023 at 9:35 PM Khem Raj wrote: > On Wed, Feb 15, 2023 at 11:26 AM Khem Raj wrote: > > > > On Wed, Feb 15, 2023 at 9:18 AM Martin

Re: [OE-core] [RFC][PATCH] libssh2: Update patch to apply and fix malformed Upstream-Status

2023-02-15 Thread Richard Purdie
2.sh need sshd, for cross compile, we need it on target, so > > don't use SSHD on host to decide weither to build a test > > > > -Upstream-Status: Inappropriate[oe specific] > > +Upstream-Status: Inappropriate [oe specific] > > > > Signed-off-by: Changqing Li

[OE-core] [PATCH] libssh2: Clean up ptest patch/coverage

2023-02-15 Thread Richard Purdie
Martin Jansa spotted patchreview.py reports Malformed Upstream-Status in a patch in this recipe. The patch is not being applied since there is no ptest override. The test in question was also disabled due to an issue with new versions of openssh. Add a workaround for the broken test, enable it,

Re: [OE-core] Can create-spdx handle multiple components per recipe

2023-02-15 Thread Joshua Watt
Joseph, Currently create-spdx will only report on the recipe itself and the packages it produces. It's been a long standing TODO to make reporting of sub-components like NPM packages and rust crates better, but we haven't gotten there yet, partially because I'm not very familiar with these

[OE-core] [kirkstone][PATCH] git: upgrade 2.35.5 -> 2.35.7

2023-02-15 Thread Sakib Sajal
Upgrade git to latest 2.37.x release to address security issues CVE-2022-23521 and CVE-2022-41903. Signed-off-by: Sakib Sajal --- meta/recipes-devtools/git/{git_2.35.5.bb => git_2.35.7.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/git/{git_2.35.5.bb =>

Re: [OE-core] Can create-spdx handle multiple components per recipe

2023-02-15 Thread Joseph Reynolds
Thanks for confirming.  I wouldn't expect OE to be able to have any knowledge of "sneaky" downloads of additional packages. I have an idea to enhance create-spdx.bbclass so sneaky recipes can fess-up and tell create-spdx about any additional packages they downloaded.   If you could implement

Re: [OE-core] [PATCH v2 0/4] scripts/resulttool/regression: add metadata filtering

2023-02-15 Thread Richard Purdie
On Tue, 2023-02-14 at 17:53 +0100, Alexis Lothoré via lists.openembedded.org wrote: > From: Alexis Lothoré > > This v2 does not contain any change in patches content, it only sets the From: > field correctly. Sorry for the noise. > > This patch serie is a proposal linked to discussion initiated

[OE-core] [PATCH] create-spdx: Add check for variable contents along with quotes

2023-02-15 Thread Saul Wold
This adds a check to ensure we that if a variable is empty it gets an empty string, this also adds quotes to indicate the variable contents. "comment": "CUSTOM_SPECIAL=''" or "comment": "CUSTOM_SPECIAL= 'variable contents'" Signed-off-by: Saul Wold ---

[OE-core] [AUH] gnu-config: upgrading to 63acb96f92473ceb5e21d873d7c0aee266b3d6d3 FAILED

2023-02-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *gnu-config* to *63acb96f92473ceb5e21d873d7c0aee266b3d6d3* has Failed (devtool error). Detailed error information: The following devtool command failed: upgrade gnu-config -S

[OE-core] [AUH] git: upgrading to 2.39.2 SUCCEEDED

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

[OE-core] [AUH] e2fsprogs: upgrading to 1.47.0 SUCCEEDED

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

[OE-core] [AUH] openssl: upgrading to 3.0.8 SUCCEEDED

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

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

2023-02-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.20.1* has Failed(do_compile). Detailed error information: do_compile failed Next steps: - apply the patch: git am 0001-go-upgrade-1.20-1.20.1.patch - check

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

2023-02-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.68.1* has Succeeded. Next steps: - apply the patch: git am 0001-python3-hypothesis-upgrade-6.66.0-6.68.1.patch - check the changes to upstream

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

2023-02-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.13.0* has Succeeded. Next steps: - apply the patch: git am 0001-python3-hatchling-upgrade-1.12.2-1.13.0.patch - check the changes to upstream

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

2023-02-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.20.1* has Failed(do_compile). Detailed error information: do_compile failed Next steps: - apply the patch: git am

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

2023-02-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.20* has Succeeded. Next steps: - apply the patch: git am 0001-dpkg-upgrade-1.21.19-1.21.20.patch - check the changes to upstream patches and summarize them

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

2023-02-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 *67.3.1* has Succeeded. Next steps: - apply the patch: git am 0001-python3-setuptools-upgrade-67.2.0-67.3.1.patch - check the changes to upstream

[OE-core] [AUH] ruby: upgrading to 3.2.1 SUCCEEDED

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

[OE-core] [AUH] python3-typing-extensions: upgrading to 4.5.0 SUCCEEDED

2023-02-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-typing-extensions* to *4.5.0* has Succeeded. Next steps: - apply the patch: git am 0001-python3-typing-extensions-upgrade-4.4.0-4.5.0.patch - check the changes to

[OE-core] [AUH] python3-numpy: upgrading to 1.24.2 FAILED

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

[OE-core] [AUH] vala: upgrading to 0.56.4 SUCCEEDED

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

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

2023-02-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.03* has Succeeded. Next steps: - apply the patch: git am 0001-man-pages-upgrade-6.02-6.03.patch - check the changes to upstream patches and summarize them

[OE-core] [AUH] piglit: upgrading to 590d81bb5fa219353104980108e9f1aa2b1d1b6b SUCCEEDED

2023-02-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 *590d81bb5fa219353104980108e9f1aa2b1d1b6b* has Succeeded. Next steps: - apply the patch: git am 0001-piglit-upgrade-to-latest-revision.patch - check the changes

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

2023-02-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.1* has Succeeded. Next steps: - apply the patch: git am 0001-python3-cryptography-vectors-upgrade-39.0.0-39.0.1.patch - check the

[OE-core] [AUH] mmc-utils: upgrading to d4c2910981ff99b983734426dfa99632fb81ac6b SUCCEEDED

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

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

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

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

2023-02-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 *3df7dba1b1f428f24cd9a242af78540a518f4b67* has Failed(other errors). Detailed error information: 'MACHINE=qemux86 bitbake vulkan-samples' failed WARNING: Host

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

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

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

2023-02-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] rust: upgrading to 1.67.1 FAILED

2023-02-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.67.1* has Failed(do_compile). Detailed error information: do_compile failed Next steps: - apply the patch: git am 0001-rust-upgrade-1.67.0-1.67.1.patch -

[OE-core] [AUH] sudo: upgrading to 1.9.13 FAILED

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

[OE-core] [AUH] libwpe: upgrading to 1.14.1 SUCCEEDED

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

[OE-core] [AUH] freetype: upgrading to 2.13.0 FAILED

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

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

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

[OE-core] [AUH] gnutls: upgrading to 3.8.0 FAILED

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

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

2023-02-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *linux-firmware* to *20230210* has Succeeded. Next steps: - apply the patch: git am 0001-linux-firmware-upgrade-20230117-20230210.patch - check the changes to upstream

[OE-core] [AUH] dos2unix: upgrading to 7.4.4 SUCCEEDED

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

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

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

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

2023-02-15 Thread Auto Upgrade Helper
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *wireless-regdb* to *2023.02.13* has Succeeded. Next steps: - apply the patch: git am 0001-wireless-regdb-upgrade-2022.08.12-2023.02.13.patch - check the changes to

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

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

[OE-core] [AUH] liburcu: upgrading to 0.14.0 SUCCEEDED

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