[OE-core] [PATCH] toolchain-scripts: compatibility with unbound variable protection

2023-01-04 Thread Jan Kircher via lists.openembedded.org
Fixed an error when Bash's unbound variable protection is enabled (set -u) and variable LD_LIBRARY_PATH does not exist. Signed-off-by: Jan Kircher --- meta/classes-recipe/toolchain-scripts.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [OE-core] [PATCH 01/10] package: Move fixup_perms function to bb function library

2023-01-04 Thread Richard Purdie
I'd guess people might be curious on the actual parsing/cache impacts of this series. To be honest I'm having trouble isolating a parsing time change for it, which is quite sad. Someone with a slower system or limiting it to a small set of cores might get some better results. I can see slight

[OE-core] [PATCH][kirkstone] systemd: backport another change from v252 to fix build with CVE-2022-45873.patch

2023-01-04 Thread Martin Jansa
* CVE-2022-45873.patch was backported from systemd/main, but it doesn't build without another change from v252 when elfutils PACKAGECONFIG is enabled. * fixes: | ../git/src/shared/elf-util.c: In function 'parse_elf_object': | ../git/src/shared/elf-util.c:792:27: error: void value not

Re: [OE-core] [PATCH] toolchain-scripts: compatibility with unbound variable protection

2023-01-04 Thread Jan Kircher via lists.openembedded.org
This also applies to langdale and kirkstone. Kirkstone has this recipe in meta/classes/toolchain-scripts.bbclass. -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#175474): https://lists.openembedded.org/g/openembedded-core/message/175474 Mute This

Re: [OE-core] [PATCH 2/2] linux-yocto: Autoload sound driver on QEMU x86

2023-01-04 Thread Bruce Ashfield
On Wed, Jan 4, 2023 at 7:18 AM Mark Jonas wrote: > > From: Mark Jonas > > If DISTRO_FEATURES includes ALSA then automatically load the > snd-intel8x0 kernel module on qemux86 and qemux86-64. This matches the > machine configurations conf/machine/qemux86.conf and qemux86-64.conf. > >

Re: [OE-core] [PATCH 2/2] cve-update-db-native: avoid partial updates

