Re: [oe] [meta-python][PATCH 1/2] python3-pyudev: provide native

2023-12-12 Thread Yoann Congal
Hi,

Le 13/12/2023 à 08:07, Khem Raj a écrit :
> On Tue, 05 Dec 2023 22:50:31 +0800, kai.k...@windriver.com wrote:
>> Add 'native' to BBCLASSEXTEND to provides python3-pyudev-native which is
>> required by lvm2 when package config 'dbus' is enabled.
>>
>>
> 
> Applied, thanks!
> 
> [1/2] python3-pyudev: provide native
>   (no commit info)
> [2/2] lvm2: 2.03.16 -> 2.03.22
>   commit: 02f460c5e379b3b0980374b3f89d55bc195d03d3
I just check on the git repo, this means that only the lvm2 patch was applied 
(but not the pyudev one)

Maybe this case (partial application of a patch series) could be made more 
explicit in your template answer?

Thanks!

> Best regards,
> 
> 
> 
> 
> 

-- 
Yoann Congal
Smile ECS - Tech Expert

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107388): 
https://lists.openembedded.org/g/openembedded-devel/message/107388
Mute This Topic: https://lists.openembedded.org/mt/102992734/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][kirkstone][PATCHv2] libssh: fix CVE-2023-1667 NULL pointer dereference

2023-12-12 Thread Anuj Mittal
On Wed, 2023-12-13 at 12:21 +0530, Hitendra Prajapati via
lists.openembedded.org wrote:
> Upstream-Status: Backport from
> https://git.libssh.org/projects/libssh.git/log/?qt=grep&q=cve-2023-1667
> 
> Signed-off-by: Hitendra Prajapati 
> ---
>  .../libssh/libssh/CVE-2023-1667.patch | 724
> ++
>  .../recipes-support/libssh/libssh_0.8.9.bb    |   1 +
>  2 files changed, 725 insertions(+)
>  create mode 100644 meta-oe/recipes-support/libssh/libssh/CVE-2023-
> 1667.patch
> 
> diff --git a/meta-oe/recipes-support/libssh/libssh/CVE-2023-
> 1667.patch b/meta-oe/recipes-support/libssh/libssh/CVE-2023-
> 1667.patch
> new file mode 100644
> index 00..9be713f5e5
> --- /dev/null
> +++ b/meta-oe/recipes-support/libssh/libssh/CVE-2023-1667.patch
> @@ -0,0 +1,724 @@
> +commit b733df6ddca80b11c2548ca88821b1c353480901
> +Author: Jakub Jelen 
> +Date: Fri Mar 17 14:09:14 2023 +0100
> +Subject: [PATCH] libssh: A NULL pointer dereference was found In
> libssh
> +during re-keying with algorithm guessing. This issue may allow an
> authenticated
> +client to cause a denial of service.
> +
> +Origin: See below commits ids, adapted for buster.
> +

Which commit ids? This is a Debian patch.

> +Upstream-Status: Backport
> [https://git.libssh.org/projects/libssh.git/log/?qt=grep&q=cve-2023-1
> 667]

This doesn't look like a backport of these commits. Did you verify? As
an example, this is in the list but not here:

https://git.libssh.org/projects/libssh.git/commit/?id=4e8db9d44b73b2b2bd77172125f1bdb0b7b172f3

Is there any problem with backporting individual commits? It's easier
to check what is being done that way.

> +CVE: CVE-2023-1667
> +Signed-off-by: Hitendra Prajapati 
> +---
> + include/libssh/curve25519.h |   1 +
> + include/libssh/dh.h |   3 +
> + include/libssh/ecdh.h   |   1 +
> + include/libssh/kex.h    |   2 +-
> + include/libssh/session.h    |  19 ++-
> + src/client.c    |  18 ++-
> + src/curve25519.c    |   5 +
> + src/dh.c    |  32 +
> + src/ecdh.c  |   5 +
> + src/kex.c   | 270 +
> ---
> + src/packet.c    |   5 +
> + src/server.c    |   8 +-
> + 12 files changed, 278 insertions(+), 91 deletions(-)
> +
> +diff --git a/include/libssh/curve25519.h
> b/include/libssh/curve25519.h
> +index 0406b9ee..9a896c06 100644
> +--- a/include/libssh/curve25519.h
>  b/include/libssh/curve25519.h
> +@@ -48,6 +48,7 @@ typedef unsigned char
> ssh_curve25519_privkey[CURVE25519_PRIVKEY_SIZE];
> + 
> + 
> + int ssh_client_curve25519_init(ssh_session session);
> ++void ssh_client_curve25519_remove_callbacks(ssh_session session);
> + int ssh_client_curve25519_reply(ssh_session session, ssh_buffer
> packet);
> + 
> + #ifdef WITH_SERVER
> +diff --git a/include/libssh/dh.h b/include/libssh/dh.h
> +index cfdcfeec..ad6d22db 100644
> +--- a/include/libssh/dh.h
>  b/include/libssh/dh.h
> +@@ -41,8 +41,11 @@ int ssh_dh_import_e(ssh_session session,
> ssh_string e_string);
> + int ssh_dh_import_pubkey_blob(ssh_session session, ssh_string
> pubkey_blob);
> + int ssh_dh_import_next_pubkey_blob(ssh_session session, ssh_string
> pubkey_blob);
> + 
> ++int dh_handshake(ssh_session session);
> ++
> + int ssh_dh_build_k(ssh_session session);
> + int ssh_client_dh_init(ssh_session session);
> ++void ssh_client_dh_remove_callbacks(ssh_session session);
> + int ssh_client_dh_reply(ssh_session session, ssh_buffer packet);
> + 
> + ssh_key ssh_dh_get_current_server_publickey(ssh_session session);
> +diff --git a/include/libssh/ecdh.h b/include/libssh/ecdh.h
> +index 66659b85..3f9d6014 100644
> +--- a/include/libssh/ecdh.h
>  b/include/libssh/ecdh.h
> +@@ -46,6 +46,7 @@ int ssh_client_ecdh_reply(ssh_session session,
> ssh_buffer packet);
> + 
> + /* Backend-specific functions.  */
> + int ssh_client_ecdh_init(ssh_session session);
> ++void ssh_client_ecdh_remove_callbacks(ssh_session session);
> + int ecdh_build_k(ssh_session session);
> + 
> + #ifdef WITH_SERVER
> +diff --git a/include/libssh/kex.h b/include/libssh/kex.h
> +index a626d105..8c1302a0 100644
> +--- a/include/libssh/kex.h
>  b/include/libssh/kex.h
> +@@ -33,7 +33,7 @@ struct ssh_kex_struct {
> + 
> + SSH_PACKET_CALLBACK(ssh_packet_kexinit);
> + 
> +-int ssh_send_kex(ssh_session session, int server_kex);
> ++int ssh_send_kex(ssh_session session);
> + void ssh_list_kex(struct ssh_kex_struct *kex);
> + int ssh_set_client_kex(ssh_session session);
> + int ssh_kex_select_methods(ssh_session session);
> +diff --git a/include/libssh/session.h b/include/libssh/session.h
> +index 23633cc2..3e681c2d 100644
> +--- a/include/libssh/session.h
>  b/include/libssh/session.h
> +@@ -27,6 +27,7 @@
> + #include "libssh/auth.h"
> + #include "libssh/channels.h"
> + #include "libssh/poll.h"
> ++#include 
> + 
> + /* These are the different states a SSH session can be into its
> life */
> + enum ssh_session_state_e {
> +@@ -69,6 

Re: [oe][meta-oe][PATCHv3] terminus-font: build compressed archives with -n

2023-12-12 Thread Khem Raj

On Fri, 08 Dec 2023 13:58:38 +0100, Jean-Marc BOUCHE wrote:
> When building this recipe, internal archives are compressed with
> gzip. The compressed archives contain a header with the field
> MTIME (Modification Time) which is initialized from the built
> date. As a consequence, two builds of this recipe always generate
> packages whose checksum differs.
> Adding the -n option to gzip while compressing the archive does
> not save the original time stamp by default hence making
> reproducible package.
> 
> [...]

Applied, thanks!

[1/1] terminus-font: build compressed archives with -n
  commit: f60e4bfcbee68ea29c2c630b3fa5f4aedf500d95

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107386): 
https://lists.openembedded.org/g/openembedded-devel/message/107386
Mute This Topic: https://lists.openembedded.org/mt/103054057/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [PATCH 01/10] Remove unused SRC_DISTRIBUTE_LICENSES

2023-12-12 Thread Khem Raj

On Fri, 08 Dec 2023 22:32:15 +, ross.bur...@arm.com wrote:
> This variable was removed in oe-core 8c9ef5, and didn't do what any of
> these recipes seem to be using it for.
> 
> 

Applied, thanks!

[01/10] Remove unused SRC_DISTRIBUTE_LICENSES
commit: 9ae31f6f6a67d14da075bceb4a1a9781b140ffe8
[02/10] gspell: inherit gtk-doc
commit: 58194b0b1264bb2f5c80b63edc3348c4fb1a0508
[03/10] gspell: update DEPENDS, switch iso-codes for icu
commit: c3eaf805d2cce97ba2d25b6b4fae6b6ccbdfa114
[04/10] librest: remove spurious build dependencies
commit: 069885e74dace8eea3b71557b26c99e959ce7830
[05/10] librest: inherit gtk-doc
commit: a9cee7a46934d2f305fa458969e96ff7dab8841b
[06/10] keybinder: use autotools-brokensep instead of setting B
commit: 21dbf20b54029eb8babfeb8d7f52f1b78cc560aa
[07/10] keybinder: disable gtk-doc documentation
commit: d015d52ad81115986ac89f45d086820d9027857a
[08/10] gtksourceview3: remove obsolete DEPENDS
commit: f8f5c728a387c9b26a62f30d12c7d71e199d277e
[09/10] libgsf: remove obsolete DEPENDS
commit: 103f49b5fc987e7bb8765700d16bd387a33b62ca
[10/10] evolution-data-server: remove obsolete intltool DEPENDS
commit: 50769bc2f25f20dff422cffb5e0c486578d8eacf

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107385): 
https://lists.openembedded.org/g/openembedded-devel/message/107385
Mute This Topic: https://lists.openembedded.org/mt/103064722/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][PATCH 1/4] libbytesize: Removed unnecessary setting of B

2023-12-12 Thread Khem Raj

On Tue, 12 Dec 2023 23:35:06 +0300, alperak wrote:
> Supports out of tree builds
> 
> 

Applied, thanks!

[1/4] libbytesize: Removed unnecessary setting of B
  commit: b145fdac545f772afa571661a2067e71ecfb3dd5
[2/4] libmxml: use autotools-brokensep instead of setting B
  commit: bfda5e7c70dabc93bbcc18138adab900537d4a0a
[3/4] libsombok3: use autotools-brokensep instead of setting B
  commit: 763fd809cf8f1bbe82d3a3496e4cc30ceefef4b4
[4/4] pgpool2: use autotools-brokensep instead of setting B
  commit: 0a0ea87b8dda01a2887a525cef78eb6c3f4c2c32

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107384): 
https://lists.openembedded.org/g/openembedded-devel/message/107384
Mute This Topic: https://lists.openembedded.org/mt/103137520/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe] [PATCH] minifi-cpp: Fix do_configure error builder aarch64

2023-12-12 Thread Khem Raj

On Tue, 12 Dec 2023 17:38:04 +0800, liezhi.y...@windriver.com wrote:
> Fixed do_configure error when build on aarch64 host:
> error: cannot guess build type; you must specify one
> 
> 

Applied, thanks!

[1/1] minifi-cpp: Fix do_configure error builder aarch64
  commit: adecc463a3c090e5a9c54875a42047a427384f71

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107383): 
https://lists.openembedded.org/g/openembedded-devel/message/107383
Mute This Topic: https://lists.openembedded.org/mt/103126866/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][PATCH] android-tools: remove two Debianisms

