Re: [oe] [PATCH v2] openocd: Enable linuxgpiod build option

2024-07-10 Thread Bartosz Golaszewski
On Wed, Jul 10, 2024 at 12:45 PM Sean Nyekjaer via
lists.openembedded.org  wrote:
>
> Enable the linuxgpiod via PACKAGECONFIG to allow to use swd via
> libgpiod.
> linuxgpiod requires libgpiod 1.x, so it's required to add
> PREFERRED_VERSION_libgpiod = "1.%".
>
> Signed-off-by: Sean Nyekjaer 
> ---
>
> @Bartosz it would be nice to be able to depend on libgpiod-1.x.
> Guess the libraries could co-exist and then the libgpiod tools could be
> from the 2.x.
>
>  meta-oe/recipes-devtools/openocd/openocd_git.bb | 3 +++
>  1 file changed, 3 insertions(+)
>
> diff --git a/meta-oe/recipes-devtools/openocd/openocd_git.bb 
> b/meta-oe/recipes-devtools/openocd/openocd_git.bb
> index 559fe29ff..8c411ec5c 100644
> --- a/meta-oe/recipes-devtools/openocd/openocd_git.bb
> +++ b/meta-oe/recipes-devtools/openocd/openocd_git.bb
> @@ -51,6 +51,9 @@ FILES:${PN} = " \
>${bindir}/openocd \
>"
>
> +# To build with linuxgpiod it requires libgpiod 1.x.
> +# Add PREFERRED_VERSION_libgpiod = "1.%" to local.conf

Keep this comment but add:

RDEPENDS:${PN} += "libgpiod (<= 1.6.5)"

to this recipe to avoid build-time errors when the right version of
the library is not available.

Bart

> +PACKAGECONFIG[linuxgpiod] = "--enable-linuxgpiod,--disable-linuxgpiod, 
> libgpiod"
>  PACKAGECONFIG[sysfsgpio] = "--enable-sysfsgpio,--disable-sysfsgpio"
>  PACKAGECONFIG[remote-bitbang] = 
> "--enable-remote-bitbang,--disable-remote-bitbang"
>  PACKAGECONFIG ??= "sysfsgpio remote-bitbang"
> --
> 2.45.2
>
>
> 
>

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



[oe] [meta-python][PATCH] python3-virtualenv: add missing run-time dependencies

2024-07-01 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

The recipe is missing most of the run-time dependencies for virtualenv.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-virtualenv_20.26.3.bb | 4 
 1 file changed, 4 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python3-virtualenv_20.26.3.bb 
b/meta-python/recipes-devtools/python/python3-virtualenv_20.26.3.bb
index 6720f50da..975bf11af 100644
--- a/meta-python/recipes-devtools/python/python3-virtualenv_20.26.3.bb
+++ b/meta-python/recipes-devtools/python/python3-virtualenv_20.26.3.bb
@@ -16,7 +16,11 @@ DEPENDS += "\
 "
 
 RDEPENDS:${PN} += " \
+python3-compression  \
 python3-distlib \
 python3-filelock \
+python3-json \
+python3-misc \
+python3-modules \
 python3-platformdirs \
 "
-- 
2.43.0


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



[oe] [meta-python][PATCH] python3-gpiod: update to v2.2.0

2024-06-18 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

This is minor release that contains some fixes and code improvements.
There are no new interfaces but line.Value can now correctly be cast to
bool and __repr__() implementations have been fixed to actually allow
using them to recreate objects.

Starting from this release pypi also provides wheels but this isn't
relevant to meta-oe.

Signed-off-by: Bartosz Golaszewski 
---
 .../python/{python3-gpiod_2.1.3.bb => python3-gpiod_2.2.0.bb}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-gpiod_2.1.3.bb => 
python3-gpiod_2.2.0.bb} (93%)

diff --git a/meta-python/recipes-devtools/python/python3-gpiod_2.1.3.bb 
b/meta-python/recipes-devtools/python/python3-gpiod_2.2.0.bb
similarity index 93%
rename from meta-python/recipes-devtools/python/python3-gpiod_2.1.3.bb
rename to meta-python/recipes-devtools/python/python3-gpiod_2.2.0.bb
index d8c8628da..c89fc7e92 100644
--- a/meta-python/recipes-devtools/python/python3-gpiod_2.1.3.bb
+++ b/meta-python/recipes-devtools/python/python3-gpiod_2.2.0.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = 
"file://setup.py;beginline=237;endline=237;md5=f5ddb56912b7f2
 
 SRC_URI += "file://run-ptest"
 
-SRC_URI[sha256sum] = 
"a33193d6cab79d252329f71666a35a3668e04f1f82bf9b93ee2c9ae852398b20"
+SRC_URI[sha256sum] = 
"4447f05ab42a9ea596e548a9a65389aa84bf61c95dc7a78074bb9c5f8f6a6b35"
 
 inherit setuptools3-base python_pep517 ptest pypi
 
-- 
2.43.0


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#110957): 
https://lists.openembedded.org/g/openembedded-devel/message/110957
Mute This Topic: https://lists.openembedded.org/mt/106749061/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] libgpiod-1.x: Fix build on musl

2024-06-11 Thread Bartosz Golaszewski
On Tue, Jun 11, 2024 at 9:35 AM Bartosz Golaszewski via
lists.openembedded.org  wrote:
>
> On Tue, Jun 11, 2024 at 6:58 AM Khem Raj via lists.openembedded.org
>  wrote:
> >
> > get a patch backported to fix the build
> >
> > Signed-off-by: Khem Raj 
> > Cc: Bartosz Golaszewski 
> > ---

I made a bug-fix release (v1.6.5) and sent an alternative that simply
updates the package and disables the C++ tests.

Bart

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



[oe] [PATCH 2/2] libgpiod: disable C++ tests for libgpiod v1.6.x

2024-06-11 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Catch2 recipe is moving to version 3 of the Catch2 API which will make
the C++ tests in libgpiod uncompatible. libgpiod v2 as ported to the new
interface but v1.6.x will not be so just disable building the C++ tests.

Signed-off-by: Bartosz Golaszewski 
---
 .../0001-bindings-cxx-disable-tests.patch | 33 +++
 .../libgpiod/libgpiod-1.x/run-ptest   |  2 +-
 meta-oe/recipes-support/libgpiod/libgpiod.inc |  4 ---
 .../libgpiod/libgpiod_1.6.5.bb|  2 ++
 .../libgpiod/libgpiod_2.1.2.bb|  1 +
 5 files changed, 37 insertions(+), 5 deletions(-)
 create mode 100644 
meta-oe/recipes-support/libgpiod/libgpiod-1.x/0001-bindings-cxx-disable-tests.patch

diff --git 
a/meta-oe/recipes-support/libgpiod/libgpiod-1.x/0001-bindings-cxx-disable-tests.patch
 
b/meta-oe/recipes-support/libgpiod/libgpiod-1.x/0001-bindings-cxx-disable-tests.patch
new file mode 100644
index 0..0b850ba13
--- /dev/null
+++ 
b/meta-oe/recipes-support/libgpiod/libgpiod-1.x/0001-bindings-cxx-disable-tests.patch
@@ -0,0 +1,33 @@
+From 8293f0b8a329beed542f5c8a2efa4641759fccf4 Mon Sep 17 00:00:00 2001
+From: Bartosz Golaszewski 
+Date: Tue, 11 Jun 2024 10:34:14 +0200
+Subject: [PATCH] bindings: cxx: disable tests
+
+Meta-openembedded is moving to catch2 v3 which will make the C++ tests
+incompatible with the testing library. As this is an older version of
+the project, just disable C++ tests entirely.
+
+Signed-off-by: Bartosz Golaszewski 
+---
+Upstream-Status: Inappropriate [upstream continues to use Catch2 v2]
+
+ bindings/cxx/Makefile.am | 6 --
+ 1 file changed, 6 deletions(-)
+
+diff --git a/bindings/cxx/Makefile.am b/bindings/cxx/Makefile.am
+index 5c40ceb..d901836 100644
+--- a/bindings/cxx/Makefile.am
 b/bindings/cxx/Makefile.am
+@@ -19,9 +19,3 @@ pkgconfigdir = $(libdir)/pkgconfig
+ pkgconfig_DATA = libgpiodcxx.pc
+ 
+ SUBDIRS = . examples
+-
+-if WITH_TESTS
+-
+-SUBDIRS += tests
+-
+-endif
+-- 
+2.40.1
+
diff --git a/meta-oe/recipes-support/libgpiod/libgpiod-1.x/run-ptest 
b/meta-oe/recipes-support/libgpiod/libgpiod-1.x/run-ptest
index 61b9b69fc..a56c2bb68 100644
--- a/meta-oe/recipes-support/libgpiod/libgpiod-1.x/run-ptest
+++ b/meta-oe/recipes-support/libgpiod/libgpiod-1.x/run-ptest
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-testbins="gpiod-test gpio-tools-test gpiod-cxx-test gpiod_py_test.py"
+testbins="gpiod-test gpio-tools-test gpiod_py_test.py"
 
 ptestdir=$(dirname "$(readlink -f "$0")")
 cd $ptestdir/tests
diff --git a/meta-oe/recipes-support/libgpiod/libgpiod.inc 
b/meta-oe/recipes-support/libgpiod/libgpiod.inc
index dc1fb4fe9..7b68f77d2 100644
--- a/meta-oe/recipes-support/libgpiod/libgpiod.inc
+++ b/meta-oe/recipes-support/libgpiod/libgpiod.inc
@@ -52,9 +52,5 @@ do_install_ptest() {
 for tool in ${FILES:${PN}-tools}; do
 install ${B}/tools/.libs/$(basename $tool) ${D}${PTEST_PATH}/tests/
 done
-
-if ${@bb.utils.contains('PACKAGECONFIG', 'cxx', 'true', 'false', d)}; then
-install -m 0755 ${B}/bindings/cxx/tests/.libs/gpiod-cxx-test 
${D}${PTEST_PATH}/tests/
-fi
 }
 
diff --git a/meta-oe/recipes-support/libgpiod/libgpiod_1.6.5.bb 
b/meta-oe/recipes-support/libgpiod/libgpiod_1.6.5.bb
index 74b49a57b..079583949 100644
--- a/meta-oe/recipes-support/libgpiod/libgpiod_1.6.5.bb
+++ b/meta-oe/recipes-support/libgpiod/libgpiod_1.6.5.bb
@@ -3,6 +3,8 @@ require libgpiod.inc
 LICENSE = "LGPL-2.1-or-later"
 LIC_FILES_CHKSUM = "file://COPYING;md5=2caced0b25dfefd4c601d92bd15116de"
 
+SRC_URI += "file://0001-bindings-cxx-disable-tests.patch"
+
 SRC_URI[sha256sum] = 
"ae280f697bf035a1fb780c9972e5c81d0d2712b7ab6124fb3fba24619daa72bc"
 
 FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}-1.x:"
diff --git a/meta-oe/recipes-support/libgpiod/libgpiod_2.1.2.bb 
b/meta-oe/recipes-support/libgpiod/libgpiod_2.1.2.bb
index 6e4fbd2a3..137461880 100644
--- a/meta-oe/recipes-support/libgpiod/libgpiod_2.1.2.bb
+++ b/meta-oe/recipes-support/libgpiod/libgpiod_2.1.2.bb
@@ -26,6 +26,7 @@ RDEPENDS:${PN}-ptest += " \
 RRECOMMENDS:${PN}-ptest += "kernel-module-gpio-sim kernel-module-configfs"
 
 do_install_ptest:append() {
+install -m 0755 ${B}/bindings/cxx/tests/.libs/gpiod-cxx-test 
${D}${PTEST_PATH}/tests/
 install -m 0755 ${S}/tools/gpio-tools-test.bash ${D}${PTEST_PATH}/tests/
 install -m 0644 ${S}/tests/gpiosim/gpiosim.h ${D}${includedir}/gpiosim.h
 }
-- 
2.40.1


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



[oe] [PATCH 1/2] libgpiod: update to v1.6.5

2024-06-11 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

This release contains a build fix for environments that require libgen.h
to be included for basename() and don't pull it implicitly with any
other header.

Signed-off-by: Bartosz Golaszewski 
---
 .../libgpiod/{libgpiod_1.6.4.bb => libgpiod_1.6.5.bb}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-support/libgpiod/{libgpiod_1.6.4.bb => 
libgpiod_1.6.5.bb} (94%)

diff --git a/meta-oe/recipes-support/libgpiod/libgpiod_1.6.4.bb 
b/meta-oe/recipes-support/libgpiod/libgpiod_1.6.5.bb
similarity index 94%
rename from meta-oe/recipes-support/libgpiod/libgpiod_1.6.4.bb
rename to meta-oe/recipes-support/libgpiod/libgpiod_1.6.5.bb
index 111a5727b..74b49a57b 100644
--- a/meta-oe/recipes-support/libgpiod/libgpiod_1.6.4.bb
+++ b/meta-oe/recipes-support/libgpiod/libgpiod_1.6.5.bb
@@ -3,7 +3,7 @@ require libgpiod.inc
 LICENSE = "LGPL-2.1-or-later"
 LIC_FILES_CHKSUM = "file://COPYING;md5=2caced0b25dfefd4c601d92bd15116de"
 
-SRC_URI[sha256sum] = 
"7b146e12f28fbca3df7557f176eb778c5ccf952ca464698dba8a61b2e1e3f9b5"
+SRC_URI[sha256sum] = 
"ae280f697bf035a1fb780c9972e5c81d0d2712b7ab6124fb3fba24619daa72bc"
 
 FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}-1.x:"
 
-- 
2.40.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#110822): 
https://lists.openembedded.org/g/openembedded-devel/message/110822
Mute This Topic: https://lists.openembedded.org/mt/106609854/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] libgpiod-1.x: Fix build on musl

2024-06-11 Thread Bartosz Golaszewski
On Tue, Jun 11, 2024 at 6:58 AM Khem Raj via lists.openembedded.org
 wrote:
>
> get a patch backported to fix the build
>
> Signed-off-by: Khem Raj 
> Cc: Bartosz Golaszewski 
> ---
>  ...nclude-missing-libgen.h-for-basename.patch | 25 +++
>  .../libgpiod/libgpiod_1.6.4.bb|  1 +
>  2 files changed, 26 insertions(+)
>  create mode 100644 
> meta-oe/recipes-support/libgpiod/libgpiod-1.x/0001-Include-missing-libgen.h-for-basename.patch
>
> diff --git 
> a/meta-oe/recipes-support/libgpiod/libgpiod-1.x/0001-Include-missing-libgen.h-for-basename.patch
>  
> b/meta-oe/recipes-support/libgpiod/libgpiod-1.x/0001-Include-missing-libgen.h-for-basename.patch
> new file mode 100644
> index 00..d6da9ba6ea
> --- /dev/null
> +++ 
> b/meta-oe/recipes-support/libgpiod/libgpiod-1.x/0001-Include-missing-libgen.h-for-basename.patch
> @@ -0,0 +1,25 @@
> +From b0ea35260ded2fbd41af46f2f18a61fb783a35be Mon Sep 17 00:00:00 2001
> +From: Khem Raj 
> +Date: Mon, 10 Jun 2024 11:09:31 -0700
> +Subject: [PATCH] Include missing libgen.h for basename()
> +
> +This is an error with newer musl otherwise
> +

Why not keep the original author and commit message?

Bart

> +Upstream-Status: Backport 
> [https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/commit/?id=f6444fb306d6]
> +Signed-off-by: Khem Raj 
> +---
> + lib/core.c | 1 +
> + 1 file changed, 1 insertion(+)
> +
> +diff --git a/lib/core.c b/lib/core.c
> +index 35dcd8e..cf1d677 100644
> +--- a/lib/core.c
>  b/lib/core.c
> +@@ -10,6 +10,7 @@
> + #include 
> + #include 
> + #include 
> ++#include 
> + #include 
> + #include 
> + #include 
> diff --git a/meta-oe/recipes-support/libgpiod/libgpiod_1.6.4.bb 
> b/meta-oe/recipes-support/libgpiod/libgpiod_1.6.4.bb
> index 111a5727ba..4daa8fface 100644
> --- a/meta-oe/recipes-support/libgpiod/libgpiod_1.6.4.bb
> +++ b/meta-oe/recipes-support/libgpiod/libgpiod_1.6.4.bb
> @@ -3,6 +3,7 @@ require libgpiod.inc
>  LICENSE = "LGPL-2.1-or-later"
>  LIC_FILES_CHKSUM = "file://COPYING;md5=2caced0b25dfefd4c601d92bd15116de"
>
> +SRC_URI += "file://0001-Include-missing-libgen.h-for-basename.patch"
>  SRC_URI[sha256sum] = 
> "7b146e12f28fbca3df7557f176eb778c5ccf952ca464698dba8a61b2e1e3f9b5"
>
>  FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}-1.x:"
>
> 
>

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#110819): 
https://lists.openembedded.org/g/openembedded-devel/message/110819
Mute This Topic: https://lists.openembedded.org/mt/106608146/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] libgpiod-1.x: Disable ptests and fix build on musl

