Re: [OE-core] [PATCH 4/4] populate_sdk_ext: split copy_buildsystem() into logical steps defined as functions

2023-11-03 Thread Alexandre Belloni via lists.openembedded.org
https://autobuilder.yoctoproject.org/typhoon/#/builders/97/builds/7419/steps/16/logs/stdio On 03/11/2023 11:28:06+0100, Alexander Kanavin wrote: > copy_buildsystem() has become far too large and needs to be split > into shorter and more understandable pieces; some of those > pieces will be reused

[OE-core] Script to apply auh generated patches

2023-11-03 Thread Khem Raj
Hi All Here is a small script which gets the patch from patchwork and applies it to tree. if you use patchwork in your flow, It might be useful. https://gist.github.com/kraj/9fd27c8763aaa2943e1790d714bacee0#file-auh-sh Thanks -Khem -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent

[OE-Core][PATCH] scripts/resulttool: group all regressions in regression report

2023-11-03 Thread Alexis Lothoré via lists . openembedded . org
From: Alexis Lothoré Commit c304fcbe0588b1078373558c2ddf36064bcdf214 introduced a grouping when listing regressions. This grouping has been added only for ptests. It has been observed that any other kind of tests could benefit from it. For example, current regression reports can show the

[OE-core] [PATCH] glib-2.0: Remove unnecessary assignement

2023-11-03 Thread Rouven Czerwinski
FILES:${PN}-utils is += extended and than replaced completely later, remove the first extension. Signed-off-by: Rouven Czerwinski --- meta/recipes-core/glib-2.0/glib.inc | 5 - 1 file changed, 5 deletions(-) diff --git a/meta/recipes-core/glib-2.0/glib.inc

[OE-core] [PATCH] systemd: fix libnss-mymachines packaging

2023-11-03 Thread Florian Wickert
By removing libnss_mymachines.so.2 from FILES:${PN}-container it correctly gets packaged into libnss-mymachines, just like the other libnss-* components, due to PACKAGES_DYNAMIC. To make up for the missing lib in the container package, I added libnss-mymachines to RDEPENDS:${PN}-container. As I

[OE-core] [PATCH] valgrind: split helper scripts to separate packages, update dependencies

2023-11-03 Thread Rasmus Villemoes via lists.openembedded.org
From: Rasmus Villemoes The cachegrind scripts have been rewritten in python3, so the RDEPENDS on perl is no longer sufficient. This is unfortunately not caught by QA checks since the scripts use #! /usr/bin/env python3 as shebang line. Since the valgrind binary by itself can be quite useful

[OE-core] [PATCH v2] classes: Move package RDEPENDS processing out of debian.bbclass

2023-11-03 Thread Sergey Zhmylev
From: Sergei Zhmylev INHERIT_DIRSTO by default includes debian.bbclass which in turn properly establishes dependencies between package management tasks and build process. Debian class also unconditionally renames several packages in a Debian way. In order to allow disabling of such renaming

Re: [OE-core] [PATCH] classes: Move package RDEPENDS processing out of debian.bbclass

2023-11-03 Thread Richard Purdie
On Fri, 2023-11-03 at 16:14 +0300, Sergey Zhmylev wrote: > From: Sergei Zhmylev > > INHERIT_DIRSTO by default includes debian.bbclass which in turn properly > establishes dependencies between package management tasks and build > process. Debian class also unconditionally renames several packages

[OE-core] [PATCH][nanbield 7/7] cve-check: don't warn if a patch is remote

2023-11-03 Thread Ross Burton
From: Ross Burton We don't make do_cve_check depend on do_unpack because that would be a waste of time 99% of the time. The compromise here is that we can't scan remote patches for issues, but this isn't a problem so downgrade the warning to a note. Also move the check for CVEs in the filename

[OE-core] [PATCH][nanbield 6/7] cve-check: slightly more verbose warning when adding the same package twice

2023-11-03 Thread Ross Burton
From: Ross Burton Occasionally the cve-check tool will warn that it is adding the same package twice. Knowing what this package is might be the first step towards understanding where this message comes from. Signed-off-by: Ross Burton --- meta/lib/oe/cve_check.py | 2 +- 1 file changed, 1

[OE-core] [PATCH][nanbield 3/7] zlib: ignore CVE-2023-45853

