[OE-core] [meta-oe][PATCH v2] graphviz: add pkg_postinst script

2022-03-28 Thread kai
From: Kai Kang It needs to run `dot -c` first before call 'dot' command, otherwise it fails with: | Format: "png" not recognized. No formats found. | Perhaps "dot -c" needs to be run (with installer's privileges) to register the plugins? Signed-off-by: Kai Kang --- v2: * add guard to check

[OE-core] [PATCH] python3-urllib3: upgrade 1.26.8 -> 1.26.9

2022-03-28 Thread wangmy
Changelog: == - Changed urllib3[brotli] extra to favor installing Brotli libraries that are still receiving updates like brotli and brotlicffi instead of brotlipy. This change does not impact behavior of urllib3, only which dependencies are installed. - Fixed a socket leaking when

[OE-core] [PATCH] python3-pytz: upgrade 2021.3 -> 2022.1

2022-03-28 Thread wangmy
Signed-off-by: Wang Mingyu --- .../python/{python3-pytz_2021.3.bb => python3-pytz_2022.1.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/python/{python3-pytz_2021.3.bb => python3-pytz_2022.1.bb} (89%) diff --git

[OE-core] [PATCH] python3-pytest-subtests: upgrade 0.6.0 -> 0.7.0

2022-03-28 Thread wangmy
Changelog: = Fixed support for pytest 7.0, and pytest>=7.0 is now required. Signed-off-by: Wang Mingyu --- ...ytest-subtests_0.6.0.bb => python3-pytest-subtests_0.7.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename

[OE-core] [PATCH] python3-pytest-runner: upgrade 5.3.1 -> 6.0.0

2022-03-28 Thread wangmy
Add dependency python3-distutils. Changelog: = - #49: Dropped workaround for older setuptools versions. - Require Python 3.7. - #58: Fixed syntax issue in changelog. Signed-off-by: Wang Mingyu --- ...-pytest-runner_5.3.1.bb => python3-pytest-runner_6.0.0.bb} | 4 ++-- 1 file changed, 2

[OE-core] [PATCH] python3-jinja2: upgrade 3.0.3 -> 3.1.1

2022-03-28 Thread wangmy
Signed-off-by: Wang Mingyu --- .../python/{python3-jinja2_3.0.3.bb => python3-jinja2_3.1.1.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/python/{python3-jinja2_3.0.3.bb => python3-jinja2_3.1.1.bb} (92%) diff --git

[OE-core] [PATCH] python3-imagesize: upgrade 1.2.0 -> 1.3.0

2022-03-28 Thread wangmy
Add dependency python3-xml. Signed-off-by: Wang Mingyu --- ...{python3-imagesize_1.2.0.bb => python3-imagesize_1.3.0.bb} | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) rename meta/recipes-devtools/python/{python3-imagesize_1.2.0.bb => python3-imagesize_1.3.0.bb} (71%) diff --git

[OE-core] Yocto Project Newcomer & Unassigned Bugs - Help Needed

2022-03-28 Thread Stephen Jolley
All, The triage team is starting to try and collect up and classify bugs which a newcomer to the project would be able to work on in a way which means people can find them. They're being listed on the triage page under the appropriate heading:

[OE-core] [PATCH] python3-hypothesis: upgrade 6.39.2 -> 6.39.5

2022-03-28 Thread wangmy
Changelog: = Improve error detection and message when Hypothesis is run on a Python implementation without support for "-0.0", which is required for the "floats()" strategy but can be disabled by unsafe compiler options (issue #3265). If the "shrink" phase is disabled, stop the "generate"

[OE-core] [PATCH] python3-dbusmock: upgrade 0.26.1 -> 0.27.3

2022-03-28 Thread wangmy
Changelog: = packit: Fix file name to sync Signed-off-by: Wang Mingyu --- .../{python3-dbusmock_0.26.1.bb => python3-dbusmock_0.27.3.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/python/{python3-dbusmock_0.26.1.bb =>

[OE-core] [PATCH] python3-asn1crypto: upgrade 1.4.0 -> 1.5.1

2022-03-28 Thread wangmy
License-Update: year updated to 2022 Changelog: = - Handle RSASSA-PSS in keys.PrivateKeyInfo.bit_size and keys.PublicKeyInfo.bit_size - Handle RSASSA-PSS in keys.PrivateKeyInfo.wrap and keys.PublicKeyInfo.wrap - Updated docs for keys.PrivateKeyInfo.algorithm and

[OE-core] [PATCH][dunfell] bitbake: fetch2: add check for empty SRC_URI hash string

2022-03-28 Thread Jose Quaresma
From: Scott Weaver No error was being reported when the hash string was set to empty. For example: SRC_URI[md5sum] = "" On a related note (not a bug): Because whitespace in the string will result in a checksum mismatch, the error message was updated to make it a little clearer why the error was

[OE-core] [PATCH v2 4/4] go-target: Pass -trimpath to go linker

2022-03-28 Thread Khem Raj
This is for improving reproducibility to trim absolute paths as these recipes do not inherit go bbclass where it would be set automatically Signed-off-by: Khem Raj --- meta/recipes-devtools/go/go-target.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

[OE-core] [PATCH v2 1/4] go: Upgrade to 1.18

2022-03-28 Thread Khem Raj
1.18 is a major release brings in long awaited new features e.g. generics, fuzzing Detailed list is here [1] Drop patches to manipulate multiword CC/CXX as go has fixed it differently [2] Drop cgo portion of patch to hack hash generation logic either we should find a way to not use it or redo

[OE-core] [PATCH v2 2/4] go: Drop GOBUILDMODE

2022-03-28 Thread Khem Raj
This is local invention which is no longer needed, pie-mode works good now a days to build go for target Signed-off-by: Khem Raj --- meta/recipes-devtools/go/go-1.18.inc | 1 - ...008-use-GOBUILDMODE-to-set-buildmode.patch | 42 --- meta/recipes-devtools/go/go_1.18.bb

[OE-core] [PATCH v2 3/4] go: Disable pie in cgo for mips

2022-03-28 Thread Khem Raj
This overcomes the linking errors e.g. | /usr/lib/go/src/cmd/go/internal/base/base.go:110:(.text+0x60fef8): relocation R_MIPS_26 against `a local symbol' cannot be used when making a shared object; recompile with -fPIC | /usr/lib/go/src/cmd/go/internal/base/base.go:110:(.text+0x60ff0c):

[OE-core] [PATCH] pseudo_util: Fix handling of absolute links

2022-03-28 Thread Chaitanya Vadrevu
Absolute links should be evaluated starting from the chroot path but the existing implementation drops the whole base path (which includes the chroot path) when it encounters an absolute link. Encountered the issue during root image creation process in an OE build where ldconfig was deleting some

Re: [OE-core] [PATCH 2/2] mount-copybind: add MOUNT_COPYBIND_AVOID_OVERLAYFS env var to skip OverlayFS

2022-03-28 Thread Michael Opdenacker via lists.openembedded.org
Hi Luca, On 3/28/22 17:32, Luca Bocassi wrote: > >> Thanks for the patch! >> Now that the patch is merged, would you mind proposing a patch to add a >> description of it to the documentation? You'll probably do it better >> than I would. >> >> Thanks in advance >> Michael. > Sure I can do that,

Re: [OE-core] [PATCH] go: Upgrade to 1.18

2022-03-28 Thread Khem Raj
On Mon, Mar 28, 2022 at 2:15 AM Alexander Kanavin wrote: > > There should be additional information in log.do_compile that helps in > finding out where the buildids start to diverge (given that there's a > mass of blobs in the report, it's somewhere early in the build, or > possibly even in

Re: [OE-core] [PATCH] go: Upgrade to 1.18

2022-03-28 Thread Khem Raj
On Mon, Mar 28, 2022 at 1:43 AM Alexandre Belloni wrote: > > Hi Khem, > > This caused the following repro failure: > > https://autobuilder.yoctoproject.org/typhoon/#/builders/117/builds/584/steps/12/logs/stdio > Thanks, it seems to be in -dbg packages which perhaps is leaking absolute paths most

Re: [OE-core] [PATCH 2/2] mount-copybind: add MOUNT_COPYBIND_AVOID_OVERLAYFS env var to skip OverlayFS

2022-03-28 Thread Luca Bocassi
On Mon, 2022-03-28 at 17:30 +0200, Michael Opdenacker wrote: > Hi Luca, > > On 3/25/22 19:40, Luca Bocassi wrote: > > From: Luca Boccassi > > > > In some cases we don't want to even attempt to set up OverlayFS, for > > example because SELinux in enforcing mode would kill the process > >

Re: [OE-core] [PATCH 2/2] mount-copybind: add MOUNT_COPYBIND_AVOID_OVERLAYFS env var to skip OverlayFS

2022-03-28 Thread Michael Opdenacker via lists.openembedded.org
Hi Luca, On 3/25/22 19:40, Luca Bocassi wrote: > From: Luca Boccassi > > In some cases we don't want to even attempt to set up OverlayFS, for > example because SELinux in enforcing mode would kill the process > attempting to use the mount. See: > >

[OE-core] [PATCH] volatile-binds: add recipe variable to allow disabling OverlayFS

2022-03-28 Thread Luca Bocassi
From: Luca Boccassi Use the new MOUNT_COPYBIND_AVOID_OVERLAYFS flag provided by mount-copybind. When SELinux is enabled, processes accessing OverlayFS mounts will get a denial if the process setting up the mount doesn't have all the permissions that the accessor has. Signed-off-by: Luca

[OE-core] [PATCH 2/2] kernel-fitimage.bbclass: introduce FIT_SUPPORTED_INITRAMFS_FSTYPES

2022-03-28 Thread Ming Liu
From: Ming Liu It was found when a end user wants to build a squashfs type initramfs into fitimage, it just fails without printing out any error or warning messages, which is not right. Introduce a FIT_SUPPORTED_INITRAMFS_FSTYPES variable to avoid hard-coding the supported initramfs types, and

[OE-core] [PATCH 1/2] kernel-fitimage.bbclass: change 'echo' to 'bbnote'

2022-03-28 Thread Ming Liu
From: Ming Liu Change 'echo' usages to 'bbnote' for better logging. Signed-off-by: Ming Liu --- meta/classes/kernel-fitimage.bbclass | 25 - 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/meta/classes/kernel-fitimage.bbclass

[OE-core] [PATCH 0/2] Some kernel fitimage build fixes

2022-03-28 Thread Ming Liu
From: Ming Liu Ming Liu (2): kernel-fitimage.bbclass: change 'echo' to 'bbnote' kernel-fitimage.bbclass: introduce FIT_SUPPORTED_INITRAMFS_FSTYPES meta/classes/kernel-fitimage.bbclass | 35 +--- 1 file changed, 21 insertions(+), 14 deletions(-) -- 2.25.1

Re: [OE-core] [PATCH v1 1/2] gpg-sign: Add parameters to gpg signature function

2022-03-28 Thread Ferry Toth
Hi, Op 24-03-2022 om 23:20 schreef Richard Purdie: On Thu, 2022-03-24 at 23:11 +0100, Ferry Toth wrote: Op 24-03-2022 om 16:36 schreef Ferry Toth: Op 24-03-2022 om 13:03 schreef Richard Purdie: On Thu, 2022-03-24 at 12:23 +0100, Ferry Toth wrote: On Wed, 2022-03-23 at 19:34 +0100, Ferry

[OE-core] [PATCH] create-spdx: Avoid regex warning by quoting correctly

2022-03-28 Thread Richard Purdie
create-spdx.bbclass:43: DeprecationWarning: invalid escape sequence \W lic_regex = re.compile(b'^\W*SPDX-License-Identifier:\s*([ \w\d.()+-]+?)(?:\s+\W*)?$', re.MULTILINE) Signed-off-by: Richard Purdie --- meta/classes/create-spdx.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

[OE-core] [PATCH] qemu: backport fixes for CVE-2022-26353 and CVE-2022-26354

2022-03-28 Thread Ross Burton
Signed-off-by: Ross Burton --- meta/recipes-devtools/qemu/qemu.inc | 2 + ...ch-the-virqueue-element-in-case-of-e.patch | 60 +++ ...-map-leaking-on-error-during-receive.patch | 43 + 3 files changed, 105 insertions(+) create mode 100644

[OE-core] [PATCH] grub: ignore CVE-2021-46705

2022-03-28 Thread Ross Burton
This is specific to SUSE Linux. Signed-off-by: Ross Burton --- meta/recipes-bsp/grub/grub2.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-bsp/grub/grub2.inc b/meta/recipes-bsp/grub/grub2.inc index ba0596c9383..45852ab9b1c 100644 --- a/meta/recipes-bsp/grub/grub2.inc +++

[OE-core] [PATCH] msmtp: upgrade 1.8.19 -> 1.8.20

2022-03-28 Thread wangmy
Signed-off-by: Wang Mingyu --- .../recipes-extended/msmtp/{msmtp_1.8.19.bb => msmtp_1.8.20.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-extended/msmtp/{msmtp_1.8.19.bb => msmtp_1.8.20.bb} (91%) diff --git a/meta/recipes-extended/msmtp/msmtp_1.8.19.bb

[OE-core] [PATCH] sqlite3: upgrade 3.38.1 -> 3.38.2

2022-03-28 Thread wangmy
Signed-off-by: Wang Mingyu --- .../sqlite/{sqlite3_3.38.1.bb => sqlite3_3.38.2.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-support/sqlite/{sqlite3_3.38.1.bb => sqlite3_3.38.2.bb} (86%) diff --git a/meta/recipes-support/sqlite/sqlite3_3.38.1.bb

[OE-core] [PATCH] lttng-ust: upgrade 2.13.1 -> 2.13.2

2022-03-28 Thread wangmy
Signed-off-by: Wang Mingyu --- .../lttng/{lttng-ust_2.13.1.bb => lttng-ust_2.13.2.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-kernel/lttng/{lttng-ust_2.13.1.bb => lttng-ust_2.13.2.bb} (95%) diff --git a/meta/recipes-kernel/lttng/lttng-ust_2.13.1.bb

[OE-core] [PATCH] lttng-modules: upgrade 2.13.2 -> 2.13.3

2022-03-28 Thread wangmy
Signed-off-by: Wang Mingyu --- .../lttng/{lttng-modules_2.13.2.bb => lttng-modules_2.13.3.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-kernel/lttng/{lttng-modules_2.13.2.bb => lttng-modules_2.13.3.bb} (94%) diff --git

[OE-core] [PATCH] libevdev: upgrade 1.12.0 -> 1.12.1

2022-03-28 Thread wangmy
Signed-off-by: Wang Mingyu --- .../libevdev/{libevdev_1.12.0.bb => libevdev_1.12.1.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-support/libevdev/{libevdev_1.12.0.bb => libevdev_1.12.1.bb} (87%) diff --git

[OE-core] [PATCH] libsoup: upgrade 3.0.4 -> 3.0.5

2022-03-28 Thread wangmy
Signed-off-by: Wang Mingyu --- .../libsoup/{libsoup_3.0.4.bb => libsoup_3.0.5.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-support/libsoup/{libsoup_3.0.4.bb => libsoup_3.0.5.bb} (94%) diff --git a/meta/recipes-support/libsoup/libsoup_3.0.4.bb

[OE-core] [PATCH] iproute2: upgrade 5.16.0 -> 5.17.0

2022-03-28 Thread wangmy
0001-lib-fix-ax25.h-include-for-musl.patch removed since it's included in 5.17.0 Signed-off-by: Wang Mingyu --- ...0001-lib-fix-ax25.h-include-for-musl.patch | 37 --- ...{iproute2_5.16.0.bb => iproute2_5.17.0.bb} | 3 +- 2 files changed, 1 insertion(+), 39 deletions(-) delete

[OE-core] [PATCH] glib-networking: upgrade 2.70.1 -> 2.72.0

2022-03-28 Thread wangmy
Signed-off-by: Wang Mingyu --- .../{glib-networking_2.70.1.bb => glib-networking_2.72.0.bb}| 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-core/glib-networking/{glib-networking_2.70.1.bb => glib-networking_2.72.0.bb} (93%) diff --git

[OE-core] [PATCH] dpkg: upgrade 1.21.2 -> 1.21.4

2022-03-28 Thread wangmy
Signed-off-by: Wang Mingyu --- meta/recipes-devtools/dpkg/{dpkg_1.21.2.bb => dpkg_1.21.4.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/dpkg/{dpkg_1.21.2.bb => dpkg_1.21.4.bb} (95%) diff --git a/meta/recipes-devtools/dpkg/dpkg_1.21.2.bb

[OE-core] [PATCH] atk: upgrade 2.36.0 -> 2.38.0

2022-03-28 Thread wangmy
Signed-off-by: Wang Mingyu --- meta/recipes-support/atk/{atk_2.36.0.bb => atk_2.38.0.bb} | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) rename meta/recipes-support/atk/{atk_2.36.0.bb => atk_2.38.0.bb} (84%) diff --git a/meta/recipes-support/atk/atk_2.36.0.bb

[OE-core] [PATCH] cronie: upgrade 1.5.7 -> 1.6.0

2022-03-28 Thread wangmy
Signed-off-by: Wang Mingyu --- .../cronie/{cronie_1.5.7.bb => cronie_1.6.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-extended/cronie/{cronie_1.5.7.bb => cronie_1.6.0.bb} (97%) diff --git a/meta/recipes-extended/cronie/cronie_1.5.7.bb

[OE-core] [PATCH] apt: upgrade 2.4.0 -> 2.4.3

2022-03-28 Thread wangmy
0001-aptwebserver.cc-Include-array.patch refreshed for new version. Signed-off-by: Wang Mingyu --- .../apt/apt/0001-aptwebserver.cc-Include-array.patch | 12 +--- .../apt/{apt_2.4.0.bb => apt_2.4.3.bb} | 2 +- 2 files changed, 6 insertions(+), 8 deletions(-) rename

[OE-core] [PATCH] diffoscope: upgrade 207 -> 208

2022-03-28 Thread wangmy
Signed-off-by: Wang Mingyu --- .../diffoscope/{diffoscope_207.bb => diffoscope_208.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-support/diffoscope/{diffoscope_207.bb => diffoscope_208.bb} (92%) diff --git

[OE-core] [PATCH v3] zstd: add libzstd package

2022-03-28 Thread Stefan Herbrechtsmeier
From: Stefan Herbrechtsmeier Add a libzstd package to remove libstdc++ runtime dependency from library users and reduce the dependencies and size of the library package. Add a lib package instead of a bin package to use a similar name as other buildtools and be backward compatible.

Re: [OE-core] [PATCH] go: Upgrade to 1.18

2022-03-28 Thread Alexander Kanavin
There should be additional information in log.do_compile that helps in finding out where the buildids start to diverge (given that there's a mass of blobs in the report, it's somewhere early in the build, or possibly even in native pieces). Alex On Mon, 28 Mar 2022 at 10:43, Alexandre Belloni

Re: [OE-core] [PATCH] go: Upgrade to 1.18

2022-03-28 Thread Alexandre Belloni via lists.openembedded.org
Hi Khem, This caused the following repro failure: https://autobuilder.yoctoproject.org/typhoon/#/builders/117/builds/584/steps/12/logs/stdio https://autobuilder.yocto.io/pub/repro-fail/oe-reproducible-20220327-donu6voi/packages/diff-html/ On 27/03/2022 12:00:53-0700, Khem Raj wrote: > 1.18 is

Re: [OE-core] [yocto] QA notification for completed autobuilder build (yocto-3.4.3.rc1)

2022-03-28 Thread Teoh, Jay Shen
Hello everyone, This is the full report for yocto-3.4.3.rc3: https://git.yoctoproject.org/cgit/cgit.cgi/yocto-testresults-contrib/tree/?h=intel-yocto-testresults === Summary No high milestone defects. No new issue found. Thanks, Jay > -Original Message- > From:

Re: [OE-core] [PATCH v2] zstd: add zstd-bin package

2022-03-28 Thread Stefan Herbrechtsmeier
Hi, Am 25.03.2022 um 20:00 schrieb Alexandre Belloni: On 25/03/2022 13:29:50+0100, Stefan Herbrechtsmeier wrote: From: Stefan Herbrechtsmeier Add a zstd-bin package to remove libstdc++ runtime dependency from library users and reduce the dependencies and size of the library package.

[OE-core] [PATCH 1/2] go: Drop GOBUILDMODE

2022-03-28 Thread Khem Raj
This is local invention which is no longer needed, pie-mode works good now a days to build go for target Signed-off-by: Khem Raj --- meta/recipes-devtools/go/go-1.18.inc | 1 - ...008-use-GOBUILDMODE-to-set-buildmode.patch | 42 --- meta/recipes-devtools/go/go_1.18.bb

[OE-core] [PATCH 2/2] go: Disable pie in cgo for mips

2022-03-28 Thread Khem Raj
This overcomes the linking errors e.g. | /usr/lib/go/src/cmd/go/internal/base/base.go:110:(.text+0x60fef8): relocation R_MIPS_26 against `a local symbol' cannot be used when making a shared object; recompile with -fPIC | /usr/lib/go/src/cmd/go/internal/base/base.go:110:(.text+0x60ff0c):