2023-01-04 Thread Jose Quaresma
Marta Rybczynska escreveu no dia quarta, 4/01/2023 à(s) 15:28: > Hi Jose, Thanks for looking into that. The function is not a total duplicate: the difference is that the it always removes the db_tmp_file, not only if the journal file exists (Python code

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

2023-01-04 Thread Alexander Kanavin
On Wed, 4 Jan 2023 at 13:24, Petr Kubizňák wrote: > Yes, that's exactly the reason. I'm particularly concerned about dependency > on glib, but other dependencies are unnecessary, too. > > > This change was sufficient to remove the dependency from the target. I am not > aware of potential

[OE-Core][PATCH] rust: Merge all rustc-source patches into rust-source.inc

2023-01-04 Thread Alex Kiernan
With the dim-sum approach to patching we had the same patch applied in many places, but not all, so that there were no guarantees that we were actually building agaginst the same thing in all recipes. Signed-off-by: Alex Kiernan --- I've no actual evidence, but I wonder if this might help with

[OE-core][dunfell 00/18] Pull request (cover letter only)

2023-01-04 Thread Steve Sakoman
The following changes since commit cc8ec63310f9a936371ea1070cb257c926808755: oeqa/selftest/tinfoil: Add test for separate config_data with recipe_parse_file() (2022-12-14 16:34:29 -1000) are available in the Git repository at: https://git.openembedded.org/openembedded-core-contrib

[OE-core] [PATCH 08/10] python3-cython: Use PACKAGE_PREPROCESS_FUNCS instead of PACKAGEBUILDPKGD

2023-01-04 Thread Richard Purdie
The recipe can use the more commonly used PACKAGE_PREPROCESS_FUNCS instead of PACKAGEBUILDPKGD which is likely to be removed soon, there should be no change in behaviour. Signed-off-by: Richard Purdie --- meta/recipes-devtools/python/python3-cython_0.29.32.bb | 2 +- 1 file changed, 1

[OE-core] [PATCH 09/10] package: Drop support for PACKAGEBUILDPKGD function customisation

2023-01-04 Thread Richard Purdie
We don't really need the customisation capability of PACKAGEBUILDPKGD since we also have PACKAGE_PREPROCESS_FUNCS which is generally used by recipes. Drop PACKAGEBUILDPKGD to have some simpler/clearer code. This allows some function wrappers to be removed too. Signed-off-by: Richard Purdie ---

[OE-core] [PATCH 10/10] recipes/classes: Drop prepend/append usage with PACKAGESPLITFUNCS

2023-01-04 Thread Richard Purdie
As far as I can tell, none of these uses of PACKAGESPLITFUNCS need append/prepend operators, the standard += and =+ can work just fine. Since OE-Core is copied a lot, use the preferred syntax which is also simpler to parse and change. Signed-off-by: Richard Purdie ---

[OE-core] [PATCH 05/10] package: Move package functions to function library

2023-01-04 Thread Richard Purdie
Move the bulk of the remaining package "processing" functions over to the package function library for parsing efficiency. Signed-off-by: Richard Purdie --- meta/classes-global/package.bbclass | 1407 +- meta/lib/oe/package.py | 1408

[OE-core] [PATCH 02/10] package: Move get_conffiles/files_from_filevars functions to lib

2023-01-04 Thread Richard Purdie
To avoid reparsing the bbclass code all the time, move the functions to the python function library code which is more efficient. Signed-off-by: Richard Purdie --- meta/classes-global/package.bbclass | 78 + meta/classes-global/package_deb.bbclass | 2 +-

[OE-core] [PATCH 01/10] package: Move fixup_perms function to bb function library

2023-01-04 Thread Richard Purdie
To avoid reparsing the bbclass code all the time, move the function to the python function library code which is more efficient. Signed-off-by: Richard Purdie --- meta/classes-global/package.bbclass | 238 +-- meta/lib/oe/package.py | 242

[OE-core] [PATCH 04/10] package: Move emit_pkgdata to packagedata.py

2023-01-04 Thread Richard Purdie
Move one of the PACKAGEFUNCS from the package bbclass to packagedata library code for parsing efficiency. Signed-off-by: Richard Purdie --- meta/classes-global/package.bbclass | 179 +--- meta/conf/bitbake.conf | 1 + meta/lib/oe/packagedata.py |

[OE-core] [PATCH 03/10] package: Move pkgdata handling functions to oe.packagedata

2023-01-04 Thread Richard Purdie
To avoid reparsing the bbclass code all the time, move the functions to the packagedata python function library code which is more efficient. Signed-off-by: Richard Purdie --- meta/classes-global/package.bbclass | 61 +-- meta/classes-global/package_deb.bbclass |

[OE-core] [PATCH 06/10] package: Drop unused function and obsolete comment

2023-01-04 Thread Richard Purdie
The function appears unused and the comment obsolete, drop them. Signed-off-by: Richard Purdie --- meta/classes-global/package.bbclass | 12 1 file changed, 12 deletions(-) diff --git a/meta/classes-global/package.bbclass b/meta/classes-global/package.bbclass index

[OE-core] [PATCH 07/10] package: Move mapping_rename_hook to packagedata function library

2023-01-04 Thread Richard Purdie
This function is used by the packaging tasks/classes and makes much more sense in the packagedata function library. Signed-off-by: Richard Purdie --- meta/classes-global/package.bbclass | 13 - meta/classes-global/package_deb.bbclass | 2 +-

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

2023-01-04 Thread Steve Sakoman
The following changes since commit ada5e64a97d5f269886772540e0bb0c324088b21: efibootmgr: update compilation with musl (2022-12-17 04:10:41 -1000) are available in the Git repository at: https://git.openembedded.org/openembedded-core-contrib stable/kirkstone-next

[OE-core] [PATCH] meta/classes-global: remove package_tar.bbclass

2023-01-04 Thread Michael Opdenacker via lists.openembedded.org
From: Michael Opdenacker Remove package_tar.bbclass, which is no longer in use in oe-core and meta-oe, and which the document reports as broken and unsupported. Signed-off-by: Michael Opdenacker --- meta/classes-global/package_tar.bbclass | 77 - 1 file changed, 77

[OE-core][kirkstone][PATCH 1/1] ffmpeg: fix for CVE-2022-3109

2023-01-04 Thread Narpat Mali
An issue was discovered in the FFmpeg package, where vp3_decode_frame in libavcodec/vp3.c lacks check of the return value of av_malloc() and will cause a null pointer dereference, impacting availability. CVE: CVE-2022-3109 Upstream-Status: Backport

Re: [OE-core][kirkstone 00/29] Pull request (cover letter only)

2023-01-04 Thread Steve Sakoman
On Wed, Jan 4, 2023 at 4:55 AM Martin Jansa wrote: > > On Wed, Jan 4, 2023 at 3:36 PM Steve Sakoman wrote: >> >> The following changes since commit ada5e64a97d5f269886772540e0bb0c324088b21: >> >> efibootmgr: update compilation with musl (2022-12-17 04:10:41 -1000) >> >> are available in the

Re: [OE-core] [PATCH 1/2] cve-update-db-native: move download cleanup to a function

2023-01-04 Thread Marta Rybczynska
This patch is replaced by https://lists.openembedded.org/g/openembedded-core/message/175355 (with a minor patch title change) On Mon, Jan 2, 2023 at 8:03 AM Marta Rybczynska wrote: > Move cleanup of the database after a failed download to a separate > function. This will be useful when we have

Re: [OE-core] [PATCH 2/2] cve-update-db-native: avoid partial updates

2023-01-04 Thread Marta Rybczynska
> > >>> >>> Hi Jose, >>> Thanks for looking into that. The function is not a total duplicate: the >>> difference is that >>> the it always removes the db_tmp_file, not only if the journal file >>> exists (Python code >>> formatting!). >>> >> >> Don't see on the first time that the db_tmp_file is

Re: [OE-Core][PATCH 1/2] kernel-fitimage: Adjust order of dtb/dtbo files

2023-01-04 Thread Sandeep Gundlupet Raju via lists.openembedded.org
Hi Quentin, Thanks for the review. On 1/4/2023 4:36 AM, Quentin Schulz wrote: Hi Sandeep, On 1/4/23 03:53, Sandeep Gundlupet Raju via lists.openembedded.org wrote: The dtb files must be before the dtbo files, otherwise the overlays may not be applied correctly. From Bruce Ashfield:

Re: [OE-core] [PATCH 0/2] Load proper sound drivers for QEMU x86

2023-01-04 Thread Richard Purdie
On Wed, 2023-01-04 at 13:18 +0100, toer...@gmail.com wrote: > From: Mark Jonas > > The patch series fixes a regression where images built for QEMU x86 and > x86-64 did not contain sound drivers matching the QEMU device emulation > configuration. Additionally, the right drivers are now also

Re: [OE-core] [PATCH 03/77] ethtool: upgrade 6.0 -> 6.1

2023-01-04 Thread Khem Raj
On 1/4/23 3:04 AM, Alexander Kanavin wrote: Signed-off-by: Alexander Kanavin --- .../0001-marvell.c-define-_GNU_SOURCE.patch | 26 +++ .../ethtool/avoid_parallel_tests.patch| 6 ++--- .../{ethtool_6.0.bb => ethtool_6.1.bb}| 3 ++- 3 files changed, 31

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

2023-01-04 Thread Khem Raj
nghttp2-native fails to build which is exposed by this change ERROR: nghttp2-native-1.50.0-r0 do_compile: ExecutionError('/mnt/b/yoe/master/build/tmp/work/x86_64-linux/nghttp2-native/1.50.0-r0/temp/run.do_compile.1646093', 1, None, None) ERROR: Logfile of failure stored in:

Re: [OE-core] [PATCH 03/77] ethtool: upgrade 6.0 -> 6.1

2023-01-04 Thread Alexander Kanavin
On Wed, 4 Jan 2023 at 19:09, Khem Raj wrote: > > +diff --git a/marvell.c b/marvell.c > > +index d3d570e..86f1d46 100644 > > +--- a/marvell.c > > b/marvell.c > > +@@ -5,6 +5,8 @@ > > + * Stephen Hemminger > > + */ > > + > > ++#define _GNU_SOURCE > > It is probably better to replace

[OE-core][PATCH v2 2/2] kernel-fitimage: Allow user to select dtb when multiple dtb exists

2023-01-04 Thread Sandeep Gundlupet Raju via lists.openembedded.org
Allow user to select the default DTB for FIT image when multiple dtb's exists. >From machine.conf or local.conf user can specify the default dtb for FIT image as shown below. FIT_CONF_DEFAULT_DTB = "board-default.dtb" Also fallback to avaialable dtb when FIT_CONF_DEFAULT_DTB doesn't exits or

[OE-core][PATCH v2 1/2] kernel-fitimage: Adjust order of dtb/dtbo files

2023-01-04 Thread Sandeep Gundlupet Raju via lists.openembedded.org
The dtb files must be before the dtbo files, otherwise the overlays may not be applied correctly. >From Bruce Ashfield: We can split between dtbs and dtbos, they just need to be sorted for reproducibility reasons. Of course, this was only working by luck previously (before the sort),

[OE-Core][langdale][PATCH v2 1/2] kernel-fitimage: Adjust order of dtb/dtbo files

2023-01-04 Thread Sandeep Gundlupet Raju via lists.openembedded.org
The dtb files must be before the dtbo files, otherwise the overlays may not be applied correctly. >From Bruce Ashfield: We can split between dtbs and dtbos, they just need to be sorted for reproducibility reasons. Of course, this was only working by luck previously (before the sort),

[OE-Core][langdale][PATCH v2 2/2] kernel-fitimage: Allow user to select dtb when multiple dtb exists

2023-01-04 Thread Sandeep Gundlupet Raju via lists.openembedded.org
Allow user to select the default DTB for FIT image when multiple dtb's exists. >From machine.conf or local.conf user can specify the default dtb for FIT image as shown below. FIT_CONF_DEFAULT_DTB = "board-default.dtb" Also fallback to avaialable dtb when FIT_CONF_DEFAULT_DTB doesn't exits or

Re: [oe-core][PATCH] gcr3: update 3.40.0 -> 3.41.1

2023-01-04 Thread Alexandre Belloni via lists.openembedded.org
This failed on the AB: https://autobuilder.yoctoproject.org/typhoon/#/builders/108/builds/3976/steps/11/logs/stdio On 01/01/2023 15:24:14+0100, Markus Volk wrote: > - remove unneded backport patches > - partly import the patch to fix ssh_agent option from gcr4 recipe > > gcr 3.41.1: > -

Re: [OE-core] [PATCH] gcr: add opengl to REQUIRED_DISTRO_FEATURES

2023-01-04 Thread Yu, Mingli
Hi Alex, Yes, The setting REQUIRED_DISTRO_FEATURES = "opengl" is in gtk4 recipe. Apart from that, gtk4 depends on libepoxy which also needs opengl distro. Thanks, From: Alexander Kanavin Sent: Friday, December 23, 2022 17:43 To: Yu, Mingli Cc:

[OE-core] [meta-oe][PATCHv2] gcr3: update 3.40.0 -> 3.41.1

2023-01-04 Thread Markus Volk
- remove unneded backport patches - partly import the patch to fix ssh_agent option from gcr4 recipe - convert from gtk-doc to gi-docgen gcr 3.41.1: - meson: Fix unknown kw argument in gnome.generate_gir [GNOME/gcr!68] - gcr: Add G_SPAWN_CLOEXEC_PIPES flag to all the g_spawn commands - docs:

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

2023-01-04 Thread Steve Sakoman
The following changes since commit 4efc5ec83bc97e5731284ef3879f89fda4b8ef0b: yocto-check-layer: Allow OE-Core to be tested (2022-12-23 23:04:58 +) are available in the Git repository at: https://git.openembedded.org/openembedded-core-contrib stable/langdale-next

Re: [OE-core] [PATCH] musl: Update to latest on tip of trunk

2023-01-04 Thread Nicolas Dechesne
On Fri, Dec 30, 2022 at 10:14 PM Khem Raj wrote: > On Thu, Dec 29, 2022 at 3:10 PM Richard Purdie > wrote: > > > > On Wed, 2022-12-28 at 23:13 -0800, Khem Raj wrote: > > > Brings following changes > > > > > > * f47a8cdd ldso: fix invalid early references to extern-linkage > libc.page_size > > >

Re: [OE-core] [PATCH] gcr: add opengl to REQUIRED_DISTRO_FEATURES

2023-01-04 Thread Alexander Kanavin
But does this mean we now have to insert required distro features statement into everything that depends on gtk4? That doesn’t seem useful; it should be enough to say that only in the recipe where the requirement originates. Alex On Thu 5. Jan 2023 at 3.10, Yu, Mingli wrote: > Hi Alex, > >

[OE-core] [dunfell][PATCH] grub2: Fix CVE-2022-2601 & CVE-2022-3775

2023-01-04 Thread Hitendra Prajapati
Backport patch from upstream to solve CVE-2022-2601 CVE-2022-3775 dependency: font: Fix size overflow in grub_font_get_glyph_internal() Upstream-Status: Backport from https://git.savannah.gnu.org/cgit/grub.git/commit/?id=9c76ec09ae08155df27cd237eaea150b4f02f532 CVE-2022-2601: font: Fix several

Re: [OE-core] [PATCH 45/77] python3-setuptools: upgrade 65.5.1 -> 65.6.3

2023-01-04 Thread Khem Raj
This setuptools upgrade is regressing nftables build | make[2]: Entering directory '/mnt/b/yoe/master/build/tmp/work/cortexa72-cortexa53-crypto-yoe-linux/nftables/1.0.6-r0/build/py' | cd ../../nftables-1.0.6/py && \ |

Re: [OE-core][kirkstone 00/29] Pull request (cover letter only)

2023-01-04 Thread Martin Jansa
On Wed, Jan 4, 2023 at 3:36 PM Steve Sakoman wrote: > The following changes since commit > ada5e64a97d5f269886772540e0bb0c324088b21: > > efibootmgr: update compilation with musl (2022-12-17 04:10:41 -1000) > > are available in the Git repository at: > >

Re: [OE-core] [PATCH] boost: upgrade 1.80.0 -> 1.81.0

2023-01-04 Thread Christian Eggers
On Wednesday, 21 December 2022, 03:59:07 CET, wan...@fujitsu.com wrote: > From: Wang Mingyu > > 0001-The-std-lib-unary-binary_function-base-classes-are-d.patch > removed since it's included in 1.81.0 > > Signed-off-by: Wang Mingyu > --- > .../{boost-1.80.0.inc => boost-1.81.0.inc}| 2 +-

Re: [OE-core] [PATCH] wpa-supplicant: Enable native builds

2023-01-04 Thread Miroslav Mareš
Thank you for the information, in this case we should resort to using the bbappend, because we don't have any use case of wpa-supplicant as a tool needed for target builds. Od: Alexander Kanavin Odesláno: středa 4. ledna 2023 11:15:37 Komu: Miroslav Mareš - 2N

Re: [OE-core] [PATCH] boost: upgrade 1.80.0 -> 1.81.0

2023-01-04 Thread Alexander Kanavin
You should send respective patches to both mailing lists at the same time, noting that one is dependent on the other. Alex On Wed, 4 Jan 2023 at 11:44, Christian Eggers wrote: > > On Wednesday, 21 December 2022, 03:59:07 CET, wan...@fujitsu.com wrote: > > From: Wang Mingyu > > > >

[OE-core] [PATCH 01/77] glib-2.0: upgrade 2.74.3 -> 2.74.4

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../glib-2.0/glib-2.0/fix-errno.patch | 31 +++ .../glib-2.0/glib-2.0/relocate-modules.patch | 4 +-- ...{glib-2.0_2.74.3.bb => glib-2.0_2.74.4.bb} | 3 +- 3 files changed, 35 insertions(+), 3 deletions(-) create mode 100644

[OE-core] [PATCH 02/77] jquery: upgrade 3.6.2 -> 3.6.3

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../jquery/{jquery_3.6.2.bb => jquery_3.6.3.bb} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename meta/recipes-devtools/jquery/{jquery_3.6.2.bb => jquery_3.6.3.bb} (81%) diff --git a/meta/recipes-devtools/jquery/jquery_3.6.2.bb

[OE-core] [PATCH 03/77] ethtool: upgrade 6.0 -> 6.1

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../0001-marvell.c-define-_GNU_SOURCE.patch | 26 +++ .../ethtool/avoid_parallel_tests.patch| 6 ++--- .../{ethtool_6.0.bb => ethtool_6.1.bb}| 3 ++- 3 files changed, 31 insertions(+), 4 deletions(-) create mode 100644

[OE-core] [PATCH 04/77] nasm: update 2.15.05 -> 2.16.01

2023-01-04 Thread Alexander Kanavin
adjust 0002-Add-debug-prefix-map-option.patch to account for https://github.com/netwide-assembler/nasm/commit/f2a6eb4aaca361c1ebe374bf07765790eecf8869 and add a chunk to it that guarantees source paths not leaking into debug sections that list source filenames. Signed-off-by: Alexander Kanavin

[OE-core] [PATCH 05/77] ffmpeg: use nasm patched-in debug-prefix-map option to restore reproducibility

2023-01-04 Thread Alexander Kanavin
Latest nasm requires this as it otherwise writes full paths into its output. Signed-off-by: Alexander Kanavin --- meta/recipes-multimedia/ffmpeg/ffmpeg_5.1.2.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-multimedia/ffmpeg/ffmpeg_5.1.2.bb

[OE-core] [PATCH 15/77] piglit: upgrade to latest revision

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- ...n-t-enable-GLX-if-tests-are-disabled.patch | 32 --- meta/recipes-graphics/piglit/piglit_git.bb| 3 +- 2 files changed, 1 insertion(+), 34 deletions(-) delete mode 100644

[OE-core] [PATCH 14/77] python3-pycryptodomex: upgrade 3.15.0 -> 3.16.0

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- ...-pycryptodomex_3.15.0.bb => python3-pycryptodomex_3.16.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/python/{python3-pycryptodomex_3.15.0.bb => python3-pycryptodomex_3.16.0.bb} (69%) diff --git

[OE-core] [PATCH 09/77] tiff: update 4.4.0 -> 4.5.0

2023-01-04 Thread Alexander Kanavin
Drop all CVE backports. License-Update: formatting Signed-off-by: Alexander Kanavin --- ...-of-TIFFTAG_INKNAMES-and-related-TIF.patch | 266 --- ...-the-FPE-in-tiffcrop-415-427-and-428.patch | 184 - ...fcrop-S-option-Make-decision-simpler.patch | 36 -

[OE-core] [PATCH 16/77] python3-setuptools-scm: upgrade 7.0.5 -> 7.1.0

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- ...-setuptools-scm_7.0.5.bb => python3-setuptools-scm_7.1.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/python/{python3-setuptools-scm_7.0.5.bb => python3-setuptools-scm_7.1.0.bb} (91%) diff --git

[OE-core] [PATCH 18/77] python3-hatchling: upgrade 1.11.1 -> 1.12.1

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- ...{python3-hatchling_1.11.1.bb => python3-hatchling_1.12.1.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/python/{python3-hatchling_1.11.1.bb => python3-hatchling_1.12.1.bb} (84%) diff --git

[OE-core] [PATCH 21/77] harfbuzz: upgrade 5.3.1 -> 6.0.0

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../harfbuzz/{harfbuzz_5.3.1.bb => harfbuzz_6.0.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-graphics/harfbuzz/{harfbuzz_5.3.1.bb => harfbuzz_6.0.0.bb} (95%) diff --git

[OE-core] [PATCH 20/77] linux-firmware: upgrade 20221109 -> 20221214

2023-01-04 Thread Alexander Kanavin
License-Update: additional files Signed-off-by: Alexander Kanavin --- ...{linux-firmware_20221109.bb => linux-firmware_20221214.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-kernel/linux-firmware/{linux-firmware_20221109.bb => linux-firmware_20221214.bb}

[OE-core] [PATCH 22/77] python3-pytz: upgrade 2022.6 -> 2022.7

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../python/{python3-pytz_2022.6.bb => python3-pytz_2022.7.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/python/{python3-pytz_2022.6.bb => python3-pytz_2022.7.bb} (89%) diff --git

[OE-core] [PATCH 23/77] strace: upgrade 6.0 -> 6.1

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-devtools/strace/{strace_6.0.bb => strace_6.1.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/strace/{strace_6.0.bb => strace_6.1.bb} (96%) diff --git a/meta/recipes-devtools/strace/strace_6.0.bb

[OE-core] [PATCH 24/77] python3-pycryptodome: upgrade 3.15.0 -> 3.16.0

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-devtools/python/python3-pycryptodome_3.15.0.bb | 5 - meta/recipes-devtools/python/python3-pycryptodome_3.16.0.bb | 5 + 2 files changed, 5 insertions(+), 5 deletions(-) delete mode 100644

[OE-core] [PATCH 40/77] libtest-fatal-perl: upgrade 0.016 -> 0.017

2023-01-04 Thread Alexander Kanavin
License-Update: formatting Signed-off-by: Alexander Kanavin --- ...ibtest-fatal-perl_0.016.bb => libtest-fatal-perl_0.017.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-devtools/perl/{libtest-fatal-perl_0.016.bb => libtest-fatal-perl_0.017.bb} (85%) diff

[OE-core] [PATCH 39/77] libpsl: upgrade 0.21.1 -> 0.21.2

2023-01-04 Thread Alexander Kanavin
License-Update: copyright years Signed-off-by: Alexander Kanavin --- .../libpsl/{libpsl_0.21.1.bb => libpsl_0.21.2.bb} | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) rename meta/recipes-support/libpsl/{libpsl_0.21.1.bb => libpsl_0.21.2.bb} (77%) diff --git

[OE-core] [PATCH 41/77] python3-pathspec: upgrade 0.10.1 -> 0.10.3

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../{python3-pathspec_0.10.1.bb => python3-pathspec_0.10.3.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/python/{python3-pathspec_0.10.1.bb => python3-pathspec_0.10.3.bb} (78%) diff --git

[OE-core] [PATCH 42/77] lsof: upgrade 4.96.4 -> 4.96.5

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-extended/lsof/{lsof_4.96.4.bb => lsof_4.96.5.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-extended/lsof/{lsof_4.96.4.bb => lsof_4.96.5.bb} (96%) diff --git a/meta/recipes-extended/lsof/lsof_4.96.4.bb

[OE-core] [PATCH 43/77] python3-urllib3: upgrade 1.26.12 -> 1.26.13

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../{python3-urllib3_1.26.12.bb => python3-urllib3_1.26.13.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/python/{python3-urllib3_1.26.12.bb => python3-urllib3_1.26.13.bb} (86%) diff --git

[OE-core] [PATCH 44/77] python3-cryptography-vectors: upgrade 38.0.3 -> 38.0.4

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- ...vectors_38.0.3.bb => python3-cryptography-vectors_38.0.4.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/python/{python3-cryptography-vectors_38.0.3.bb => python3-cryptography-vectors_38.0.4.bb} (90%) diff --git

[OE-core] [PATCH 38/77] vte: upgrade 0.70.1 -> 0.70.2

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-support/vte/{vte_0.70.1.bb => vte_0.70.2.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-support/vte/{vte_0.70.1.bb => vte_0.70.2.bb} (94%) diff --git a/meta/recipes-support/vte/vte_0.70.1.bb

[OE-core] [PATCH 46/77] libsdl2: upgrade 2.26.0 -> 2.26.1

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../libsdl2/{libsdl2_2.26.0.bb => libsdl2_2.26.1.bb}| 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-graphics/libsdl2/{libsdl2_2.26.0.bb => libsdl2_2.26.1.bb} (97%) diff --git

[OE-core] [PATCH 45/77] python3-setuptools: upgrade 65.5.1 -> 65.6.3

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../0001-conditionally-do-not-fetch-code-by-easy_install.patch | 2 +- ...ython3-setuptools_65.5.1.bb => python3-setuptools_65.6.3.bb} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-devtools/python/{python3-setuptools_65.5.1.bb

[OE-core] [PATCH 47/77] python3-gitdb: upgrade 4.0.9 -> 4.0.10

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-devtools/python/python-gitdb.inc | 2 +- .../python/{python3-gitdb_4.0.9.bb => python3-gitdb_4.0.10.bb} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/python/{python3-gitdb_4.0.9.bb =>

[OE-core] [PATCH 50/77] python3-sphinx: upgrade 5.3.0 -> 6.0.0

2023-01-04 Thread Alexander Kanavin
License-Update: jquery/underscore are no longer bundled Signed-off-by: Alexander Kanavin --- .../{python3-sphinx_5.3.0.bb => python3-sphinx_6.0.0.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-devtools/python/{python3-sphinx_5.3.0.bb =>

[OE-core] [PATCH 49/77] python3-mako: upgrade 1.2.3 -> 1.2.4

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../python/{python3-mako_1.2.3.bb => python3-mako_1.2.4.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/python/{python3-mako_1.2.3.bb => python3-mako_1.2.4.bb} (85%) diff --git

[OE-core] [PATCH 51/77] libsolv: upgrade 0.7.22 -> 0.7.23

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../libsolv/{libsolv_0.7.22.bb => libsolv_0.7.23.bb}| 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-extended/libsolv/{libsolv_0.7.22.bb => libsolv_0.7.23.bb} (95%) diff --git

[OE-core] [PATCH 52/77] gtk4: upgrade 4.8.2 -> 4.8.3

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-gnome/gtk+/{gtk4_4.8.2.bb => gtk4_4.8.3.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-gnome/gtk+/{gtk4_4.8.2.bb => gtk4_4.8.3.bb} (98%) diff --git a/meta/recipes-gnome/gtk+/gtk4_4.8.2.bb

[OE-core] [PATCH 53/77] librepo: upgrade 1.14.5 -> 1.15.1

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../librepo/{librepo_1.14.5.bb => librepo_1.15.1.bb}| 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/librepo/{librepo_1.14.5.bb => librepo_1.15.1.bb} (94%) diff --git

[OE-core] [PATCH 55/77] python3-lxml: upgrade 4.9.1 -> 4.9.2

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../python/{python3-lxml_4.9.1.bb => python3-lxml_4.9.2.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/python/{python3-lxml_4.9.1.bb => python3-lxml_4.9.2.bb} (95%) diff --git

[OE-core] [PATCH 54/77] ruby: upgrade 3.1.3 -> 3.2.0

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- ...2-Obey-LDFLAGS-for-the-link-of-libruby.patch | 8 .../ruby/0006-Make-gemspecs-reproducible.patch | 17 +++-- .../ruby/{ruby_3.1.3.bb => ruby_3.2.0.bb} | 2 +- 3 files changed, 12 insertions(+), 15 deletions(-) rename

[OE-core] [PATCH 56/77] python3-git: upgrade 3.1.29 -> 3.1.30

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../python/{python3-git_3.1.29.bb => python3-git_3.1.30.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/python/{python3-git_3.1.29.bb => python3-git_3.1.30.bb} (92%) diff --git

[OE-core] [PATCH 58/77] kmscube: upgrade to latest revision

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-graphics/kmscube/kmscube_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-graphics/kmscube/kmscube_git.bb b/meta/recipes-graphics/kmscube/kmscube_git.bb index 6ed97dfafe..b2c10e09fb 100644 ---

[OE-core] [PATCH 57/77] curl: upgrade 7.86.0 -> 7.87.0

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-support/curl/{curl_7.86.0.bb => curl_7.87.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-support/curl/{curl_7.86.0.bb => curl_7.87.0.bb} (98%) diff --git a/meta/recipes-support/curl/curl_7.86.0.bb

[OE-core] [PATCH 59/77] python3-hatch-vcs: upgrade 0.2.0 -> 0.3.0

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../{python3-hatch-vcs_0.2.0.bb => python3-hatch-vcs_0.3.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/python/{python3-hatch-vcs_0.2.0.bb => python3-hatch-vcs_0.3.0.bb} (80%) diff --git

[OE-core] [PATCH 60/77] gobject-introspection: upgrade 1.72.0 -> 1.74.0

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- ...-Relocate-the-repository-directory-for-native-builds.patch | 4 ++-- ...ntrospection_1.72.0.bb => gobject-introspection_1.74.0.bb} | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename

[OE-core] [PATCH 62/77] bash: upgrade 5.2.9 -> 5.2.15

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-extended/bash/{bash_5.2.9.bb => bash_5.2.15.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-extended/bash/{bash_5.2.9.bb => bash_5.2.15.bb} (89%) diff --git a/meta/recipes-extended/bash/bash_5.2.9.bb

[OE-core] [PATCH 61/77] python3-dtschema: upgrade 2022.11 -> 2022.12

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- ...{python3-dtschema_2022.11.bb => python3-dtschema_2022.12.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/python/{python3-dtschema_2022.11.bb => python3-dtschema_2022.12.bb} (83%) diff --git

[OE-core] [PATCH 64/77] python3-jsonschema: upgrade 4.17.0 -> 4.17.3

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- ...ython3-jsonschema_4.17.0.bb => python3-jsonschema_4.17.3.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/python/{python3-jsonschema_4.17.0.bb => python3-jsonschema_4.17.3.bb} (93%) diff --git

[OE-core] [PATCH 48/77] diffoscope: upgrade 224 -> 230

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../diffoscope/{diffoscope_224.bb => diffoscope_230.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-support/diffoscope/{diffoscope_224.bb => diffoscope_230.bb} (92%) diff --git

[OE-core] [PATCH 06/77] gtk+3: update 3.24.35 -> 3.24.36

2023-01-04 Thread Alexander Kanavin
Drop autotools-specific chunks in opengl.patch. Drop add-missing-meson.build.patch (.35 tarball issue) Drop buildpaths.patch (backport) Signed-off-by: Alexander Kanavin --- ...d-introspection-according-to-option-.patch | 34 +++ .../gtk+/gtk+3/add-missing-meson.build.patch | 38

[OE-core] [PATCH 08/77] xcb-util: update 0.4.0 -> 0.4.1

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../xorg-lib/{xcb-util_0.4.0.bb => xcb-util_0.4.1.bb}| 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) rename meta/recipes-graphics/xorg-lib/{xcb-util_0.4.0.bb => xcb-util_0.4.1.bb} (51%) diff --git

[OE-core] [PATCH 07/77] libva-utils: update 2.16.0 -> 2.17.0

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../libva/{libva-utils_2.16.0.bb => libva-utils_2.17.0.bb}| 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/libva/{libva-utils_2.16.0.bb => libva-utils_2.17.0.bb} (90%) diff --git

[OE-core] [PATCH 10/77] gnupg: update 2.3.8 -> 2.4.0

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- ...-a-custom-value-for-the-location-of-.patch | 6 ++-- ...use-pkgconfig-instead-of-npth-config.patch | 6 ++-- .../gnupg/gnupg/fix-ldap.patch| 35 --- .../gnupg/gnupg/relocate.patch| 2 +-

[OE-core] [PATCH 11/77] libksba: update 1.6.2 -> 1.6.3

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../libksba/libksba/ksba-add-pkgconfig-support.patch| 6 +++--- .../libksba/{libksba_1.6.2.bb => libksba_1.6.3.bb} | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) rename meta/recipes-support/libksba/{libksba_1.6.2.bb =>

[OE-core] [PATCH 12/77] man-pages: upgrade 6.01 -> 6.02

2023-01-04 Thread Alexander Kanavin
License-Update: readme rewritten, set of licenses provided explicitly. Of those, there's various bsd flavours, gpl2-and-later and gpl-2-only, so add the latter. Signed-off-by: Alexander Kanavin --- .../man-pages/{man-pages_6.01.bb => man-pages_6.02.bb} | 6 +++--- 1 file changed, 3

[OE-core] [PATCH 13/77] pango: upgrade 1.50.11 -> 1.50.12

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- ...d-install-nofonts-fonts.conf-as-it-i.patch | 35 --- .../{pango_1.50.11.bb => pango_1.50.12.bb}| 3 +- 2 files changed, 1 insertion(+), 37 deletions(-) delete mode 100644

[OE-core] [PATCH 65/77] python3-pycairo: upgrade 1.21.0 -> 1.23.0

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../{python3-pycairo_1.21.0.bb => python3-pycairo_1.23.0.bb}| 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/python/{python3-pycairo_1.21.0.bb => python3-pycairo_1.23.0.bb} (90%) diff --git

[OE-core] [PATCH 66/77] nghttp2: upgrade 1.50.0 -> 1.51.0

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../nghttp2/{nghttp2_1.50.0.bb => nghttp2_1.51.0.bb}| 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-support/nghttp2/{nghttp2_1.50.0.bb => nghttp2_1.51.0.bb} (92%) diff --git

[OE-core] [PATCH 68/77] btrfs-tools: upgrade 6.0.2 -> 6.1

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../btrfs-tools/{btrfs-tools_6.0.2.bb => btrfs-tools_6.1.bb}| 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/btrfs-tools/{btrfs-tools_6.0.2.bb => btrfs-tools_6.1.bb} (98%) diff --git

[OE-core] [PATCH 67/77] python3-certifi: upgrade 2022.9.24 -> 2022.12.7

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- ...ython3-certifi_2022.9.24.bb => python3-certifi_2022.12.7.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/python/{python3-certifi_2022.9.24.bb => python3-certifi_2022.12.7.bb} (86%) diff --git

[OE-core] [PATCH 69/77] python3-hypothesis: upgrade 6.57.1 -> 6.61.0

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- ...ython3-hypothesis_6.57.1.bb => python3-hypothesis_6.61.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/python/{python3-hypothesis_6.57.1.bb => python3-hypothesis_6.61.0.bb} (91%) diff --git

[OE-core] [PATCH 70/77] libsndfile1: upgrade 1.1.0 -> 1.2.0

2023-01-04 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../libsndfile/{libsndfile1_1.1.0.bb => libsndfile1_1.2.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-multimedia/libsndfile/{libsndfile1_1.1.0.bb => libsndfile1_1.2.0.bb} (92%) diff --git

  1   2   >