2024-06-10 Thread Bartosz Golaszewski
On Mon, Jun 10, 2024 at 9:31 PM Khem Raj  wrote:
>
> On Mon, Jun 10, 2024 at 11:34 AM Bartosz Golaszewski  wrote:
> >
> > On Mon, 10 Jun 2024 at 20:21, Khem Raj  wrote:
> > >
> > > libgpiod-1.x is still in use by some BSPs e.g.
> > > variscite SOMs, so we can not get rid of completely
> > > so give some time to move away from 1.x and disable
> > > ptests as they need older version of catch2 which is
> > > being removed
> > >
> > > Signed-off-by: Khem Raj 
> > > Cc: Bartosz Golaszewski 
> > > ---
> >
> > TBH I still support v1.6.x as this is what Debian stable still ships
> > with (and will continue to for some time) so how about dropping only
> > C++ tests?
>
> Should be ok I guess, would you mind sending a hint on top of this patch
> how to do it ?
>

On top? This patch should be dropped and logically split into two.

The musl fix is already upstream as commit f6444fb306d6 ("core: add
missing #include for basename()") which allows you to set the
Upstream-Status tag to accepted.

I will send an alternative version tomorrow morning.

Bart

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#110805): 
https://lists.openembedded.org/g/openembedded-devel/message/110805
Mute This Topic: https://lists.openembedded.org/mt/106598537/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] libgpiod-1.x: Disable ptests and fix build on musl

2024-06-10 Thread Bartosz Golaszewski
On Mon, 10 Jun 2024 at 20:21, Khem Raj  wrote:
>
> libgpiod-1.x is still in use by some BSPs e.g.
> variscite SOMs, so we can not get rid of completely
> so give some time to move away from 1.x and disable
> ptests as they need older version of catch2 which is
> being removed
>
> Signed-off-by: Khem Raj 
> Cc: Bartosz Golaszewski 
> ---

TBH I still support v1.6.x as this is what Debian stable still ships
with (and will continue to for some time) so how about dropping only
C++ tests?

Bart

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#110802): 
https://lists.openembedded.org/g/openembedded-devel/message/110802
Mute This Topic: https://lists.openembedded.org/mt/106598537/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] libgpiod: Migrate to catch2 v3

2024-06-03 Thread Bartosz Golaszewski
On Sat, Jun 1, 2024 at 4:22 PM Khem Raj via lists.openembedded.org
 wrote:
>
> Signed-off-by: Khem Raj 
> Cc: Bartosz Golaszewski 
> ---

Acked-by: Bartosz Golaszewski 

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#110671): 
https://lists.openembedded.org/g/openembedded-devel/message/110671
Mute This Topic: https://lists.openembedded.org/mt/106428125/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] libgpiod: update to v2.1.2

2024-05-13 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

This is a small bugfix release that fixes a build issue with slibtool
(not relevant to meta-oe ATM), makes the licensing of C++ bindings less
restrictive and preemptively fixes an issue that will be triggered with
linux v6.9 when running gpio-tools ptest suite.

Signed-off-by: Bartosz Golaszewski 
---
 .../libgpiod/{libgpiod_2.1.1.bb => libgpiod_2.1.2.bb}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-support/libgpiod/{libgpiod_2.1.1.bb => 
libgpiod_2.1.2.bb} (93%)

diff --git a/meta-oe/recipes-support/libgpiod/libgpiod_2.1.1.bb 
b/meta-oe/recipes-support/libgpiod/libgpiod_2.1.2.bb
similarity index 93%
rename from meta-oe/recipes-support/libgpiod/libgpiod_2.1.1.bb
rename to meta-oe/recipes-support/libgpiod/libgpiod_2.1.2.bb
index 4c13d67eb..6e4fbd2a3 100644
--- a/meta-oe/recipes-support/libgpiod/libgpiod_2.1.1.bb
+++ b/meta-oe/recipes-support/libgpiod/libgpiod_2.1.2.bb
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = " \
 
 FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}-2.x:"
 
-SRC_URI[sha256sum] = 
"b21913f469d3135680d5516f00fdf9f81d5e564e19ffb690927ea7f1d7e312cb"
+SRC_URI[sha256sum] = 
"7a148a5a7d1c97a1abb40474b9a392b6edd7a42fe077dfd7ff42cfba24308548"
 
 # Enable all project features for ptest
 PACKAGECONFIG[tests] = "--enable-tests --enable-tools --enable-bindings-cxx 
--enable-gpioset-interactive,--disable-tests,kmod util-linux glib-2.0 catch2 
libedit"
-- 
2.40.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#110336): 
https://lists.openembedded.org/g/openembedded-devel/message/110336
Mute This Topic: https://lists.openembedded.org/mt/106069394/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] libgpiod: update to v2.1.1

2024-03-11 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

This is a bug-fix release addressing a couple issues in core libgpiod.

Signed-off-by: Bartosz Golaszewski 
---
 .../libgpiod/{libgpiod_2.1.bb => libgpiod_2.1.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-support/libgpiod/{libgpiod_2.1.bb => libgpiod_2.1.1.bb} 
(93%)

diff --git a/meta-oe/recipes-support/libgpiod/libgpiod_2.1.bb 
b/meta-oe/recipes-support/libgpiod/libgpiod_2.1.1.bb
similarity index 93%
rename from meta-oe/recipes-support/libgpiod/libgpiod_2.1.bb
rename to meta-oe/recipes-support/libgpiod/libgpiod_2.1.1.bb
index 33df709a6..c62c9a356 100644
--- a/meta-oe/recipes-support/libgpiod/libgpiod_2.1.bb
+++ b/meta-oe/recipes-support/libgpiod/libgpiod_2.1.1.bb
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = " \
 
 FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}-2.x:"
 
-SRC_URI[sha256sum] = 
"fa4024a080121c958502f9a46a5bda44bea85e7a4dd7fcb3dead463b6fc4261c"
+SRC_URI[sha256sum] = 
"b21913f469d3135680d5516f00fdf9f81d5e564e19ffb690927ea7f1d7e312cb"
 
 # Enable all project features for ptest
 PACKAGECONFIG[tests] = "--enable-tests --enable-tools --enable-bindings-cxx 
--enable-gpioset-interactive,--disable-tests,kmod util-linux glib-2.0 catch2 
libedit"
-- 
2.40.1


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



[oe] [PATCH] python3-gpiod: fix the required version of libgpiod

2023-11-16 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

This version of python3-gpiod requires libgpiod v2.1 so fix RDEPENDS.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python3-gpiod_2.1.3.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-python/recipes-devtools/python/python3-gpiod_2.1.3.bb 
b/meta-python/recipes-devtools/python/python3-gpiod_2.1.3.bb
index 310694ade..0dbb38d20 100644
--- a/meta-python/recipes-devtools/python/python3-gpiod_2.1.3.bb
+++ b/meta-python/recipes-devtools/python/python3-gpiod_2.1.3.bb
@@ -16,7 +16,7 @@ DEPENDS += " \
 python3-setuptools-native \
 "
 RDEPENDS:${PN} += " \
-libgpiod (>= 2.0) \
+libgpiod (>= 2.1) \
 python3-datetime \
 python3-profile \
 "
-- 
2.40.1


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



[oe] [meta-python][PATCH] python3-gpiod: setup target config in ptest compile

2023-11-15 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

The python3targetconfig class does not setup the build config for target
in do_ptest_compile_base so we need to do this manually. While at it: use
the provided nativepython3 command instead of using the full path.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python3-gpiod_2.1.3.bb | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta-python/recipes-devtools/python/python3-gpiod_2.1.3.bb 
b/meta-python/recipes-devtools/python/python3-gpiod_2.1.3.bb
index ef2f01fd4..310694ade 100644
--- a/meta-python/recipes-devtools/python/python3-gpiod_2.1.3.bb
+++ b/meta-python/recipes-devtools/python/python3-gpiod_2.1.3.bb
@@ -28,7 +28,8 @@ RDEPENDS:${PN}-ptest += " \
 export LINK_SYSTEM_LIBGPIOD = "1"
 
 do_compile_ptest() {
-${STAGING_BINDIR_NATIVE}/python3-native/python3 build_tests.py
+setup_target_config
+nativepython3 build_tests.py
 }
 
 do_install_ptest() {
-- 
2.40.1


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



[oe] [meta-python][PATCH] python3-gpiod: update to v2.1.3

2023-11-09 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

The python bindings for libgpiod have undergone several significant
changes that make them easier to use for users of pip. The libgpiod
sources are now vendored with the python3-gpiod as the biggest complaint
by far was the fact that if the system doesn't provide the correct
version of libgpiod, the python bindings won't build.

This is however irrelevant for the meta-python recipe as we use the
provided switch to keep linking against the libgpiod provided by
meta-openembedded.

We have changed the way the tests are built, they are now generated by a
separate build script and no longer by setup.py. The package now
correctly build with the preferred pep517 method so change the inherited
classes.

We have also gained control over the gpiod module on pypi (which
previously hosted a pure python GPIO library) so the location of the
sources has changed.

Signed-off-by: Bartosz Golaszewski 
---
 ...-gpiod_2.0.1.bb => python3-gpiod_2.1.3.bb} | 25 ---
 1 file changed, 16 insertions(+), 9 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-gpiod_2.0.1.bb => 
python3-gpiod_2.1.3.bb} (54%)

diff --git a/meta-python/recipes-devtools/python/python3-gpiod_2.0.1.bb 
b/meta-python/recipes-devtools/python/python3-gpiod_2.1.3.bb
similarity index 54%
rename from meta-python/recipes-devtools/python/python3-gpiod_2.0.1.bb
rename to meta-python/recipes-devtools/python/python3-gpiod_2.1.3.bb
index ea8c18562..ef2f01fd4 100644
--- a/meta-python/recipes-devtools/python/python3-gpiod_2.0.1.bb
+++ b/meta-python/recipes-devtools/python/python3-gpiod_2.1.3.bb
@@ -3,17 +3,18 @@ SUMMARY = "Python bindings for libgpiod."
 LICENSE = "GPL-2.0-or-later & LGPL-2.1-or-later & CC-BY-SA-4.0"
 # The actual license files live in the upstream libgpiod from which the pypi
 # package is spun out.
-LIC_FILES_CHKSUM = 
"file://setup.py;beginline=57;endline=57;md5=120334ed83ec0cb248605e775bd13b87"
+LIC_FILES_CHKSUM = 
"file://setup.py;beginline=237;endline=237;md5=f5ddb56912b7f20bf94aa4d1bdcd3533"
 
 SRC_URI += "file://run-ptest"
 
-SRC_URI[sha256sum] = 
"d5c0f9502e97e7359b9dd601e29f15d668983ce50f5c13323f3302845f790fa6"
+SRC_URI[sha256sum] = 
"a33193d6cab79d252329f71666a35a3668e04f1f82bf9b93ee2c9ae852398b20"
 
-inherit setuptools3 ptest pypi
+inherit setuptools3-base python_pep517 ptest pypi
 
-PYPI_PACKAGE = "libgpiod"
-
-DEPENDS += "libgpiod"
+DEPENDS += " \
+libgpiod \
+python3-setuptools-native \
+"
 RDEPENDS:${PN} += " \
 libgpiod (>= 2.0) \
 python3-datetime \
@@ -24,14 +25,20 @@ RDEPENDS:${PN}-ptest += " \
 python3-setuptools \
 "
 