2023-12-12 Thread Khem Raj

On Tue, 12 Dec 2023 16:02:40 +0200, Dmitry Baryshkov wrote:
> If the build happens on a Debian system, android-tools build will hang
> forever, filling the log files (and the disk) with the following
> messages:
> 
> make: dpkg-architecture: No such file or directory
> make: dpkg-architecture: No such file or directory
> make: dpkg-architecture: No such file or directory
> make: dpkg-architecture: No such file or directory
> /usr/share/dpkg/architecture.mk:9: pipe: Too many open files
> /usr/share/dpkg/architecture.mk:9: pipe: Too many open files
> /usr/share/dpkg/architecture.mk:9: pipe: Too many open files
> /usr/share/dpkg/architecture.mk:9: pipe: Too many open files
> /usr/share/dpkg/architecture.mk:9: pipe: Too many open files
> 
> [...]

Applied, thanks!

[1/1] android-tools: remove two Debianisms
  commit: 90976455c1f2494b8b2f54db11dc4bc5881accae

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107382): 
https://lists.openembedded.org/g/openembedded-devel/message/107382
Mute This Topic: https://lists.openembedded.org/mt/103129813/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-multimedia][PATCH 1/2] rygel: fix build with gtk+3 PACKAGECONFIG disabled

2023-12-12 Thread Khem Raj

On Tue, 12 Dec 2023 13:57:41 +0100, Martin Jansa wrote:
> * fixes:
>   rygel-0.42.4/meson.build:1:0: ERROR: Value "false" (of type "string") for 
> combo option "gtk" is not one of the choices. Possible choices are (as 
> string): "enabled", "disabled", "auto".
> 
> * possibly changed since:
>   
> https://github.com/GNOME/rygel/commit/7e1819d9e49084c9dc55064a6f21d0f7caa90da6
> 
> 
> [...]

Applied, thanks!

[1/2] rygel: fix build with gtk+3 PACKAGECONFIG disabled
  commit: cdaafdea99c6b49cc56216c6082722e01512a0cd
[2/2] rygel: add x11 to DISTRO_FEATURES
  commit: 23b62b3391f2e605f59e02abb3c99db2a7b82eb5

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107381): 
https://lists.openembedded.org/g/openembedded-devel/message/107381
Mute This Topic: https://lists.openembedded.org/mt/103128854/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-gnome][PATCH] tracker: dont inherit gsettings

2023-12-12 Thread Khem Raj

On Sat, 09 Dec 2023 18:09:03 +0100, Markus Volk wrote:
> this fixes an issue I encountered on raspberrypi4-64 at do_rootfs:
> ERROR: hyprland-image-1.0-r0 do_rootfs: Postinstall scriptlets of ['tracker'] 
> have failed. If the intention is to defer them to first boot,
> then please place them into pkg_postinst_ontarget:${PN} ().
> Deferring to first boot via 'exit 1' is no longer supported.
> Details of the failure are in 
> /home/flk/poky/build-raspi/tmp/work/raspberrypi4_64-poky-linux/hyprland-image/1.0/temp/log.do_rootfs.
> ERROR: Logfile of failure stored in: 
> /home/flk/poky/build-raspi/tmp/work/raspberrypi4_64-poky-linux/hyprland-image/1.0/temp/log.do_rootfs.629667
> ERROR: Task 
> (/home/flk/poky/meta-hyprland-image/recipes-core/images/hyprland-image.bb:do_rootfs)
>  failed with exit code '1'
> 
> [...]

Applied, thanks!

[1/1] tracker: dont inherit gsettings
  commit: 602306d4bdfdd0d636103c6037b8627be385ba54

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107380): 
https://lists.openembedded.org/g/openembedded-devel/message/107380
Mute This Topic: https://lists.openembedded.org/mt/103076498/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][PATCHv4] xsetroot: upgrade 1.1.2 -> 1.1.3

2023-12-12 Thread Khem Raj

On Fri, 08 Dec 2023 15:56:33 +0300, alperak wrote:
> By default, xsetroot depends on libxmu and xbitmaps
> 
> xsetroot dependencies -> 
> https://gitlab.freedesktop.org/xorg/app/xsetroot/-/blob/master/configure.ac?ref_type=heads#L41
> 
> xbitmaps has no dependency on libxmu but it was added as a dependency in 
> version 1.1.2. When upgrading xbitmaps to version 1.1.3, libxmu removed from 
> the dependencies
> Since xsetroot depends on xbitmaps, and libxmu was removed from xbitmaps 
> dependencies, encountered missing libxmu dependencies error.
> 
> [...]

Applied, thanks!

[1/1] xsetroot: upgrade 1.1.2 -> 1.1.3
  commit: 1a84a1ebbe197552077b4610c6fdcd459532113e

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107379): 
https://lists.openembedded.org/g/openembedded-devel/message/107379
Mute This Topic: https://lists.openembedded.org/mt/103054018/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][PATCHv2] snappy: upgrade 1.1.9 -> 1.1.10

2023-12-12 Thread Khem Raj

On Fri, 08 Dec 2023 11:29:52 +0300, alperak wrote:
> * 0001-Add-inline-with-SNAPPY_ATTRIBUTE_ALWAYS_INLINE.patch removed because 
> fixed in the new version
> * Added fix-build-on-32bit-arm.patch to fix arm build
> 
> Changelog:
> 
> * Performance improvements
> * Compilation fixes for various environments
> 
> [...]

Applied, thanks!

[1/1] snappy: upgrade 1.1.9 -> 1.1.10
  commit: 0f0c4c96d90d0eaf78ef6fa93a150dd5fa8fa182

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107377): 
https://lists.openembedded.org/g/openembedded-devel/message/107377
Mute This Topic: https://lists.openembedded.org/mt/103051554/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-gnome][PATCH] zenity: Upgrade to 4.0.0

2023-12-12 Thread Khem Raj

On Fri, 08 Dec 2023 10:50:09 +0100, Zoltán Böszörményi wrote:
> zenity 4.x now uses GTK4 and GTK4-based webkitgtk.
> 
> The perl based gdialog is no more, its subpackage would be empty.
> Don't try to generate this subpackage.
> 
> 

Applied, thanks!

[1/1] zenity: Upgrade to 4.0.0
  commit: 0f9e5d1f9b62af785a65c1d5e6ab3b5d11befbff

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107378): 
https://lists.openembedded.org/g/openembedded-devel/message/107378
Mute This Topic: https://lists.openembedded.org/mt/103052243/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [PATCH] abseil-cpp: remove -Dcmake_cxx_standard=14 flag from extra_oecmake

2023-12-12 Thread Khem Raj

On Fri, 08 Dec 2023 08:47:57 +0300, Petr Chernikov wrote:
> Old versions of abseil-cpp could not be compiled using C++ Standard 17.
> For now this cmake flag is not needed.
> Mosh compilation fixed by specifying c++17 standard.
> 
> 

Applied, thanks!

[1/1] abseil-cpp: remove -Dcmake_cxx_standard=14 flag from extra_oecmake
  commit: 190f7b50ac3d7d30cf9d31167fb74f7146c3c8ff

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107376): 
https://lists.openembedded.org/g/openembedded-devel/message/107376
Mute This Topic: https://lists.openembedded.org/mt/102970930/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][PATCHv2] xf86-video-mga: upgrade 2.0.0 -> 2.0.1

2023-12-12 Thread Khem Raj

On Thu, 07 Dec 2023 21:32:54 +0300, alperak wrote:
> * checkfile.patch removed because fixed in the new version -> 
> https://gitlab.freedesktop.org/xorg/driver/xf86-video-mga/-/commit/f227f2f286123a9ca64b567783825a2c18b87971
> * License-Update: Fixed the typo in a word. "MERCHANTIBILITY" -> 
> "MERCHANTABILITY"
> 
> Changelog:
> 
> * Fix uninitialized read in MGAEnableSecondOutPut
> * gitlab CI: add a basic build test
> * Fix spelling/wording issues
> * Build xz tarballs instead of bzip2
> * configure.ac: fix cross-compilation
> 
> [...]

Applied, thanks!

[1/1] xf86-video-mga: upgrade 2.0.0 -> 2.0.1
  commit: f3c7c83bf40cd59ba9ba954ebceaaa68dd7f7bd7

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107375): 
https://lists.openembedded.org/g/openembedded-devel/message/107375
Mute This Topic: https://lists.openembedded.org/mt/103039905/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][PATCH] ostree: Upgrade 2023.7 -> 2023.8

2023-12-12 Thread Khem Raj

On Thu, 07 Dec 2023 18:20:23 +, Jose Quaresma wrote:
> $ git --no-pager log --oneline v2023.8...v2023.7
> 5b23804a (tag: v2023.8) Release 2023.8
> 6e303318 Merge pull request #3106 from cgwalters/commit-reflink
> c3dff62e commit: Try reflinks for local commits by default
> 59b9f9a8 Merge pull request #3105 from cgwalters/sysroot-borrow-fd
> 09e32d61 Merge pull request #3107 from cgwalters/drop-userxattr-test
> bab87cbd tests: Drop bare-user on tmpfs negative test
> 15d0777b Merge pull request #3104 from cgwalters/s390x-target
> c3aa2958 bootloader/zipl: Run in target deployment as container if needed
> aa635bf5 sysroot: Expose deployment runner outside of selinux
> e794a0c0 Merge pull request #3103 from cgwalters/tmpfiles-factory-var
> d3190dbf sysroot: Add a method to borrow sysroot fd
> 74456972 sysroot: Support specifying bwrap arguments
> 791337fa sysroot: Expose deployment container executor internally
> 66064d96 tmpfiles: Copy `/usr/share/factory/var` to `/var`
> b0be2336 Merge pull request #3102 from cgwalters/deploy-cleanup-run
> 68cc1960 sysroot/deploy: Drop unnecessary g_ptr_array_free
> 31cbcc72 deploy: Use NULL terminated strv
> 5cc78fd7 Merge pull request #3100 from cgwalters/misc-finalization
> d3de3a0a tests: Add a dedicated finalization test
> d24714e3 Merge pull request #3101 from cgwalters/drop-redundant-includes
> 0c85e1ff main: Drop some redundant includes of `ot-main.h`
> 78905ffb man: Two finalization fixes
> 12cbb3dd Merge pull request #3090 from cgwalters/stabilize-locking
> 28cc7618 sysroot: Stabilize deployment finalization, add API and CLI
> 1ca4f02a status: Add error prefix for gpg verification
> b6f435fe tests: Turn off gpg verification for dev builds
> ff7e7f47 Merge pull request #3099 from markmc/man-sysroot-readonly
> 2cfa8aba man: improve sysroot.readonly docs
> cd1728a4 Merge pull request #3098 from jlebon/pr/abort-concurrent
> 8002983d ci: cancel previous build on PR update
> de22914e Merge pull request #3097 from cgwalters/symbol-cleanups
> 315cbdd3 lib: Don't hardcode year in sample symver section
> 76e4833d devel: Fix symbol versioning number
> 82392e3f Merge pull request #3095 from alexlarsson/fix-post-copy-symlinks
> acb88600 Fix admin post-copy handling of symlinks
> 508443f7 Merge pull request #3094 from alexlarsson/admin-deploy-post-copy
> accb1f06 Add `ostree admin post-copy` command
> 29973774 Merge pull request #3091 from cgwalters/fix-soup3
> bc62fd51 unlock: Don't pass options again to overlayfs
> 331bc17e Merge pull request #3093 from cgwalters/rust-alias-stateroot
> c668a8c5 tests: Work around systemd regression for boot id parsing
> 3535b58f rust: Add a `stateroot()` alias in the Rust bindings
> ce2a33e8 build-sys: Enable libsoup3 by default if installed
> 2c774deb Merge pull request #3089 from cgwalters/fix-undeploy-parsing
> c3cf5b23 undeploy: Parse integer more properly
> e4b82c4a Merge pull request #3080 from nikita-dubrovskii/s390x_secure_boot
> c3a9a642 lib/bootloader-zipl: Check for Secure Boot before zipl
> 67ccf6e0 Merge pull request #3085 from cgwalters/s390x-units
> 75c7e51a bootloader/zipl: No-op if run as non-root
> cfb63b89 Merge pull request #3083 from cgwalters/release
> 36d96931 configure: post-release version bump
> 
> [...]