2023-11-03 Thread Ross Burton
From: Ross Burton This CVE relates to a bug in the minizip tool, but we don't build that. Signed-off-by: Ross Burton --- meta/recipes-core/zlib/zlib_1.3.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-core/zlib/zlib_1.3.bb b/meta/recipes-core/zlib/zlib_1.3.bb index

[OE-core] [PATCH][nanbield 4/7] pixman: ignore CVE-2023-37769

2023-11-03 Thread Ross Burton
From: Ross Burton This issue relates to a floating point exception in stress-test, which is an unlikely security exploit at the best of times, but the test is not installed so isn't relevant. Signed-off-by: Ross Burton --- meta/recipes-graphics/xorg-lib/pixman_0.42.2.bb | 2 ++ 1 file

[OE-core] [PATCH][nanbield 5/7] cve-check: sort the package list in the JSON report

2023-11-03 Thread Ross Burton
From: Ross Burton The JSON report generated by the cve-check class is basically a huge list of packages. This list of packages is, however, unsorted. To make things easier for people comparing the JSON, or more specifically for git when archiving the JSON over time in a git repository, we can

[OE-core] [PATCH][nanbield 1/7] linux-yocto: update CVE exclusions

2023-11-03 Thread Ross Burton
From: Ross Burton Signed-off-by: Ross Burton --- .../linux/cve-exclusion_6.1.inc | 64 --- .../linux/cve-exclusion_6.5.inc | 58 +++-- 2 files changed, 107 insertions(+), 15 deletions(-) diff --git

[OE-core] [PATCH][nanbield 2/7] libxml2: ignore disputed CVE-2023-45322

2023-11-03 Thread Ross Burton
From: Ross Burton This CVE is a use-after-free which theoretically can be an exploit vector, but this UAF only occurs when malloc() fails. As it's unlikely that the user can orchestrate malloc() failures at just the place to break on _this_ malloc and not others it is disputed that this is

[OE-core] [PATCH] classes: Move package RDEPENDS processing out of debian.bbclass

2023-11-03 Thread Sergey Zhmylev
From: Sergei Zhmylev INHERIT_DIRSTO by default includes debian.bbclass which in turn properly establishes dependencies between package management tasks and build process. Debian class also unconditionally renames several packages in a Debian way. In order to allow disabling of such renaming

Re: [OE-core] Meaning of the name of the "cml1" class?

2023-11-03 Thread Michael Opdenacker via lists.openembedded.org
On 03.11.23 at 10:52, Martin Jansa wrote: The answer from 2022-07-18 on #yocto channel: 20:20 < hushmoney> what does clm1 stand for as in clm1.bbclass? 20:20 < hushmoney> s/clm1/cml1/g 20:31 < JaMa> hushmoney: interesting question, the bbclass was introduced very long time ago (already

[OE-core] [PATCH 4/4] populate_sdk_ext: split copy_buildsystem() into logical steps defined as functions

2023-11-03 Thread Alexander Kanavin
copy_buildsystem() has become far too large and needs to be split into shorter and more understandable pieces; some of those pieces will be reused for the purpose of providing esdk mode directly from a plain yocto build. Signed-off-by: Alexander Kanavin ---

[OE-core] [PATCH 1/4] populate_sdk_ext.bbclass: do not symlink unfsd from sdk image sysroot into eSDK tools path

2023-11-03 Thread Alexander Kanavin
This was done in 2016 to support Eclipse plugin (long dead), it's currently broken as image sysroot is not in the SDK until the image is built in that context, and current tools all rely on runqemu-export-rootfs which does not rely on PATH and runs unfsd with full path to recipe-specific sysroots.

[OE-core] [PATCH 2/4] meta/lib/oe/copy_buildsystem.py: do not derefence symlinks

2023-11-03 Thread Alexander Kanavin
This was added (I think) for the purpose of supporting layers that refer to items outside of the layer via relative symlinks: https://git.yoctoproject.org/poky-contrib/commit/?id=d31d1ad4e566e42d0bbcf1f41ac25e33181fb517 I do not think copying the link target into the layer that references it is

[OE-core] [PATCH 3/4] scripts/esdk-tools: use a dedicated, static directory for esdk tools

2023-11-03 Thread Alexander Kanavin
This allows easier replication of esdk environment (which provides a curated, limited set of tools that for example does not include bitbake) in a standard yocto build. Switchover between various sets can be achieved via PATH manipulation. Signed-off-by: Alexander Kanavin ---

