[OE-core] [kirkstone][PATCH] python3: add PACKAGECONFIG[editline]

2024-08-12 Thread Leon Anavi
. Signed-off-by: Leon Anavi --- meta/recipes-devtools/python/python3_3.10.14.bb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/meta/recipes-devtools/python/python3_3.10.14.bb b/meta/recipes-devtools/python/python3_3.10.14.bb index 31c458c09a..b5bc80ab88 100644 --- a/meta

Re: [OE-core] [PATCH] u-boot.inc: WORKDIR -> UNPACKDIR transition

2024-06-27 Thread Leon Anavi
Hi Richard, Quentin, On 26.06.24 г. 17:09 ч., Richard Purdie wrote: On Wed, 2024-06-26 at 15:34 +0200, Quentin Schulz wrote: Hi Richard, On 6/26/24 3:20 PM, Richard Purdie via lists.openembedded.org wrote: On Mon, 2024-06-24 at 00:32 +0300, Leon Anavi via lists.openembedded.org wrote

[OE-core] [[PATCHv2] u-boot.inc: WORKDIR -> UNPACKDIR transition

2024-06-27 Thread Leon Anavi
Replace references of WORKDIR with UNPACKDIR and B for U-Boot script and variable UBOOT_ENV_BINARY, for example for boot.scr. Signed-off-by: Leon Anavi --- meta/recipes-bsp/u-boot/u-boot.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta/recipes-bsp/u-boot/u

[OE-core] [PATCH] u-boot.inc: WORKDIR -> UNPACKDIR transition

2024-06-23 Thread Leon Anavi
Replace references of WORKDIR with UNPACKDIR for U-Boot script and variable UBOOT_ENV_BINARY, for example for boot.scr. Signed-off-by: Leon Anavi --- meta/recipes-bsp/u-boot/u-boot.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta/recipes-bsp/u-boot/u-boot.inc

Re: [OE-core] [PATCH 2/2] neatvnc: add new recipe

2023-08-24 Thread Leon Anavi
On 24.08.23 г. 11:45 ч., Alexander Kanavin wrote: On Thu, 24 Aug 2023 at 10:38, Leon Anavi wrote: Without these 2 recipes Weston 12 fails to build if PACKAGECONFIG includes vnc: Missing or unbuildable dependency chain was: ['weston', 'neatvnc'] In this case neatvnc and

Re: [OE-core] [PATCH 2/2] neatvnc: add new recipe

2023-08-24 Thread Leon Anavi
Hi Khem, On 23.08.23 г. 19:48 ч., Khem Raj wrote: On 8/23/23 9:24 AM, Leon Anavi wrote: Add a new recipe for neatvnc v0.6.0, a liberally licensed VNC server library with a clean interface. It is required for building Weston with VNC backend. Signed-off-by: Leon Anavi ---   meta/conf/distro

Re: [OE-core] [PATCH 2/2] neatvnc: add new recipe

2023-08-24 Thread Leon Anavi
: ['weston', 'neatvnc'] In this case neatvnc and aml are dependencies of weston and in my opinion they should be in the same layer. However, if you insist I can submit the patches to meta-oe. Best regards, Leon Alex On Wed, 23 Aug 2023 at 18:24, Leon Anavi wrote: Add a ne

[OE-core] [PATCH 2/2] neatvnc: add new recipe

2023-08-23 Thread Leon Anavi
Add a new recipe for neatvnc v0.6.0, a liberally licensed VNC server library with a clean interface. It is required for building Weston with VNC backend. Signed-off-by: Leon Anavi --- meta/conf/distro/include/maintainers.inc | 1 + meta/recipes-graphics/neatvnc/neatvnc_git.bb | 40

[OE-core] [PATCH 1/2] aml: add new recipe

2023-08-23 Thread Leon Anavi
Add a new recipe for aml (Andri's Main Loop) v0.3.0. It is required for neatvnc which is required for building Weston with VNC backend. Signed-off-by: Leon Anavi --- meta/conf/distro/include/maintainers.inc | 1 + meta/recipes-graphics/aml/aml_git.bb | 35 2

[OE-core] [PATCH] wic: Add argument --hidden to default imager

2023-05-15 Thread Leon Anavi
RequiredPartition on GPT through a WKS file and the default imager plugin. Otherwise, without this feature, to achieve the same result a new imager plugin has to be implemented and set in WIC_CREATE_EXTRA_ARGS. Signed-off-by: Leon Anavi --- scripts/lib/wic/ksparser.py | 1 + scripts/lib

Re: [OE-core] [PATCHv3] python3-manifest.json: Fix re in core

2023-04-20 Thread Leon Anavi
Hi Paul, On 20.04.23 г. 7:59 ч., Paul Eggleton wrote: Hi Leon On Friday, 4 November 2022 01:27:55 NZST Leon Anavi wrote: Following the update from 3.10.6 to 3.11.0, the source code of module re for regular expression operations has been moved to Lib/re/. File python3-manifest.json has been

Re: [OE-core] [PATCHv2] python3-manifest.json: Fix re in core

2022-11-03 Thread Leon Anavi
Hi Quentin, On 3.11.22 г. 11:39 ч., Quentin Schulz wrote: Hi Leon, On 11/2/22 20:09, Leon Anavi wrote: Following the update from 3.10.6 to 3.11.0, the source code of module re for regular expression operations has been moved to Lib/re/. File python3-manifest.json has been modified according

[OE-core] [PATCHv3] python3-manifest.json: Fix re in core

2022-11-03 Thread Leon Anavi
bitbake python3 -c create_manifest. Because of this it also updated other files and rdepends in it. Signed-off-by: Leon Anavi --- .../python/python3/python3-manifest.json | 74 +++ 1 file changed, 44 insertions(+), 30 deletions(-) diff --git a/meta/recipes-devtools/python

[OE-core] [PATCH] get_module_deps3.py: Check attribute '__file__'

2022-11-02 Thread Leon Anavi
Check if the module object has attribute '__file__' to fix and avoid errors like: AttributeError: module '_abc' has no attribute '__file__'. Did you mean: '__name__'? Signed-off-by: Leon Anavi --- meta/recipes-devtools/python/python3/get_module_deps

[OE-core] [PATCHv2] python3-manifest.json: Fix re in core

2022-11-02 Thread Leon Anavi
Following the update from 3.10.6 to 3.11.0, the source code of module re for regular expression operations has been moved to Lib/re/. File python3-manifest.json has been modified according to the new path. Signed-off-by: Leon Anavi --- .../python/python3/python3-manifest.json | 74

[OE-core] [PATCH] python3-manifest.json: Fix re in core

2022-11-02 Thread Leon Anavi
Following the update from 3.10.6 to 3.11.0, the source code of module re for regular expression operations has been moved to Lib/re/. File python3-manifest.json has been modified according to the new path. Signed-off-by: Leon Anavi --- meta/recipes-devtools/python/python3/python3-manifest.json

Re: [OE-core] [PATCH] python3-manifest.json: Move urllib to netclient

2022-10-25 Thread Leon Anavi
Hi, It has been 2 weeks since I submitted this patch for openembedded-core. I am wondering if it will be merged in master/master-next. Please let me know if any changes are needed. Is the patch OK? Thanks, Leon On 11.10.22 г. 14:10 ч., Leon Anavi wrote: Move urllib from core to netclient

[OE-core] [PATCH] python3-manifest.json: Move urllib to netclient

2022-10-11 Thread Leon Anavi
Move urllib from core to netclient because it imports base64. Signed-off-by: Leon Anavi --- .../python/python3/python3-manifest.json | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/meta/recipes-devtools/python/python3/python3-manifest.json b/meta

[OE-core] [PATCH] python3-manifest.json: Add zoneinfo

2022-09-20 Thread Leon Anavi
The zoneinfo module provides a concrete time zone implementation to support the IANA time zone database as originally specified in PEP 615. Signed-off-by: Leon Anavi --- .../python/python3/python3-manifest.json | 11 +++ 1 file changed, 11 insertions(+) diff --git a/meta

[OE-core] [PATCH] Fix a minor typo

2022-05-13 Thread Leon Anavi
Fix a minor typo and replace "partion" with "partition". Signed-off-by: Leon Anavi --- meta/classes/image_types.bbclass | 2 +- scripts/runqemu-addptable2image | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/classes/image_types.bb

Re: [OE-core] [meta-oe][PATCH] python3-setuptools-rust: Add release 0.11.6

2021-04-05 Thread Leon Anavi
Hi Richard, On 4.04.21 г. 13:05, Richard Purdie wrote: On Fri, 2021-04-02 at 14:45 +0300, Leon Anavi wrote: Add setuptools-rust release 0.11.6: - Respect CARGO_BUILD_TARGET environment variable if set. - Add setuptools_rust.__version__ and require setuptools >= 46.1. This recipe is requi

[OE-core] [meta-oe][PATCH] python3-setuptools-rust: Add release 0.11.6

2021-04-02 Thread Leon Anavi
rom layer meta-python. Signed-off-by: Leon Anavi --- .../python/python3-setuptools-rust_0.11.6.bb | 28 +++ 1 file changed, 28 insertions(+) create mode 100644 meta/recipes-devtools/python/python3-setuptools-rust_0.11.6.bb diff --git a/meta/recipes-devtools/python/python3-setupto

Re: [OE-core] [oe] OpenEmbedded Virtual Stand at FOSDEM 2021

2021-01-21 Thread Leon Anavi
urs during FOSDEM 2021. Best regards, Leon -- Leon Anavi Software Engineer konsulko.com -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#147061): https://lists.openembedded.org/g/openembedded-core/message/147061 Mute This To

Re: [OE-core] [oe] [openembedded][wayland][weston]: How to configure screen resolution

2018-09-10 Thread Leon Anavi
1680x1050 Please have a look at weston documentation for details. > How to generate this file and use it for my image? You can update or provide your version of weston.ini through a bbappend file. Best regards, Leon > > Thanks, > -- Leon Anavi Software

[OE-core] Back porting lttng-module update to v2.10.5 from master to rocko

2018-02-20 Thread Leon Anavi
branch of openembedded-core (OE-Core rev: 7f00a5161889a422d83dc113521d9241fdd89abf). Could you please back port this change to branch Rocko? Thanks, Leon -- Leon Anavi Software Engineer konsulko.com -- ___ Openembedded-core mailing list