Applied, thanks!

[1/1] ostree: Upgrade 2023.7 -> 2023.8
  commit: e7c94af6b2ef272616f888568601138bbb70a904

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107374): 
https://lists.openembedded.org/g/openembedded-devel/message/107374
Mute This Topic: https://lists.openembedded.org/mt/103039658/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-gnome][PATCH v2] mutter: Make gnome-desktop and libcanberra dependencies optional

2023-12-12 Thread Khem Raj

On Thu, 07 Dec 2023 16:33:54 +0100, Zoltán Böszörményi wrote:
> mutter may be used as a standalone compositor and even an X11 WM
> without the complete GNOME desktop environment. Make this optional
> and add the new control knob to PACKAGECONFIG by default.
> 
> The built-in sound player functionality depends on libcanberra
> which is considered outdated. Make this optional.
> 
> [...]

Applied, thanks!

[1/1] mutter: Make gnome-desktop and libcanberra dependencies optional
  commit: d6f689da36fe88110d0fb7cad9a1bd84524d9e8c

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107372): 
https://lists.openembedded.org/g/openembedded-devel/message/107372
Mute This Topic: https://lists.openembedded.org/mt/103036187/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-python][PATCH] python3-flask-sqlalchemy: upgrade 2.5.1 -> 3.1.1

2023-12-12 Thread Khem Raj

On Thu, 07 Dec 2023 11:11:28 -0700, Theodore A. Roth wrote:
> The 2.5.1 release is not comptabile with python3-sqlalchemy 2.0.23 which
> is currently provided by meta-openembedded. This results in the
> following error:
> 
>   root@host:~# python3
>   Python 3.11.5 (main, Aug 24 2023, 12:23:19) [GCC 13.2.0] on linux
>   Type "help", "copyright", "credits" or "license" for more information.
>   >>> from flask_sqlalchemy import SQLAlchemy
>   >>> from flask import Flask
>   >>> app = Flask('foobar')
>   >>> app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:tmp/test.db'
>   >>> db = SQLAlchemy(app)
>   Traceback (most recent call last):
> File "", line 1, in 
> File "/usr/lib/python3.11/site-packages/flask_sqlalchemy/__init__.py", 
> line 758, in __init__
>   _include_sqlalchemy(self, query_class)
> File "/usr/lib/python3.11/site-packages/flask_sqlalchemy/__init__.py", 
> line 112, in _include_sqlalchemy
>   for key in module.__all__:
>  ^^
>   AttributeError: module 'sqlalchemy' has no attribute '__all__'. Did you 
> mean: '__file__'?
> 
> [...]

Applied, thanks!

[1/1] python3-flask-sqlalchemy: upgrade 2.5.1 -> 3.1.1
  commit: e351a50f8b001abe5ee3d92de5d8f173b74f758a

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107373): 
https://lists.openembedded.org/g/openembedded-devel/message/107373
Mute This Topic: https://lists.openembedded.org/mt/103039454/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][PATCH] xf86-input-void: upgrade 1.4.1 -> 1.4.2

2023-12-12 Thread Khem Raj

On Thu, 07 Dec 2023 15:25:06 +0300, alperak wrote:
> Changelog:
> 
> * InitValuatorAxisStruct: Add missing line breaks
> * InputDriverRec: Resolve -Wmissing-field-initializers warning
> * gitlab CI: stop requiring Signed-off-by in commits
> * gitlab CI: add a basic build test
> * Build xz tarballs instead of bzip2
> * Update configure.ac bug URL for gitlab migration
> * Update README for gitlab migration
> * autogen: add default patch prefix
> * autogen.sh: use quoted string variables
> * autogen.sh: use exec instead of waiting for configure to finish
> 
> [...]

Applied, thanks!

[1/1] xf86-input-void: upgrade 1.4.1 -> 1.4.2
  commit: 0cbede2b252919f75b4b657427f969e8a11d5699

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107370): 
https://lists.openembedded.org/g/openembedded-devel/message/107370
Mute This Topic: https://lists.openembedded.org/mt/103032918/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][PATCH] libxaw: upgrade 1.0.14 -> 1.0.15

2023-12-12 Thread Khem Raj

On Thu, 07 Dec 2023 15:56:14 +0300, alperak wrote:
> XORG_EXT tar.bz2 removed because not supported in the new version. The 
> default value defined in xorg-lib-common.inc will be used, i.e. tar.xz
> 
> Changelog:
> 
> * configure: Use LT_INIT from libtool 2 instead of deprecated AC_PROG_LIBTOOL
> * Replace calls to index() with strchr()
> * Add .git-blame-ignore-revs to hide whitespace commits from git blame
> * Remove "All rights reserved" from Oracle copyright notices
> * fix typo in XawMax parameter in GetBlockBoundaries
> * Stop memory leak in error paths in XawTextSinkConvertPropertyList()
> * Stop memory leak in GetResourcePixmapPath()
> * Fix ctype(3) users.
> * Fix spelling/wording issues
> * gitlab CI: add a basic build test
> * Build xz tarballs instead of bzip2
> 
> [...]

Applied, thanks!

[1/1] libxaw: upgrade 1.0.14 -> 1.0.15
  commit: 97f91bdbb0cd1a52f56ad9d3a6ada15e6f47a213

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107371): 
https://lists.openembedded.org/g/openembedded-devel/message/107371
Mute This Topic: https://lists.openembedded.org/mt/103033281/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][PATCHv2] xorg-sgml-doctools: update summary depends and inc file

2023-12-12 Thread Khem Raj

On Thu, 07 Dec 2023 11:00:21 +0300, alperak wrote:
> 


Applied, thanks!

[1/1] xorg-sgml-doctools: update summary depends and inc file
  commit: 959f6a5da8e15d628be5cb5bc836b32561184f05

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107368): 
https://lists.openembedded.org/g/openembedded-devel/message/107368
Mute This Topic: https://lists.openembedded.org/mt/103030503/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][PATCH] xf86-video-ati: upgrade 19.1.0 -> 22.0.0

2023-12-12 Thread Khem Raj

On Thu, 07 Dec 2023 15:08:10 +0300, alperak wrote:
> * SRC_URI && features_check removed because already defined in 
> xorg-driver-common.inc
> 
> Changelog:
> 
> * Don't set SourceValidate pointer to NULL
> * radeon_glamor_wrappers.c: Convert from ISO-8859-1 to UTF-8
> * gitlab CI: enable gitlab's builtin static analysis
> * gitlab CI: enable commit & merge request checks
> * Fix spelling/wording issues
> * Build xz tarballs instead of bzip2
> * Only include dri.h with older versions of xserver
> * Add GitLab CI pipeline
> * Guard local variable info only used with glamor
> * ati: cleanup terminology to use primary/secondary
> * Fix return value check of drmIoctl()
> * Don't crash X server if GPU acceleration is not available
> * Handle NULL fb_ptr in pixmap_get_fb
> * Fix link failure with gcc 10
> 
> [...]

Applied, thanks!

[1/1] xf86-video-ati: upgrade 19.1.0 -> 22.0.0
  commit: 689d87cd1fda0d7b6ab5f0bb7eac5fe49c1622ea

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107369): 
https://lists.openembedded.org/g/openembedded-devel/message/107369
Mute This Topic: https://lists.openembedded.org/mt/103032713/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][PATCH] xorg-docs: add recipe

2023-12-12 Thread Khem Raj

On Thu, 07 Dec 2023 10:48:48 +0300, alperak wrote:
> Provides miscellaneous documentation for the X Window System that doesn't 
> better fit into other packages.
> The preferred documentation format for these documents is DocBook XML.
> 
> 

Applied, thanks!

[1/1] xorg-docs: add recipe
  commit: 90e272d06cf92b2e987d8d8f8c12417e2dc911ce

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107367): 
https://lists.openembedded.org/g/openembedded-devel/message/107367
Mute This Topic: https://lists.openembedded.org/mt/103030416/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][PATCH] xbitmaps: upgrade 1.1.2 -> 1.1.3

2023-12-12 Thread Khem Raj

On Wed, 06 Dec 2023 23:41:07 +0300, alperak wrote:
> Changelog:
> 
> * Switch to XORG_DEFAULT_NOCODE_OPTIONS
> * gitlab CI: stop requiring Signed-off-by in commits
> * Build xz tarballs instead of bzip2
> * gitlab CI: add a basic build test
> * Update configure.ac bug URL for gitlab migration
> * Update README for gitlab migration
> 
> [...]

Applied, thanks!

[1/1] xbitmaps: upgrade 1.1.2 -> 1.1.3
  commit: 5430b16813c87dc5d69a2ae21bc6d5f2b73cd8d5

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107365): 
https://lists.openembedded.org/g/openembedded-devel/message/107365
Mute This Topic: https://lists.openembedded.org/mt/103021661/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][PATCH] xcursor-themes: add recipe

2023-12-12 Thread Khem Raj

On Wed, 06 Dec 2023 23:44:33 +0300, alperak wrote:
> Default set of cursor themes for use with libXcursor
> 
> 

Applied, thanks!

[1/1] xcursor-themes: add recipe
  commit: da5e4c5eb2f0759da570d4fa76acfd09f0898565

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107366): 
https://lists.openembedded.org/g/openembedded-devel/message/107366
Mute This Topic: https://lists.openembedded.org/mt/103021758/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-multimedia][PATCH] wireplumber: update 0.4.15 -> 0.4.17

2023-12-12 Thread Khem Raj

On Wed, 06 Dec 2023 20:01:08 +0100, Markus Volk wrote:
> WirePlumber 0.4.17
> 
> Fixes:
> Fixed a reference counting issue in the object managers that could cause
> crashes due to memory corruption (#534)
> Fixed an issue with filters linking to wrong targets, often with two sets
> of links (#536)
> Fixed a crash in the endpoints policy that would show up when log messages
> were enabled at level 3 or higher
> 
> [...]

Applied, thanks!

[1/1] wireplumber: update 0.4.15 -> 0.4.17
  commit: f95ba6d0742a550c43ede57f04baeb6a6b98538a

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107364): 
https://lists.openembedded.org/g/openembedded-devel/message/107364
Mute This Topic: https://lists.openembedded.org/mt/103019524/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][PATCH] monocypher: pass LIBDIR to fix installed-vs-shipped QA issue with multilib

2023-12-12 Thread Khem Raj

On Wed, 06 Dec 2023 18:54:53 +0100, Martin Jansa wrote:
> * fixes:
> ERROR: monocypher-4.0.2-r0 do_package: QA Issue: monocypher: 
> Files/directories were installed but not shipped in any package:
>   /usr/lib/libmonocypher.so
>   /usr/lib/libmonocypher.so.4
>   /usr/lib/libmonocypher.a
>   /usr/lib/pkgconfig
>   /usr/lib/pkgconfig/monocypher.pc
> Please set FILES such that these items are packaged. Alternatively if they 
> are unneeded, avoid installing them or delete them within do_install.
> monocypher: 5 installed and not shipped files. [installed-vs-shipped]
> 
> [...]

Applied, thanks!

[1/1] monocypher: pass LIBDIR to fix installed-vs-shipped QA issue with multilib
  commit: 0cda5a8fb9fb5bc309ba470fceccf65e8bd121d2

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107363): 
https://lists.openembedded.org/g/openembedded-devel/message/107363
Mute This Topic: https://lists.openembedded.org/mt/103018099/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][PATCH] sessreg: upgrade 1.1.2 -> 1.1.3

