Re: [oe] [PATCH 11/20] python3-eventlet: backport a patch to remove distutils dependency

2023-12-15 Thread Khem Raj
On Thu, Dec 14, 2023 at 11:53 PM Alexander Kanavin wrote: > > Signed-off-by: Alexander Kanavin > --- > ...o-host-0-is-not-supported-on-OpenInd.patch | 78 +++ > .../python/python3-eventlet_0.33.3.bb | 2 +- > 2 files changed, 79 insertions(+), 1 deletion(-) > create

[oe] [meta-gnome][PATCH] gnome-software: update 45.1 -> 45.2

2023-12-15 Thread Markus Volk
- add backport patches for appstream-1.0.0 support Signed-off-by: Markus Volk --- ...f358ed0e8455e12d9634f60bc4dbaee434e3.patch | 504 ++ ...ab003f3fabf616b6eb7dc93f8967bc9473e5.patch | 31 ++ ...oftware_45.1.bb => gnome-software_45.2.bb} | 6 +- 3 files changed, 540

[oe] [meta-python][PATCH 2/6] python3-frozenlist: upgrade 1.4.0 -> 1.4.1

2023-12-15 Thread Leon Anavi
Upgrade to version 1.4.1: - Declared Python 3.12 and PyPy 3.8-3.10 supported officially in the distribution package metadata. - Replaced the packaging is replaced from an old-fashioned :file:setup.py to an in-tree :pep:517 build backend Signed-off-by: Leon Anavi ---

[oe] [meta-python][PATCH 6/6] python3-aiohue: upgrade 4.6.2 -> 4.7.0

2023-12-15 Thread Leon Anavi
Upgrade to version 4.7.0: - Backward compatibility fix - Update project and CI - Update models for updated schema and new resource types Signed-off-by: Leon Anavi --- .../{python3-aiohue_4.6.2.bb => python3-aiohue_4.7.0.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename

[oe] [meta-python][PATCH 5/6] python3-cycler: upgrade 0.11.0 -> 0.12.1

2023-12-15 Thread Leon Anavi
Upgrade to version 0.12.1: - Addition of type hints. - Fixes the previous release not shipping the py.typed file. Signed-off-by: Leon Anavi --- .../{python3-cycler_0.11.0.bb => python3-cycler_0.12.1.bb}| 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename

[oe] [meta-python][PATCH 3/6] python3-yarl: upgrade 1.9.2 -> 1.9.4

2023-12-15 Thread Leon Anavi
Upgrade to version 1.9.4: - Started raising :py:exc:TypeError when a string value is passed into :py:meth:~yarl.URL.build as the port argument -- by :user:commonism - The leading -- has been dropped from the :pep:517 in-tree build backend config setting names. --pure-python is now just

[oe] [meta-python][PATCH 4/6] python3-coverage: upgrade 7.3.2 -> 7.3.3

2023-12-15 Thread Leon Anavi
Upgrade to version 7.3.3: - Fix: function definitions with multi-line signatures can now be excluded by matching any of the lines. - Fix: XML reports could fail with a TypeError if files had numeric components that were duplicates except for leading zeroes, like file1.py and file001.py. -

[oe] [meta-python][PATCH 1/6] python3-expandvars: add recipe

2023-12-15 Thread Leon Anavi
Add python3-expandvars to expand system variables Unix style. Signed-off-by: Leon Anavi --- .../python/python3-expandvars_0.12.0.bb| 10 ++ 1 file changed, 10 insertions(+) create mode 100644 meta-python/recipes-devtools/python/python3-expandvars_0.12.0.bb diff --git

Re: [oe] [libcamera-devel] [PATCH 19/20] libcamera: skip until upstream resolves python 3.12 compatibility

2023-12-15 Thread Mattijs Korpershoek
Hi Laurent, On ven., déc. 15, 2023 at 14:50, Laurent Pinchart via libcamera-devel wrote: > On Fri, Dec 15, 2023 at 01:04:02PM +0100, Alexander Kanavin via > libcamera-devel wrote: >> That's right. >> >> This page provides hints for how to replace usage of imp with >> equivalents in

Re: [oe] [PATCH 19/20] libcamera: skip until upstream resolves python 3.12 compatibility

2023-12-15 Thread Kieran Bingham
+libcamera-devel mailing list Quoting Alexander Kanavin (2023-12-15 07:52:38) > I'd note that imp module has been deprecated for years, so that's what > happens when deprecation warnings are ignored. Can you tell me more about what this issue is please? I'm not aware of it at all. -- Kieran >

Re: [oe] [PATCH 19/20] libcamera: skip until upstream resolves python 3.12 compatibility

2023-12-15 Thread Kieran Bingham
Quoting Kieran Bingham (2023-12-15 10:16:20) > +libcamera-devel mailing list > > Quoting Alexander Kanavin (2023-12-15 07:52:38) > > I'd note that imp module has been deprecated for years, so that's what > > happens when deprecation warnings are ignored. > > Can you tell me more about what this

Re: [oe] [libcamera-devel] [PATCH 19/20] libcamera: skip until upstream resolves python 3.12 compatibility

2023-12-15 Thread Laurent Pinchart
On Fri, Dec 15, 2023 at 02:21:53PM +0100, Mattijs Korpershoek wrote: > On ven., déc. 15, 2023 at 14:50, Laurent Pinchart via libcamera-devel wrote: > > On Fri, Dec 15, 2023 at 01:04:02PM +0100, Alexander Kanavin via > > libcamera-devel wrote: > >> That's right. > >> > >> This page provides hints

Re: [oe] [libcamera-devel] [PATCH 19/20] libcamera: skip until upstream resolves python 3.12 compatibility

2023-12-15 Thread Laurent Pinchart
On Fri, Dec 15, 2023 at 01:04:02PM +0100, Alexander Kanavin via libcamera-devel wrote: > That's right. > > This page provides hints for how to replace usage of imp with > equivalents in importlib: > https://docs.python.org/3.11/library/imp.html The trouble is that the code in libcamera that

Re: [oe] [PATCH 19/20] libcamera: skip until upstream resolves python 3.12 compatibility

2023-12-15 Thread Alexander Kanavin
That's right. This page provides hints for how to replace usage of imp with equivalents in importlib: https://docs.python.org/3.11/library/imp.html Alex On Fri, 15 Dec 2023 at 11:18, Kieran Bingham wrote: > > Quoting Kieran Bingham (2023-12-15 10:16:20) > > +libcamera-devel mailing list > > >

[oe][meta-networking][dunfell][PATCH] strongswan: Backport fix for CVE-2023-41913

2023-12-15 Thread Vijay Anusuri via lists.openembedded.org
From: Vijay Anusuri Upstream-Status: Backport [https://download.strongswan.org/security/CVE-2023-41913/strongswan-5.3.0-5.9.6_charon_tkm_dh_len.patch] Reference: https://www.strongswan.org/blog/2023/11/20/strongswan-vulnerability-(cve-2023-41913).html Signed-off-by: Vijay Anusuri ---

[oe] [meta-networking][PATCH] networkmanager: add missing modemmanager rdepends

2023-12-15 Thread Thomas Perrot via lists.openembedded.org
From: Thomas Perrot Fix rdepends with modemmanager PACKAGECONFIG enabled. Signed-off-by: Thomas Perrot --- .../networkmanager/networkmanager_1.44.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git