Re: [OE-core] [PATCH] python3-cryptography-vectors: upgrade 41.0.4 -> 41.0.5

2023-11-03 Thread Alexander Kanavin
On Fri, 3 Nov 2023 at 08:29, wangmy wrote: > # NOTE: Make sure to keep this recipe at the same version as > python3-cryptography > # Upgrade both recipes at the same time Please note this comment - there does not seem to be an upgrade of python3-cryptography in your patch set, and it

Re: [OE-core] Meaning of the name of the "cml1" class?

2023-11-03 Thread Martin Jansa
The answer from 2022-07-18 on #yocto channel: 20:20 < hushmoney> what does clm1 stand for as in clm1.bbclass? 20:20 < hushmoney> s/clm1/cml1/g 20:31 < JaMa> hushmoney: interesting question, the bbclass was introduced very long time ago (already included in 2004

[OE-core] Meaning of the name of the "cml1" class?

2023-11-03 Thread Michael Opdenacker via lists.openembedded.org
Greetings I'd like to explain the meaning of the name of the "cml1" class in the documentation. This would help to remember this name. From what I've seen, it has this name since the beginning of the git history. Do those of you who are veterans remember what the name originally meant?

Re: [OE-core] [PATCH] documentation.conf: drop SERIAL_CONSOLES_CHECK

2023-11-03 Thread Michael Opdenacker via lists.openembedded.org
On 03.11.23 at 07:25, Lee Chee Yang wrote: From: Lee Chee Yang remove obsolete SERIAL_CONSOLES_CHECK. Signed-off-by: Lee Chee Yang --- meta/conf/documentation.conf | 1 - 1 file changed, 1 deletion(-) diff --git a/meta/conf/documentation.conf b/meta/conf/documentation.conf index

[OE-core][dunfell][PATCH 1/1] libwebp: Fix CVE-2023-4863

2023-11-03 Thread Soumya via lists.openembedded.org
From: Soumya Sambu Heap buffer overflow in WebP in Google Chrome prior to 116.0.5845.187 allowed a remote attacker to perform an out of bounds memory write via a crafted HTML page. Removed CVE-2023-5129.patch as CVE-2023-5129 is duplicate of CVE-2023-4863. CVE: CVE-2023-4863 References:

[OE-core][mickledore][PATCH 1/1] libwebp: Fix CVE-2023-4863

2023-11-03 Thread Soumya via lists.openembedded.org
From: Soumya Sambu Heap buffer overflow in WebP in Google Chrome prior to 116.0.5845.187 allowed a remote attacker to perform an out of bounds memory write via a crafted HTML page. Removed CVE-2023-5129.patch as CVE-2023-5129 is duplicate of CVE-2023-4863. CVE: CVE-2023-4863 References:

[OE-core][kirkstone][PATCH v4 1/1] libwebp: Fix CVE-2023-4863

2023-11-03 Thread Soumya via lists.openembedded.org
From: Soumya Sambu Heap buffer overflow in WebP in Google Chrome prior to 116.0.5845.187 allowed a remote attacker to perform an out of bounds memory write via a crafted HTML page. Removed CVE-2023-5129.patch as CVE-2023-5129 is duplicate of CVE-2023-4863. CVE: CVE-2023-4863 References:

[OE-core] [PATCH] xserver-xorg: upgrade 21.1.8 -> 21.1.9

2023-11-03 Thread wangmy
From: Wang Mingyu Changelog: === -present: Send a PresentConfigureNotify event for destroyed windows -Switch to libbsd-overlay -Xi/randr: fix handling of PropModeAppend/Prepend -mi: reset the PointerWindows reference on screen switch Signed-off-by: Wang Mingyu ---

[OE-core] [PATCH] shaderc: upgrade 2023.6 -> 2023.7

2023-11-03 Thread wangmy
From: Wang Mingyu Changelog: - Update dependencies - Finish converting build instructions and flags to always use C++17 - Add GitHub CI to test more flows Signed-off-by: Wang Mingyu --- .../shaderc/{shaderc_2023.6.bb => shaderc_2023.7.bb}| 2 +- 1 file changed, 1

[OE-core] [PATCH] python3-wheel: upgrade 0.41.2 -> 0.41.3