2023-12-12 Thread Khem Raj

On Wed, 06 Dec 2023 17:17:27 +0300, alperak wrote:
> Changelog:
> 
> * Fix -Wstringop-truncation warnings in safe_strncpy()
> * gitlab CI: stop requiring Signed-off-by in commits
> * Build xz tarballs instead of bzip2
> * gitlab CI: add a basic build test
> * Fix spelling/wording issues
> 
> [...]

Applied, thanks!

[1/1] sessreg: upgrade 1.1.2 -> 1.1.3
  commit: 5ec9943b2d67692e07ea09b807332463209489be

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107361): 
https://lists.openembedded.org/g/openembedded-devel/message/107361
Mute This Topic: https://lists.openembedded.org/mt/103013190/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][PATCH] sip: Upgrade 6.7.12 -> 6.8.0

2023-12-12 Thread Khem Raj

On Wed, 06 Dec 2023 17:52:17 +0200, Leon Anavi wrote:
> Add runtime dependencies and upgrade sip to version 6.8.0:
> 
> - Added support for specifying the project metadata using the
>   [project] section of pyproject.toml as defined in PEP 621. The
>   use of the [tool.sip.metadata] is now deprecated.
> - The latest version of ABI v13 is v13.7.0.
> - The latest version of ABI v12 is v12.14.0.
> - The conversion to a pure Python implementation is now complete.
> 
> [...]

Applied, thanks!

[1/1] sip: Upgrade 6.7.12 -> 6.8.0
  commit: 61cd30fc786fe95c47ca59e800224382d3bd763e

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107362): 
https://lists.openembedded.org/g/openembedded-devel/message/107362
Mute This Topic: https://lists.openembedded.org/mt/103015329/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][PATCH] xkbevd: upgrade 1.1.4 -> 1.1.5

2023-12-12 Thread Khem Raj

On Wed, 06 Dec 2023 16:42:39 +0300, alperak wrote:
> Changelog:
> 
> * Add .git-blame-ignore-revs to hide whitespace commits from git blame
> * eventTypeToString: remove unnecessary strcpy to static buffer
> * xkbevd.c: Update default DFLT_XKB_CONFIG_ROOT path
> * cfgscan: check if character is EOF before calling isalpha or isdigit
> * Rename shadowed variables
> * Variable scope reduction as suggested by cppcheck
> * gitlab CI: stop requiring Signed-off-by in commits
> * man page: remove out-of-date COPYRIGHT section
> * Build xz tarballs instead of bzip2
> * gitlab CI: add a basic build test
> * Update configure.ac bug URL for gitlab migration
> * Update README for gitlab migration
> * autogen: add default patch prefix
> * autogen.sh: use quoted string variables
> * autogen.sh: use exec instead of waiting for configure to finish
> 
> [...]

Applied, thanks!

[1/1] xkbevd: upgrade 1.1.4 -> 1.1.5
  commit: 709484dd74246baa37d31e5553c095ce22e2c0cc

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107359): 
https://lists.openembedded.org/g/openembedded-devel/message/107359
Mute This Topic: https://lists.openembedded.org/mt/103012476/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][PATCH] xgamma: upgrade 1.0.6 -> 1.0.7

2023-12-12 Thread Khem Raj

On Wed, 06 Dec 2023 16:49:16 +0300, alperak wrote:
> Changelog:
> 
> * Use strtof() if available, instead of casting atof() to float
> * Refactor to reduce code duplication
> * Resolve -Wdouble-promotion warnings from clang
> * Build xz tarballs instead of bzip2
> * gitlab CI: add a basic build test
> * Update configure.ac bug URL for gitlab migration
> * Update README for gitlab migration
> * autogen: add default patch prefix
> * autogen.sh: use quoted string variables
> * autogen.sh: use exec instead of waiting for configure to finish
> 
> [...]

Applied, thanks!

[1/1] xgamma: upgrade 1.0.6 -> 1.0.7
  commit: b86d42b95120917f0d7388c8521fb3559666d0b4

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107360): 
https://lists.openembedded.org/g/openembedded-devel/message/107360
Mute This Topic: https://lists.openembedded.org/mt/103012574/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][PATCH] xlsclients: upgrade 1.1.4 -> 1.1.5

2023-12-12 Thread Khem Raj

On Wed, 06 Dec 2023 16:24:35 +0300, alperak wrote:
> Changelog:
> 
> * Resolve implicit conversion warnings from clang
> * usage: add cold & noreturn attributes to function
> * Handle -Wsign-compare warnings
> * Quiet -Wmaybe-uninitialized warnings from gcc
> * gitlab CI: stop requiring Signed-off-by in commits
> * Build xz tarballs instead of bzip2
> * gitlab CI: add a basic build test
> * Update configure.ac bug URL for gitlab migration
> * Update README for gitlab migration
> 
> [...]

Applied, thanks!

[1/1] xlsclients: upgrade 1.1.4 -> 1.1.5
  commit: 5b20a3c8f2b5c2f9c5270af964b08797c762d426

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107357): 
https://lists.openembedded.org/g/openembedded-devel/message/107357
Mute This Topic: https://lists.openembedded.org/mt/103012196/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][PATCH] xlsatoms: upgrade 1.1.3 -> 1.1.4

2023-12-12 Thread Khem Raj

On Wed, 06 Dec 2023 16:30:08 +0300, alperak wrote:
> Changelog:
> 
> * usage: add cold & noreturn attributes to function
> * Resolve clang -Wshorten-64-to-32 warnings
> * Variable scope reductions as suggested by cppcheck
> * gitlab CI: stop requiring Signed-off-by in commits
> * Build xz tarballs instead of bzip2
> * gitlab CI: add a basic build test
> 
> [...]

Applied, thanks!

[1/1] xlsatoms: upgrade 1.1.3 -> 1.1.4
  commit: f0a0c85b75af398d1c78151c7ae6172771fde2c0

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107358): 
https://lists.openembedded.org/g/openembedded-devel/message/107358
Mute This Topic: https://lists.openembedded.org/mt/103012266/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][PATCHv2] xsetroot: upgrade 1.1.2 -> 1.1.3

2023-12-12 Thread Khem Raj

On Wed, 06 Dec 2023 16:17:38 +0300, alperak wrote:
> Changelog:
> 
> * gitlab CI: stop requiring Signed-off-by in commits
> * Handle -Wsign-compare warnings
> * Variable scope reductions as recommended by cppcheck
> * Build xz tarballs instead of bzip2
> * CI: add a basic build test
> * Update configure.ac bug URL for gitlab migration
> * Update README for gitlab migration
> 
> [...]

Applied, thanks!

[1/1] xsetroot: upgrade 1.1.2 -> 1.1.3
  commit: 1a84a1ebbe197552077b4610c6fdcd459532113e

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107356): 
https://lists.openembedded.org/g/openembedded-devel/message/107356
Mute This Topic: https://lists.openembedded.org/mt/103012095/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][PATCHv2] xcursorgen: upgrade 1.0.7 -> 1.0.8

2023-12-12 Thread Khem Raj

On Wed, 06 Dec 2023 16:03:09 +0300, alperak wrote:
> Changelog:
> 
> * Resolve -Wsign-conversion warnings from clang
> * Handle -Wimplicit-int-conversion warnings from clang
> * premultiply_data(): Mark png argument unused
> * gitlab CI: stop requiring Signed-off-by in commits
> * Build xz tarballs instead of bzip2
> * gitlab CI: add a basic build test
> 
> [...]

Applied, thanks!

[1/1] xcursorgen: upgrade 1.0.7 -> 1.0.8
  commit: 952f79330eb2396583547ca81cb76b841ab0e932

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107354): 
https://lists.openembedded.org/g/openembedded-devel/message/107354
Mute This Topic: https://lists.openembedded.org/mt/103011902/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][PATCHv2] xstdcmap: upgrade 1.0.4 -> 1.0.5

2023-12-12 Thread Khem Raj

On Wed, 06 Dec 2023 16:13:14 +0300, alperak wrote:
> Changelog:
> 
> * Remove unneeded variable initializations
> * Remove unnecessary cast of XFree() argument
> * Use C99 loop variable declarations
> * gitlab CI: stop requiring Signed-off -by in commits
> * Build xz tarballs instead of bzip2
> * gitlab CI: add a basic build test
> 
> [...]

Applied, thanks!

[1/1] xstdcmap: upgrade 1.0.4 -> 1.0.5
  commit: 40daa8ca7c6c7db184b2fd1d2af7c132ad0e6d54

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107355): 
https://lists.openembedded.org/g/openembedded-devel/message/107355
Mute This Topic: https://lists.openembedded.org/mt/103012042/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-gnome][PATCH] mutter: Make gnome-desktop and libcanberra dependencies optional

2023-12-12 Thread Khem Raj

On Wed, 06 Dec 2023 12:49:41 +0100, Zoltán Böszörményi wrote:
> mutter may be used as a standalone compositor and even an X11 WM
> without the complete GNOME desktop environment. Make this optional
> and add the new control knob to PACKAGECONFIG by default.
> 
> The built-in sound player functionality depends on libcanberra
> which is considered outdated. Make this optional.
> 
> [...]

Applied, thanks!

[1/1] mutter: Make gnome-desktop and libcanberra dependencies optional
  commit: d6f689da36fe88110d0fb7cad9a1bd84524d9e8c

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107353): 
https://lists.openembedded.org/g/openembedded-devel/message/107353
Mute This Topic: https://lists.openembedded.org/mt/103010968/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [PATCH v2] lvm2: 2.03.16 -> 2.03.22

2023-12-12 Thread Khem Raj

On Wed, 06 Dec 2023 10:24:46 +0800, kai.k...@windriver.com wrote:
> Update lvm2 from 2.03.16 to 2.03.22.
> 
> * remove 0002-Guard-use-of-mallinfo-with-__GLIBC__.patch which has done
>   in upstream already
> * add patch to check egrep & grep
> * rebase patches
> * add package config 'dbus' and fix errors about it
> 
> [...]

Applied, thanks!

[1/1] lvm2: 2.03.16 -> 2.03.22
  commit: 02f460c5e379b3b0980374b3f89d55bc195d03d3

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107352): 
https://lists.openembedded.org/g/openembedded-devel/message/107352
Mute This Topic: https://lists.openembedded.org/mt/103006129/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-python][PATCH 1/2] python3-pyudev: provide native

2023-12-12 Thread Khem Raj

On Tue, 05 Dec 2023 22:50:31 +0800, kai.k...@windriver.com wrote:
> Add 'native' to BBCLASSEXTEND to provides python3-pyudev-native which is
> required by lvm2 when package config 'dbus' is enabled.
> 
> 

Applied, thanks!

[1/2] python3-pyudev: provide native
  (no commit info)
[2/2] lvm2: 2.03.16 -> 2.03.22
  commit: 02f460c5e379b3b0980374b3f89d55bc195d03d3

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107351): 
https://lists.openembedded.org/g/openembedded-devel/message/107351
Mute This Topic: https://lists.openembedded.org/mt/102992734/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [PATCH] abseil-cpp: remove -Dcmake_cxx_standard=14 flag from extra_oecmake

2023-12-12 Thread Khem Raj

On Mon, 04 Dec 2023 17:18:56 +0300, Petr Chernikov wrote:
> Old versions of abseil-cpp could not be compiled using C++ Standard 17.
> For now this cmake flag is not needed.
> 
> 

Applied, thanks!

[1/1] abseil-cpp: remove -Dcmake_cxx_standard=14 flag from extra_oecmake
  commit: 190f7b50ac3d7d30cf9d31167fb74f7146c3c8ff

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107350): 
https://lists.openembedded.org/g/openembedded-devel/message/107350
Mute This Topic: https://lists.openembedded.org/mt/102970930/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][PATCH] snappy: upgrade 1.1.9 -> 1.1.10