-export GPIOD_WITH_TESTS = "${@bb.utils.contains("PTEST_ENABLED", "1", "1", 
"0", d)}"
+export LINK_SYSTEM_LIBGPIOD = "1"
+
+do_compile_ptest() {
+${STAGING_BINDIR_NATIVE}/python3-native/python3 build_tests.py
+}
 
 do_install_ptest() {
 install -d ${D}${PTEST_PATH}/gpiod-test/gpiosim
 install -d ${D}${PTEST_PATH}/gpiod-test/procname
 install -m 0644 ${S}/tests/*.py ${D}${PTEST_PATH}/gpiod-test/
-install -m 0644 ${B}/build/lib*/tests/gpiosim/_ext* 
${D}${PTEST_PATH}/gpiod-test/gpiosim
+install -m 0644 ${B}/tests/gpiosim/_ext* 
${D}${PTEST_PATH}/gpiod-test/gpiosim
 install -m 0644 ${S}/tests/gpiosim/*.py 
${D}${PTEST_PATH}/gpiod-test/gpiosim
-install -m 0644 ${B}/build/lib*/tests/procname/_ext* 
${D}${PTEST_PATH}/gpiod-test/procname
+install -m 0644 ${B}/tests/procname/_ext* 
${D}${PTEST_PATH}/gpiod-test/procname
 install -m 0644 ${S}/tests/procname/*.py 
${D}${PTEST_PATH}/gpiod-test/procname
 }
+
+INSANE_SKIP:${PN}-ptest += "buildpaths"
-- 
2.40.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#106520): 
https://lists.openembedded.org/g/openembedded-devel/message/106520
Mute This Topic: https://lists.openembedded.org/mt/102494202/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 2/2] libgpiod: update to v2.1

2023-11-03 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

This is a small release bringing in a bunch of improvements and a couple
new interfaces. Details are available in NEWS.

We need to move the code in recipes around a bit as the tests now use
shunit2.

Signed-off-by: Bartosz Golaszewski 
---
 meta-oe/recipes-support/libgpiod/libgpiod-2.x/run-ptest   | 2 +-
 meta-oe/recipes-support/libgpiod/libgpiod.inc | 3 ---
 meta-oe/recipes-support/libgpiod/libgpiod_1.6.4.bb| 8 +++-
 .../libgpiod/{libgpiod_2.0.2.bb => libgpiod_2.1.bb}   | 7 ++-
 4 files changed, 14 insertions(+), 6 deletions(-)
 rename meta-oe/recipes-support/libgpiod/{libgpiod_2.0.2.bb => libgpiod_2.1.bb} 
(79%)

diff --git a/meta-oe/recipes-support/libgpiod/libgpiod-2.x/run-ptest 
b/meta-oe/recipes-support/libgpiod/libgpiod-2.x/run-ptest
index 9475f0253..29ec0d102 100644
--- a/meta-oe/recipes-support/libgpiod/libgpiod-2.x/run-ptest
+++ b/meta-oe/recipes-support/libgpiod/libgpiod-2.x/run-ptest
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-testbins="gpiod-test gpio-tools-test gpiod-cxx-test"
+testbins="gpiod-test gpio-tools-test.bash gpiod-cxx-test"
 
 ptestdir=$(dirname "$(readlink -f "$0")")
 cd $ptestdir/tests
diff --git a/meta-oe/recipes-support/libgpiod/libgpiod.inc 
b/meta-oe/recipes-support/libgpiod/libgpiod.inc
index 0eda47bba..dc1fb4fe9 100644
--- a/meta-oe/recipes-support/libgpiod/libgpiod.inc
+++ b/meta-oe/recipes-support/libgpiod/libgpiod.inc
@@ -33,7 +33,6 @@ FILES:${PN}-tools += " \
 FILES:libgpiodcxx = "${libdir}/libgpiodcxx.so.*"
 
 RRECOMMENDS:${PN}-ptest += "coreutils"
-RDEPENDS:${PN}-ptest += "${@bb.utils.contains('PTEST_ENABLED', '1', 'bats', 
'', d)}"
 
 do_install:append() {
 rm -f ${D}${bindir}/gpiod-test
@@ -50,8 +49,6 @@ do_install_ptest() {
 
 # Tools are always built so let's always install them for ptest even if
 # we're not selecting libgpiod-tools.
-install -m 0755 ${S}/tools/gpio-tools-test ${D}${PTEST_PATH}/tests/
-install -m 0755 ${S}/tools/gpio-tools-test.bats ${D}${PTEST_PATH}/tests/
 for tool in ${FILES:${PN}-tools}; do
 install ${B}/tools/.libs/$(basename $tool) ${D}${PTEST_PATH}/tests/
 done
diff --git a/meta-oe/recipes-support/libgpiod/libgpiod_1.6.4.bb 
b/meta-oe/recipes-support/libgpiod/libgpiod_1.6.4.bb
index b28aa8e69..111a5727b 100644
--- a/meta-oe/recipes-support/libgpiod/libgpiod_1.6.4.bb
+++ b/meta-oe/recipes-support/libgpiod/libgpiod_1.6.4.bb
@@ -30,9 +30,15 @@ RRECOMMENDS:${PN}-ptest += " \
 kernel-module-gpio-mockup \
 ${@bb.utils.contains('PACKAGECONFIG', 'python3', 'python3-unittest', '', 
d)} \
 "
-RDEPENDS:${PN}-ptest += "python3-packaging"
+RDEPENDS:${PN}-ptest += " \
+python3-packaging \
+${@bb.utils.contains('PTEST_ENABLED', '1', 'bats', '', d)} \
+"
 
 do_install_ptest:append() {
+install -m 0755 ${S}/tools/gpio-tools-test ${D}${PTEST_PATH}/tests/
+install -m 0755 ${S}/tools/gpio-tools-test.bats ${D}${PTEST_PATH}/tests/
+
 if ${@bb.utils.contains('PACKAGECONFIG', 'python3', 'true', 'false', d)}; 
then
 install -m 0755 ${S}/bindings/python/tests/gpiod_py_test.py 
${D}${PTEST_PATH}/tests/
 fi
diff --git a/meta-oe/recipes-support/libgpiod/libgpiod_2.0.2.bb 
b/meta-oe/recipes-support/libgpiod/libgpiod_2.1.bb
similarity index 79%
rename from meta-oe/recipes-support/libgpiod/libgpiod_2.0.2.bb
rename to meta-oe/recipes-support/libgpiod/libgpiod_2.1.bb
index 7533e0a25..1e92d0079 100644
--- a/meta-oe/recipes-support/libgpiod/libgpiod_2.0.2.bb
+++ b/meta-oe/recipes-support/libgpiod/libgpiod_2.1.bb
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = " \
 
 FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}-2.x:"
 
-SRC_URI[sha256sum] = 
"c3c923dc63b7b1b02639c9179c81e3d9febf0887bbaa59775990229cdbedb88b"
+SRC_URI[sha256sum] = 
"fa4024a080121c958502f9a46a5bda44bea85e7a4dd7fcb3dead463b6fc4261c"
 
 # Enable all project features for ptest
 PACKAGECONFIG[tests] = "--enable-tests --enable-tools --enable-bindings-cxx 
--enable-gpioset-interactive,--disable-tests,kmod util-linux glib-2.0 catch2 
libedit"
@@ -20,8 +20,13 @@ FILES:${PN}-tools += "${bindir}/gpionotify"
 FILES:${PN}-ptest += "${libdir}/libgpiosim.so.*"
 FILES:${PN}-ptest-dev += "${includedir}/gpiosim.h"
 
+RDEPENDS:${PN}-ptest += " \
+bash \
+${@bb.utils.contains('PTEST_ENABLED', '1', 'shunit2', '', d)} \
+"
 RRECOMMENDS:${PN}-ptest += "kernel-module-gpio-sim"
 
 do_install_ptest:append() {
+install -m 0755 ${S}/tools/gpio-tools-test.bash ${D}${PTEST_PATH}/tests/
 install -m 0644 ${S}/tests/gpiosim/gpiosim.h ${D}${includedir}/gpiosim.h
 }
-- 
2.39.2


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#106086): 
https://lists.openembedded.org/g/openembedded-devel/message/106086
Mute This Topic: https://lists.openembedded.org/mt/102372379/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 1/2] shunit2: new recipe

2023-11-03 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add a recipe for shunit2 - a testing framework for command-line tools
and shell scripts.

Signed-off-by: Bartosz Golaszewski 
---
 meta-oe/recipes-test/shunit2/shunit2_2.1.8.bb | 14 ++
 1 file changed, 14 insertions(+)
 create mode 100644 meta-oe/recipes-test/shunit2/shunit2_2.1.8.bb

diff --git a/meta-oe/recipes-test/shunit2/shunit2_2.1.8.bb 
b/meta-oe/recipes-test/shunit2/shunit2_2.1.8.bb
new file mode 100644
index 0..0ac06c361
--- /dev/null
+++ b/meta-oe/recipes-test/shunit2/shunit2_2.1.8.bb
@@ -0,0 +1,14 @@
+SUMMARY = "shUnit2 is a xUnit based unit test framework for Bourne based shell 
scripts"
+AUTHOR = "Kate Ward "
+HOMEPAGE = "https://github.com/kward/shunit2;
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e"
+
+SRC_URI = " git://github.com/kward/shunit2.git;branch=master;protocol=https"
+SRCREV = "080159b303537888c5d41910b4d47a5002638e30"
+
+S = "${WORKDIR}/git"
+
+do_install() {
+install -D -m 0755 ${S}/shunit2 ${D}${bindir}/shunit2
+}
-- 
2.39.2


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#106085): 
https://lists.openembedded.org/g/openembedded-devel/message/106085
Mute This Topic: https://lists.openembedded.org/mt/102372378/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] libgpiod: update to v2.0.2

2023-08-25 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

This is a small bug-fix release addressing a segfault, a memory
corruption bug and a couple minor issues.

This also removes the patch that's already upstream.

Signed-off-by: Bartosz Golaszewski 
---
 .../gpio-tools-test-bats-modify.patch | 67 ---
 .../{libgpiod_2.0.1.bb => libgpiod_2.0.2.bb}  |  4 +-
 2 files changed, 1 insertion(+), 70 deletions(-)
 delete mode 100644 
meta-oe/recipes-support/libgpiod/libgpiod-2.x/gpio-tools-test-bats-modify.patch
 rename meta-oe/recipes-support/libgpiod/{libgpiod_2.0.1.bb => 
libgpiod_2.0.2.bb} (87%)

diff --git 
a/meta-oe/recipes-support/libgpiod/libgpiod-2.x/gpio-tools-test-bats-modify.patch
 
b/meta-oe/recipes-support/libgpiod/libgpiod-2.x/gpio-tools-test-bats-modify.patch
deleted file mode 100644
index 0b2a5e6a8..0
--- 
a/meta-oe/recipes-support/libgpiod/libgpiod-2.x/gpio-tools-test-bats-modify.patch
+++ /dev/null
@@ -1,67 +0,0 @@
-From 53f9670d6af1bd0745c1df9c469b269c72607b23 Mon Sep 17 00:00:00 2001
-From: Joe Slater 
-Date: Tue, 6 Jun 2023 08:04:27 -0700
-Subject: [PATCH] tools: tests: modify delays in toggle test
-
-The test "gpioset: toggle (continuous)" uses fixed delays to test
-toggling values. This is not reliable, so we switch to looking
-for transitions from one value to another.
-
-We wait for a transition up to 1.5 seconds.
-
-Signed-off-by: Joe Slater 
-Signed-off-by: Bartosz Golaszewski 
-
-Upstream-Status: Accepted
-
-Signed-off-by: Joe Slater 

- tools/gpio-tools-test.bats | 21 -
- 1 file changed, 16 insertions(+), 5 deletions(-)
-
-diff --git a/tools/gpio-tools-test.bats b/tools/gpio-tools-test.bats
-index c83ca7d..929c35a 100755
 a/tools/gpio-tools-test.bats
-+++ b/tools/gpio-tools-test.bats
-@@ -141,6 +141,20 @@ gpiosim_check_value() {
-   [ "$VAL" = "$EXPECTED" ]
- }
- 
-+gpiosim_wait_value() {
-+  local OFFSET=$2
-+  local EXPECTED=$3
-+  local DEVNAME=${GPIOSIM_DEV_NAME[$1]}
-+  local CHIPNAME=${GPIOSIM_CHIP_NAME[$1]}
-+  local PORT=$GPIOSIM_SYSFS/$DEVNAME/$CHIPNAME/sim_gpio$OFFSET/value
-+
-+  for i in {1..15}; do
-+  [ "$(<$PORT)" = "$EXPECTED" ] && return
-+  sleep 0.1
-+  done
-+  return 1
-+}
-+
- gpiosim_cleanup() {
-   for CHIP in ${!GPIOSIM_CHIP_NAME[@]}
-   do
-@@ -1567,15 +1581,12 @@ request_release_line() {
-   gpiosim_check_value sim0 4 0
-   gpiosim_check_value sim0 7 0
- 
--  sleep 1
--
--  gpiosim_check_value sim0 1 0
-+  gpiosim_wait_value sim0 1 0
-   gpiosim_check_value sim0 4 1
-   gpiosim_check_value sim0 7 1
- 
--  sleep 1
- 
--  gpiosim_check_value sim0 1 1
-+  gpiosim_wait_value sim0 1 1
-   gpiosim_check_value sim0 4 0
-   gpiosim_check_value sim0 7 0
- }
--- 
-2.25.1
-
diff --git a/meta-oe/recipes-support/libgpiod/libgpiod_2.0.1.bb 
b/meta-oe/recipes-support/libgpiod/libgpiod_2.0.2.bb
similarity index 87%
rename from meta-oe/recipes-support/libgpiod/libgpiod_2.0.1.bb
rename to meta-oe/recipes-support/libgpiod/libgpiod_2.0.2.bb
index 6958f2d84..7533e0a25 100644
--- a/meta-oe/recipes-support/libgpiod/libgpiod_2.0.1.bb
+++ b/meta-oe/recipes-support/libgpiod/libgpiod_2.0.2.bb
@@ -9,9 +9,7 @@ LIC_FILES_CHKSUM = " \
 
 FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}-2.x:"
 
-SRC_URI += "file://gpio-tools-test-bats-modify.patch"
-
-SRC_URI[sha256sum] = 
"b5367d28d045b36007a4ffd42cceda4c358737ef4f2ce22b0c1d05ec57a38392"
+SRC_URI[sha256sum] = 
"c3c923dc63b7b1b02639c9179c81e3d9febf0887bbaa59775990229cdbedb88b"
 
 # Enable all project features for ptest
 PACKAGECONFIG[tests] = "--enable-tests --enable-tools --enable-bindings-cxx 
--enable-gpioset-interactive,--disable-tests,kmod util-linux glib-2.0 catch2 
libedit"
-- 
2.39.2


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



[oe] [PATCH v2 55/55] python3-setuptools-scm-git-archive: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 .../python/python3-setuptools-scm-git-archive_1.1.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/meta-python/recipes-devtools/python/python3-setuptools-scm-git-archive_1.1.bb 
b/meta-python/recipes-devtools/python/python3-setuptools-scm-git-archive_1.1.bb
index 472c4eb1c..2068871d9 100644
--- 
a/meta-python/recipes-devtools/python/python3-setuptools-scm-git-archive_1.1.bb
+++ 
b/meta-python/recipes-devtools/python/python3-setuptools-scm-git-archive_1.1.bb
@@ -11,5 +11,6 @@ PYPI_PACKAGE = "setuptools_scm_git_archive"
 PYPI_SRC_URI = 
"https://files.pythonhosted.org/packages/7e/2c/0c15b29a1b5940250bfdc4a4f53272e35cd7cf8a34159291b6b4ec9eb291/${PYPI_ARCHIVE_NAME};
 
 DEPENDS += "python3-setuptools-scm-native"
+RDEPENDS:${PN} += "python3-setuptools-scm"
 
 BBCLASSEXTEND = "native nativesdk"
-- 
2.39.2


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



[oe] [PATCH v2 53/55] python3-dbus-next: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-dbus-next_0.2.3.bb   | 5 +
 1 file changed, 5 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python3-dbus-next_0.2.3.bb 
b/meta-python/recipes-devtools/python/python3-dbus-next_0.2.3.bb
index 3ee11b9d5..9f6aa7ed7 100644
--- a/meta-python/recipes-devtools/python/python3-dbus-next_0.2.3.bb
+++ b/meta-python/recipes-devtools/python/python3-dbus-next_0.2.3.bb
@@ -10,3 +10,8 @@ PYPI_PACKAGE = "dbus_next"
 inherit pypi setuptools3
 
 BBCLASSEXTEND = "native nativesdk"
+
+RDEPENDS:${PN} += " \
+python3-asyncio \
+python3-xml \
+"
-- 
2.39.2


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



[oe] [PATCH v2 54/55] python3-defusedxml: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python3-defusedxml_0.7.1.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python3-defusedxml_0.7.1.bb 
b/meta-python/recipes-devtools/python/python3-defusedxml_0.7.1.bb
index 3396c7262..8ec6680d8 100644
--- a/meta-python/recipes-devtools/python/python3-defusedxml_0.7.1.bb
+++ b/meta-python/recipes-devtools/python/python3-defusedxml_0.7.1.bb
@@ -10,3 +10,5 @@ SRC_URI[sha256sum] = 
"1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51
 inherit pypi setuptools3
 
 BBCLASSEXTEND = "native"
+
+RDEPENDS:${PN} += "python3-xml"
-- 
2.39.2


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



[oe] [PATCH v2 52/55] python3-tzlocal: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python3-tzlocal_5.0.1.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-python/recipes-devtools/python/python3-tzlocal_5.0.1.bb 
b/meta-python/recipes-devtools/python/python3-tzlocal_5.0.1.bb
index 97f4f410e..a59fd9364 100644
--- a/meta-python/recipes-devtools/python/python3-tzlocal_5.0.1.bb
+++ b/meta-python/recipes-devtools/python/python3-tzlocal_5.0.1.bb
@@ -9,5 +9,6 @@ inherit pypi python_setuptools_build_meta
 
 RDEPENDS:${PN} += " \
 python3-datetime \
+python3-logging \
 python3-pytz-deprecation-shim \
 "
-- 
2.39.2


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



[oe] [PATCH v2 51/55] python3-tzlocal: fix coding style

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Stop using PYTHON_PN, order RDEPENDS alphabetically, fix whitespaces.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-tzlocal_5.0.1.bb| 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta-python/recipes-devtools/python/python3-tzlocal_5.0.1.bb 
b/meta-python/recipes-devtools/python/python3-tzlocal_5.0.1.bb
index 43649bf73..97f4f410e 100644
--- a/meta-python/recipes-devtools/python/python3-tzlocal_5.0.1.bb
+++ b/meta-python/recipes-devtools/python/python3-tzlocal_5.0.1.bb
@@ -7,7 +7,7 @@ SRC_URI[sha256sum] = 
"46eb99ad4bdb71f3f72b7d24f4267753e240944ecfc16f25d2719ba898
 
 inherit pypi python_setuptools_build_meta
 
-RDEPENDS:${PN} += "\
-   ${PYTHON_PN}-pytz-deprecation-shim \
-${PYTHON_PN}-datetime \
+RDEPENDS:${PN} += " \
+python3-datetime \
+python3-pytz-deprecation-shim \
 "
-- 
2.39.2


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



[oe] [PATCH v2 50/55] python3-dateparser: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-dateparser_1.1.8.bb| 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python3-dateparser_1.1.8.bb 
b/meta-python/recipes-devtools/python/python3-dateparser_1.1.8.bb
index 13e8b184d..8b890fb22 100644
--- a/meta-python/recipes-devtools/python/python3-dateparser_1.1.8.bb
+++ b/meta-python/recipes-devtools/python/python3-dateparser_1.1.8.bb
@@ -13,6 +13,9 @@ CLEANBROKEN = "1"
 
 RDEPENDS:${PN} += " \
 python3-dateutil \
+python3-logging \
+python3-pytz \
+python3-regex \
 python3-ruamel-yaml \
 python3-tzlocal \
 "
-- 
2.39.2


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



[oe] [PATCH v2 49/55] python3-dateparser: fix coding style

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Stop using PYTHON_PN, order RDEPENDS alphabetically, fix whitespaces.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-dateparser_1.1.8.bb   | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/meta-python/recipes-devtools/python/python3-dateparser_1.1.8.bb 
b/meta-python/recipes-devtools/python/python3-dateparser_1.1.8.bb
index 67b82940b..13e8b184d 100644
--- a/meta-python/recipes-devtools/python/python3-dateparser_1.1.8.bb
+++ b/meta-python/recipes-devtools/python/python3-dateparser_1.1.8.bb
@@ -12,9 +12,9 @@ inherit pypi setuptools3
 CLEANBROKEN = "1"
 
 RDEPENDS:${PN} += " \
-${PYTHON_PN}-dateutil \
-${PYTHON_PN}-tzlocal \
-${PYTHON_PN}-ruamel-yaml \
+python3-dateutil \
+python3-ruamel-yaml \
+python3-tzlocal \
 "
 
-# Ommitted ${PYTHON_PN}-convertdate, ${PYTHON_PN}-jdatetime 
${PYTHON_PN}-umalqurra
+# Ommitted python3-convertdate, python3-jdatetime python3-umalqurra
-- 
2.39.2


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



[oe] [PATCH v2 48/55] python3-custom-inherit: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-custom-inherit_2.3.1.bb  | 5 +
 1 file changed, 5 insertions(+)

diff --git 
a/meta-python/recipes-devtools/python/python3-custom-inherit_2.3.1.bb 
b/meta-python/recipes-devtools/python/python3-custom-inherit_2.3.1.bb
index c0e10448e..8ff3b9e3d 100644
--- a/meta-python/recipes-devtools/python/python3-custom-inherit_2.3.1.bb
+++ b/meta-python/recipes-devtools/python/python3-custom-inherit_2.3.1.bb
@@ -8,3 +8,8 @@ PYPI_PACKAGE = "custom_inherit"
 SRC_URI[sha256sum] = 
"a0d104847b4cc1ae24e00061fc2e11da8766b019bf4c8c753822347366c8c49f"
 
 inherit pypi setuptools3
+
+RDEPENDS:${PN} += " \
+python3-json \
+python3-stringold \
+"
-- 
2.39.2


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



[oe] [PATCH v2 47/55] python3-coverage: fix coding style and RDEPENDS

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Don't use PYTHON_PN, order RDEPENDS alphabetically. Replace toml with
tomllib to fix a run-time dependency issue.

Signed-off-by: Bartosz Golaszewski 
---
 .../python/python3-coverage_7.2.7.bb  | 19 +--
 1 file changed, 9 insertions(+), 10 deletions(-)

diff --git a/meta-python/recipes-devtools/python/python3-coverage_7.2.7.bb 
b/meta-python/recipes-devtools/python/python3-coverage_7.2.7.bb
index f625996ba..a69c05d25 100644
--- a/meta-python/recipes-devtools/python/python3-coverage_7.2.7.bb
+++ b/meta-python/recipes-devtools/python/python3-coverage_7.2.7.bb
@@ -8,14 +8,13 @@ SRC_URI[sha256sum] = 
"924d94291ca674905fe9481f12294eb11f2d3d3fd1adb20314ba89e94f
 inherit pypi setuptools3
 
 RDEPENDS:${PN} += " \
-   ${PYTHON_PN}-sqlite3 \
-   ${PYTHON_PN}-core \
-   ${PYTHON_PN}-pprint \
-   ${PYTHON_PN}-json \
-   ${PYTHON_PN}-xml \
-   ${PYTHON_PN}-crypt \
-   ${PYTHON_PN}-shell \
-   ${PYTHON_PN}-io \
-   ${PYTHON_PN}-toml \
-   ${PYTHON_PN}-multiprocessing \
+python3-crypt \
+python3-io \
+python3-json \
+python3-multiprocessing \
+python3-pprint \
+python3-shell \
+python3-sqlite3 \
+python3-tomllib \
+python3-xml \
 "
-- 
2.39.2


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



[oe] [PATCH v2 46/55] python3-configshell-fb: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 .../python/python3-configshell-fb_1.1.29.bb| 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git 
a/meta-python/recipes-devtools/python/python3-configshell-fb_1.1.29.bb 
b/meta-python/recipes-devtools/python/python3-configshell-fb_1.1.29.bb
index 2bb196c20..7a7ecd753 100644
--- a/meta-python/recipes-devtools/python/python3-configshell-fb_1.1.29.bb
+++ b/meta-python/recipes-devtools/python/python3-configshell-fb_1.1.29.bb
@@ -14,4 +14,9 @@ S = "${WORKDIR}/git"
 inherit setuptools3
 PIP_INSTALL_PACKAGE = "configshell_fb"
 
-RDEPENDS:${PN} += "python3-modules python3-fcntl python3-six"
+RDEPENDS:${PN} += " \
+python3-fcntl \
+python3-modules \
+python3-pyparsing \
+python3-six \
+"
-- 
2.39.2


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



[oe] [PATCH v2 45/55] python3-configobj: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python3-configobj_5.0.8.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-python/recipes-devtools/python/python3-configobj_5.0.8.bb 
b/meta-python/recipes-devtools/python/python3-configobj_5.0.8.bb
index fa9424a51..8dc706fdf 100644
--- a/meta-python/recipes-devtools/python/python3-configobj_5.0.8.bb
+++ b/meta-python/recipes-devtools/python/python3-configobj_5.0.8.bb
@@ -9,5 +9,6 @@ SRC_URI[sha256sum] = 
"6f704434a07dc4f4dc7c9a745172c1cad449feb548febd9f7fe362629c
 inherit pypi setuptools3
 
 RDEPENDS:${PN} += " \
+python3-pprint \
 python3-six \
 "
-- 
2.39.2


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



[oe] [PATCH v2 44/55] python3-configobj: fix coding style

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Stop using PYTHON_PN, fix whitespaces.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-configobj_5.0.8.bb| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-python/recipes-devtools/python/python3-configobj_5.0.8.bb 
b/meta-python/recipes-devtools/python/python3-configobj_5.0.8.bb
index b8b5e6f89..fa9424a51 100644
--- a/meta-python/recipes-devtools/python/python3-configobj_5.0.8.bb
+++ b/meta-python/recipes-devtools/python/python3-configobj_5.0.8.bb
@@ -8,6 +8,6 @@ SRC_URI[sha256sum] = 
"6f704434a07dc4f4dc7c9a745172c1cad449feb548febd9f7fe362629c
 
 inherit pypi setuptools3
 
-RDEPENDS:${PN} += "\
-   ${PYTHON_PN}-six \
+RDEPENDS:${PN} += " \
+python3-six \
 "
-- 
2.39.2


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



[oe] [PATCH v2 43/55] python3-colorzero: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python3-colorzero_2.0.bb | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/meta-python/recipes-devtools/python/python3-colorzero_2.0.bb 
b/meta-python/recipes-devtools/python/python3-colorzero_2.0.bb
index 1a331d13f..fc1615e67 100644
--- a/meta-python/recipes-devtools/python/python3-colorzero_2.0.bb
+++ b/meta-python/recipes-devtools/python/python3-colorzero_2.0.bb
@@ -7,7 +7,10 @@ HOMEPAGE = " https://github.com/waveform80/colorzero "
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=ae6c62710c0646f3c60d1ad812ea9bf9"
 
-RDEPENDS:${PN} = "python3-image"
+RDEPENDS:${PN} += " \
+python3-image \
+python3-numbers \
+"
 
 SRC_URI[sha256sum] = 
"e7d5a5c26cd0dc37b164ebefc609f388de24f8593b659191e12d85f8f9d5eb58"
 
-- 
2.39.2


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



[oe] [PATCH v2 42/55] python3-colorlog: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python3-colorlog_6.7.0.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python3-colorlog_6.7.0.bb 
b/meta-python/recipes-devtools/python/python3-colorlog_6.7.0.bb
index 84b67e784..69f4be17c 100644
--- a/meta-python/recipes-devtools/python/python3-colorlog_6.7.0.bb
+++ b/meta-python/recipes-devtools/python/python3-colorlog_6.7.0.bb
@@ -8,3 +8,5 @@ inherit pypi setuptools3
 PYPI_PACKAGE = "colorlog"
 
 SRC_URI[sha256sum] = 
"bd94bd21c1e13fac7bd3153f4bc3a7dc0eb0974b8bc2fdf1a989e474f6e582e5"
+
+RDEPENDS:${PN} += "python3-logging"
-- 
2.39.2


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



[oe] [PATCH v2 41/55] python3-click-spinner: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-click-spinner_0.1.10.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git 
a/meta-python/recipes-devtools/python/python3-click-spinner_0.1.10.bb 
b/meta-python/recipes-devtools/python/python3-click-spinner_0.1.10.bb
index 418f8a32a..bd1136fd7 100644
--- a/meta-python/recipes-devtools/python/python3-click-spinner_0.1.10.bb
+++ b/meta-python/recipes-devtools/python/python3-click-spinner_0.1.10.bb
@@ -7,3 +7,5 @@ SRC_URI[md5sum] = "ab68ed404401421819c81cc6c0677a87"
 SRC_URI[sha256sum] = 
"87eacf9d7298973a25d7615ef57d4782aebf913a532bba4b28a37e366e975daf"
 
 inherit pypi setuptools3
+
+RDEPENDS:${PN} += "python3-json"
-- 
2.39.2


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



[oe] [PATCH v2 40/55] python3-can: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python3-can_4.2.1.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python3-can_4.2.1.bb 
b/meta-python/recipes-devtools/python/python3-can_4.2.1.bb
index f5cc31d6f..5e3d54d6f 100644
--- a/meta-python/recipes-devtools/python/python3-can_4.2.1.bb
+++ b/meta-python/recipes-devtools/python/python3-can_4.2.1.bb
@@ -11,10 +11,12 @@ inherit pypi setuptools3
 
 RDEPENDS:${PN} += " \
 python3-aenum \
+python3-asyncio \
 python3-codecs \
 python3-compression \
 python3-ctypes \
 python3-fcntl \
+python3-json \
 python3-logging \
 python3-misc \
 python3-netserver \
-- 
2.39.2


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



[oe] [PATCH v2 39/55] python3-can: fix coding style

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Stop using PYTHON_PN, order RDEPENDS alphabetically, drop unneeded
class-target override, fix whitespaces.

Signed-off-by: Bartosz Golaszewski 
---
 .../python/python3-can_4.2.1.bb   | 26 +--
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/meta-python/recipes-devtools/python/python3-can_4.2.1.bb 
b/meta-python/recipes-devtools/python/python3-can_4.2.1.bb
index d7b2a9573..f5cc31d6f 100644
--- a/meta-python/recipes-devtools/python/python3-can_4.2.1.bb
+++ b/meta-python/recipes-devtools/python/python3-can_4.2.1.bb
@@ -9,19 +9,19 @@ PYPI_PACKAGE="python-can"
 
 inherit pypi setuptools3
 
-RDEPENDS:${PN}:class-target += "\
-${PYTHON_PN}-aenum \
-${PYTHON_PN}-ctypes \
-${PYTHON_PN}-codecs \
-${PYTHON_PN}-compression \
-${PYTHON_PN}-fcntl \
-${PYTHON_PN}-logging \
-${PYTHON_PN}-misc \
-${PYTHON_PN}-netserver \
-${PYTHON_PN}-sqlite3 \
-${PYTHON_PN}-wrapt \
-${PYTHON_PN}-pkg-resources \
-${PYTHON_PN}-typing-extensions \
+RDEPENDS:${PN} += " \
+python3-aenum \
+python3-codecs \
+python3-compression \
+python3-ctypes \
+python3-fcntl \
+python3-logging \
+python3-misc \
+python3-netserver \
+python3-pkg-resources \
+python3-sqlite3 \
+python3-typing-extensions \
+python3-wrapt \
 "
 
 BBCLASSEXTEND = "native nativesdk"
-- 
2.39.2


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



[oe] [PATCH v2 38/55] python3-binwalk: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-binwalk_2.3.3.bb  | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb 
b/meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb
index 362efa275..1a55a3e4a 100644
--- a/meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb
+++ b/meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb
@@ -14,4 +14,10 @@ S = "${WORKDIR}/git"
 
 inherit setuptools3
 
-RDEPENDS:${PN} += "python3-core"
+RDEPENDS:${PN} += " \
+python3-compression \
+python3-logging \
+python3-netserver \
+python3-setuptools \
+python3-stringold \
+"
-- 
2.39.2


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



[oe] [PATCH v2 37/55] python3-betamax: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-betamax_0.8.1.bb| 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/meta-python/recipes-devtools/python/python3-betamax_0.8.1.bb 
b/meta-python/recipes-devtools/python/python3-betamax_0.8.1.bb
index e3c5e7a3a..feb9ab3e2 100644
--- a/meta-python/recipes-devtools/python/python3-betamax_0.8.1.bb
+++ b/meta-python/recipes-devtools/python/python3-betamax_0.8.1.bb
@@ -13,9 +13,13 @@ SRC_URI[sha256sum] = 
"5bf004ceffccae881213fb722f34517166b84a34919b92ffc14d1dbd05
 
 inherit pypi setuptools3 ptest
 
+RDEPENDS:${PN} += " \
+python3-requests \
+python3-unittest \
+"
+
 RDEPENDS:${PN}-ptest += " \
${PYTHON_PN}-pytest \
-   ${PYTHON_PN}-requests \
 "
 
 do_install_ptest() {
-- 
2.39.2


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



[oe] [PATCH v2 36/55] python3-attrdict3: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 .../python3-attrdict3/python3-attrdict3_2.0.2.bb| 2 ++
 1 file changed, 2 insertions(+)

diff --git 
a/meta-python/recipes-devtools/python3-attrdict3/python3-attrdict3_2.0.2.bb 
b/meta-python/recipes-devtools/python3-attrdict3/python3-attrdict3_2.0.2.bb
index cb44ea71a..ee099c7ac 100644
--- a/meta-python/recipes-devtools/python3-attrdict3/python3-attrdict3_2.0.2.bb
+++ b/meta-python/recipes-devtools/python3-attrdict3/python3-attrdict3_2.0.2.bb
@@ -10,3 +10,5 @@ SRC_URI[sha256sum] = 
"004c171ca1120cc1755701db99d7fa4944afb1e68950434efdaa542513
 inherit pypi setuptools3
 
 BBCLASSEXTEND = "native"
+
+RDEPENDS:${PN} += "python3-six"
-- 
2.39.2


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



[oe] [PATCH v2 35/55] python3-asyncio-throttle: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-asyncio-throttle_1.0.2.bb   | 2 ++
 1 file changed, 2 insertions(+)

diff --git 
a/meta-python/recipes-devtools/python/python3-asyncio-throttle_1.0.2.bb 
b/meta-python/recipes-devtools/python/python3-asyncio-throttle_1.0.2.bb
index 1f907511a..040e70940 100644
--- a/meta-python/recipes-devtools/python/python3-asyncio-throttle_1.0.2.bb
+++ b/meta-python/recipes-devtools/python/python3-asyncio-throttle_1.0.2.bb
@@ -7,3 +7,5 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=c7906e56b70808e1ade6ca05e0bb48d5"
 SRC_URI[sha256sum] = 
"2675282e99d9129ecc446f917e174bc205c65e36c602aa18603b4948567fcbd4"
 
 inherit pypi setuptools3
+
+RDEPENDS:${PN} += "python3-asyncio"
-- 
2.39.2


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



[oe] [PATCH v2 34/55] python3-aspectlib: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-aspectlib_2.0.0.bb   | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/meta-python/recipes-devtools/python/python3-aspectlib_2.0.0.bb 
b/meta-python/recipes-devtools/python/python3-aspectlib_2.0.0.bb
index d2b0864ca..134151328 100644
--- a/meta-python/recipes-devtools/python/python3-aspectlib_2.0.0.bb
+++ b/meta-python/recipes-devtools/python/python3-aspectlib_2.0.0.bb
@@ -27,6 +27,9 @@ RDEPENDS:${PN}-ptest += "\
 python3-unittest-automake-output \
 "
 
-RDEPENDS:${PN} += "python3-core python3-fields"
+RDEPENDS:${PN} += " \
+python3-fields \
+python3-logging \
+"
 
 BBCLASSEXTEND = "native nativesdk"
-- 
2.39.2


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



[oe] [PATCH v2 33/55] python3-aioserial: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python3-aioserial_1.3.1.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-python/recipes-devtools/python/python3-aioserial_1.3.1.bb 
b/meta-python/recipes-devtools/python/python3-aioserial_1.3.1.bb
index 6419aa9c9..8279f2704 100755
--- a/meta-python/recipes-devtools/python/python3-aioserial_1.3.1.bb
+++ b/meta-python/recipes-devtools/python/python3-aioserial_1.3.1.bb
@@ -12,5 +12,6 @@ SRC_URI[sha256sum] = 
"702bf03b0eb84b8ef2d8dac5cb925e1e685dce98f77b125569bc6fd2b3
 inherit pypi setuptools3
 
 RDEPENDS:${PN} += " \
+python3-asyncio \
 python3-pyserial \
 "
-- 
2.39.2


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



[oe] [PATCH v2 32/55] python3-aioserial: fix coding style

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Stop using PYTHON_PN, fix whitespaces, drop python3-core from RDEPENDS.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-aioserial_1.3.1.bb   | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/meta-python/recipes-devtools/python/python3-aioserial_1.3.1.bb 
b/meta-python/recipes-devtools/python/python3-aioserial_1.3.1.bb
index 7ef47a2f8..6419aa9c9 100755
--- a/meta-python/recipes-devtools/python/python3-aioserial_1.3.1.bb
+++ b/meta-python/recipes-devtools/python/python3-aioserial_1.3.1.bb
@@ -11,7 +11,6 @@ SRC_URI[sha256sum] = 
"702bf03b0eb84b8ef2d8dac5cb925e1e685dce98f77b125569bc6fd2b3
 
 inherit pypi setuptools3
 
-RDEPENDS:${PN} += "\
-${PYTHON_PN}-core \
-${PYTHON_PN}-pyserial \
+RDEPENDS:${PN} += " \
+python3-pyserial \
 "
-- 
2.39.2


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



[oe] [PATCH v2 30/55] python3-flask-sijax: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python-flask-sijax.inc | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/meta-python/recipes-devtools/python/python-flask-sijax.inc 
b/meta-python/recipes-devtools/python/python-flask-sijax.inc
index 036cf7c3b..239c843fc 100644
--- a/meta-python/recipes-devtools/python/python-flask-sijax.inc
+++ b/meta-python/recipes-devtools/python/python-flask-sijax.inc
@@ -5,4 +5,8 @@ LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=266adc7b911b7c84b837bf77196e1ba6"
 
 PYPI_PACKAGE = "Flask-Sijax"
-RDEPENDS:${PN} += "python3-sijax"
+RDEPENDS:${PN} += " \
+python3-flask \
+python3-sijax \
+python3-werkzeug \
+"
-- 
2.39.2


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



[oe] [PATCH v2 31/55] python3-flask-script: remove recipe

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

This package has long been deprecated by upstream maintainers and doesn't
even work in meta-openembedded due to a run-time import error. Remove
the recipe.

Signed-off-by: Bartosz Golaszewski 
---
 .../packagegroups/packagegroup-meta-python.bb|  1 -
 .../recipes-devtools/python/python-flask-script.inc  | 12 
 .../python/python3-flask-script_2.0.6.bb |  2 --
 3 files changed, 15 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-flask-script.inc
 delete mode 100644 
meta-python/recipes-devtools/python/python3-flask-script_2.0.6.bb

diff --git a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb 
b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
index 982e41303..b23d24c6d 100644
--- a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
+++ b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
@@ -137,7 +137,6 @@ RDEPENDS:packagegroup-meta-python3 = "\
 python3-flask-nav \
 python3-flask-pymongo \
 python3-flask-restful \
-python3-flask-script \
 python3-flask-sijax \
 python3-flask-socketio \
 python3-flask-sqlalchemy \
diff --git a/meta-python/recipes-devtools/python/python-flask-script.inc 
b/meta-python/recipes-devtools/python/python-flask-script.inc
deleted file mode 100644
index 3a7adb32c..0
--- a/meta-python/recipes-devtools/python/python-flask-script.inc
+++ /dev/null
@@ -1,12 +0,0 @@
-DESCRIPTION = "Scripting support for flask"
-LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=e686048adb69341fc8a08caeda528b41"
-
-SRC_URI[md5sum] = "3fbd91fe13cebedfb2431331f6eabb68"
-SRC_URI[sha256sum] = 
"6425963d91054cfcc185807141c7314a9c5ad46325911bd24dcb489bd0161c65"
-
-PYPI_PACKAGE = "Flask-Script"
-
-RDEPENDS:${PN} += "\
-${PYTHON_PN}-flask \
-"
diff --git a/meta-python/recipes-devtools/python/python3-flask-script_2.0.6.bb 
b/meta-python/recipes-devtools/python/python3-flask-script_2.0.6.bb
deleted file mode 100644
index 9f885191b..0
--- a/meta-python/recipes-devtools/python/python3-flask-script_2.0.6.bb
+++ /dev/null
@@ -1,2 +0,0 @@
-inherit pypi setuptools3
-require python-flask-script.inc
-- 
2.39.2


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



[oe] [PATCH v2 29/55] python3-flask-sijax: stop using PYTHON_PN

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

We no longer support python2 so use python3 explicitly.

While at it: use '+=' for RDEPENDS assignment.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python-flask-sijax.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-python/recipes-devtools/python/python-flask-sijax.inc 
b/meta-python/recipes-devtools/python/python-flask-sijax.inc
index 4264f8f6d..036cf7c3b 100644
--- a/meta-python/recipes-devtools/python/python-flask-sijax.inc
+++ b/meta-python/recipes-devtools/python/python-flask-sijax.inc
@@ -5,4 +5,4 @@ LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=266adc7b911b7c84b837bf77196e1ba6"
 
 PYPI_PACKAGE = "Flask-Sijax"
-RDEPENDS:${PN} = "${PYTHON_PN}-sijax"
\ No newline at end of file
+RDEPENDS:${PN} += "python3-sijax"
-- 
2.39.2


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



[oe] [PATCH v2 26/55] python3-gsocketpool: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 .../python-gsocketpool/python3-gsocketpool_0.1.6.bb  | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git 
a/meta-python/recipes-connectivity/python-gsocketpool/python3-gsocketpool_0.1.6.bb
 
b/meta-python/recipes-connectivity/python-gsocketpool/python3-gsocketpool_0.1.6.bb
index ee0ffacbd..60ac18155 100644
--- 
a/meta-python/recipes-connectivity/python-gsocketpool/python3-gsocketpool_0.1.6.bb
+++ 
b/meta-python/recipes-connectivity/python-gsocketpool/python3-gsocketpool_0.1.6.bb
@@ -4,7 +4,10 @@ HOMEPAGE = "https://github.com/studio-ousia/gsocketpool;
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=4ba825394aec026b5f94edca44426859"
 
-RDEPENDS:${PN} += "python3-gevent"
+RDEPENDS:${PN} += " \
+python3-gevent \
+python3-logging \
+"
 
 SRC_URI[md5sum] = "49f5f292ef1b60944ae92ca426a5e550"
 SRC_URI[sha256sum] = 
"f2e2749aceadce6b27ca52e2b0a64af99797746a8681e1a2963f72007c14cb14"
-- 
2.39.2


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



[oe] [PATCH v2 28/55] python3-flask-mail: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-flask-mail_0.9.1.bb  | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/meta-python/recipes-devtools/python/python3-flask-mail_0.9.1.bb 
b/meta-python/recipes-devtools/python/python3-flask-mail_0.9.1.bb
index aaf02a23b..1aca3a161 100644
--- a/meta-python/recipes-devtools/python/python3-flask-mail_0.9.1.bb
+++ b/meta-python/recipes-devtools/python/python3-flask-mail_0.9.1.bb
@@ -11,4 +11,7 @@ PYPI_PACKAGE = "Flask-Mail"
 
 inherit pypi setuptools3
 
-RDEPENDS:${PN} = "python3-flask"
+RDEPENDS:${PN} = " \
+python3-blinker \
+python3-flask \
+"
-- 
2.39.2


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



[oe] [PATCH v2 27/55] python3-flask-mail: stop using PYTHON_PN

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

We no longer support python2 so use python3 explicitly.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python3-flask-mail_0.9.1.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-python/recipes-devtools/python/python3-flask-mail_0.9.1.bb 
b/meta-python/recipes-devtools/python/python3-flask-mail_0.9.1.bb
index e568f7fac..aaf02a23b 100644
--- a/meta-python/recipes-devtools/python/python3-flask-mail_0.9.1.bb
+++ b/meta-python/recipes-devtools/python/python3-flask-mail_0.9.1.bb
@@ -11,4 +11,4 @@ PYPI_PACKAGE = "Flask-Mail"
 
 inherit pypi setuptools3
 
-RDEPENDS:${PN} = "${PYTHON_PN}-flask"
+RDEPENDS:${PN} = "python3-flask"
-- 
2.39.2


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



[oe] [PATCH v2 25/55] python3-gsocketpool: stop using PYTHON_PN

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

We no longer support python2 so use python3 explicitly.

Signed-off-by: Bartosz Golaszewski 
---
 .../python-gsocketpool/python3-gsocketpool_0.1.6.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/meta-python/recipes-connectivity/python-gsocketpool/python3-gsocketpool_0.1.6.bb
 
b/meta-python/recipes-connectivity/python-gsocketpool/python3-gsocketpool_0.1.6.bb
index 9ded1d4be..ee0ffacbd 100644
--- 
a/meta-python/recipes-connectivity/python-gsocketpool/python3-gsocketpool_0.1.6.bb
+++ 
b/meta-python/recipes-connectivity/python-gsocketpool/python3-gsocketpool_0.1.6.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "https://github.com/studio-ousia/gsocketpool;
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=4ba825394aec026b5f94edca44426859"
 
-RDEPENDS:${PN} += "${PYTHON_PN}-gevent"
+RDEPENDS:${PN} += "python3-gevent"
 
 SRC_URI[md5sum] = "49f5f292ef1b60944ae92ca426a5e550"
 SRC_URI[sha256sum] = 
"f2e2749aceadce6b27ca52e2b0a64af99797746a8681e1a2963f72007c14cb14"
-- 
2.39.2


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



[oe] [PATCH v2 23/55] python3-h11: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python3-h11_0.14.0.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python3-h11_0.14.0.bb 
b/meta-python/recipes-devtools/python/python3-h11_0.14.0.bb
index 7bda0eae1..2bddefa3f 100644
--- a/meta-python/recipes-devtools/python/python3-h11_0.14.0.bb
+++ b/meta-python/recipes-devtools/python/python3-h11_0.14.0.bb
@@ -6,3 +6,5 @@ LIC_FILES_CHKSUM = 
"file://LICENSE.txt;md5=f5501d19c3116f4aaeef89369f458693"
 inherit pypi setuptools3
 
 SRC_URI[sha256sum] = 
"8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"
+
+RDEPENDS:${PN} += "python3-profile"
-- 
2.39.2


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



[oe] [PATCH v2 24/55] python3-gsocketpool: drop unneeded DEPENDS

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

This package doesn't depend on python3-gevent at build-time.

Signed-off-by: Bartosz Golaszewski 
---
 .../python-gsocketpool/python3-gsocketpool_0.1.6.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/meta-python/recipes-connectivity/python-gsocketpool/python3-gsocketpool_0.1.6.bb
 
b/meta-python/recipes-connectivity/python-gsocketpool/python3-gsocketpool_0.1.6.bb
index a5581c252..9ded1d4be 100644
--- 
a/meta-python/recipes-connectivity/python-gsocketpool/python3-gsocketpool_0.1.6.bb
+++ 
b/meta-python/recipes-connectivity/python-gsocketpool/python3-gsocketpool_0.1.6.bb
@@ -3,7 +3,7 @@ DESCRIPTION = "creates a pool of connections that can be used 
with gevent"
 HOMEPAGE = "https://github.com/studio-ousia/gsocketpool;
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=4ba825394aec026b5f94edca44426859"
-DEPENDS += "${PYTHON_PN}-gevent"
+
 RDEPENDS:${PN} += "${PYTHON_PN}-gevent"
 
 SRC_URI[md5sum] = "49f5f292ef1b60944ae92ca426a5e550"
-- 
2.39.2


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



[oe] [PATCH v2 21/55] python-idna-ssl: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python-idna-ssl.inc | 5 +
 1 file changed, 5 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python-idna-ssl.inc 
b/meta-python/recipes-devtools/python/python-idna-ssl.inc
index e74bbd7c6..356a3873e 100644
--- a/meta-python/recipes-devtools/python/python-idna-ssl.inc
+++ b/meta-python/recipes-devtools/python/python-idna-ssl.inc
@@ -8,3 +8,8 @@ SRC_URI[sha256sum] = 
"a933e3bb13da54383f9e8f35dc4f9cb9eb9b3b78c6b36f311254d6d0d9
 
 PYPI_PACKAGE = "idna-ssl"
 inherit pypi
+
+RDEPENDS:${PN} += " \
+python3-idna \
+python3-io \
+"
-- 
2.39.2


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



[oe] [PATCH v2 22/55] python3-hpack: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-connectivity/python-hpack/python3-hpack_4.0.0.bb| 2 ++
 1 file changed, 2 insertions(+)

diff --git 
a/meta-python/recipes-connectivity/python-hpack/python3-hpack_4.0.0.bb 
b/meta-python/recipes-connectivity/python-hpack/python3-hpack_4.0.0.bb
index afba98e4b..0297cb8c2 100644
--- a/meta-python/recipes-connectivity/python-hpack/python3-hpack_4.0.0.bb
+++ b/meta-python/recipes-connectivity/python-hpack/python3-hpack_4.0.0.bb
@@ -8,3 +8,5 @@ SRC_URI[md5sum] = "27e01514ef06dc9fa0798d3dcb7de47c"
 SRC_URI[sha256sum] = 
"fc41de0c63e687ebffde81187a948221294896f6bdc0ae2312708df339430095"
 
 inherit pypi setuptools3
+
+RDEPENDS:${PN} += "python3-logging"
-- 
2.39.2


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



[oe] [PATCH v2 20/55] python3-isodate: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python3-isodate_0.6.1.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-python/recipes-devtools/python/python3-isodate_0.6.1.bb 
b/meta-python/recipes-devtools/python/python3-isodate_0.6.1.bb
index 722ea3af3..c65083b77 100644
--- a/meta-python/recipes-devtools/python/python3-isodate_0.6.1.bb
+++ b/meta-python/recipes-devtools/python/python3-isodate_0.6.1.bb
@@ -7,6 +7,7 @@ SRC_URI[sha256sum] = 
"48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c1
 inherit pypi setuptools3
 
 RDEPENDS:${PN} += " \
+python3-numbers \
 python3-six \
 "
 
-- 
2.39.2


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



[oe] [PATCH v2 19/55] python3-isodate: stop using PYTHON_PN

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

We no longer support python2 so use python3 explicitly.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python3-isodate_0.6.1.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-python/recipes-devtools/python/python3-isodate_0.6.1.bb 
b/meta-python/recipes-devtools/python/python3-isodate_0.6.1.bb
index 2a5dcfca3..722ea3af3 100644
--- a/meta-python/recipes-devtools/python/python3-isodate_0.6.1.bb
+++ b/meta-python/recipes-devtools/python/python3-isodate_0.6.1.bb
@@ -7,7 +7,7 @@ SRC_URI[sha256sum] = 
"48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c1
 inherit pypi setuptools3
 
 RDEPENDS:${PN} += " \
-${PYTHON_PN}-six \
+python3-six \
 "
 
 BBCLASSEXTEND = "native nativesdk"
-- 
2.39.2


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



[oe] [PATCH v2 18/55] python3-isort: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python3-isort_5.12.0.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python3-isort_5.12.0.bb 
b/meta-python/recipes-devtools/python/python3-isort_5.12.0.bb
index 03d7a529c..d111393ea 100644
--- a/meta-python/recipes-devtools/python/python3-isort_5.12.0.bb
+++ b/meta-python/recipes-devtools/python/python3-isort_5.12.0.bb
@@ -9,8 +9,10 @@ SRC_URI[sha256sum] = 
"8bef7dde241278824a6d83f44a544709b065191b95b6e50894bdc722fc
 inherit pypi python_poetry_core
 
 RDEPENDS:${PN} += " \
+python3-compression \
 python3-datetime \
 python3-difflib \
+python3-email \
 python3-numbers \
 python3-pprint \
 python3-profile \
-- 
2.39.2


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



[oe] [PATCH v2 16/55] python3-flask-user: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-flask-user_0.6.19.bb   | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python3-flask-user_0.6.19.bb 
b/meta-python/recipes-devtools/python/python3-flask-user_0.6.19.bb
index a1b15c99c..ac449361a 100644
--- a/meta-python/recipes-devtools/python/python3-flask-user_0.6.19.bb
+++ b/meta-python/recipes-devtools/python/python3-flask-user_0.6.19.bb
@@ -15,7 +15,10 @@ inherit pypi setuptools3
 
 RDEPENDS:${PN} = " \
 python3-babel \
+python3-blinker \
 python3-flask \
 python3-flask-login \
 python3-flask-mail \
+python3-flask-wtf \
+python3-passlib \
 "
-- 
2.39.2


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



[oe] [PATCH v2 17/55] python3-isort: fix coding style

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Stop using PYTHON_PN and fix white spaces.

Signed-off-by: Bartosz Golaszewski 
---
 .../python/python3-isort_5.12.0.bb | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/meta-python/recipes-devtools/python/python3-isort_5.12.0.bb 
b/meta-python/recipes-devtools/python/python3-isort_5.12.0.bb
index 6d7b20f3a..03d7a529c 100644
--- a/meta-python/recipes-devtools/python/python3-isort_5.12.0.bb
+++ b/meta-python/recipes-devtools/python/python3-isort_5.12.0.bb
@@ -8,13 +8,13 @@ SRC_URI[sha256sum] = 
"8bef7dde241278824a6d83f44a544709b065191b95b6e50894bdc722fc
 
 inherit pypi python_poetry_core
 
-RDEPENDS:${PN} += "\
-${PYTHON_PN}-datetime \
-${PYTHON_PN}-shell \
-${PYTHON_PN}-profile \
-${PYTHON_PN}-numbers \
-${PYTHON_PN}-pprint \
-${PYTHON_PN}-difflib \
+RDEPENDS:${PN} += " \
+python3-datetime \
+python3-difflib \
+python3-numbers \
+python3-pprint \
+python3-profile \
+python3-shell \
 "
 
 BBCLASSEXTEND = "native nativesdk"
-- 
2.39.2


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



[oe] [PATCH v2 14/55] python3-et-xmlfile: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python3-et-xmlfile_1.1.0.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-python/recipes-devtools/python/python3-et-xmlfile_1.1.0.bb 
b/meta-python/recipes-devtools/python/python3-et-xmlfile_1.1.0.bb
index fbebf4869..50ae7fa5e 100644
--- a/meta-python/recipes-devtools/python/python3-et-xmlfile_1.1.0.bb
+++ b/meta-python/recipes-devtools/python/python3-et-xmlfile_1.1.0.bb
@@ -15,6 +15,7 @@ RDEPENDS:${PN} += " \
 python3-io \
 python3-pprint \
 python3-shell \
+python3-xml \
 "
 
 inherit setuptools3 pypi
-- 
2.39.2


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



[oe] [PATCH v2 15/55] python3-flask-user: fix coding style

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Stop using PYTHON_PN, make indentation and line breaks consistent and
order dependencies alphabetically.

Signed-off-by: Bartosz Golaszewski 
---
 .../python/python3-flask-user_0.6.19.bb| 10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/meta-python/recipes-devtools/python/python3-flask-user_0.6.19.bb 
b/meta-python/recipes-devtools/python/python3-flask-user_0.6.19.bb
index fbacf2e99..a1b15c99c 100644
--- a/meta-python/recipes-devtools/python/python3-flask-user_0.6.19.bb
+++ b/meta-python/recipes-devtools/python/python3-flask-user_0.6.19.bb
@@ -13,7 +13,9 @@ PYPI_PACKAGE = "Flask-User"
 
 inherit pypi setuptools3
 
-RDEPENDS:${PN} = "${PYTHON_PN}-flask \
-${PYTHON_PN}-flask-login \
-${PYTHON_PN}-flask-mail \
-${PYTHON_PN}-babel"
+RDEPENDS:${PN} = " \
+python3-babel \
+python3-flask \
+python3-flask-login \
+python3-flask-mail \
+"
-- 
2.39.2


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



[oe] [PATCH v2 12/55] python3-ecdsa: don't install tests

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

If we don't want to pull python3-unittest at run-time then we must not
install test packages. This recipe doesn't provide ptest anyway.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python3-ecdsa_0.18.0.bb | 4 
 1 file changed, 4 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python3-ecdsa_0.18.0.bb 
b/meta-python/recipes-devtools/python/python3-ecdsa_0.18.0.bb
index 6a399a96f..d1022891b 100644
--- a/meta-python/recipes-devtools/python/python3-ecdsa_0.18.0.bb
+++ b/meta-python/recipes-devtools/python/python3-ecdsa_0.18.0.bb
@@ -13,3 +13,7 @@ inherit pypi setuptools3 python3native
 RDEPENDS:${PN} += "python3-six python3-gmpy2 python3-pbr"
 
 BBCLASSEXTEND = "native nativesdk"
+
+do_install:append() {
+rm ${D}${PYTHON_SITEPACKAGES_DIR}/ecdsa/test_*.py
+}
-- 
2.39.2


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



[oe] [PATCH v2 13/55] python3-et-xmlfile: fix coding style

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Don't use PYTHON_PN and split RDEPENDS into multiple lines.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-et-xmlfile_1.1.0.bb| 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/meta-python/recipes-devtools/python/python3-et-xmlfile_1.1.0.bb 
b/meta-python/recipes-devtools/python/python3-et-xmlfile_1.1.0.bb
index 7c66342ec..fbebf4869 100644
--- a/meta-python/recipes-devtools/python/python3-et-xmlfile_1.1.0.bb
+++ b/meta-python/recipes-devtools/python/python3-et-xmlfile_1.1.0.bb
@@ -10,7 +10,12 @@ LIC_FILES_CHKSUM = 
"file://PKG-INFO;beginline=8;endline=8;md5=8227180126797a0148
 
 SRC_URI[sha256sum] = 
"8eb9e2bc2f8c97e37a2dc85a09ecdcdec9d8a396530a6d5a33b30b9a92da0c5c"
 
-RDEPENDS:${PN} += "${PYTHON_PN}-compression ${PYTHON_PN}-io 
${PYTHON_PN}-pprint ${PYTHON_PN}-shell"
+RDEPENDS:${PN} += " \
+python3-compression \
+python3-io \
+python3-pprint \
+python3-shell \
+"
 
 inherit setuptools3 pypi
 
-- 
2.39.2


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



[oe] [PATCH v2 11/55] python3-path: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python3-path_16.6.0.bb | 4 
 1 file changed, 4 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python3-path_16.6.0.bb 
b/meta-python/recipes-devtools/python/python3-path_16.6.0.bb
index 51b6574e0..095f906f0 100644
--- a/meta-python/recipes-devtools/python/python3-path_16.6.0.bb
+++ b/meta-python/recipes-devtools/python/python3-path_16.6.0.bb
@@ -14,6 +14,10 @@ DEPENDS += "python3-setuptools-scm-native"
 
 RDEPENDS:${PN} += " \
 python3-appdirs \
+python3-crypt \
+python3-io \
+python3-numbers \
+python3-shell \
 "
 RDEPENDS:${PN}-ptest += " \
 python3-pytest \
-- 
2.39.2


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



[oe] [PATCH v2 10/55] python3-path: fix coding style

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Stop using PYTHON_PN and make indentation consistent.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-path_16.6.0.bb| 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/meta-python/recipes-devtools/python/python3-path_16.6.0.bb 
b/meta-python/recipes-devtools/python/python3-path_16.6.0.bb
index 479177ed7..51b6574e0 100644
--- a/meta-python/recipes-devtools/python/python3-path_16.6.0.bb
+++ b/meta-python/recipes-devtools/python/python3-path_16.6.0.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=7a7126e068206290f3fe9f8d6c713ea6"
 SRC_URI[sha256sum] = 
"bea3816e1d54f4e33aac78d2031a0b0ed2f95e69db85b45d51f17df97071da69"
 
 SRC_URI += "\
-file://run-ptest \
+file://run-ptest \
 "
 
 inherit pypi python_setuptools_build_meta ptest
@@ -13,11 +13,11 @@ inherit pypi python_setuptools_build_meta ptest
 DEPENDS += "python3-setuptools-scm-native"
 
 RDEPENDS:${PN} += " \
-${PYTHON_PN}-appdirs \
+python3-appdirs \
 "
 RDEPENDS:${PN}-ptest += " \
-${PYTHON_PN}-pytest \
-${PYTHON_PN}-unittest-automake-output \
+python3-pytest \
+python3-unittest-automake-output \
 "
 
 BBCLASSEXTEND = "nativesdk native"
-- 
2.39.2


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



[oe] [PATCH v2 09/55] python3-paramiko: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python3-paramiko_3.2.0.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-python/recipes-devtools/python/python3-paramiko_3.2.0.bb 
b/meta-python/recipes-devtools/python/python3-paramiko_3.2.0.bb
index 2f3cf6eb7..5420a9edc 100644
--- a/meta-python/recipes-devtools/python/python3-paramiko_3.2.0.bb
+++ b/meta-python/recipes-devtools/python/python3-paramiko_3.2.0.bb
@@ -14,6 +14,7 @@ CLEANBROKEN = "1"
 RDEPENDS:${PN} += " \
 python3-bcrypt \
 python3-cryptography \
+python3-logging \
 python3-pynacl \
 python3-unixadmin \
 "
-- 
2.39.2


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



[oe] [PATCH v2 07/55] python3-pako: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python3-pako_0.3.1.bb | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python3-pako_0.3.1.bb 
b/meta-python/recipes-devtools/python/python3-pako_0.3.1.bb
index 34cd096c9..046e6571e 100644
--- a/meta-python/recipes-devtools/python/python3-pako_0.3.1.bb
+++ b/meta-python/recipes-devtools/python/python3-pako_0.3.1.bb
@@ -11,3 +11,10 @@ do_install:append() {
   rm -rf ${D}${prefix}/pako/LICENSE
   rm -rf ${D}${prefix}/pako
 }
+
+RDEPENDS:${PN} += " \
+python3-appdirs \
+python3-io \
+python3-json \
+python3-logging \
+"
-- 
2.39.2


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



[oe] [PATCH v2 08/55] python3-paramiko: stop using PYTHON_PN

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

We no longer support python2 so stop using PYTHON_PN and use python3
explicitly.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-paramiko_3.2.0.bb  | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/meta-python/recipes-devtools/python/python3-paramiko_3.2.0.bb 
b/meta-python/recipes-devtools/python/python3-paramiko_3.2.0.bb
index f2d8bfe44..2f3cf6eb7 100644
--- a/meta-python/recipes-devtools/python/python3-paramiko_3.2.0.bb
+++ b/meta-python/recipes-devtools/python/python3-paramiko_3.2.0.bb
@@ -11,9 +11,9 @@ inherit pypi setuptools3
 
 CLEANBROKEN = "1"
 
-RDEPENDS:${PN} += "\
-${PYTHON_PN}-bcrypt \
-${PYTHON_PN}-cryptography \
-${PYTHON_PN}-pynacl \
-${PYTHON_PN}-unixadmin \
+RDEPENDS:${PN} += " \
+python3-bcrypt \
+python3-cryptography \
+python3-pynacl \
+python3-unixadmin \
 "
-- 
2.39.2


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



[oe] [PATCH v2 06/55] python3-padatious: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-padatious_0.4.8.bb| 8 
 1 file changed, 8 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python3-padatious_0.4.8.bb 
b/meta-python/recipes-devtools/python/python3-padatious_0.4.8.bb
index 404a0170d..fef6376ef 100644
--- a/meta-python/recipes-devtools/python/python3-padatious_0.4.8.bb
+++ b/meta-python/recipes-devtools/python/python3-padatious_0.4.8.bb
@@ -7,3 +7,11 @@ SRC_URI[md5sum] = "7dd2f1830737dc142aa199f77dacf32e"
 SRC_URI[sha256sum] = 
"e471f251b94e8cadf6e4214f0f3b7b36678848aaa8c51cd5638ab23ecb716f75"
 
 inherit pypi setuptools3
+
+RDEPENDS:${PN} += " \
+python3-fann2 \
+python3-json \
+python3-multiprocessing \
+python3-padaos \
+python3-xxhash \
+"
-- 
2.39.2


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



[oe] [PATCH v2 05/55] python3-pywbem: add missing run-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-extended/pywbem/python3-pywbem_1.6.1.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-python/recipes-extended/pywbem/python3-pywbem_1.6.1.bb 
b/meta-python/recipes-extended/pywbem/python3-pywbem_1.6.1.bb
index 6bff9844d..1ab1bde44 100644
--- a/meta-python/recipes-extended/pywbem/python3-pywbem_1.6.1.bb
+++ b/meta-python/recipes-extended/pywbem/python3-pywbem_1.6.1.bb
@@ -30,11 +30,13 @@ DEPENDS += " \
 RDEPENDS:${PN} += "\
 python3-datetime \
 python3-io \
+python3-logging \
 python3-netclient \
 python3-nocasedict \
 python3-nocaselist \
 python3-ply \
 python3-pyyaml \
+python3-requests \
 python3-six \
 python3-stringold \
 python3-threading \
-- 
2.39.2


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



[oe] [PATCH v2 04/55] python3-pywbem: order RDEPENDS alphabetically

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Order run-time dependencies for clarity.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-extended/pywbem/python3-pywbem_1.6.1.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-python/recipes-extended/pywbem/python3-pywbem_1.6.1.bb 
b/meta-python/recipes-extended/pywbem/python3-pywbem_1.6.1.bb
index c84576382..6bff9844d 100644
--- a/meta-python/recipes-extended/pywbem/python3-pywbem_1.6.1.bb
+++ b/meta-python/recipes-extended/pywbem/python3-pywbem_1.6.1.bb
@@ -31,6 +31,8 @@ RDEPENDS:${PN} += "\
 python3-datetime \
 python3-io \
 python3-netclient \
+python3-nocasedict \
+python3-nocaselist \
 python3-ply \
 python3-pyyaml \
 python3-six \
@@ -38,8 +40,6 @@ RDEPENDS:${PN} += "\
 python3-threading \
 python3-unixadmin \
 python3-xml \
-python3-nocasedict \
-python3-nocaselist \
 python3-yamlloader \
 "
 
-- 
2.39.2


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



[oe] [PATCH v2 03/55] python3-pywbem: don't use PYTHON_PN

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

We no longer support python2. Drop PYTHON_PN and use python3 explicitly.

Signed-off-by: Bartosz Golaszewski 
---
 .../pywbem/python3-pywbem_1.6.1.bb| 34 +--
 1 file changed, 17 insertions(+), 17 deletions(-)

diff --git a/meta-python/recipes-extended/pywbem/python3-pywbem_1.6.1.bb 
b/meta-python/recipes-extended/pywbem/python3-pywbem_1.6.1.bb
index 8b0383cf6..c84576382 100644
--- a/meta-python/recipes-extended/pywbem/python3-pywbem_1.6.1.bb
+++ b/meta-python/recipes-extended/pywbem/python3-pywbem_1.6.1.bb
@@ -21,26 +21,26 @@ SRC_URI[sha256sum] = 
"abdbd6ce08b6c597cdd6c7730e6b49a842d913f2f6b3cc62b585c58ec3
 inherit pypi setuptools3 update-alternatives
 
 DEPENDS += " \
-${PYTHON_PN}-ply-native \
-${PYTHON_PN}-pyyaml-native \
-${PYTHON_PN}-six-native \
-${PYTHON_PN}-wheel-native \
+python3-ply-native \
+python3-pyyaml-native \
+python3-six-native \
+python3-wheel-native \
 "
 
 RDEPENDS:${PN} += "\
-${PYTHON_PN}-datetime \
-${PYTHON_PN}-io \
-${PYTHON_PN}-netclient \
-${PYTHON_PN}-ply \
-${PYTHON_PN}-pyyaml \
-${PYTHON_PN}-six \
-${PYTHON_PN}-stringold \
-${PYTHON_PN}-threading \
-${PYTHON_PN}-unixadmin \
-${PYTHON_PN}-xml \
-${PYTHON_PN}-nocasedict \
-${PYTHON_PN}-nocaselist \
-${PYTHON_PN}-yamlloader \
+python3-datetime \
+python3-io \
+python3-netclient \
+python3-ply \
+python3-pyyaml \
+python3-six \
+python3-stringold \
+python3-threading \
+python3-unixadmin \
+python3-xml \
+python3-nocasedict \
+python3-nocaselist \
+python3-yamlloader \
 "
 
 ALTERNATIVE:${PN} = "mof_compiler"
-- 
2.39.2


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



[oe] [PATCH v2 01/55] python3-pywbemtools: remove build-time dependencies

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

None of these are required at build-time. Remove them.

Signed-off-by: Bartosz Golaszewski 
---
 .../pywbemtools/python3-pywbemtools_1.2.0.bb   | 7 ---
 1 file changed, 7 deletions(-)

diff --git 
a/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_1.2.0.bb 
b/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_1.2.0.bb
index 5a56d0056..ab631b256 100644
--- a/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_1.2.0.bb
+++ b/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_1.2.0.bb
@@ -8,13 +8,6 @@ SRC_URI[sha256sum] = 
"921fb57ea2ae3ae2806e18895bb0457697f27221b345c8b05afa4cb304
 
 inherit pypi setuptools3
 
-DEPENDS += " \
-${PYTHON_PN}-pyyaml-native \
-${PYTHON_PN}-pywbem-native \
-${PYTHON_PN}-six-native \
-${PYTHON_PN}-click-native \
-"
-
 RDEPENDS:${PN}:class-target += "\
 ${PYTHON_PN}-ply \
 ${PYTHON_PN}-pyyaml \
-- 
2.39.2


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



[oe] [PATCH v2 00/55] python3: improve run-time dependencies situation - take 2

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

These are the remaining fixes for unmet run-time dependencies for python
packages (+ some other tweaks and fixes).

v1 -> v2:
- fixed the issue with python3-pywbem-native by removing build-time
  dependencies from python3-pywbemtools which turned out to not be
  needed

Bartosz Golaszewski (55):
  python3-pywbemtools: remove build-time dependencies
  python3-pywbem: drop unneeded class from RDEPENDS
  python3-pywbem: don't use PYTHON_PN
  python3-pywbem: order RDEPENDS alphabetically
  python3-pywbem: add missing run-time dependencies
  python3-padatious: add missing run-time dependencies
  python3-pako: add missing run-time dependencies
  python3-paramiko: stop using PYTHON_PN
  python3-paramiko: add missing run-time dependencies
  python3-path: fix coding style
  python3-path: add missing run-time dependencies
  python3-ecdsa: don't install tests
  python3-et-xmlfile: fix coding style
  python3-et-xmlfile: add missing run-time dependencies
  python3-flask-user: fix coding style
  python3-flask-user: add missing run-time dependencies
  python3-isort: fix coding style
  python3-isort: add missing run-time dependencies
  python3-isodate: stop using PYTHON_PN
  python3-isodate: add missing run-time dependencies
  python-idna-ssl: add missing run-time dependencies
  python3-hpack: add missing run-time dependencies
  python3-h11: add missing run-time dependencies
  python3-gsocketpool: drop unneeded DEPENDS
  python3-gsocketpool: stop using PYTHON_PN
  python3-gsocketpool: add missing run-time dependencies
  python3-flask-mail: stop using PYTHON_PN
  python3-flask-mail: add missing run-time dependencies
  python3-flask-sijax: stop using PYTHON_PN
  python3-flask-sijax: add missing run-time dependencies
  python3-flask-script: remove recipe
  python3-aioserial: fix coding style
  python3-aioserial: add missing run-time dependencies
  python3-aspectlib: add missing run-time dependencies
  python3-asyncio-throttle: add missing run-time dependencies
  python3-attrdict3: add missing run-time dependencies
  python3-betamax: add missing run-time dependencies
  python3-binwalk: add missing run-time dependencies
  python3-can: fix coding style
  python3-can: add missing run-time dependencies
  python3-click-spinner: add missing run-time dependencies
  python3-colorlog: add missing run-time dependencies
  python3-colorzero: add missing run-time dependencies
  python3-configobj: fix coding style
  python3-configobj: add missing run-time dependencies
  python3-configshell-fb: add missing run-time dependencies
  python3-coverage: fix coding style and RDEPENDS
  python3-custom-inherit: add missing run-time dependencies
  python3-dateparser: fix coding style
  python3-dateparser: add missing run-time dependencies
  python3-tzlocal: fix coding style
  python3-tzlocal: add missing run-time dependencies
  python3-dbus-next: add missing run-time dependencies
  python3-defusedxml: add missing run-time dependencies
  python3-setuptools-scm-git-archive: add missing run-time dependencies

 .../python3-gsocketpool_0.1.6.bb  |  7 +++-
 .../python-hpack/python3-hpack_4.0.0.bb   |  2 +
 .../packagegroups/packagegroup-meta-python.bb |  1 -
 .../python/python-flask-script.inc| 12 --
 .../python/python-flask-sijax.inc |  6 ++-
 .../python/python-idna-ssl.inc|  5 +++
 .../python/python3-aioserial_1.3.1.bb |  6 +--
 .../python/python3-aspectlib_2.0.0.bb |  5 ++-
 .../python/python3-asyncio-throttle_1.0.2.bb  |  2 +
 .../python/python3-betamax_0.8.1.bb   |  6 ++-
 .../python/python3-binwalk_2.3.3.bb   |  8 +++-
 .../python/python3-can_4.2.1.bb   | 28 +++---
 .../python/python3-click-spinner_0.1.10.bb|  2 +
 .../python/python3-colorlog_6.7.0.bb  |  2 +
 .../python/python3-colorzero_2.0.bb   |  5 ++-
 .../python/python3-configobj_5.0.8.bb |  5 ++-
 .../python/python3-configshell-fb_1.1.29.bb   |  7 +++-
 .../python/python3-coverage_7.2.7.bb  | 19 +-
 .../python/python3-custom-inherit_2.3.1.bb|  5 +++
 .../python/python3-dateparser_1.1.8.bb| 11 --
 .../python/python3-dbus-next_0.2.3.bb |  5 +++
 .../python/python3-defusedxml_0.7.1.bb|  2 +
 .../python/python3-ecdsa_0.18.0.bb|  4 ++
 .../python/python3-et-xmlfile_1.1.0.bb|  8 +++-
 .../python/python3-flask-mail_0.9.1.bb|  5 ++-
 .../python/python3-flask-script_2.0.6.bb  |  2 -
 .../python/python3-flask-user_0.6.19.bb   | 13 +--
 .../python/python3-h11_0.14.0.bb  |  2 +
 .../python/python3-isodate_0.6.1.bb   |  3 +-
 .../python/python3-isort_5.12.0.bb| 16 
 .../python/python3-padatious_0.4.8.bb |  8 
 .../python/python3-pako_0.3.1.bb  |  7 
 .../python/python3-paramiko_3.2.0.bb  | 11 +++---
 .../python/python3-path_16.6.0.bb | 12 --
 .../pyth

[oe] [PATCH v2 02/55] python3-pywbem: drop unneeded class from RDEPENDS

2023-06-23 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

The native package has the same dependencies. Even if normally they are
satisfied by python3-native, we should still use a global RDEPENDS.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-extended/pywbem/python3-pywbem_1.6.1.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-python/recipes-extended/pywbem/python3-pywbem_1.6.1.bb 
b/meta-python/recipes-extended/pywbem/python3-pywbem_1.6.1.bb
index 71af06881..8b0383cf6 100644
--- a/meta-python/recipes-extended/pywbem/python3-pywbem_1.6.1.bb
+++ b/meta-python/recipes-extended/pywbem/python3-pywbem_1.6.1.bb
@@ -27,7 +27,7 @@ DEPENDS += " \
 ${PYTHON_PN}-wheel-native \
 "
 
-RDEPENDS:${PN}:class-target += "\
+RDEPENDS:${PN} += "\
 ${PYTHON_PN}-datetime \
 ${PYTHON_PN}-io \
 ${PYTHON_PN}-netclient \
-- 
2.39.2


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#103498): 
https://lists.openembedded.org/g/openembedded-devel/message/103498
Mute This Topic: https://lists.openembedded.org/mt/99719585/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][RESEND PATCH 01/54] python3-pywbem: drop unneeded class from RDEPENDS

2023-06-21 Thread Bartosz Golaszewski
On Tue, Jun 20, 2023 at 8:15 PM Khem Raj  wrote:
>
> Some more dep failures on parse
>
> 23:11:18 ERROR: Nothing RPROVIDES 'python3-nocasedict-native' (but
> virtual:native:/mnt/jenkins/workspace/Yocto-world-musl/sources/meta-openembedded/meta-python/recipes-extended/pywbem/python3-pywbem_1.6.1.bb
> RDEPENDS on or otherwise requires it)
> 23:11:18 NOTE: Runtime target 'python3-nocasedict-native' is
> unbuildable, removing...
> 23:11:18 Missing or unbuildable dependency chain was:
> ['python3-nocasedict-native']
> 23:11:18 NOTE: Runtime target 'python3-pywbemtools-dev' is
> unbuildable, removing...
> 23:11:18 Missing or unbuildable dependency chain was:
> ['python3-pywbemtools-dev', 'python3-pywbem-native',
> 'python3-nocasedict-native']
> 23:11:19 NOTE: Runtime target 'python3-pywbemtools' is unbuildable, 
> removing...
> 23:11:19 Missing or unbuildable dependency chain was:
> ['python3-pywbemtools', 'python3-pywbem-native',
> 'python3-nocasedict-native']
> 23:11:23 ERROR: Nothing RPROVIDES 'python3-nocaselist-native' (but
> virtual:native:/mnt/jenkins/workspace/Yocto-world-musl/sources/meta-openembedded/meta-python/recipes-extended/pywbem/python3-pywbem_1.6.1.bb
> RDEPENDS on or otherwise requires it)
> 23:11:23 NOTE: Runtime target 'python3-nocaselist-native' is
> unbuildable, removing...
> 23:11:23 Missing or unbuildable dependency chain was:
> ['python3-nocaselist-native']
> 23:11:28 ERROR: Nothing RPROVIDES 'python3-yamlloader-native' (but
> virtual:native:/mnt/jenkins/workspace/Yocto-world-musl/sources/meta-openembedded/meta-python/recipes-extended/pywbem/python3-pywbem_1.6.1.bb
> RDEPENDS on or otherwise requires it)
> 23:11:28 NOTE: Runtime target 'python3-yamlloader-native' is
> unbuildable, removing...
> 23:11:28 Missing or unbuildable dependency chain was:
> ['python3-yamlloader-native']
>

Feel free to drop this and whichever other patches cause failures, I
will look at whatever remains after this round.

Bart

> On Tue, Jun 20, 2023 at 11:03 AM Khem Raj  wrote:
> >
> > here are some failures
> >
> > https://autobuilder.yoctoproject.org/typhoon/#/builders/88/builds/2841
> >
> > On Mon, Jun 19, 2023 at 6:16 PM Khem Raj  wrote:
> > >
> > > On 6/19/23 6:21 AM, Bartosz Golaszewski wrote:
> > > > From: Bartosz Golaszewski 
> > > >
> > > > The native package has the same dependencies. Even if normally they are
> > > > satisfied by python3-native, we should still use a global RDEPENDS.
> > > >
> > >
> > > This will deepen the dependency list for native packages. Why should we
> > > do this ?
> > >
> > > > Signed-off-by: Bartosz Golaszewski 
> > > > ---
> > > >   meta-python/recipes-extended/pywbem/python3-pywbem_1.6.1.bb | 2 +-
> > > >   1 file changed, 1 insertion(+), 1 deletion(-)
> > > >
> > > > diff --git 
> > > > a/meta-python/recipes-extended/pywbem/python3-pywbem_1.6.1.bb 
> > > > b/meta-python/recipes-extended/pywbem/python3-pywbem_1.6.1.bb
> > > > index 71af06881..8b0383cf6 100644
> > > > --- a/meta-python/recipes-extended/pywbem/python3-pywbem_1.6.1.bb
> > > > +++ b/meta-python/recipes-extended/pywbem/python3-pywbem_1.6.1.bb
> > > > @@ -27,7 +27,7 @@ DEPENDS += " \
> > > >   ${PYTHON_PN}-wheel-native \
> > > >   "
> > > >
> > > > -RDEPENDS:${PN}:class-target += "\
> > > > +RDEPENDS:${PN} += "\
> > > >   ${PYTHON_PN}-datetime \
> > > >   ${PYTHON_PN}-io \
> > > >   ${PYTHON_PN}-netclient \

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



[oe] [meta-python][RESEND PATCH 53/54] python3-defusedxml: add missing run-time dependencies

2023-06-19 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python3-defusedxml_0.7.1.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python3-defusedxml_0.7.1.bb 
b/meta-python/recipes-devtools/python/python3-defusedxml_0.7.1.bb
index 3396c7262..8ec6680d8 100644
--- a/meta-python/recipes-devtools/python/python3-defusedxml_0.7.1.bb
+++ b/meta-python/recipes-devtools/python/python3-defusedxml_0.7.1.bb
@@ -10,3 +10,5 @@ SRC_URI[sha256sum] = 
"1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51
 inherit pypi setuptools3
 
 BBCLASSEXTEND = "native"
+
+RDEPENDS:${PN} += "python3-xml"
-- 
2.39.2


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



[oe] [meta-python][RESEND PATCH 54/54] python3-setuptools-scm-git-archive: add missing run-time dependencies

2023-06-19 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 .../python/python3-setuptools-scm-git-archive_1.1.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/meta-python/recipes-devtools/python/python3-setuptools-scm-git-archive_1.1.bb 
b/meta-python/recipes-devtools/python/python3-setuptools-scm-git-archive_1.1.bb
index 472c4eb1c..2068871d9 100644
--- 
a/meta-python/recipes-devtools/python/python3-setuptools-scm-git-archive_1.1.bb
+++ 
b/meta-python/recipes-devtools/python/python3-setuptools-scm-git-archive_1.1.bb
@@ -11,5 +11,6 @@ PYPI_PACKAGE = "setuptools_scm_git_archive"
 PYPI_SRC_URI = 
"https://files.pythonhosted.org/packages/7e/2c/0c15b29a1b5940250bfdc4a4f53272e35cd7cf8a34159291b6b4ec9eb291/${PYPI_ARCHIVE_NAME};
 
 DEPENDS += "python3-setuptools-scm-native"
+RDEPENDS:${PN} += "python3-setuptools-scm"
 
 BBCLASSEXTEND = "native nativesdk"
-- 
2.39.2


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



[oe] [meta-python][RESEND PATCH 52/54] python3-dbus-next: add missing run-time dependencies

2023-06-19 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-dbus-next_0.2.3.bb   | 5 +
 1 file changed, 5 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python3-dbus-next_0.2.3.bb 
b/meta-python/recipes-devtools/python/python3-dbus-next_0.2.3.bb
index 3ee11b9d5..9f6aa7ed7 100644
--- a/meta-python/recipes-devtools/python/python3-dbus-next_0.2.3.bb
+++ b/meta-python/recipes-devtools/python/python3-dbus-next_0.2.3.bb
@@ -10,3 +10,8 @@ PYPI_PACKAGE = "dbus_next"
 inherit pypi setuptools3
 
 BBCLASSEXTEND = "native nativesdk"
+
+RDEPENDS:${PN} += " \
+python3-asyncio \
+python3-xml \
+"
-- 
2.39.2


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



[oe] [meta-python][RESEND PATCH 51/54] python3-tzlocal: add missing run-time dependencies

2023-06-19 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python3-tzlocal_5.0.1.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-python/recipes-devtools/python/python3-tzlocal_5.0.1.bb 
b/meta-python/recipes-devtools/python/python3-tzlocal_5.0.1.bb
index 97f4f410e..a59fd9364 100644
--- a/meta-python/recipes-devtools/python/python3-tzlocal_5.0.1.bb
+++ b/meta-python/recipes-devtools/python/python3-tzlocal_5.0.1.bb
@@ -9,5 +9,6 @@ inherit pypi python_setuptools_build_meta
 
 RDEPENDS:${PN} += " \
 python3-datetime \
+python3-logging \
 python3-pytz-deprecation-shim \
 "
-- 
2.39.2


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



[oe] [meta-python][RESEND PATCH 49/54] python3-dateparser: add missing run-time dependencies

2023-06-19 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-dateparser_1.1.8.bb| 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python3-dateparser_1.1.8.bb 
b/meta-python/recipes-devtools/python/python3-dateparser_1.1.8.bb
index 13e8b184d..8b890fb22 100644
--- a/meta-python/recipes-devtools/python/python3-dateparser_1.1.8.bb
+++ b/meta-python/recipes-devtools/python/python3-dateparser_1.1.8.bb
@@ -13,6 +13,9 @@ CLEANBROKEN = "1"
 
 RDEPENDS:${PN} += " \
 python3-dateutil \
+python3-logging \
+python3-pytz \
+python3-regex \
 python3-ruamel-yaml \
 python3-tzlocal \
 "
-- 
2.39.2


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



[oe] [meta-python][RESEND PATCH 50/54] python3-tzlocal: fix coding style

2023-06-19 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Stop using PYTHON_PN, order RDEPENDS alphabetically, fix whitespaces.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-tzlocal_5.0.1.bb| 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta-python/recipes-devtools/python/python3-tzlocal_5.0.1.bb 
b/meta-python/recipes-devtools/python/python3-tzlocal_5.0.1.bb
index 43649bf73..97f4f410e 100644
--- a/meta-python/recipes-devtools/python/python3-tzlocal_5.0.1.bb
+++ b/meta-python/recipes-devtools/python/python3-tzlocal_5.0.1.bb
@@ -7,7 +7,7 @@ SRC_URI[sha256sum] = 
"46eb99ad4bdb71f3f72b7d24f4267753e240944ecfc16f25d2719ba898
 
 inherit pypi python_setuptools_build_meta
 
-RDEPENDS:${PN} += "\
-   ${PYTHON_PN}-pytz-deprecation-shim \
-${PYTHON_PN}-datetime \
+RDEPENDS:${PN} += " \
+python3-datetime \
+python3-pytz-deprecation-shim \
 "
-- 
2.39.2


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



[oe] [meta-python][RESEND PATCH 48/54] python3-dateparser: fix coding style

2023-06-19 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Stop using PYTHON_PN, order RDEPENDS alphabetically, fix whitespaces.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-dateparser_1.1.8.bb   | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/meta-python/recipes-devtools/python/python3-dateparser_1.1.8.bb 
b/meta-python/recipes-devtools/python/python3-dateparser_1.1.8.bb
index 67b82940b..13e8b184d 100644
--- a/meta-python/recipes-devtools/python/python3-dateparser_1.1.8.bb
+++ b/meta-python/recipes-devtools/python/python3-dateparser_1.1.8.bb
@@ -12,9 +12,9 @@ inherit pypi setuptools3
 CLEANBROKEN = "1"
 
 RDEPENDS:${PN} += " \
-${PYTHON_PN}-dateutil \
-${PYTHON_PN}-tzlocal \
-${PYTHON_PN}-ruamel-yaml \
+python3-dateutil \
+python3-ruamel-yaml \
+python3-tzlocal \
 "
 
-# Ommitted ${PYTHON_PN}-convertdate, ${PYTHON_PN}-jdatetime 
${PYTHON_PN}-umalqurra
+# Ommitted python3-convertdate, python3-jdatetime python3-umalqurra
-- 
2.39.2


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



[oe] [meta-python][RESEND PATCH 47/54] python3-custom-inherit: add missing run-time dependencies

2023-06-19 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-custom-inherit_2.3.1.bb  | 5 +
 1 file changed, 5 insertions(+)

diff --git 
a/meta-python/recipes-devtools/python/python3-custom-inherit_2.3.1.bb 
b/meta-python/recipes-devtools/python/python3-custom-inherit_2.3.1.bb
index c0e10448e..8ff3b9e3d 100644
--- a/meta-python/recipes-devtools/python/python3-custom-inherit_2.3.1.bb
+++ b/meta-python/recipes-devtools/python/python3-custom-inherit_2.3.1.bb
@@ -8,3 +8,8 @@ PYPI_PACKAGE = "custom_inherit"
 SRC_URI[sha256sum] = 
"a0d104847b4cc1ae24e00061fc2e11da8766b019bf4c8c753822347366c8c49f"
 
 inherit pypi setuptools3
+
+RDEPENDS:${PN} += " \
+python3-json \
+python3-stringold \
+"
-- 
2.39.2


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



[oe] [meta-python][RESEND PATCH 46/54] python3-coverage: fix coding style and RDEPENDS

2023-06-19 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Don't use PYTHON_PN, order RDEPENDS alphabetically. Replace toml with
tomllib to fix a run-time dependency issue.

Signed-off-by: Bartosz Golaszewski 
---
 .../python/python3-coverage_7.2.7.bb  | 19 +--
 1 file changed, 9 insertions(+), 10 deletions(-)

diff --git a/meta-python/recipes-devtools/python/python3-coverage_7.2.7.bb 
b/meta-python/recipes-devtools/python/python3-coverage_7.2.7.bb
index f625996ba..a69c05d25 100644
--- a/meta-python/recipes-devtools/python/python3-coverage_7.2.7.bb
+++ b/meta-python/recipes-devtools/python/python3-coverage_7.2.7.bb
@@ -8,14 +8,13 @@ SRC_URI[sha256sum] = 
"924d94291ca674905fe9481f12294eb11f2d3d3fd1adb20314ba89e94f
 inherit pypi setuptools3
 
 RDEPENDS:${PN} += " \
-   ${PYTHON_PN}-sqlite3 \
-   ${PYTHON_PN}-core \
-   ${PYTHON_PN}-pprint \
-   ${PYTHON_PN}-json \
-   ${PYTHON_PN}-xml \
-   ${PYTHON_PN}-crypt \
-   ${PYTHON_PN}-shell \
-   ${PYTHON_PN}-io \
-   ${PYTHON_PN}-toml \
-   ${PYTHON_PN}-multiprocessing \
+python3-crypt \
+python3-io \
+python3-json \
+python3-multiprocessing \
+python3-pprint \
+python3-shell \
+python3-sqlite3 \
+python3-tomllib \
+python3-xml \
 "
-- 
2.39.2


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



[oe] [meta-python][RESEND PATCH 45/54] python3-configshell-fb: add missing run-time dependencies

2023-06-19 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 .../python/python3-configshell-fb_1.1.29.bb| 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git 
a/meta-python/recipes-devtools/python/python3-configshell-fb_1.1.29.bb 
b/meta-python/recipes-devtools/python/python3-configshell-fb_1.1.29.bb
index 2bb196c20..7a7ecd753 100644
--- a/meta-python/recipes-devtools/python/python3-configshell-fb_1.1.29.bb
+++ b/meta-python/recipes-devtools/python/python3-configshell-fb_1.1.29.bb
@@ -14,4 +14,9 @@ S = "${WORKDIR}/git"
 inherit setuptools3
 PIP_INSTALL_PACKAGE = "configshell_fb"
 
-RDEPENDS:${PN} += "python3-modules python3-fcntl python3-six"
+RDEPENDS:${PN} += " \
+python3-fcntl \
+python3-modules \
+python3-pyparsing \
+python3-six \
+"
-- 
2.39.2


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



[oe] [meta-python][RESEND PATCH 43/54] python3-configobj: fix coding style

2023-06-19 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Stop using PYTHON_PN, fix whitespaces.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-configobj_5.0.8.bb| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-python/recipes-devtools/python/python3-configobj_5.0.8.bb 
b/meta-python/recipes-devtools/python/python3-configobj_5.0.8.bb
index b8b5e6f89..fa9424a51 100644
--- a/meta-python/recipes-devtools/python/python3-configobj_5.0.8.bb
+++ b/meta-python/recipes-devtools/python/python3-configobj_5.0.8.bb
@@ -8,6 +8,6 @@ SRC_URI[sha256sum] = 
"6f704434a07dc4f4dc7c9a745172c1cad449feb548febd9f7fe362629c
 
 inherit pypi setuptools3
 
-RDEPENDS:${PN} += "\
-   ${PYTHON_PN}-six \
+RDEPENDS:${PN} += " \
+python3-six \
 "
-- 
2.39.2


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



[oe] [meta-python][RESEND PATCH 44/54] python3-configobj: add missing run-time dependencies

2023-06-19 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python3-configobj_5.0.8.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-python/recipes-devtools/python/python3-configobj_5.0.8.bb 
b/meta-python/recipes-devtools/python/python3-configobj_5.0.8.bb
index fa9424a51..8dc706fdf 100644
--- a/meta-python/recipes-devtools/python/python3-configobj_5.0.8.bb
+++ b/meta-python/recipes-devtools/python/python3-configobj_5.0.8.bb
@@ -9,5 +9,6 @@ SRC_URI[sha256sum] = 
"6f704434a07dc4f4dc7c9a745172c1cad449feb548febd9f7fe362629c
 inherit pypi setuptools3
 
 RDEPENDS:${PN} += " \
+python3-pprint \
 python3-six \
 "
-- 
2.39.2


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



[oe] [meta-python][RESEND PATCH 42/54] python3-colorzero: add missing run-time dependencies

2023-06-19 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python3-colorzero_2.0.bb | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/meta-python/recipes-devtools/python/python3-colorzero_2.0.bb 
b/meta-python/recipes-devtools/python/python3-colorzero_2.0.bb
index 1a331d13f..fc1615e67 100644
--- a/meta-python/recipes-devtools/python/python3-colorzero_2.0.bb
+++ b/meta-python/recipes-devtools/python/python3-colorzero_2.0.bb
@@ -7,7 +7,10 @@ HOMEPAGE = " https://github.com/waveform80/colorzero "
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=ae6c62710c0646f3c60d1ad812ea9bf9"
 
-RDEPENDS:${PN} = "python3-image"
+RDEPENDS:${PN} += " \
+python3-image \
+python3-numbers \
+"
 
 SRC_URI[sha256sum] = 
"e7d5a5c26cd0dc37b164ebefc609f388de24f8593b659191e12d85f8f9d5eb58"
 
-- 
2.39.2


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



[oe] [meta-python][RESEND PATCH 41/54] python3-colorlog: add missing run-time dependencies

2023-06-19 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python3-colorlog_6.7.0.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python3-colorlog_6.7.0.bb 
b/meta-python/recipes-devtools/python/python3-colorlog_6.7.0.bb
index 84b67e784..69f4be17c 100644
--- a/meta-python/recipes-devtools/python/python3-colorlog_6.7.0.bb
+++ b/meta-python/recipes-devtools/python/python3-colorlog_6.7.0.bb
@@ -8,3 +8,5 @@ inherit pypi setuptools3
 PYPI_PACKAGE = "colorlog"
 
 SRC_URI[sha256sum] = 
"bd94bd21c1e13fac7bd3153f4bc3a7dc0eb0974b8bc2fdf1a989e474f6e582e5"
+
+RDEPENDS:${PN} += "python3-logging"
-- 
2.39.2


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



[oe] [meta-python][RESEND PATCH 40/54] python3-click-spinner: add missing run-time dependencies

2023-06-19 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-click-spinner_0.1.10.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git 
a/meta-python/recipes-devtools/python/python3-click-spinner_0.1.10.bb 
b/meta-python/recipes-devtools/python/python3-click-spinner_0.1.10.bb
index 418f8a32a..bd1136fd7 100644
--- a/meta-python/recipes-devtools/python/python3-click-spinner_0.1.10.bb
+++ b/meta-python/recipes-devtools/python/python3-click-spinner_0.1.10.bb
@@ -7,3 +7,5 @@ SRC_URI[md5sum] = "ab68ed404401421819c81cc6c0677a87"
 SRC_URI[sha256sum] = 
"87eacf9d7298973a25d7615ef57d4782aebf913a532bba4b28a37e366e975daf"
 
 inherit pypi setuptools3
+
+RDEPENDS:${PN} += "python3-json"
-- 
2.39.2


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



[oe] [meta-python][RESEND PATCH 39/54] python3-can: add missing run-time dependencies

2023-06-19 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python3-can_4.2.1.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python3-can_4.2.1.bb 
b/meta-python/recipes-devtools/python/python3-can_4.2.1.bb
index f5cc31d6f..5e3d54d6f 100644
--- a/meta-python/recipes-devtools/python/python3-can_4.2.1.bb
+++ b/meta-python/recipes-devtools/python/python3-can_4.2.1.bb
@@ -11,10 +11,12 @@ inherit pypi setuptools3
 
 RDEPENDS:${PN} += " \
 python3-aenum \
+python3-asyncio \
 python3-codecs \
 python3-compression \
 python3-ctypes \
 python3-fcntl \
+python3-json \
 python3-logging \
 python3-misc \
 python3-netserver \
-- 
2.39.2


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



[oe] [meta-python][RESEND PATCH 38/54] python3-can: fix coding style

2023-06-19 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Stop using PYTHON_PN, order RDEPENDS alphabetically, drop unneeded
class-target override, fix whitespaces.

Signed-off-by: Bartosz Golaszewski 
---
 .../python/python3-can_4.2.1.bb   | 26 +--
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/meta-python/recipes-devtools/python/python3-can_4.2.1.bb 
b/meta-python/recipes-devtools/python/python3-can_4.2.1.bb
index d7b2a9573..f5cc31d6f 100644
--- a/meta-python/recipes-devtools/python/python3-can_4.2.1.bb
+++ b/meta-python/recipes-devtools/python/python3-can_4.2.1.bb
@@ -9,19 +9,19 @@ PYPI_PACKAGE="python-can"
 
 inherit pypi setuptools3
 
-RDEPENDS:${PN}:class-target += "\
-${PYTHON_PN}-aenum \
-${PYTHON_PN}-ctypes \
-${PYTHON_PN}-codecs \
-${PYTHON_PN}-compression \
-${PYTHON_PN}-fcntl \
-${PYTHON_PN}-logging \
-${PYTHON_PN}-misc \
-${PYTHON_PN}-netserver \
-${PYTHON_PN}-sqlite3 \
-${PYTHON_PN}-wrapt \
-${PYTHON_PN}-pkg-resources \
-${PYTHON_PN}-typing-extensions \
+RDEPENDS:${PN} += " \
+python3-aenum \
+python3-codecs \
+python3-compression \
+python3-ctypes \
+python3-fcntl \
+python3-logging \
+python3-misc \
+python3-netserver \
+python3-pkg-resources \
+python3-sqlite3 \
+python3-typing-extensions \
+python3-wrapt \
 "
 
 BBCLASSEXTEND = "native nativesdk"
-- 
2.39.2


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



[oe] [meta-python][RESEND PATCH 37/54] python3-binwalk: add missing run-time dependencies

2023-06-19 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-binwalk_2.3.3.bb  | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb 
b/meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb
index 362efa275..1a55a3e4a 100644
--- a/meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb
+++ b/meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb
@@ -14,4 +14,10 @@ S = "${WORKDIR}/git"
 
 inherit setuptools3
 
-RDEPENDS:${PN} += "python3-core"
+RDEPENDS:${PN} += " \
+python3-compression \
+python3-logging \
+python3-netserver \
+python3-setuptools \
+python3-stringold \
+"
-- 
2.39.2


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



[oe] [meta-python][RESEND PATCH 36/54] python3-betamax: add missing run-time dependencies

2023-06-19 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-betamax_0.8.1.bb| 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/meta-python/recipes-devtools/python/python3-betamax_0.8.1.bb 
b/meta-python/recipes-devtools/python/python3-betamax_0.8.1.bb
index e3c5e7a3a..feb9ab3e2 100644
--- a/meta-python/recipes-devtools/python/python3-betamax_0.8.1.bb
+++ b/meta-python/recipes-devtools/python/python3-betamax_0.8.1.bb
@@ -13,9 +13,13 @@ SRC_URI[sha256sum] = 
"5bf004ceffccae881213fb722f34517166b84a34919b92ffc14d1dbd05
 
 inherit pypi setuptools3 ptest
 
+RDEPENDS:${PN} += " \
+python3-requests \
+python3-unittest \
+"
+
 RDEPENDS:${PN}-ptest += " \
${PYTHON_PN}-pytest \
-   ${PYTHON_PN}-requests \
 "
 
 do_install_ptest() {
-- 
2.39.2


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



[oe] [meta-python][RESEND PATCH 35/54] python3-attrdict3: add missing run-time dependencies

2023-06-19 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 .../python3-attrdict3/python3-attrdict3_2.0.2.bb| 2 ++
 1 file changed, 2 insertions(+)

diff --git 
a/meta-python/recipes-devtools/python3-attrdict3/python3-attrdict3_2.0.2.bb 
b/meta-python/recipes-devtools/python3-attrdict3/python3-attrdict3_2.0.2.bb
index cb44ea71a..ee099c7ac 100644
--- a/meta-python/recipes-devtools/python3-attrdict3/python3-attrdict3_2.0.2.bb
+++ b/meta-python/recipes-devtools/python3-attrdict3/python3-attrdict3_2.0.2.bb
@@ -10,3 +10,5 @@ SRC_URI[sha256sum] = 
"004c171ca1120cc1755701db99d7fa4944afb1e68950434efdaa542513
 inherit pypi setuptools3
 
 BBCLASSEXTEND = "native"
+
+RDEPENDS:${PN} += "python3-six"
-- 
2.39.2


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



[oe] [meta-python][RESEND PATCH 34/54] python3-asyncio-throttle: add missing run-time dependencies

2023-06-19 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-asyncio-throttle_1.0.2.bb   | 2 ++
 1 file changed, 2 insertions(+)

diff --git 
a/meta-python/recipes-devtools/python/python3-asyncio-throttle_1.0.2.bb 
b/meta-python/recipes-devtools/python/python3-asyncio-throttle_1.0.2.bb
index 1f907511a..040e70940 100644
--- a/meta-python/recipes-devtools/python/python3-asyncio-throttle_1.0.2.bb
+++ b/meta-python/recipes-devtools/python/python3-asyncio-throttle_1.0.2.bb
@@ -7,3 +7,5 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=c7906e56b70808e1ade6ca05e0bb48d5"
 SRC_URI[sha256sum] = 
"2675282e99d9129ecc446f917e174bc205c65e36c602aa18603b4948567fcbd4"
 
 inherit pypi setuptools3
+
+RDEPENDS:${PN} += "python3-asyncio"
-- 
2.39.2


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



[oe] [meta-python][RESEND PATCH 33/54] python3-aspectlib: add missing run-time dependencies

2023-06-19 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-aspectlib_2.0.0.bb   | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/meta-python/recipes-devtools/python/python3-aspectlib_2.0.0.bb 
b/meta-python/recipes-devtools/python/python3-aspectlib_2.0.0.bb
index d2b0864ca..134151328 100644
--- a/meta-python/recipes-devtools/python/python3-aspectlib_2.0.0.bb
+++ b/meta-python/recipes-devtools/python/python3-aspectlib_2.0.0.bb
@@ -27,6 +27,9 @@ RDEPENDS:${PN}-ptest += "\
 python3-unittest-automake-output \
 "
 
-RDEPENDS:${PN} += "python3-core python3-fields"
+RDEPENDS:${PN} += " \
+python3-fields \
+python3-logging \
+"
 
 BBCLASSEXTEND = "native nativesdk"
-- 
2.39.2


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



[oe] [meta-python][RESEND PATCH 32/54] python3-aioserial: add missing run-time dependencies

2023-06-19 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python3-aioserial_1.3.1.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-python/recipes-devtools/python/python3-aioserial_1.3.1.bb 
b/meta-python/recipes-devtools/python/python3-aioserial_1.3.1.bb
index 6419aa9c9..8279f2704 100755
--- a/meta-python/recipes-devtools/python/python3-aioserial_1.3.1.bb
+++ b/meta-python/recipes-devtools/python/python3-aioserial_1.3.1.bb
@@ -12,5 +12,6 @@ SRC_URI[sha256sum] = 
"702bf03b0eb84b8ef2d8dac5cb925e1e685dce98f77b125569bc6fd2b3
 inherit pypi setuptools3
 
 RDEPENDS:${PN} += " \
+python3-asyncio \
 python3-pyserial \
 "
-- 
2.39.2


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



[oe] [meta-python][RESEND PATCH 31/54] python3-aioserial: fix coding style

2023-06-19 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Stop using PYTHON_PN, fix whitespaces, drop python3-core from RDEPENDS.

Signed-off-by: Bartosz Golaszewski 
---
 .../recipes-devtools/python/python3-aioserial_1.3.1.bb   | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/meta-python/recipes-devtools/python/python3-aioserial_1.3.1.bb 
b/meta-python/recipes-devtools/python/python3-aioserial_1.3.1.bb
index 7ef47a2f8..6419aa9c9 100755
--- a/meta-python/recipes-devtools/python/python3-aioserial_1.3.1.bb
+++ b/meta-python/recipes-devtools/python/python3-aioserial_1.3.1.bb
@@ -11,7 +11,6 @@ SRC_URI[sha256sum] = 
"702bf03b0eb84b8ef2d8dac5cb925e1e685dce98f77b125569bc6fd2b3
 
 inherit pypi setuptools3
 
-RDEPENDS:${PN} += "\
-${PYTHON_PN}-core \
-${PYTHON_PN}-pyserial \
+RDEPENDS:${PN} += " \
+python3-pyserial \
 "
-- 
2.39.2


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



[oe] [meta-python][RESEND PATCH 29/54] python3-flask-sijax: add missing run-time dependencies

2023-06-19 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

Add missing RDEPENDS for this package.

Signed-off-by: Bartosz Golaszewski 
---
 meta-python/recipes-devtools/python/python-flask-sijax.inc | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/meta-python/recipes-devtools/python/python-flask-sijax.inc 
b/meta-python/recipes-devtools/python/python-flask-sijax.inc
index 036cf7c3b..239c843fc 100644
--- a/meta-python/recipes-devtools/python/python-flask-sijax.inc
+++ b/meta-python/recipes-devtools/python/python-flask-sijax.inc
@@ -5,4 +5,8 @@ LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=266adc7b911b7c84b837bf77196e1ba6"
 
 PYPI_PACKAGE = "Flask-Sijax"
-RDEPENDS:${PN} += "python3-sijax"
+RDEPENDS:${PN} += " \
+python3-flask \
+python3-sijax \
+python3-werkzeug \
+"
-- 
2.39.2


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



  1   2   3   4   5   6   >