2023-11-03 Thread wangmy
From: Wang Mingyu Changelog: === Updated vendored packaging to 23.2 Fixed ABI tag generation for CPython 3.13a1 on Windows Signed-off-by: Wang Mingyu --- .../python/{python3-wheel_0.41.2.bb => python3-wheel_0.41.3.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename

[OE-core] [PATCH] python3-wcwidth: upgrade 0.2.8 -> 0.2.9

2023-11-03 Thread wangmy
From: Wang Mingyu Changelog: === -Bugfix zero-width characters used in Emoji ZWJ sequences, Balinese, Jamo, Devanagari, Tamil, Kannada and others (PR #91). -Updated to include a Specification of character measurements. Signed-off-by: Wang Mingyu --- .../{python3-wcwidth_0.2.8.bb =>

[OE-core] [PATCH] python3-trove-classifiers: upgrade 2023.9.19 -> 2023.10.18

2023-11-03 Thread wangmy
From: Wang Mingyu Changelog: dd Framework :: Mkdocs classifier (#154) Signed-off-by: Wang Mingyu --- ...ers_2023.9.19.bb => python3-trove-classifiers_2023.10.18.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename

[OE-core] [PATCH] python3-testtools: upgrade 2.6.0 -> 2.7.0

2023-11-03 Thread wangmy
From: Wang Mingyu Changelog: * Fix compatibility with Python 3.12. * Add typing in various modules (still lacking full coverage). * Drop the 'test' command for distutils. This has been deprecated since 2.6.0. * Drop support for Python 3.6. Signed-off-by: Wang Mingyu ---

[OE-core] [PATCH] python3-setuptools-rust: upgrade 1.7.0 -> 1.8.1

2023-11-03 Thread wangmy
From: Wang Mingyu Changelog: === -Fix regression in install_extension crashing since 1.8.0. #380 -Drop support for Python 3.7. #357 -Remove direct imports from pkg_resources. #359 -Add support for setting a custom cargo profile with the SETUPTOOLS_RUST_CARGO_PROFILE environment

[OE-core] [PATCH] python3-ruamel-yaml: upgrade 0.17.35 -> 0.18.4

2023-11-03 Thread wangmy
From: Wang Mingyu Changelog: - YAML() instance has a 'doc_infos' attribute which is a cumulative list of DocInfo instances (one for 'load()', one per document for 'load_all()'). DocInfo instances contain version information (requested, directive) and tag directive information

[OE-core] [PATCH] python3-pytest: upgrade 7.4.2 -> 7.4.3

2023-11-03 Thread wangmy
From: Wang Mingyu Changelog: -Markers are now considered in the reverse mro order to ensure base class markers are considered first – this resolves a regression. -Fixed := in asserts impacting unrelated test cases. -Handled an edge case where sys.stderr might already be closed when

[OE-core] [PATCH] python3-pyopenssl: upgrade 23.2.0 -> 23.3.0

2023-11-03 Thread wangmy
From: Wang Mingyu Changelog: -Dropped support for Python 3.6. -The minimum cryptography version is now 41.0.5. -Removed OpenSSL.crypto.loads_pkcs7 and OpenSSL.crypto.loads_pkcs12 which had been deprecated for 3 years. -Added OpenSSL.SSL.OP_LEGACY_SERVER_CONNECT to allow legacy

[OE-core] [PATCH] python3-pycairo: upgrade 1.25.0 -> 1.25.1

2023-11-03 Thread wangmy
From: Wang Mingyu Changelog: * Fix a crash with pypy3.10 * Fix the build with CPython 3.13.0a1 Signed-off-by: Wang Mingyu --- .../{python3-pycairo_1.25.0.bb => python3-pycairo_1.25.1.bb}| 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename

[OE-core] [PATCH] python3-psutil: upgrade 5.9.5 -> 5.9.6

2023-11-03 Thread wangmy
From: Wang Mingyu Signed-off-by: Wang Mingyu --- .../python/{python3-psutil_5.9.5.bb => python3-psutil_5.9.6.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/python/{python3-psutil_5.9.5.bb => python3-psutil_5.9.6.bb} (90%) diff --git

[OE-core] [PATCH] python3-pip: upgrade 23.2.1 -> 23.3.1

2023-11-03 Thread wangmy
From: Wang Mingyu Changelog: https://pip.pypa.io/en/stable/news/ Signed-off-by: Wang Mingyu --- .../python/{python3-pip_23.2.1.bb => python3-pip_23.3.1.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/python/{python3-pip_23.2.1.bb =>

[OE-core] [PATCH] python3-hypothesis: upgrade 6.87.4 -> 6.88.1

2023-11-03 Thread wangmy
From: Wang Mingyu Changelog: *improves register_type_strategy() when used with tuple subclasses, by preventing them from being interpreted as generic and provided to strategies like st.from_type(Sequence[int]) (issue #3767). *allows strategy-generating functions registered with

[OE-core] [PATCH] python3-git: upgrade 3.1.37 -> 3.1.40

2023-11-03 Thread wangmy
From: Wang Mingyu Changelog: Add missing info in Submodule.remove docstring Have init script clone submodules unconditionally Add missing assert keywords Make clear every test's status in every CI run Fix new link to license in readme Drop unneeded flake8 suppressions Update

[OE-core] [PATCH] python3-gitdb: upgrade 4.0.10 -> 4.0.11

2023-11-03 Thread wangmy
From: Wang Mingyu Changelog: == Use ZLIB_RUNTIME_VERSION if available Add support for Python 3.12 and drop EOL 3.7 Enable Dependabot version updates for Actions Test installing project on CI Fix mkdir race condition in LooseObjectDB.store Don't cancel other jobs from the 3.12 job

[OE-core] [PATCH] python3-cryptography-vectors: upgrade 41.0.4 -> 41.0.5

2023-11-03 Thread wangmy
From: Wang Mingyu Changelog: = Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.1.4. Added a function to support an upcoming pyOpenSSL release. Signed-off-by: Wang Mingyu --- ...vectors_41.0.4.bb => python3-cryptography-vectors_41.0.5.bb} | 2 +- 1 file

[OE-core] [PATCH] python3-babel: upgrade 2.13.0 -> 2.13.1

2023-11-03 Thread wangmy
From: Wang Mingyu Changelog: * Fix a typo in "_locales_to_names" * Fix "setuptools" dependency for Python 3.12 Signed-off-by: Wang Mingyu --- .../python/{python3-babel_2.13.0.bb => python3-babel_2.13.1.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename

[OE-core] [PATCH] strace: upgrade 6.5 -> 6.6

2023-11-03 Thread wangmy
From: Wang Mingyu Changelog: == * Improvements * Implemented --kill-on-exit option that instructs the tracer to set PTRACE_O_EXITKILL option to all tracee processes and not to detach them on cleanup so they will not be left running after the tracer exit. * Implemented

[OE-core] [PATCH] python3-pyrsistent: upgrade 0.19.3 -> 0.20.0

2023-11-03 Thread wangmy
From: Wang Mingyu Changelog: === * Fix #245, never introduce new nodes during discard. * Fix #268, do not rely on well implemented __ne__ for keys in pmaps, instead do explicit inversion of equality comparison when checking for inequality. * Officially support Python 3.12. *

[OE-core] [PATCH] glib-2.0: upgrade 2.78.0 -> 2.78.1

2023-11-03 Thread wangmy
From: Wang Mingyu Changelog: = * Fix truncating files when "g_file_set_contents_full()" is called without "G_FILE_SET_CONTENTS_CONSISTENT" * Fix "-Dlibelf=disabled" on Linux * Bugs fixed: - #3105 NetworkManager 1.44.0 crashes repeatedly with glib 2.78.0 - #3111

[OE-core] [PATCH] ghostscript: upgrade 10.02.0 -> 10.02.1

2023-11-03 Thread wangmy
From: Wang Mingyu Signed-off-by: Wang Mingyu --- .../{ghostscript_10.02.0.bb => ghostscript_10.02.1.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-extended/ghostscript/{ghostscript_10.02.0.bb => ghostscript_10.02.1.bb} (97%) diff --git

[OE-core] [PATCH] msmtp: upgrade 1.8.24 -> 1.8.25

2023-11-03 Thread wangmy
From: Wang Mingyu Signed-off-by: Wang Mingyu --- .../recipes-extended/msmtp/{msmtp_1.8.24.bb => msmtp_1.8.25.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-extended/msmtp/{msmtp_1.8.24.bb => msmtp_1.8.25.bb} (91%) diff --git

[OE-core] [PATCH] llvm: upgrade 17.0.3 -> 17.0.4

2023-11-03 Thread wangmy
From: Wang Mingyu Signed-off-by: Wang Mingyu --- meta/recipes-devtools/llvm/llvm_git.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-devtools/llvm/llvm_git.bb b/meta/recipes-devtools/llvm/llvm_git.bb index bd2ef0ebec..0f811624a4 100644 ---

[OE-core] [PATCH] lighttpd: upgrade 1.4.72 -> 1.4.73

2023-11-03 Thread wangmy
From: Wang Mingyu Changelog: * [core] add .mkv to mimetype.assign builtin defaults * [core] warn if out-of-range value for config short * [mod_openssl] set default curves for ossl < 1.1.0 * [mod_h2] parse HEADERS flags sooner * [mod_h2] check send window before defer frame

[OE-core] [PATCH] libnsl2: upgrade 2.0.0 -> 2.0.1

2023-11-03 Thread wangmy
From: Wang Mingyu Changelog: === * Remove unused internal symbols from libnsl.map * Remove NIS+ from documentation Signed-off-by: Wang Mingyu --- meta/recipes-extended/libnsl/libnsl2_git.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

[OE-core] [PATCH] libnewt: upgrade 0.52.23 -> 0.52.24

2023-11-03 Thread wangmy
From: Wang Mingyu Changelog: === - add support for python3.13 - fix compiler warnings Signed-off-by: Wang Mingyu --- .../newt/{libnewt_0.52.23.bb => libnewt_0.52.24.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename

[OE-core] [PATCH] libjpeg-turbo: upgrade 3.0.0 -> 3.0.1

2023-11-03 Thread wangmy
From: Wang Mingyu Changelog: = 1. The x86-64 SIMD functions now use a standard stack frame, prologue, and epilogue so that debuggers and profilers can reliably capture backtraces from within the functions. 2. Fixed two minor issues in the interblock smoothing algorithm that caused

[OE-core] [PATCH] libical: upgrade 3.0.16 -> 3.0.17

2023-11-03 Thread wangmy
From: Wang Mingyu Signed-off-by: Wang Mingyu --- .../libical/{libical_3.0.16.bb => libical_3.0.17.bb}| 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-support/libical/{libical_3.0.16.bb => libical_3.0.17.bb} (96%) diff --git

[OE-core] [PATCH] libdnf: upgrade 0.71.0 -> 0.72.0

2023-11-03 Thread wangmy
From: Wang Mingyu Signed-off-by: Wang Mingyu --- .../libdnf/{libdnf_0.71.0.bb => libdnf_0.72.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/libdnf/{libdnf_0.71.0.bb => libdnf_0.72.0.bb} (97%) diff --git

[OE-core] [PATCH] harfbuzz: upgrade 8.2.1 -> 8.2.2

2023-11-03 Thread wangmy
From: Wang Mingyu Changelog: === - Fix regression from 8.1.0 in shaping fonts with duplicate feature tags. - Fix regression from 8.2.0 in parsing CSS-style feature strings. - Variable fonts instanciation now handles more tables. - Various CMake build improvements. - various fixes to

[OE-core] [PATCH] gpgme: upgrade 1.22.0 -> 1.23.1

2023-11-03 Thread wangmy
From: Wang Mingyu Changelog: == * w32: Change gpgme-w32-spawn to use Unicode arguments. * Support GPGME_ENCRYPT_ALWAYS_TRUST also for S/MIME. * New keylist mode GPGME_KEYLIST_MODE_WITH_V5FPR. * New key capability flags has_*. * gpgme-tool: Support use of Windows HANDLE. * qt:

[OE-core] [PATCH] documentation.conf: drop SERIAL_CONSOLES_CHECK

2023-11-03 Thread Lee Chee Yang
From: Lee Chee Yang remove obsolete SERIAL_CONSOLES_CHECK. Signed-off-by: Lee Chee Yang --- meta/conf/documentation.conf | 1 - 1 file changed, 1 deletion(-) diff --git a/meta/conf/documentation.conf b/meta/conf/documentation.conf index 23a9c0fe7b..d03c497c0e 100644 ---

[OE-core] [kirkstone][PATCH] binutils: Fix CVE-2022-47010

2023-11-03 Thread Sanjana.Venkatesh via lists.openembedded.org
From: Sanjana Signed-off-by: Sanjana --- .../binutils/binutils-2.38.inc| 1 + .../binutils/0032-CVE-2022-47010.patch| 38 +++ 2 files changed, 39 insertions(+) create mode 100644 meta/recipes-devtools/binutils/binutils/0032-CVE-2022-47010.patch diff