2023-12-12 Thread Khem Raj

On Mon, 04 Dec 2023 10:53:56 +0300, alperak wrote:
> * 0001-Add-inline-with-SNAPPY_ATTRIBUTE_ALWAYS_INLINE.patch removed because 
> fixed in the new version
> 
> Changelog:
> 
> * Performance improvements
> * Compilation fixes for various environments
> 
> [...]

Applied, thanks!

[1/1] snappy: upgrade 1.1.9 -> 1.1.10
  commit: 0f0c4c96d90d0eaf78ef6fa93a150dd5fa8fa182

Best regards,
-- 
Khem Raj 


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107349): 
https://lists.openembedded.org/g/openembedded-devel/message/107349
Mute This Topic: https://lists.openembedded.org/mt/102966758/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[oe] [meta-oe][kirkstone][PATCHv2] libssh: fix CVE-2023-1667 NULL pointer dereference

2023-12-12 Thread Hitendra Prajapati via lists.openembedded.org
Upstream-Status: Backport from 
https://git.libssh.org/projects/libssh.git/log/?qt=grep&q=cve-2023-1667

Signed-off-by: Hitendra Prajapati 
---
 .../libssh/libssh/CVE-2023-1667.patch | 724 ++
 .../recipes-support/libssh/libssh_0.8.9.bb|   1 +
 2 files changed, 725 insertions(+)
 create mode 100644 meta-oe/recipes-support/libssh/libssh/CVE-2023-1667.patch

diff --git a/meta-oe/recipes-support/libssh/libssh/CVE-2023-1667.patch 
b/meta-oe/recipes-support/libssh/libssh/CVE-2023-1667.patch
new file mode 100644
index 00..9be713f5e5
--- /dev/null
+++ b/meta-oe/recipes-support/libssh/libssh/CVE-2023-1667.patch
@@ -0,0 +1,724 @@
+commit b733df6ddca80b11c2548ca88821b1c353480901
+Author: Jakub Jelen 
+Date: Fri Mar 17 14:09:14 2023 +0100
+Subject: [PATCH] libssh: A NULL pointer dereference was found In libssh
+during re-keying with algorithm guessing. This issue may allow an authenticated
+client to cause a denial of service.
+
+Origin: See below commits ids, adapted for buster.
+
+Upstream-Status: Backport 
[https://git.libssh.org/projects/libssh.git/log/?qt=grep&q=cve-2023-1667]
+CVE: CVE-2023-1667
+Signed-off-by: Hitendra Prajapati 
+---
+ include/libssh/curve25519.h |   1 +
+ include/libssh/dh.h |   3 +
+ include/libssh/ecdh.h   |   1 +
+ include/libssh/kex.h|   2 +-
+ include/libssh/session.h|  19 ++-
+ src/client.c|  18 ++-
+ src/curve25519.c|   5 +
+ src/dh.c|  32 +
+ src/ecdh.c  |   5 +
+ src/kex.c   | 270 +---
+ src/packet.c|   5 +
+ src/server.c|   8 +-
+ 12 files changed, 278 insertions(+), 91 deletions(-)
+
+diff --git a/include/libssh/curve25519.h b/include/libssh/curve25519.h
+index 0406b9ee..9a896c06 100644
+--- a/include/libssh/curve25519.h
 b/include/libssh/curve25519.h
+@@ -48,6 +48,7 @@ typedef unsigned char 
ssh_curve25519_privkey[CURVE25519_PRIVKEY_SIZE];
+ 
+ 
+ int ssh_client_curve25519_init(ssh_session session);
++void ssh_client_curve25519_remove_callbacks(ssh_session session);
+ int ssh_client_curve25519_reply(ssh_session session, ssh_buffer packet);
+ 
+ #ifdef WITH_SERVER
+diff --git a/include/libssh/dh.h b/include/libssh/dh.h
+index cfdcfeec..ad6d22db 100644
+--- a/include/libssh/dh.h
 b/include/libssh/dh.h
+@@ -41,8 +41,11 @@ int ssh_dh_import_e(ssh_session session, ssh_string 
e_string);
+ int ssh_dh_import_pubkey_blob(ssh_session session, ssh_string pubkey_blob);
+ int ssh_dh_import_next_pubkey_blob(ssh_session session, ssh_string 
pubkey_blob);
+ 
++int dh_handshake(ssh_session session);
++
+ int ssh_dh_build_k(ssh_session session);
+ int ssh_client_dh_init(ssh_session session);
++void ssh_client_dh_remove_callbacks(ssh_session session);
+ int ssh_client_dh_reply(ssh_session session, ssh_buffer packet);
+ 
+ ssh_key ssh_dh_get_current_server_publickey(ssh_session session);
+diff --git a/include/libssh/ecdh.h b/include/libssh/ecdh.h
+index 66659b85..3f9d6014 100644
+--- a/include/libssh/ecdh.h
 b/include/libssh/ecdh.h
+@@ -46,6 +46,7 @@ int ssh_client_ecdh_reply(ssh_session session, ssh_buffer 
packet);
+ 
+ /* Backend-specific functions.  */
+ int ssh_client_ecdh_init(ssh_session session);
++void ssh_client_ecdh_remove_callbacks(ssh_session session);
+ int ecdh_build_k(ssh_session session);
+ 
+ #ifdef WITH_SERVER
+diff --git a/include/libssh/kex.h b/include/libssh/kex.h
+index a626d105..8c1302a0 100644
+--- a/include/libssh/kex.h
 b/include/libssh/kex.h
+@@ -33,7 +33,7 @@ struct ssh_kex_struct {
+ 
+ SSH_PACKET_CALLBACK(ssh_packet_kexinit);
+ 
+-int ssh_send_kex(ssh_session session, int server_kex);
++int ssh_send_kex(ssh_session session);
+ void ssh_list_kex(struct ssh_kex_struct *kex);
+ int ssh_set_client_kex(ssh_session session);
+ int ssh_kex_select_methods(ssh_session session);
+diff --git a/include/libssh/session.h b/include/libssh/session.h
+index 23633cc2..3e681c2d 100644
+--- a/include/libssh/session.h
 b/include/libssh/session.h
+@@ -27,6 +27,7 @@
+ #include "libssh/auth.h"
+ #include "libssh/channels.h"
+ #include "libssh/poll.h"
++#include 
+ 
+ /* These are the different states a SSH session can be into its life */
+ enum ssh_session_state_e {
+@@ -69,6 +70,11 @@ enum ssh_pending_call_e {
+ /* Client successfully authenticated */
+ #define SSH_SESSION_FLAG_AUTHENTICATED 2
+ 
++/* The KEXINIT message can be sent first by either of the parties so this flag
++ * indicates that the message was already sent to make sure it is sent and 
avoid
++ * sending it twice during key exchange to simplify the state machine. */
++#define SSH_SESSION_FLAG_KEXINIT_SENT 4
++
+ /* codes to use with ssh_handle_packets*() */
+ /* Infinite timeout */
+ #define SSH_TIMEOUT_INFINITE -1
+@@ -149,14 +155,21 @@ struct ssh_session_struct {
+ uint32_t current_method;
+ } auth;
+ 
++/* Sending this flag before key exchange to save one round trip during the
++   

[oe] [meta-oe][kirkstone][PATCH] wireshark: fix CVE-2022-4345 multiple (BPv6, OpenFlow, and Kafka protocol) dissector infinite loops

2023-12-12 Thread vkumbhar via lists.openembedded.org
Upstream-Status: Backport from 
https://gitlab.com/wireshark/wireshark/-/commit/39db474f80af87449ce0f034522dccc80ed4153f

Signed-off-by: Vivek Kumbhar 
---
 .../wireshark/files/CVE-2022-4345.patch   | 52 +++
 .../wireshark/wireshark_3.4.12.bb |  1 +
 2 files changed, 53 insertions(+)
 create mode 100644 
meta-networking/recipes-support/wireshark/files/CVE-2022-4345.patch

diff --git 
a/meta-networking/recipes-support/wireshark/files/CVE-2022-4345.patch 
b/meta-networking/recipes-support/wireshark/files/CVE-2022-4345.patch
new file mode 100644
index 00..ccf04459e8
--- /dev/null
+++ b/meta-networking/recipes-support/wireshark/files/CVE-2022-4345.patch
@@ -0,0 +1,52 @@
+From 39db474f80af87449ce0f034522dccc80ed4153f Mon Sep 17 00:00:00 2001
+From: John Thacker 
+Date: Thu, 1 Dec 2022 20:46:15 -0500
+Subject: [PATCH] openflow_v6: Prevent infinite loops in too short ofp_stats
+
+The ofp_stats struct length field includes the fixed 4 bytes.
+If the length is smaller than that, report the length error
+and break out. In particular, a value of zero can cause
+infinite loops if this isn't done.
+
+
+(cherry picked from commit 13823bb1059cf70f401892ba1b1eaa2400cdf3db)
+
+Upstream-Status: Backport 
[https://gitlab.com/wireshark/wireshark/-/commit/39db474f80af87449ce0f034522dccc80ed4153f]
+CVE: CVE-2022-4345
+Signed-off-by: Vivek Kumbhar 
+---
+ epan/dissectors/packet-openflow_v6.c | 8 +++-
+ 1 file changed, 7 insertions(+), 1 deletion(-)
+
+diff --git a/epan/dissectors/packet-openflow_v6.c 
b/epan/dissectors/packet-openflow_v6.c
+index 16016af..3e24d76 100644
+--- a/epan/dissectors/packet-openflow_v6.c
 b/epan/dissectors/packet-openflow_v6.c
+@@ -1118,17 +1118,23 @@ dissect_openflow_v6_oxs(tvbuff_t *tvb, packet_info 
*pinfo _U_, proto_tree *tree,
+ static int
+ dissect_openflow_stats_v6(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree 
*tree, int offset, guint16 length _U_)
+ {
++proto_item *ti;
+ guint32 stats_length;
+ int oxs_end;
+ guint32 padding;
+ 
+ proto_tree_add_item(tree, hf_openflow_v6_stats_reserved, tvb, offset, 2, 
ENC_NA);
+ 
+-proto_tree_add_item_ret_uint(tree, hf_openflow_v6_stats_length, tvb, 
offset+2, 2, ENC_BIG_ENDIAN, &stats_length);
++ti = proto_tree_add_item_ret_uint(tree, hf_openflow_v6_stats_length, tvb, 
offset+2, 2, ENC_BIG_ENDIAN, &stats_length);
+ 
+ oxs_end = offset + stats_length;
+ offset+=4;
+ 
++if (stats_length < 4) {
++expert_add_info(pinfo, ti, &ei_openflow_v6_length_too_short);
++return offset;
++}
++
+ while (offset < oxs_end) {
+ offset = dissect_openflow_v6_oxs(tvb, pinfo, tree, offset, oxs_end - 
offset);
+ }
+-- 
+2.40.1
+
diff --git a/meta-networking/recipes-support/wireshark/wireshark_3.4.12.bb 
b/meta-networking/recipes-support/wireshark/wireshark_3.4.12.bb
index 19489a8bcb..9d4dee37bb 100644
--- a/meta-networking/recipes-support/wireshark/wireshark_3.4.12.bb
+++ b/meta-networking/recipes-support/wireshark/wireshark_3.4.12.bb
@@ -25,6 +25,7 @@ SRC_URI += " \
 file://CVE-2023-0667.patch \
 file://CVE-2023-0668.patch \
 file://CVE-2023-2906.patch \
+file://CVE-2022-4345.patch \
 "
 
 UPSTREAM_CHECK_URI = "https://1.as.dl.wireshark.org/src";
-- 
2.40.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107347): 
https://lists.openembedded.org/g/openembedded-devel/message/107347
Mute This Topic: https://lists.openembedded.org/mt/103145527/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][kirkstone][PATCH] libssh: fix CVE-2023-1667 NULL pointer dereference

2023-12-12 Thread Anuj Mittal
On Wed, 2023-12-13 at 11:37 +0530, Hitendra Prajapati via
lists.openembedded.org wrote:
> Upstream-Status: Backport from
> https://packages.debian.org/buster/libssh-dev/libssh_0.8.7-1+deb10u2.debian.tar.xz
> 
> Signed-off-by: Hitendra Prajapati 
> ---
>  .../libssh/libssh/CVE-2023-1667.patch | 724
> ++
>  .../recipes-support/libssh/libssh_0.8.9.bb    |   1 +
>  2 files changed, 725 insertions(+)
>  create mode 100644 meta-oe/recipes-support/libssh/libssh/CVE-2023-
> 1667.patch
> 
> diff --git a/meta-oe/recipes-support/libssh/libssh/CVE-2023-
> 1667.patch b/meta-oe/recipes-support/libssh/libssh/CVE-2023-
> 1667.patch
> new file mode 100644
> index 00..dcf4874312
> --- /dev/null
> +++ b/meta-oe/recipes-support/libssh/libssh/CVE-2023-1667.patch
> @@ -0,0 +1,724 @@
> +commit b733df6ddca80b11c2548ca88821b1c353480901
> +Author: Jakub Jelen 
> +Date: Fri Mar 17 14:09:14 2023 +0100
> +Subject: [PATCH] libssh: A NULL pointer dereference was found In
> libssh
> +during re-keying with algorithm guessing. This issue may allow an
> authenticated
> +client to cause a denial of service.
> +
> +Origin: See below commits ids, adapted for buster.
> +
> +Upstream-Status: Backport
> [https://packages.debian.org/buster/libssh-dev/libssh_0.8.7-1+deb10u2
> .debian.tar.xz]

This link isn't accessible.

Debian also isn't the upstream for libssh. Please backport, mention the
upstream patches.

https://git.libssh.org/projects/libssh.git/log/?qt=grep&q=cve-2023-1667

> +CVE: CVE-2023-1667
> +Signed-off-by: Hitendra Prajapati 
> +---
> + include/libssh/curve25519.h |   1 +
> + include/libssh/dh.h |   3 +
> + include/libssh/ecdh.h   |   1 +
> + include/libssh/kex.h    |   2 +-
> + include/libssh/session.h    |  19 ++-
> + src/client.c    |  18 ++-
> + src/curve25519.c    |   5 +
> + src/dh.c    |  32 +
> + src/ecdh.c  |   5 +
> + src/kex.c   | 270 +
> ---
> + src/packet.c    |   5 +
> + src/server.c    |   8 +-
> + 12 files changed, 278 insertions(+), 91 deletions(-)
> +
> +diff --git a/include/libssh/curve25519.h
> b/include/libssh/curve25519.h
> +index 0406b9ee..9a896c06 100644
> +--- a/include/libssh/curve25519.h
>  b/include/libssh/curve25519.h
> +@@ -48,6 +48,7 @@ typedef unsigned char
> ssh_curve25519_privkey[CURVE25519_PRIVKEY_SIZE];
> + 
> + 
> + int ssh_client_curve25519_init(ssh_session session);
> ++void ssh_client_curve25519_remove_callbacks(ssh_session session);
> + int ssh_client_curve25519_reply(ssh_session session, ssh_buffer
> packet);
> + 
> + #ifdef WITH_SERVER
> +diff --git a/include/libssh/dh.h b/include/libssh/dh.h
> +index cfdcfeec..ad6d22db 100644
> +--- a/include/libssh/dh.h
>  b/include/libssh/dh.h
> +@@ -41,8 +41,11 @@ int ssh_dh_import_e(ssh_session session,
> ssh_string e_string);
> + int ssh_dh_import_pubkey_blob(ssh_session session, ssh_string
> pubkey_blob);
> + int ssh_dh_import_next_pubkey_blob(ssh_session session, ssh_string
> pubkey_blob);
> + 
> ++int dh_handshake(ssh_session session);
> ++
> + int ssh_dh_build_k(ssh_session session);
> + int ssh_client_dh_init(ssh_session session);
> ++void ssh_client_dh_remove_callbacks(ssh_session session);
> + int ssh_client_dh_reply(ssh_session session, ssh_buffer packet);
> + 
> + ssh_key ssh_dh_get_current_server_publickey(ssh_session session);
> +diff --git a/include/libssh/ecdh.h b/include/libssh/ecdh.h
> +index 66659b85..3f9d6014 100644
> +--- a/include/libssh/ecdh.h
>  b/include/libssh/ecdh.h
> +@@ -46,6 +46,7 @@ int ssh_client_ecdh_reply(ssh_session session,
> ssh_buffer packet);
> + 
> + /* Backend-specific functions.  */
> + int ssh_client_ecdh_init(ssh_session session);
> ++void ssh_client_ecdh_remove_callbacks(ssh_session session);
> + int ecdh_build_k(ssh_session session);
> + 
> + #ifdef WITH_SERVER
> +diff --git a/include/libssh/kex.h b/include/libssh/kex.h
> +index a626d105..8c1302a0 100644
> +--- a/include/libssh/kex.h
>  b/include/libssh/kex.h
> +@@ -33,7 +33,7 @@ struct ssh_kex_struct {
> + 
> + SSH_PACKET_CALLBACK(ssh_packet_kexinit);
> + 
> +-int ssh_send_kex(ssh_session session, int server_kex);
> ++int ssh_send_kex(ssh_session session);
> + void ssh_list_kex(struct ssh_kex_struct *kex);
> + int ssh_set_client_kex(ssh_session session);
> + int ssh_kex_select_methods(ssh_session session);
> +diff --git a/include/libssh/session.h b/include/libssh/session.h
> +index 23633cc2..3e681c2d 100644
> +--- a/include/libssh/session.h
>  b/include/libssh/session.h
> +@@ -27,6 +27,7 @@
> + #include "libssh/auth.h"
> + #include "libssh/channels.h"
> + #include "libssh/poll.h"
> ++#include 
> + 
> + /* These are the different states a SSH session can be into its
> life */
> + enum ssh_session_state_e {
> +@@ -69,6 +70,11 @@ enum ssh_pending_call_e {
> + /* Client successfully authenticated */
> + #define SSH_SESSION_FLAG_AUTHENTICATED 2
> + 
> ++/* The KEXINIT mes

[oe] [meta-oe][kirkstone][PATCH] libssh: fix CVE-2023-1667 NULL pointer dereference

2023-12-12 Thread Hitendra Prajapati via lists.openembedded.org
Upstream-Status: Backport from 
https://packages.debian.org/buster/libssh-dev/libssh_0.8.7-1+deb10u2.debian.tar.xz

Signed-off-by: Hitendra Prajapati 
---
 .../libssh/libssh/CVE-2023-1667.patch | 724 ++
 .../recipes-support/libssh/libssh_0.8.9.bb|   1 +
 2 files changed, 725 insertions(+)
 create mode 100644 meta-oe/recipes-support/libssh/libssh/CVE-2023-1667.patch

diff --git a/meta-oe/recipes-support/libssh/libssh/CVE-2023-1667.patch 
b/meta-oe/recipes-support/libssh/libssh/CVE-2023-1667.patch
new file mode 100644
index 00..dcf4874312
--- /dev/null
+++ b/meta-oe/recipes-support/libssh/libssh/CVE-2023-1667.patch
@@ -0,0 +1,724 @@
+commit b733df6ddca80b11c2548ca88821b1c353480901
+Author: Jakub Jelen 
+Date: Fri Mar 17 14:09:14 2023 +0100
+Subject: [PATCH] libssh: A NULL pointer dereference was found In libssh
+during re-keying with algorithm guessing. This issue may allow an authenticated
+client to cause a denial of service.
+
+Origin: See below commits ids, adapted for buster.
+
+Upstream-Status: Backport 
[https://packages.debian.org/buster/libssh-dev/libssh_0.8.7-1+deb10u2.debian.tar.xz]
+CVE: CVE-2023-1667
+Signed-off-by: Hitendra Prajapati 
+---
+ include/libssh/curve25519.h |   1 +
+ include/libssh/dh.h |   3 +
+ include/libssh/ecdh.h   |   1 +
+ include/libssh/kex.h|   2 +-
+ include/libssh/session.h|  19 ++-
+ src/client.c|  18 ++-
+ src/curve25519.c|   5 +
+ src/dh.c|  32 +
+ src/ecdh.c  |   5 +
+ src/kex.c   | 270 +---
+ src/packet.c|   5 +
+ src/server.c|   8 +-
+ 12 files changed, 278 insertions(+), 91 deletions(-)
+
+diff --git a/include/libssh/curve25519.h b/include/libssh/curve25519.h
+index 0406b9ee..9a896c06 100644
+--- a/include/libssh/curve25519.h
 b/include/libssh/curve25519.h
+@@ -48,6 +48,7 @@ typedef unsigned char 
ssh_curve25519_privkey[CURVE25519_PRIVKEY_SIZE];
+ 
+ 
+ int ssh_client_curve25519_init(ssh_session session);
++void ssh_client_curve25519_remove_callbacks(ssh_session session);
+ int ssh_client_curve25519_reply(ssh_session session, ssh_buffer packet);
+ 
+ #ifdef WITH_SERVER
+diff --git a/include/libssh/dh.h b/include/libssh/dh.h
+index cfdcfeec..ad6d22db 100644
+--- a/include/libssh/dh.h
 b/include/libssh/dh.h
+@@ -41,8 +41,11 @@ int ssh_dh_import_e(ssh_session session, ssh_string 
e_string);
+ int ssh_dh_import_pubkey_blob(ssh_session session, ssh_string pubkey_blob);
+ int ssh_dh_import_next_pubkey_blob(ssh_session session, ssh_string 
pubkey_blob);
+ 
++int dh_handshake(ssh_session session);
++
+ int ssh_dh_build_k(ssh_session session);
+ int ssh_client_dh_init(ssh_session session);
++void ssh_client_dh_remove_callbacks(ssh_session session);
+ int ssh_client_dh_reply(ssh_session session, ssh_buffer packet);
+ 
+ ssh_key ssh_dh_get_current_server_publickey(ssh_session session);
+diff --git a/include/libssh/ecdh.h b/include/libssh/ecdh.h
+index 66659b85..3f9d6014 100644
+--- a/include/libssh/ecdh.h
 b/include/libssh/ecdh.h
+@@ -46,6 +46,7 @@ int ssh_client_ecdh_reply(ssh_session session, ssh_buffer 
packet);
+ 
+ /* Backend-specific functions.  */
+ int ssh_client_ecdh_init(ssh_session session);
++void ssh_client_ecdh_remove_callbacks(ssh_session session);
+ int ecdh_build_k(ssh_session session);
+ 
+ #ifdef WITH_SERVER
+diff --git a/include/libssh/kex.h b/include/libssh/kex.h
+index a626d105..8c1302a0 100644
+--- a/include/libssh/kex.h
 b/include/libssh/kex.h
+@@ -33,7 +33,7 @@ struct ssh_kex_struct {
+ 
+ SSH_PACKET_CALLBACK(ssh_packet_kexinit);
+ 
+-int ssh_send_kex(ssh_session session, int server_kex);
++int ssh_send_kex(ssh_session session);
+ void ssh_list_kex(struct ssh_kex_struct *kex);
+ int ssh_set_client_kex(ssh_session session);
+ int ssh_kex_select_methods(ssh_session session);
+diff --git a/include/libssh/session.h b/include/libssh/session.h
+index 23633cc2..3e681c2d 100644
+--- a/include/libssh/session.h
 b/include/libssh/session.h
+@@ -27,6 +27,7 @@
+ #include "libssh/auth.h"
+ #include "libssh/channels.h"
+ #include "libssh/poll.h"
++#include 
+ 
+ /* These are the different states a SSH session can be into its life */
+ enum ssh_session_state_e {
+@@ -69,6 +70,11 @@ enum ssh_pending_call_e {
+ /* Client successfully authenticated */
+ #define SSH_SESSION_FLAG_AUTHENTICATED 2
+ 
++/* The KEXINIT message can be sent first by either of the parties so this flag
++ * indicates that the message was already sent to make sure it is sent and 
avoid
++ * sending it twice during key exchange to simplify the state machine. */
++#define SSH_SESSION_FLAG_KEXINIT_SENT 4
++
+ /* codes to use with ssh_handle_packets*() */
+ /* Infinite timeout */
+ #define SSH_TIMEOUT_INFINITE -1
+@@ -149,14 +155,21 @@ struct ssh_session_struct {
+ uint32_t current_method;
+ } auth;
+ 
++/* Sending this flag before key exchange to save one round

Re: [oe] [meta-networking][PATCH] networkmanager: Improved SUMMARY and added DESCRIPTION

2023-12-12 Thread Khem Raj
On Tue, Dec 12, 2023 at 11:43 AM william.lyu via
lists.openembedded.org
 wrote:
>
> From: William Lyu 
>
> The SUMMARY and DESCRIPTION are taken from Arch Linux wiki page:
> https://wiki.archlinux.org/title/NetworkManager
>
> Signed-off-by: William Lyu 
> ---
>  .../networkmanager/networkmanager_1.44.0.bb   | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git 
> a/meta-networking/recipes-connectivity/networkmanager/networkmanager_1.44.0.bb
>  
> b/meta-networking/recipes-connectivity/networkmanager/networkmanager_1.44.0.bb
> index d213ef650..0857d63b1 100644
> --- 
> a/meta-networking/recipes-connectivity/networkmanager/networkmanager_1.44.0.bb
> +++ 
> b/meta-networking/recipes-connectivity/networkmanager/networkmanager_1.44.0.bb
> @@ -1,4 +1,6 @@
> -SUMMARY = "NetworkManager"
> +SUMMARY = "NetworkManager is a program for providing detection and 
> configuration for systems to automatically connect to networks."
> +DESCRIPTION = "NetworkManager is a program for providing detection and 
> configuration for systems to automatically connect to networks. 
> NetworkManager's functionality can be useful for both wireless and wired 
> networks. For wireless networks, NetworkManager prefers known wireless 
> networks and has the ability to switch to the most reliable network. 
> NetworkManager-aware applications can switch from online and offline mode. 
> NetworkManager also prefers wired connections over wireless ones, has support 
> for modem connections and certain types of VPN."
> +

maybe add some line breaks here

>  HOMEPAGE = "https://wiki.gnome.org/Projects/NetworkManager";
>  SECTION = "net/misc"
>
> --
> 2.25.1
>
>
> 
>

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107340): 
https://lists.openembedded.org/g/openembedded-devel/message/107340
Mute This Topic: https://lists.openembedded.org/mt/103136589/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[oe] [meta-networking][PATCH] networkmanager: Improved SUMMARY and added DESCRIPTION

2023-12-12 Thread william.lyu via lists.openembedded.org
From: William Lyu 

The SUMMARY and DESCRIPTION are taken from Arch Linux wiki page:
https://wiki.archlinux.org/title/NetworkManager

Signed-off-by: William Lyu 
---
 .../networkmanager/networkmanager_1.44.0.bb   | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git 
a/meta-networking/recipes-connectivity/networkmanager/networkmanager_1.44.0.bb 
b/meta-networking/recipes-connectivity/networkmanager/networkmanager_1.44.0.bb
index d213ef650..0857d63b1 100644
--- 
a/meta-networking/recipes-connectivity/networkmanager/networkmanager_1.44.0.bb
+++ 
b/meta-networking/recipes-connectivity/networkmanager/networkmanager_1.44.0.bb
@@ -1,4 +1,6 @@
-SUMMARY = "NetworkManager"
+SUMMARY = "NetworkManager is a program for providing detection and 
configuration for systems to automatically connect to networks."
+DESCRIPTION = "NetworkManager is a program for providing detection and 
configuration for systems to automatically connect to networks. 
NetworkManager's functionality can be useful for both wireless and wired 
networks. For wireless networks, NetworkManager prefers known wireless networks 
and has the ability to switch to the most reliable network. 
NetworkManager-aware applications can switch from online and offline mode. 
NetworkManager also prefers wired connections over wireless ones, has support 
for modem connections and certain types of VPN."
+
 HOMEPAGE = "https://wiki.gnome.org/Projects/NetworkManager";
 SECTION = "net/misc"
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107339): 
https://lists.openembedded.org/g/openembedded-devel/message/107339
Mute This Topic: https://lists.openembedded.org/mt/103136589/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe] [PATCH] minifi-cpp: Fix do_configure error builder aarch64

2023-12-12 Thread Khem Raj
On Tue, Dec 12, 2023 at 8:49 AM Ross Burton  wrote:
>
> On 12 Dec 2023, at 16:42, Ross Burton via lists.openembedded.org 
>  wrote:
> > Also this is a huge red flag as it means this recipe is embeddings its own 
> > copy of the uuid library instead of using the system library.
>
> OH DEAR GOD NO.
>
> https://github.com/apache/nifi-minifi-cpp/tree/main/thirdparty
>
> If I were an OSV I’d be BBMASKing that recipe out because it’s going to be 
> carrying an impressive number of CVEs.
>

yeah :) Now you see the reality

> Ross

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107338): 
https://lists.openembedded.org/g/openembedded-devel/message/107338
Mute This Topic: https://lists.openembedded.org/mt/103126866/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe] [PATCH] minifi-cpp: Fix do_configure error builder aarch64

2023-12-12 Thread Ross Burton
On 12 Dec 2023, at 16:42, Ross Burton via lists.openembedded.org 
 wrote:
> Also this is a huge red flag as it means this recipe is embeddings its own 
> copy of the uuid library instead of using the system library.

OH DEAR GOD NO.

https://github.com/apache/nifi-minifi-cpp/tree/main/thirdparty

If I were an OSV I’d be BBMASKing that recipe out because it’s going to be 
carrying an impressive number of CVEs.

Ross
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107337): 
https://lists.openembedded.org/g/openembedded-devel/message/107337
Mute This Topic: https://lists.openembedded.org/mt/103126866/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe] [PATCH] minifi-cpp: Fix do_configure error builder aarch64

2023-12-12 Thread Ross Burton


> On 12 Dec 2023, at 09:38, Robert Yang via lists.openembedded.org 
>  wrote:
> +file://0001-config.guess-Support-build-on-aarch64.patch \

If that’s a standard autotools config.guess then use gnu-configize to install 
new files entirely.

Also this is a huge red flag as it means this recipe is embeddings its own copy 
of the uuid library instead of using the system library.

Ross


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107336): 
https://lists.openembedded.org/g/openembedded-devel/message/107336
Mute This Topic: https://lists.openembedded.org/mt/103126866/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe] [PATCH] minifi-cpp: Fix do_configure error builder aarch64

2023-12-12 Thread Khem Raj

On 12/12/23 1:38 AM, liezhi.y...@windriver.com wrote:

From: Robert Yang 

Fixed do_configure error when build on aarch64 host:
error: cannot guess build type; you must specify one

Signed-off-by: Robert Yang 
---
  ...onfig.guess-Support-build-on-aarch64.patch | 31 +++
  .../minifi-cpp/minifi-cpp_0.7.0.bb|  1 +
  2 files changed, 32 insertions(+)
  create mode 100644 
meta-oe/recipes-extended/minifi-cpp/files/0001-config.guess-Support-build-on-aarch64.patch

diff --git 
a/meta-oe/recipes-extended/minifi-cpp/files/0001-config.guess-Support-build-on-aarch64.patch
 
b/meta-oe/recipes-extended/minifi-cpp/files/0001-config.guess-Support-build-on-aarch64.patch
new file mode 100644
index 00..3086a70455
--- /dev/null
+++ 
b/meta-oe/recipes-extended/minifi-cpp/files/0001-config.guess-Support-build-on-aarch64.patch
@@ -0,0 +1,31 @@
+From 92fdbfdd6b55ff0b65edd9a283ac85ad349e325b Mon Sep 17 00:00:00 2001
+From: Robert Yang 
+Date: Tue, 12 Dec 2023 07:27:52 +
+Subject: [PATCH] config.guess: Fix do_configure error builder aarch64
+
+Fixed configure error when build on aarch64 host:
+error: cannot guess build type; you must specify one
+
+Upstream-Status: Pending


would you mind posting it upstream as well ? IIRC we were stuck on an 
older version of minifi-cpp perhaps it needs bumping to latest as well.



+
+Signed-off-by: Robert Yang 
+---
+ config.guess  |   2 +-
+ 1 files changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/thirdparty/uuid-1.6.2/config.guess 
b/thirdparty/uuid-1.6.2/config.guess
+index ca2a03c..a858bfd 100755
+--- a/thirdparty/uuid-1.6.2/config.guess
 b/thirdparty/uuid-1.6.2/config.guess
+@@ -835,7 +835,7 @@ EOF
+ i*86:Minix:*:*)
+   echo ${UNAME_MACHINE}-pc-minix
+   exit ;;
+-arm*:Linux:*:*)
++arm*:Linux:*:*|aarch64:Linux:*:*)
+   eval $set_cc_for_build
+   if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \
+   | grep -q __ARM_EABI__
+--
+2.34.1
+
diff --git a/meta-oe/recipes-extended/minifi-cpp/minifi-cpp_0.7.0.bb 
b/meta-oe/recipes-extended/minifi-cpp/minifi-cpp_0.7.0.bb
index 67a2d9fa5f..5059b63212 100644
--- a/meta-oe/recipes-extended/minifi-cpp/minifi-cpp_0.7.0.bb
+++ b/meta-oe/recipes-extended/minifi-cpp/minifi-cpp_0.7.0.bb
@@ -40,6 +40,7 @@ SRC_URI = 
"git://github.com/apache/nifi-minifi-cpp.git;branch=master;protocol=ht
  file://minifi.service \
  file://systemd-volatile.conf \
  file://sysvinit-volatile.conf \
+file://0001-config.guess-Support-build-on-aarch64.patch \
  "
  
  SRC_URI[curl.md5sum] = "d0bcc586873cfef08b4b9594e5395a33"


OpenPGP_0xBB053355919D3314.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107335): 
https://lists.openembedded.org/g/openembedded-devel/message/107335
Mute This Topic: https://lists.openembedded.org/mt/103126866/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[oe] [meta-oe][PATCH] android-tools: remove two Debianisms

2023-12-12 Thread Dmitry Baryshkov
If the build happens on a Debian system, android-tools build will hang
forever, filling the log files (and the disk) with the following
messages:

make: dpkg-architecture: No such file or directory
make: dpkg-architecture: No such file or directory
make: dpkg-architecture: No such file or directory
make: dpkg-architecture: No such file or directory
/usr/share/dpkg/architecture.mk:9: pipe: Too many open files
/usr/share/dpkg/architecture.mk:9: pipe: Too many open files
/usr/share/dpkg/architecture.mk:9: pipe: Too many open files
/usr/share/dpkg/architecture.mk:9: pipe: Too many open files
/usr/share/dpkg/architecture.mk:9: pipe: Too many open files

Fix two places which include dpkg makefile fragments from the host
system.

Signed-off-by: Dmitry Baryshkov 
---
 ...tools-modifications-to-make-it-build-in-yoct.patch | 11 +--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git 
a/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools/0002-android-tools-modifications-to-make-it-build-in-yoct.patch
 
b/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools/0002-android-tools-modifications-to-make-it-build-in-yoct.patch
index e749366bb631..b719acec4c5a 100644
--- 
a/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools/0002-android-tools-modifications-to-make-it-build-in-yoct.patch
+++ 
b/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools/0002-android-tools-modifications-to-make-it-build-in-yoct.patch
@@ -88,11 +88,12 @@ diff --git a/debian/system/core/libbacktrace.mk 
b/debian/system/core/libbacktrac
 index e3411d76..86e69874 100644
 --- a/debian/system/core/libbacktrace.mk
 +++ b/debian/system/core/libbacktrace.mk
-@@ -1,3 +1,4 @@
+@@ -1,4 +1,4 @@
+-include /usr/share/dpkg/architecture.mk
 +include rules_yocto.mk
- include /usr/share/dpkg/architecture.mk
  
  NAME = libbacktrace
+ 
 @@ -83,10 +84,9 @@ CPPFLAGS += \
  LDFLAGS += \
-L/usr/lib/p7zip \
@@ -218,6 +219,12 @@ diff --git a/debian/system/core/libutils.mk 
b/debian/system/core/libutils.mk
 index c37b1d2d..332492c1 100644
 --- a/debian/system/core/libutils.mk
 +++ b/debian/system/core/libutils.mk
+@@ -1,4 +1,4 @@
+-include /usr/share/dpkg/architecture.mk
++include rules_yocto.mk
+ 
+ NAME = libutils
+ 
 @@ -41,7 +41,7 @@ CPPFLAGS += \
  
  LDFLAGS += \
-- 
2.39.2


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107334): 
https://lists.openembedded.org/g/openembedded-devel/message/107334
Mute This Topic: https://lists.openembedded.org/mt/103129813/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[oe] [meta-multimedia][PATCH 1/2] rygel: fix build with gtk+3 PACKAGECONFIG disabled

2023-12-12 Thread Martin Jansa
* fixes:
  rygel-0.42.4/meson.build:1:0: ERROR: Value "false" (of type "string") for 
combo option "gtk" is not one of the choices. Possible choices are (as string): 
"enabled", "disabled", "auto".

* possibly changed since:
  https://github.com/GNOME/rygel/commit/7e1819d9e49084c9dc55064a6f21d0f7caa90da6

Signed-off-by: Martin Jansa 
---
 meta-multimedia/recipes-connectivity/rygel/rygel_0.42.4.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-multimedia/recipes-connectivity/rygel/rygel_0.42.4.bb 
b/meta-multimedia/recipes-connectivity/rygel/rygel_0.42.4.bb
index 9662296399..5212e78333 100644
--- a/meta-multimedia/recipes-connectivity/rygel/rygel_0.42.4.bb
+++ b/meta-multimedia/recipes-connectivity/rygel/rygel_0.42.4.bb
@@ -37,7 +37,7 @@ PACKAGECONFIG[media-export] = ""
 PACKAGECONFIG[gst-launch] = ""
 PACKAGECONFIG[lms] = ""
 PACKAGECONFIG[tracker3] = ""
-PACKAGECONFIG[gtk+3] = ",-Dgtk=false,gtk+3"
+PACKAGECONFIG[gtk+3] = ",-Dgtk=disabled,gtk+3"
 
 RYGEL_PLUGINS = ""
 RYGEL_PLUGINS:append ="${@bb.utils.contains('PACKAGECONFIG', 'external', 
',external', '', d)}"
-- 
2.43.0


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107332): 
https://lists.openembedded.org/g/openembedded-devel/message/107332
Mute This Topic: https://lists.openembedded.org/mt/103128854/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[oe] [meta-multimedia][PATCH 2/2] rygel: add x11 to DISTRO_FEATURES

2023-12-12 Thread Martin Jansa
* it was added in rygel-0.41.0 with:
  https://github.com/GNOME/rygel/commit/18cd2cff6f64b7a54156ac97e5c4f50eb8fd8d67

* it might need libx11 dependency as well which would probably
  be pulled by gtk+3 already when x11 is in DISTRO_FEATURES

* as shown in:
  http://errors.yoctoproject.org/Errors/Details/746017/
  it requires x11 even when gtk support is disabled, meson-log.txt:

Determining dependency 'x11' with pkg-config executable 
'/OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/rygel/0.42.4/recipe-sysroot-native/usr/bin/pkg-config'
env[PKG_CONFIG_DIR]: 
/OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/rygel/0.42.4/recipe-sysroot/usr/lib/pkgconfig
env[PKG_CONFIG_PATH]: 
/OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/rygel/0.42.4/recipe-sysroot/usr/lib/pkgconfig:/OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/rygel/0.42.4/recipe-sysroot/usr/share/pkgconfig
env[PKG_CONFIG_LIBDIR]: 
/OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/rygel/0.42.4/recipe-sysroot/usr/lib/pkgconfig
env[PKG_CONFIG_DISABLE_UNINSTALLED]: yes
env[PKG_CONFIG_SYSROOT_DIR]: 
/OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/rygel/0.42.4/recipe-sysroot
env[PKG_CONFIG_SYSTEM_LIBRARY_PATH]: /usr/lib:/usr/lib
env[PKG_CONFIG_SYSTEM_INCLUDE_PATH]: /usr/include
env[PKG_CONFIG]: 
/OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/rygel/0.42.4/recipe-sysroot-native/usr/bin/pkg-config
---
Called: 
`/OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/rygel/0.42.4/recipe-sysroot-native/usr/bin/pkg-config
 --modversion x11` -> 1
stderr:
Package x11 was not found in the pkg-config search path.
Perhaps you should add the directory containing `x11.pc'
to the PKG_CONFIG_PATH environment variable
No package 'x11' found
---
CMake binary for host machine is cached as not found
Dependency lookup for x11 with method 'cmake' failed: CMake binary for machine 
host machine not found. Giving up.
Run-time dependency x11 found: NO (tried pkgconfig)

../rygel-0.42.4/src/rygel/meson.build:9:80: ERROR: Dependency "x11" not found, 
tried pkgconfig

Signed-off-by: Martin Jansa 
---
 meta-multimedia/recipes-connectivity/rygel/rygel_0.42.4.bb  | 2 +-
 .../packagegroups/packagegroup-meta-multimedia.bb   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-multimedia/recipes-connectivity/rygel/rygel_0.42.4.bb 
b/meta-multimedia/recipes-connectivity/rygel/rygel_0.42.4.bb
index 5212e78333..4fbdce0867 100644
--- a/meta-multimedia/recipes-connectivity/rygel/rygel_0.42.4.bb
+++ b/meta-multimedia/recipes-connectivity/rygel/rygel_0.42.4.bb
@@ -18,7 +18,7 @@ RRECOMMENDS:${PN} = "rygel-plugin-media-export"
 inherit gnomebase features_check vala gobject-introspection gettext systemd
 
 # gobject-introspection is mandatory for libmediaart-2.0 and cannot be 
configured
-REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
+REQUIRED_DISTRO_FEATURES = "gobject-introspection-data x11"
 
 SRC_URI[archive.sha256sum] = 
"6310dfaa2d332b66119b9b020fad6a4bd27d9bc61faf780ca5ca0b62813303f7"
 
diff --git 
a/meta-multimedia/recipes-multimedia/packagegroups/packagegroup-meta-multimedia.bb
 
b/meta-multimedia/recipes-multimedia/packagegroups/packagegroup-meta-multimedia.bb
index b18ad6ad1b..672c8abc9a 100644
--- 
a/meta-multimedia/recipes-multimedia/packagegroups/packagegroup-meta-multimedia.bb
+++ 
b/meta-multimedia/recipes-multimedia/packagegroups/packagegroup-meta-multimedia.bb
@@ -62,7 +62,7 @@ RDEPENDS:packagegroup-meta-multimedia-connectivity = "\
 gupnp-dlna \
 ${@bb.utils.contains("DISTRO_FEATURES", "x11", "gupnp-tools", "", d)} \
 libupnp \
-${@bb.utils.contains("DISTRO_FEATURES", "gobject-introspection-data", 
"rygel", "", d)} \
+${@bb.utils.contains("DISTRO_FEATURES", "x11", 
bb.utils.contains("DISTRO_FEATURES", "gobject-introspection-data", "rygel", "", 
d), "", d)} \
 "
 RDEPENDS:packagegroup-meta-multimedia-dvb = "\
 oscam \
-- 
2.43.0


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107333): 
https://lists.openembedded.org/g/openembedded-devel/message/107333
Mute This Topic: https://lists.openembedded.org/mt/103128855/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[oe] [meta-oe] [PATCH] minifi-cpp: Fix do_configure error builder aarch64

2023-12-12 Thread Robert Yang via lists.openembedded.org
From: Robert Yang 

Fixed do_configure error when build on aarch64 host:
error: cannot guess build type; you must specify one

Signed-off-by: Robert Yang 
---
 ...onfig.guess-Support-build-on-aarch64.patch | 31 +++
 .../minifi-cpp/minifi-cpp_0.7.0.bb|  1 +
 2 files changed, 32 insertions(+)
 create mode 100644 
meta-oe/recipes-extended/minifi-cpp/files/0001-config.guess-Support-build-on-aarch64.patch

diff --git 
a/meta-oe/recipes-extended/minifi-cpp/files/0001-config.guess-Support-build-on-aarch64.patch
 
b/meta-oe/recipes-extended/minifi-cpp/files/0001-config.guess-Support-build-on-aarch64.patch
new file mode 100644
index 00..3086a70455
--- /dev/null
+++ 
b/meta-oe/recipes-extended/minifi-cpp/files/0001-config.guess-Support-build-on-aarch64.patch
@@ -0,0 +1,31 @@
+From 92fdbfdd6b55ff0b65edd9a283ac85ad349e325b Mon Sep 17 00:00:00 2001
+From: Robert Yang 
+Date: Tue, 12 Dec 2023 07:27:52 +
+Subject: [PATCH] config.guess: Fix do_configure error builder aarch64
+
+Fixed configure error when build on aarch64 host:
+error: cannot guess build type; you must specify one
+
+Upstream-Status: Pending
+
+Signed-off-by: Robert Yang 
+---
+ config.guess  |   2 +-
+ 1 files changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/thirdparty/uuid-1.6.2/config.guess 
b/thirdparty/uuid-1.6.2/config.guess
+index ca2a03c..a858bfd 100755
+--- a/thirdparty/uuid-1.6.2/config.guess
 b/thirdparty/uuid-1.6.2/config.guess
+@@ -835,7 +835,7 @@ EOF
+ i*86:Minix:*:*)
+   echo ${UNAME_MACHINE}-pc-minix
+   exit ;;
+-arm*:Linux:*:*)
++arm*:Linux:*:*|aarch64:Linux:*:*)
+   eval $set_cc_for_build
+   if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \
+   | grep -q __ARM_EABI__
+-- 
+2.34.1
+
diff --git a/meta-oe/recipes-extended/minifi-cpp/minifi-cpp_0.7.0.bb 
b/meta-oe/recipes-extended/minifi-cpp/minifi-cpp_0.7.0.bb
index 67a2d9fa5f..5059b63212 100644
--- a/meta-oe/recipes-extended/minifi-cpp/minifi-cpp_0.7.0.bb
+++ b/meta-oe/recipes-extended/minifi-cpp/minifi-cpp_0.7.0.bb
@@ -40,6 +40,7 @@ SRC_URI = 
"git://github.com/apache/nifi-minifi-cpp.git;branch=master;protocol=ht
 file://minifi.service \
 file://systemd-volatile.conf \
 file://sysvinit-volatile.conf \
+file://0001-config.guess-Support-build-on-aarch64.patch \
 "
 
 SRC_URI[curl.md5sum] = "d0bcc586873cfef08b4b9594e5395a33"
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107331): 
https://lists.openembedded.org/g/openembedded-devel/message/107331
Mute This Topic: https://lists.openembedded.org/mt/103126866/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-