[oe] [meta-python][PATCH v3] python3-dbus: re-add recipe with latest patches and add ptest

2024-03-22 Thread Derek Straka
The python3-dbus package was removed in (dac933e).  While the upstream
project isn't active, other distributions (e.g. Fedora, Debian, etc)
continue to offer the package and apply patches to resolve reported issues.

While other packages offer similar functionality (e.g. dasbus), they are not
drop in replacements and the general dbus functionality works out of the box.
The python package has accomplished it's goal of providing useful functionality,
and the proposal is to continue to have it available in meta-python for use.

Signed-off-by: Derek Straka 
---
 .../ptest-packagelists-meta-python.inc|   1 +
 .../packagegroups/packagegroup-meta-python.bb |   1 +
 ...ttribute-conforming-to-introspect.dt.patch |  40 ++
 .../0002-Support-asynchronous-calls-58.patch  | 206 
 ...mation-between-D-Bus-errors-and-exce.patch | 495 ++
 .../python/python3-pydbus/run-ptest   |  15 +
 .../python/python3-pydbus_0.6.0.bb|  26 +
 7 files changed, 784 insertions(+)
 create mode 100644 
meta-python/recipes-devtools/python/python3-pydbus/0001-make-direction-attribute-conforming-to-introspect.dt.patch
 create mode 100644 
meta-python/recipes-devtools/python/python3-pydbus/0002-Support-asynchronous-calls-58.patch
 create mode 100644 
meta-python/recipes-devtools/python/python3-pydbus/0003-Support-transformation-between-D-Bus-errors-and-exce.patch
 create mode 100644 meta-python/recipes-devtools/python/python3-pydbus/run-ptest
 create mode 100644 meta-python/recipes-devtools/python/python3-pydbus_0.6.0.bb

diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc 
b/meta-python/conf/include/ptest-packagelists-meta-python.inc
index 447e0b938..ec26f768e 100644
--- a/meta-python/conf/include/ptest-packagelists-meta-python.inc
+++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc
@@ -53,6 +53,7 @@ PTESTS_FAST_META_PYTHON = "\
 python3-pytest-mock \
 python3-pytoml \
 python3-pyyaml-include \
+python3-pydbus \
 python3-rapidjson \
 python3-requests-file \
 python3-requests-toolbelt \
diff --git a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb 
b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
index eb5a26463..e0446da28 100644
--- a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
+++ b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
@@ -311,6 +311,7 @@ RDEPENDS:packagegroup-meta-python3 = "\
 python3-pycodestyle \
 python3-pyconnman \
 python3-pycurl \
+python3-pydbus \
 python3-pydicti \
 python3-pyephem \
 python3-pyexpect \
diff --git 
a/meta-python/recipes-devtools/python/python3-pydbus/0001-make-direction-attribute-conforming-to-introspect.dt.patch
 
b/meta-python/recipes-devtools/python/python3-pydbus/0001-make-direction-attribute-conforming-to-introspect.dt.patch
new file mode 100644
index 0..1bd17986e
--- /dev/null
+++ 
b/meta-python/recipes-devtools/python/python3-pydbus/0001-make-direction-attribute-conforming-to-introspect.dt.patch
@@ -0,0 +1,40 @@
+From 5fe65a35e0e7106347639f0258206fadb451c439 Mon Sep 17 00:00:00 2001
+From: Hiroaki KAWAI 
+Date: Wed, 1 Feb 2017 18:00:33 +0900
+Subject: [PATCH 1/3] make direction attribute conforming to introspect.dtd
+
+direction attribute defaults to "in" as
+in the DTD(*1), direction attribute is defined as following:
+
+```
+
+```
+
+*1) http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd
+
+Adapted from Fedora 
[https://src.fedoraproject.org/cgit/rpms/python-pydbus.git/]
+
+Upstream-Status: Inactive-Upstream (Last release 12/18/2016; Last commit 
05/6/2018)
+
+Signed-off-by: Derek Straka 
+---
+ pydbus/proxy_method.py | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/pydbus/proxy_method.py b/pydbus/proxy_method.py
+index 8798edd..3e6e6ee 100644
+--- a/pydbus/proxy_method.py
 b/pydbus/proxy_method.py
+@@ -33,8 +33,8 @@ class ProxyMethod(object):
+   self.__name__ = method.attrib["name"]
+   self.__qualname__ = self._iface_name + "." + self.__name__
+ 
+-  self._inargs  = [(arg.attrib.get("name", ""), 
arg.attrib["type"]) for arg in method if arg.tag == "arg" and 
arg.attrib["direction"] == "in"]
+-  self._outargs = [arg.attrib["type"] for arg in method if 
arg.tag == "arg" and arg.attrib["direction"] == "out"]
++  self._inargs  = [(arg.attrib.get("name", ""), 
arg.attrib["type"]) for arg in method if arg.tag == "arg" and 
arg.attrib.get("direction", "in") == "in"]
++  self._outargs = [arg.attrib["type"] for arg in method if 
arg.tag == "arg" and arg.attrib.get("direction", "in") == "out"]
+   sel

[oe] [meta-python][PATCH v2] python3-dbus: re-add recipe with latest patches and add ptest

2024-03-22 Thread Derek Straka
The python3-dbus package was removed in (dac933e).  While the upstream
project isn't active, other distributions (e.g. Fedora, Debian, etc)
continue to offer the package and apply patches to resolve reported issues.

While other packages offer similar functionality (e.g. dasbus), they are not
drop in replacements and the general dbus functionality works out of the box.
The python package has accomplished it's goal of providing useful functionality,
and the proposal is to continue to have it available in meta-python for use.

Signed-off-by: Derek Straka 
---
 .../ptest-packagelists-meta-python.inc|   1 +
 .../packagegroups/packagegroup-meta-python.bb |   1 +
 ...ttribute-conforming-to-introspect.dt.patch |  38 ++
 .../0002-Support-asynchronous-calls-58.patch  | 204 
 ...mation-between-D-Bus-errors-and-exce.patch | 493 ++
 .../python/python3-pydbus/run-ptest   |  15 +
 .../python/python3-pydbus_0.6.0.bb|  26 +
 7 files changed, 778 insertions(+)
 create mode 100644 
meta-python/recipes-devtools/python/python3-pydbus/0001-make-direction-attribute-conforming-to-introspect.dt.patch
 create mode 100644 
meta-python/recipes-devtools/python/python3-pydbus/0002-Support-asynchronous-calls-58.patch
 create mode 100644 
meta-python/recipes-devtools/python/python3-pydbus/0003-Support-transformation-between-D-Bus-errors-and-exce.patch
 create mode 100644 meta-python/recipes-devtools/python/python3-pydbus/run-ptest
 create mode 100644 meta-python/recipes-devtools/python/python3-pydbus_0.6.0.bb

diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc 
b/meta-python/conf/include/ptest-packagelists-meta-python.inc
index 447e0b938..ec26f768e 100644
--- a/meta-python/conf/include/ptest-packagelists-meta-python.inc
+++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc
@@ -53,6 +53,7 @@ PTESTS_FAST_META_PYTHON = "\
 python3-pytest-mock \
 python3-pytoml \
 python3-pyyaml-include \
+python3-pydbus \
 python3-rapidjson \
 python3-requests-file \
 python3-requests-toolbelt \
diff --git a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb 
b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
index eb5a26463..e0446da28 100644
--- a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
+++ b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
@@ -311,6 +311,7 @@ RDEPENDS:packagegroup-meta-python3 = "\
 python3-pycodestyle \
 python3-pyconnman \
 python3-pycurl \
+python3-pydbus \
 python3-pydicti \
 python3-pyephem \
 python3-pyexpect \
diff --git 
a/meta-python/recipes-devtools/python/python3-pydbus/0001-make-direction-attribute-conforming-to-introspect.dt.patch
 
b/meta-python/recipes-devtools/python/python3-pydbus/0001-make-direction-attribute-conforming-to-introspect.dt.patch
new file mode 100644
index 0..e1162f0ca
--- /dev/null
+++ 
b/meta-python/recipes-devtools/python/python3-pydbus/0001-make-direction-attribute-conforming-to-introspect.dt.patch
@@ -0,0 +1,38 @@
+From 5fe65a35e0e7106347639f0258206fadb451c439 Mon Sep 17 00:00:00 2001
+From: Hiroaki KAWAI 
+Date: Wed, 1 Feb 2017 18:00:33 +0900
+Subject: [PATCH 1/3] make direction attribute conforming to introspect.dtd
+
+direction attribute defaults to "in" as
+in the DTD(*1), direction attribute is defined as following:
+
+```
+
+```
+
+*1) http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd
+
+Upstream-Status: Inactive-Upstream 
[https://src.fedoraproject.org/cgit/rpms/python-pydbus.git/]
+
+Signed-off-by: Derek Straka 
+---
+ pydbus/proxy_method.py | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/pydbus/proxy_method.py b/pydbus/proxy_method.py
+index 8798edd..3e6e6ee 100644
+--- a/pydbus/proxy_method.py
 b/pydbus/proxy_method.py
+@@ -33,8 +33,8 @@ class ProxyMethod(object):
+   self.__name__ = method.attrib["name"]
+   self.__qualname__ = self._iface_name + "." + self.__name__
+ 
+-  self._inargs  = [(arg.attrib.get("name", ""), 
arg.attrib["type"]) for arg in method if arg.tag == "arg" and 
arg.attrib["direction"] == "in"]
+-  self._outargs = [arg.attrib["type"] for arg in method if 
arg.tag == "arg" and arg.attrib["direction"] == "out"]
++  self._inargs  = [(arg.attrib.get("name", ""), 
arg.attrib["type"]) for arg in method if arg.tag == "arg" and 
arg.attrib.get("direction", "in") == "in"]
++  self._outargs = [arg.attrib["type"] for arg in method if 
arg.tag == "arg" and arg.attrib.get("direction", "in") == "out"]
+   self._sinargs  = "(" + "".join(x[1] for x in self._inar

Re: [oe] [meta-python][PATCH] python3-dbus: re-add recipe with latest patches and add ptest

2024-03-22 Thread Derek Straka
Hi Alex,

Thanks for your reply.  I didn't know Inactive-Upstream was part of the
enum.  I'll update and send a v2 in the morning.

I hear the concerns about adding packages that aren't actively maintained.
I also agree with the sentiment you raise regarding the broader context of
downstream consumers, etc.   Ultimately, it's a package that matters to my
use cases, and I'm going to request we allow the patchset.  I'll accept
responsibility for the additional maintenance burdens, etc.  To mitigate
future issues, I'll push the consumers I can influence to move to a
maintained before the next release.

-Derek


On Fri, Mar 22, 2024, 12:39 AM Alexander Kanavin 
wrote:

> The patches are taken from Fedora, and so aren't backports. Should be
> marked Inactive-Upstream rather.
>
> I would only add it back if it has real consumers or use cases that
> can't be fulfilled by maintained alternatives. Otherwise, anyone can
> carry it privately,
>
> Alex
>
> On Thu, 21 Mar 2024 at 23:18, Derek Straka  wrote:
> >
> > The python3-dbus package was removed in (dac933e).  While the upstream
> > project isn't active, other distributions (e.g. Fedora, Debian, etc)
> > continue to offer the package and apply patches to resolve reported
> issues.
> >
> > While other packages offer similar functionality (e.g. dasbus), they are
> not
> > drop in replacements and the general dbus functionality works out of the
> box.
> > The python package has accomplished it's goal of providing useful
> functionality,
> > and the proposal is to continue to have it available in meta-python for
> use.
> >
> > Signed-off-by: Derek Straka 
> > ---
> >  .../ptest-packagelists-meta-python.inc|   1 +
> >  .../packagegroups/packagegroup-meta-python.bb |   1 +
> >  ...ttribute-conforming-to-introspect.dt.patch |   0
> >  .../0002-Support-asynchronous-calls-58.patch  | 204 
> >  ...mation-between-D-Bus-errors-and-exce.patch | 493 ++
> >  .../python/python3-pydbus/run-ptest   |  15 +
> >  .../python/python3-pydbus_0.6.0.bb|  26 +
> >  7 files changed, 740 insertions(+)
> >  create mode 100644
> meta-python/recipes-devtools/python/python3-pydbus/0001-make-direction-attribute-conforming-to-introspect.dt.patch
> >  create mode 100644
> meta-python/recipes-devtools/python/python3-pydbus/0002-Support-asynchronous-calls-58.patch
> >  create mode 100644
> meta-python/recipes-devtools/python/python3-pydbus/0003-Support-transformation-between-D-Bus-errors-and-exce.patch
> >  create mode 100644
> meta-python/recipes-devtools/python/python3-pydbus/run-ptest
> >  create mode 100644 meta-python/recipes-devtools/python/
> python3-pydbus_0.6.0.bb
> >
> > diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc
> b/meta-python/conf/include/ptest-packagelists-meta-python.inc
> > index 447e0b938..ec26f768e 100644
> > --- a/meta-python/conf/include/ptest-packagelists-meta-python.inc
> > +++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc
> > @@ -53,6 +53,7 @@ PTESTS_FAST_META_PYTHON = "\
> >  python3-pytest-mock \
> >  python3-pytoml \
> >  python3-pyyaml-include \
> > +python3-pydbus \
> >  python3-rapidjson \
> >  python3-requests-file \
> >  python3-requests-toolbelt \
> > diff --git a/meta-python/recipes-core/packagegroups/
> packagegroup-meta-python.bb b/meta-python/recipes-core/packagegroups/
> packagegroup-meta-python.bb
> > index eb5a26463..e0446da28 100644
> > --- a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
> > +++ b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
> > @@ -311,6 +311,7 @@ RDEPENDS:packagegroup-meta-python3 = "\
> >  python3-pycodestyle \
> >  python3-pyconnman \
> >  python3-pycurl \
> > +python3-pydbus \
> >  python3-pydicti \
> >  python3-pyephem \
> >  python3-pyexpect \
> > diff --git
> a/meta-python/recipes-devtools/python/python3-pydbus/0001-make-direction-attribute-conforming-to-introspect.dt.patch
> b/meta-python/recipes-devtools/python/python3-pydbus/0001-make-direction-attribute-conforming-to-introspect.dt.patch
> > new file mode 100644
> > index 0..e69de29bb
> > diff --git
> a/meta-python/recipes-devtools/python/python3-pydbus/0002-Support-asynchronous-calls-58.patch
> b/meta-python/recipes-devtools/python/python3-pydbus/0002-Support-asynchronous-calls-58.patch
> > new file mode 100644
> > index 0..44600a8e6
> > --- /dev/null
> > +++
> b/meta-python/recipes-devtools/python/python3-pydbus/0002-Support-asynchro

[oe] [meta-python][PATCH] python3-dbus: re-add recipe with latest patches and add ptest

2024-03-21 Thread Derek Straka
The python3-dbus package was removed in (dac933e).  While the upstream
project isn't active, other distributions (e.g. Fedora, Debian, etc)
continue to offer the package and apply patches to resolve reported issues.

While other packages offer similar functionality (e.g. dasbus), they are not
drop in replacements and the general dbus functionality works out of the box.
The python package has accomplished it's goal of providing useful functionality,
and the proposal is to continue to have it available in meta-python for use.

Signed-off-by: Derek Straka 
---
 .../ptest-packagelists-meta-python.inc|   1 +
 .../packagegroups/packagegroup-meta-python.bb |   1 +
 ...ttribute-conforming-to-introspect.dt.patch |   0
 .../0002-Support-asynchronous-calls-58.patch  | 204 
 ...mation-between-D-Bus-errors-and-exce.patch | 493 ++
 .../python/python3-pydbus/run-ptest   |  15 +
 .../python/python3-pydbus_0.6.0.bb|  26 +
 7 files changed, 740 insertions(+)
 create mode 100644 
meta-python/recipes-devtools/python/python3-pydbus/0001-make-direction-attribute-conforming-to-introspect.dt.patch
 create mode 100644 
meta-python/recipes-devtools/python/python3-pydbus/0002-Support-asynchronous-calls-58.patch
 create mode 100644 
meta-python/recipes-devtools/python/python3-pydbus/0003-Support-transformation-between-D-Bus-errors-and-exce.patch
 create mode 100644 meta-python/recipes-devtools/python/python3-pydbus/run-ptest
 create mode 100644 meta-python/recipes-devtools/python/python3-pydbus_0.6.0.bb

diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc 
b/meta-python/conf/include/ptest-packagelists-meta-python.inc
index 447e0b938..ec26f768e 100644
--- a/meta-python/conf/include/ptest-packagelists-meta-python.inc
+++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc
@@ -53,6 +53,7 @@ PTESTS_FAST_META_PYTHON = "\
 python3-pytest-mock \
 python3-pytoml \
 python3-pyyaml-include \
+python3-pydbus \
 python3-rapidjson \
 python3-requests-file \
 python3-requests-toolbelt \
diff --git a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb 
b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
index eb5a26463..e0446da28 100644
--- a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
+++ b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
@@ -311,6 +311,7 @@ RDEPENDS:packagegroup-meta-python3 = "\
 python3-pycodestyle \
 python3-pyconnman \
 python3-pycurl \
+python3-pydbus \
 python3-pydicti \
 python3-pyephem \
 python3-pyexpect \
diff --git 
a/meta-python/recipes-devtools/python/python3-pydbus/0001-make-direction-attribute-conforming-to-introspect.dt.patch
 
b/meta-python/recipes-devtools/python/python3-pydbus/0001-make-direction-attribute-conforming-to-introspect.dt.patch
new file mode 100644
index 0..e69de29bb
diff --git 
a/meta-python/recipes-devtools/python/python3-pydbus/0002-Support-asynchronous-calls-58.patch
 
b/meta-python/recipes-devtools/python/python3-pydbus/0002-Support-asynchronous-calls-58.patch
new file mode 100644
index 0..44600a8e6
--- /dev/null
+++ 
b/meta-python/recipes-devtools/python/python3-pydbus/0002-Support-asynchronous-calls-58.patch
@@ -0,0 +1,204 @@
+From 31d6dd7893a5e1bb9eb14bfcee861a5b62f64960 Mon Sep 17 00:00:00 2001
+From: Vendula Poncova 
+Date: Thu, 27 Jul 2017 18:41:29 +0200
+Subject: [PATCH 2/3] Support asynchronous calls (#58)
+
+Added support for asynchronous calls of methods. A method is called
+synchronously unless its callback parameter is specified. A callback
+is a function f(*args, returned=None, error=None), where args is
+callback_args specified in the method call, returned is a return
+value of the method and error is an exception raised by the method.
+
+Example of an asynchronous call:
+
+def func(x, y, returned=None, error=None):
+  pass
+
+proxy.Method(a, b, callback=func, callback_args=(x, y))
+
+Upstream-Status: Backport 
[https://src.fedoraproject.org/cgit/rpms/python-pydbus.git/]
+
+Signed-off-by: Derek Straka 
+---
+ doc/tutorial.rst   | 11 -
+ pydbus/proxy_method.py | 44 ++-
+ tests/publish_async.py | 63 ++
+ tests/run.sh   |  1 +
+ 4 files changed, 112 insertions(+), 7 deletions(-)
+ create mode 100644 tests/publish_async.py
+
+diff --git a/doc/tutorial.rst b/doc/tutorial.rst
+index 7474de3..b8479cf 100644
+--- a/doc/tutorial.rst
 b/doc/tutorial.rst
+@@ -84,7 +84,8 @@ All objects have methods, properties and signals.
+ Setting up an event loop
+ 
+ 
+-To handle signals emitted by exported objects, or to export your own objects, 
you need to setup an event loop.
++To handle signals emitted by exported objects, to asynchronously call methods
++or to export your own objects, you need to setup an event loop.
+ 
+ The only

[oe] [meta-python][PATCH] python3-service-identity: add missing ptest dependencies and re-enable functional tests

2024-02-23 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/conf/include/ptest-packagelists-meta-python.inc | 2 +-
 .../recipes-devtools/python/python3-service-identity_21.1.0.bb  | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc 
b/meta-python/conf/include/ptest-packagelists-meta-python.inc
index b3ed60a26..22894487f 100644
--- a/meta-python/conf/include/ptest-packagelists-meta-python.inc
+++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc
@@ -52,6 +52,7 @@ PTESTS_FAST_META_PYTHON = "\
 python3-requests-toolbelt \
 python3-semver \
 python3-serpent \
+python3-service-identity \
 python3-simpleeval \
 python3-smpplib \
 python3-soupsieve \
@@ -82,7 +83,6 @@ PTESTS_PROBLEMS_META_PYTHON ="\
 python3-pint \
 python3-pyzmq \
 python3-scrypt \
-python3-service-identity \
 python3-whoosh \
 python3-xlrd \
 "
diff --git 
a/meta-python/recipes-devtools/python/python3-service-identity_21.1.0.bb 
b/meta-python/recipes-devtools/python/python3-service-identity_21.1.0.bb
index 0a2f2728b..006fae290 100644
--- a/meta-python/recipes-devtools/python/python3-service-identity_21.1.0.bb
+++ b/meta-python/recipes-devtools/python/python3-service-identity_21.1.0.bb
@@ -22,6 +22,7 @@ RDEPENDS:${PN} += " \
 RDEPENDS:${PN}-ptest += " \
 python3-pytest \
 python3-unittest-automake-output \
+python3-pyopenssl \
 "
 
 do_install_ptest() {
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#109015): 
https://lists.openembedded.org/g/openembedded-devel/message/109015
Mute This Topic: https://lists.openembedded.org/mt/104533165/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-typeguard: update ptest dependencies and re-enable functional tests

2024-02-23 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/conf/include/ptest-packagelists-meta-python.inc| 2 +-
 meta-python/recipes-devtools/python/python3-typeguard_4.1.5.bb | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc 
b/meta-python/conf/include/ptest-packagelists-meta-python.inc
index 6903157ce..b3ed60a26 100644
--- a/meta-python/conf/include/ptest-packagelists-meta-python.inc
+++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc
@@ -58,6 +58,7 @@ PTESTS_FAST_META_PYTHON = "\
 python3-sqlparse \
 python3-tomlkit \
 python3-trustme \
+python3-typeguard \
 python3-ujson \
 python3-u-msgpack-python \
 python3-unidiff \
@@ -82,7 +83,6 @@ PTESTS_PROBLEMS_META_PYTHON ="\
 python3-pyzmq \
 python3-scrypt \
 python3-service-identity \
-python3-typeguard \
 python3-whoosh \
 python3-xlrd \
 "
diff --git a/meta-python/recipes-devtools/python/python3-typeguard_4.1.5.bb 
b/meta-python/recipes-devtools/python/python3-typeguard_4.1.5.bb
index 000620ef7..1e9f6685d 100644
--- a/meta-python/recipes-devtools/python/python3-typeguard_4.1.5.bb
+++ b/meta-python/recipes-devtools/python/python3-typeguard_4.1.5.bb
@@ -21,6 +21,7 @@ RDEPENDS:${PN}-ptest += " \
 python3-typing-extensions \
 python3-unittest-automake-output \
 python3-unixadmin \
+python3-mypy \
 "
 
 do_install_ptest() {
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#109014): 
https://lists.openembedded.org/g/openembedded-devel/message/109014
Mute This Topic: https://lists.openembedded.org/mt/104533015/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][PATCHv2 3/3] python3-parse: re-add functional ptests

2024-02-21 Thread Derek Straka
Verified tests pass with via the test image execution
(bitbake meta-python-image-ptest-python3-parse -c testimage

Signed-off-by: Derek Straka 
---
 meta-python/conf/include/ptest-packagelists-meta-python.inc | 2 +-
 meta-python/recipes-devtools/python/python3-parse/run-ptest | 3 ++-
 meta-python/recipes-devtools/python/python3-parse_1.20.1.bb | 1 +
 3 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc 
b/meta-python/conf/include/ptest-packagelists-meta-python.inc
index b3ceb457d..c899166a7 100644
--- a/meta-python/conf/include/ptest-packagelists-meta-python.inc
+++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc
@@ -29,6 +29,7 @@ PTESTS_FAST_META_PYTHON = "\
 python3-jsmin \
 python3-msgpack \
 python3-multidict \
+python3-parse \
 python3-parse-type \
 python3-platformdirs \
 python3-polyline \
@@ -77,7 +78,6 @@ PTESTS_PROBLEMS_META_PYTHON ="\
 python3-gpiod \
 python3-jsmin \
 python3-ordered-set \
-python3-parse \
 python3-pillow \
 python3-pint \
 python3-pyzmq \
diff --git a/meta-python/recipes-devtools/python/python3-parse/run-ptest 
b/meta-python/recipes-devtools/python/python3-parse/run-ptest
index 40c284799..8d2017d39 100644
--- a/meta-python/recipes-devtools/python/python3-parse/run-ptest
+++ b/meta-python/recipes-devtools/python/python3-parse/run-ptest
@@ -1,2 +1,3 @@
 #!/bin/sh
-pytest
+
+pytest --automake
diff --git a/meta-python/recipes-devtools/python/python3-parse_1.20.1.bb 
b/meta-python/recipes-devtools/python/python3-parse_1.20.1.bb
index 610a966d4..d2b91b3f3 100644
--- a/meta-python/recipes-devtools/python/python3-parse_1.20.1.bb
+++ b/meta-python/recipes-devtools/python/python3-parse_1.20.1.bb
@@ -19,6 +19,7 @@ RDEPENDS:${PN} += "\
 
 RDEPENDS:${PN}-ptest += " \
 python3-pytest \
+python3-unittest-automake-output \
 "
 
 do_install_ptest() {
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108975): 
https://lists.openembedded.org/g/openembedded-devel/message/108975
Mute This Topic: https://lists.openembedded.org/mt/104499505/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][PATCHv2 2/3] python3-msgpack: re-add functional ptests

2024-02-21 Thread Derek Straka
Verified tests pass with via the test image execution
(bitbake meta-python-image-ptest-python3-msgpack -c testimage)

Signed-off-by: Derek Straka 
---
 meta-python/conf/include/ptest-packagelists-meta-python.inc   | 1 -
 meta-python/recipes-devtools/python/python3-msgpack/run-ptest | 2 +-
 meta-python/recipes-devtools/python/python3-msgpack_1.0.7.bb  | 1 +
 3 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc 
b/meta-python/conf/include/ptest-packagelists-meta-python.inc
index 8593b65d7..b3ceb457d 100644
--- a/meta-python/conf/include/ptest-packagelists-meta-python.inc
+++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc
@@ -76,7 +76,6 @@ PTESTS_PROBLEMS_META_PYTHON ="\
 python3-fastjsonschema \
 python3-gpiod \
 python3-jsmin \
-python3-msgpack \
 python3-ordered-set \
 python3-parse \
 python3-pillow \
diff --git a/meta-python/recipes-devtools/python/python3-msgpack/run-ptest 
b/meta-python/recipes-devtools/python/python3-msgpack/run-ptest
index 5cec71169..8d2017d39 100644
--- a/meta-python/recipes-devtools/python/python3-msgpack/run-ptest
+++ b/meta-python/recipes-devtools/python/python3-msgpack/run-ptest
@@ -1,3 +1,3 @@
 #!/bin/sh
 
-pytest
+pytest --automake
diff --git a/meta-python/recipes-devtools/python/python3-msgpack_1.0.7.bb 
b/meta-python/recipes-devtools/python/python3-msgpack_1.0.7.bb
index e88532e73..5180301f7 100644
--- a/meta-python/recipes-devtools/python/python3-msgpack_1.0.7.bb
+++ b/meta-python/recipes-devtools/python/python3-msgpack_1.0.7.bb
@@ -18,6 +18,7 @@ SRC_URI += " \
 
 RDEPENDS:${PN}-ptest += " \
python3-pytest \
+   python3-unittest-automake-output \
 "
 
 do_install_ptest() {
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108974): 
https://lists.openembedded.org/g/openembedded-devel/message/108974
Mute This Topic: https://lists.openembedded.org/mt/104499504/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][PATCHv2 1/3] python3-jdcal: re-add functional ptests

2024-02-21 Thread Derek Straka
Verified tests pass with via the test image execution
(bitbake meta-python-image-ptest-python3-jdcal -c testimage)

Signed-off-by: Derek Straka 
---
 meta-python/conf/include/ptest-packagelists-meta-python.inc | 1 -
 meta-python/recipes-devtools/python/python3-jdcal/run-ptest | 2 +-
 meta-python/recipes-devtools/python/python3-jdcal_1.4.1.bb  | 1 +
 3 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc 
b/meta-python/conf/include/ptest-packagelists-meta-python.inc
index accce5391..8593b65d7 100644
--- a/meta-python/conf/include/ptest-packagelists-meta-python.inc
+++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc
@@ -75,7 +75,6 @@ PTESTS_PROBLEMS_META_PYTHON ="\
 python3-dnspython \
 python3-fastjsonschema \
 python3-gpiod \
-python3-jdcal \
 python3-jsmin \
 python3-msgpack \
 python3-ordered-set \
diff --git a/meta-python/recipes-devtools/python/python3-jdcal/run-ptest 
b/meta-python/recipes-devtools/python/python3-jdcal/run-ptest
index 5cec71169..8d2017d39 100644
--- a/meta-python/recipes-devtools/python/python3-jdcal/run-ptest
+++ b/meta-python/recipes-devtools/python/python3-jdcal/run-ptest
@@ -1,3 +1,3 @@
 #!/bin/sh
 
-pytest
+pytest --automake
diff --git a/meta-python/recipes-devtools/python/python3-jdcal_1.4.1.bb 
b/meta-python/recipes-devtools/python/python3-jdcal_1.4.1.bb
index 018a63a5f..afabe14a8 100644
--- a/meta-python/recipes-devtools/python/python3-jdcal_1.4.1.bb
+++ b/meta-python/recipes-devtools/python/python3-jdcal_1.4.1.bb
@@ -20,6 +20,7 @@ SRC_URI += " \
 
 RDEPENDS:${PN}-ptest += " \
python3-pytest \
+   python3-unittest-automake-output \
 "
 
 do_install_ptest() {
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108973): 
https://lists.openembedded.org/g/openembedded-devel/message/108973
Mute This Topic: https://lists.openembedded.org/mt/104499503/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 8/8] python3-license-expression: re-enable passing ptests for the package

2024-02-19 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/conf/include/ptest-packagelists-meta-python.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc 
b/meta-python/conf/include/ptest-packagelists-meta-python.inc
index 5e4e5d45a..fe8f07c85 100644
--- a/meta-python/conf/include/ptest-packagelists-meta-python.inc
+++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc
@@ -27,6 +27,7 @@ PTESTS_FAST_META_PYTHON = "\
 python3-iso3166 \
 python3-jdcal \
 python3-jsmin \
+python3-license-expression \
 python3-msgpack \
 python3-multidict \
 python3-parse \
@@ -76,7 +77,6 @@ PTESTS_PROBLEMS_META_PYTHON ="\
 python3-dnspython \
 python3-fastjsonschema \
 python3-gpiod \
-python3-license-expression \
 python3-ordered-set \
 python3-pillow \
 python3-pint \
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108893): 
https://lists.openembedded.org/g/openembedded-devel/message/108893
Mute This Topic: https://lists.openembedded.org/mt/104456250/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 7/8] python-inotify: re-enable working ptests for the package

2024-02-19 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/conf/include/ptest-packagelists-meta-python.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc 
b/meta-python/conf/include/ptest-packagelists-meta-python.inc
index 2733280e6..5e4e5d45a 100644
--- a/meta-python/conf/include/ptest-packagelists-meta-python.inc
+++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc
@@ -21,6 +21,7 @@ PTESTS_FAST_META_PYTHON = "\
 python3-gunicorn \
 python3-html2text \
 python3-inflection \
+python3-inotify \
 python3-intervals \
 python3-ipy \
 python3-iso3166 \
@@ -75,7 +76,6 @@ PTESTS_PROBLEMS_META_PYTHON ="\
 python3-dnspython \
 python3-fastjsonschema \
 python3-gpiod \
-python3-inotify \
 python3-license-expression \
 python3-ordered-set \
 python3-pillow \
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108892): 
https://lists.openembedded.org/g/openembedded-devel/message/108892
Mute This Topic: https://lists.openembedded.org/mt/104456249/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 6/8] python3-gunicorn: re-enable working ptests for the package

2024-02-19 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/conf/include/ptest-packagelists-meta-python.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc 
b/meta-python/conf/include/ptest-packagelists-meta-python.inc
index 7fa96a495..2733280e6 100644
--- a/meta-python/conf/include/ptest-packagelists-meta-python.inc
+++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc
@@ -18,6 +18,7 @@ PTESTS_FAST_META_PYTHON = "\
 python3-dominate \
 python3-execnet \
 python3-geojson \
+python3-gunicorn \
 python3-html2text \
 python3-inflection \
 python3-intervals \
@@ -74,7 +75,6 @@ PTESTS_PROBLEMS_META_PYTHON ="\
 python3-dnspython \
 python3-fastjsonschema \
 python3-gpiod \
-python3-gunicorn \
 python3-inotify \
 python3-license-expression \
 python3-ordered-set \
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108891): 
https://lists.openembedded.org/g/openembedded-devel/message/108891
Mute This Topic: https://lists.openembedded.org/mt/104456248/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 5/8] python3-jdcal: re-add functional ptests

2024-02-19 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/conf/include/ptest-packagelists-meta-python.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc 
b/meta-python/conf/include/ptest-packagelists-meta-python.inc
index ea6284264..7fa96a495 100644
--- a/meta-python/conf/include/ptest-packagelists-meta-python.inc
+++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc
@@ -23,6 +23,7 @@ PTESTS_FAST_META_PYTHON = "\
 python3-intervals \
 python3-ipy \
 python3-iso3166 \
+python3-jdcal \
 python3-jsmin \
 python3-msgpack \
 python3-multidict \
@@ -75,7 +76,6 @@ PTESTS_PROBLEMS_META_PYTHON ="\
 python3-gpiod \
 python3-gunicorn \
 python3-inotify \
-python3-jdcal \
 python3-license-expression \
 python3-ordered-set \
 python3-pillow \
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108890): 
https://lists.openembedded.org/g/openembedded-devel/message/108890
Mute This Topic: https://lists.openembedded.org/mt/104456247/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 4/8] python3-parse: add back working ptests

2024-02-19 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/conf/include/ptest-packagelists-meta-python.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc 
b/meta-python/conf/include/ptest-packagelists-meta-python.inc
index 98ebdd07a..ea6284264 100644
--- a/meta-python/conf/include/ptest-packagelists-meta-python.inc
+++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc
@@ -26,6 +26,7 @@ PTESTS_FAST_META_PYTHON = "\
 python3-jsmin \
 python3-msgpack \
 python3-multidict \
+python3-parse \
 python3-parse-type \
 python3-platformdirs \
 python3-polyline \
@@ -77,7 +78,6 @@ PTESTS_PROBLEMS_META_PYTHON ="\
 python3-jdcal \
 python3-license-expression \
 python3-ordered-set \
-python3-parse \
 python3-pillow \
 python3-pint \
 python3-pytest-lazy-fixture \
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108889): 
https://lists.openembedded.org/g/openembedded-devel/message/108889
Mute This Topic: https://lists.openembedded.org/mt/104456246/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 3/8] python3-jsmin: re-add functional ptests

2024-02-19 Thread Derek Straka
Supress warnings about syntax for the tests

Signed-off-by: Derek Straka 
---
 meta-python/conf/include/ptest-packagelists-meta-python.inc | 2 +-
 meta-python/recipes-devtools/python/python3-jsmin/run-ptest | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc 
b/meta-python/conf/include/ptest-packagelists-meta-python.inc
index 09fd7eb25..98ebdd07a 100644
--- a/meta-python/conf/include/ptest-packagelists-meta-python.inc
+++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc
@@ -23,6 +23,7 @@ PTESTS_FAST_META_PYTHON = "\
 python3-intervals \
 python3-ipy \
 python3-iso3166 \
+python3-jsmin \
 python3-msgpack \
 python3-multidict \
 python3-parse-type \
@@ -74,7 +75,6 @@ PTESTS_PROBLEMS_META_PYTHON ="\
 python3-gunicorn \
 python3-inotify \
 python3-jdcal \
-python3-jsmin \
 python3-license-expression \
 python3-ordered-set \
 python3-parse \
diff --git a/meta-python/recipes-devtools/python/python3-jsmin/run-ptest 
b/meta-python/recipes-devtools/python/python3-jsmin/run-ptest
index cbcfffda5..2f04130b9 100644
--- a/meta-python/recipes-devtools/python/python3-jsmin/run-ptest
+++ b/meta-python/recipes-devtools/python/python3-jsmin/run-ptest
@@ -1,3 +1,3 @@
 #!/bin/sh
 
-python3 test.py
+python3 -W ignore test.py
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#10): 
https://lists.openembedded.org/g/openembedded-devel/message/10
Mute This Topic: https://lists.openembedded.org/mt/104456245/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 2/8] python3-msgpack: re-add working ptest

2024-02-19 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/conf/include/ptest-packagelists-meta-python.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc 
b/meta-python/conf/include/ptest-packagelists-meta-python.inc
index 51fcdd2b2..09fd7eb25 100644
--- a/meta-python/conf/include/ptest-packagelists-meta-python.inc
+++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc
@@ -23,6 +23,7 @@ PTESTS_FAST_META_PYTHON = "\
 python3-intervals \
 python3-ipy \
 python3-iso3166 \
+python3-msgpack \
 python3-multidict \
 python3-parse-type \
 python3-platformdirs \
@@ -75,7 +76,6 @@ PTESTS_PROBLEMS_META_PYTHON ="\
 python3-jdcal \
 python3-jsmin \
 python3-license-expression \
-python3-msgpack \
 python3-ordered-set \
 python3-parse \
 python3-pillow \
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108887): 
https://lists.openembedded.org/g/openembedded-devel/message/108887
Mute This Topic: https://lists.openembedded.org/mt/104456244/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 1/8] python3-trustme: add runtime dependency for tests and re-add to ptest

2024-02-19 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/conf/include/ptest-packagelists-meta-python.inc  | 2 +-
 meta-python/recipes-devtools/python/python3-trustme_1.1.0.bb | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc 
b/meta-python/conf/include/ptest-packagelists-meta-python.inc
index 598548262..51fcdd2b2 100644
--- a/meta-python/conf/include/ptest-packagelists-meta-python.inc
+++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc
@@ -50,6 +50,7 @@ PTESTS_FAST_META_PYTHON = "\
 python3-soupsieve \
 python3-sqlparse \
 python3-tomlkit \
+python3-trustme \
 python3-ujson \
 python3-u-msgpack-python \
 python3-unidiff \
@@ -83,7 +84,6 @@ PTESTS_PROBLEMS_META_PYTHON ="\
 python3-pyzmq \
 python3-scrypt \
 python3-service-identity \
-python3-trustme \
 python3-typeguard \
 python3-whoosh \
 python3-xlrd \
diff --git a/meta-python/recipes-devtools/python/python3-trustme_1.1.0.bb 
b/meta-python/recipes-devtools/python/python3-trustme_1.1.0.bb
index ac03bce2b..21161a0e0 100644
--- a/meta-python/recipes-devtools/python/python3-trustme_1.1.0.bb
+++ b/meta-python/recipes-devtools/python/python3-trustme_1.1.0.bb
@@ -20,6 +20,7 @@ RDEPENDS:${PN} += " \
 "
 
 RDEPENDS:${PN}-ptest += " \
+python3-pyopenssl \
 python3-pyasn1-modules \
 python3-pytest \
 python3-service-identity \
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108886): 
https://lists.openembedded.org/g/openembedded-devel/message/108886
Mute This Topic: https://lists.openembedded.org/mt/104456243/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 3/3] python3-ujson: add ptest into PTESTS_FAST_META_PYTHON items

2024-02-16 Thread Derek Straka
Verified successful test run using bitbake 
meta-python-image-ptest-python3-ujson on qemu86-64

291 passed in 9.08s.

Signed-off-by: Derek Straka 
---
 meta-python/conf/include/ptest-packagelists-meta-python.inc | 2 +-
 meta-python/recipes-devtools/python/python3-ujson/run-ptest | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc 
b/meta-python/conf/include/ptest-packagelists-meta-python.inc
index 67e861ba8..598548262 100644
--- a/meta-python/conf/include/ptest-packagelists-meta-python.inc
+++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc
@@ -50,6 +50,7 @@ PTESTS_FAST_META_PYTHON = "\
 python3-soupsieve \
 python3-sqlparse \
 python3-tomlkit \
+python3-ujson \
 python3-u-msgpack-python \
 python3-unidiff \
 python3-uritemplate \
@@ -85,6 +86,5 @@ PTESTS_PROBLEMS_META_PYTHON ="\
 python3-trustme \
 python3-typeguard \
 python3-whoosh \
-python3-ujson \
 python3-xlrd \
 "
diff --git a/meta-python/recipes-devtools/python/python3-ujson/run-ptest 
b/meta-python/recipes-devtools/python/python3-ujson/run-ptest
index b1539453a..b63c4de0d 100644
--- a/meta-python/recipes-devtools/python/python3-ujson/run-ptest
+++ b/meta-python/recipes-devtools/python/python3-ujson/run-ptest
@@ -1,3 +1,3 @@
 #!/bin/sh
 
-python3 tests/test_ujson.py
+pytest -o log_cli=true -o log_cli_level=INFO | sed -e 's/\[...%\]//g'| sed -e 
's/PASSED/PASS/g'| sed -e 's/FAILED/FAIL/g'|sed -e 's/SKIPPED/SKIP/g'| awk '{if 
($NF=="PASS" || $NF=="FAIL" || $NF=="SKIP" || $NF=="XFAIL" || 
$NF=="XPASS"){printf "%s: %s\n", $NF, $0}else{print}}'| awk '{if ($NF=="PASS" 
|| $NF=="FAIL" || $NF=="SKIP" || $NF=="XFAIL" || $NF=="XPASS") {$NF="";print 
$0}else{print}}'
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108769): 
https://lists.openembedded.org/g/openembedded-devel/message/108769
Mute This Topic: https://lists.openembedded.org/mt/104394250/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 2/3] python3-yarl: add ptest into PTESTS_FAST_META_PYTHON items

2024-02-16 Thread Derek Straka
Verified successful test run using bitbake meta-python-image-ptest-python3-yarl 
on qemu86-64

1106 passed, 5 xfailed in 22.83s.  xfailed tests are known failures upstream

Signed-off-by: Derek Straka 
---
 meta-python/conf/include/ptest-packagelists-meta-python.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc 
b/meta-python/conf/include/ptest-packagelists-meta-python.inc
index a96009ab9..67e861ba8 100644
--- a/meta-python/conf/include/ptest-packagelists-meta-python.inc
+++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc
@@ -55,6 +55,7 @@ PTESTS_FAST_META_PYTHON = "\
 python3-uritemplate \
 python3-xmltodict \
 python3-xxhash \
+python3-yarl \
 "
 
 PTESTS_SLOW_META_PYTHON = "\
@@ -86,5 +87,4 @@ PTESTS_PROBLEMS_META_PYTHON ="\
 python3-whoosh \
 python3-ujson \
 python3-xlrd \
-python3-yarl \
 "
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108768): 
https://lists.openembedded.org/g/openembedded-devel/message/108768
Mute This Topic: https://lists.openembedded.org/mt/104394249/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 1/3] python3-appdirs: add ptest into PTESTS_FAST_META_PYTHON items

2024-02-16 Thread Derek Straka
Verified successful test run using bitbake 
meta-python-image-ptest-python3-appdirs on qemu86-64

root@qemux86-64:/usr/lib/python3-appdirs/ptest# ./run-ptest
= test session starts ==
platform linux -- Python 3.12.1, pytest-7.4.4, pluggy-1.3.0
rootdir: /usr/lib/python3-appdirs/ptest
collected 3 items

PASS: test/test_api.py::Test_AppDir::test_dirs
PASS: test/test_api.py::Test_AppDir::test_helpers
PASS: test/test_api.py::Test_AppDir::test_metadata

== 3 passed in 0.19s ===

Signed-off-by: Derek Straka 
---
 meta-python/conf/include/ptest-packagelists-meta-python.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc 
b/meta-python/conf/include/ptest-packagelists-meta-python.inc
index 44704208e..a96009ab9 100644
--- a/meta-python/conf/include/ptest-packagelists-meta-python.inc
+++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc
@@ -7,6 +7,7 @@
 #
 # ptests which take less than ~30s each
 PTESTS_FAST_META_PYTHON = "\
+python3-appdirs \
 python3-ansicolors \
 python3-asgiref \
 python3-aspectlib \
@@ -62,7 +63,6 @@ PTESTS_SLOW_META_PYTHON = "\
 "
 
 PTESTS_PROBLEMS_META_PYTHON ="\
-python3-appdirs \
 python3-betamax \
 python3-dnspython \
 python3-fastjsonschema \
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108767): 
https://lists.openembedded.org/g/openembedded-devel/message/108767
Mute This Topic: https://lists.openembedded.org/mt/104394248/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-argh: update to version 0.31.2

2024-01-26 Thread Derek Straka
Remove a redundant checksum that changes with every release.  Leverage the 
COPYING file instead

Signed-off-by: Derek Straka 
---
 .../python/{python3-argh_0.31.0.bb => python3-argh_0.31.2.bb}  | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-argh_0.31.0.bb => 
python3-argh_0.31.2.bb} (79%)

diff --git a/meta-python/recipes-devtools/python/python3-argh_0.31.0.bb 
b/meta-python/recipes-devtools/python/python3-argh_0.31.2.bb
similarity index 79%
rename from meta-python/recipes-devtools/python/python3-argh_0.31.0.bb
rename to meta-python/recipes-devtools/python/python3-argh_0.31.2.bb
index 24a579fb9..afcd7d966 100644
--- a/meta-python/recipes-devtools/python/python3-argh_0.31.0.bb
+++ b/meta-python/recipes-devtools/python/python3-argh_0.31.2.bb
@@ -12,10 +12,9 @@ tool; Argh just makes it easy to use."
 
 LICENSE = "LGPL-3.0-or-later"
 LIC_FILES_CHKSUM = "file://COPYING.LESSER;md5=3000208d539ec061b899bce1d9ce9404 
\
-
file://README.rst;beginline=261;endline=275;md5=ba124578a6853962d5038eabef535d12
 \
 "
 
-SRC_URI[sha256sum] = 
"b93093544309ddbfe6c73dc9bfd60dbc4acecef39f3f464774b3084a1ec5d7b0"
+SRC_URI[sha256sum] = 
"db1c34885804f7d4646c385dc2fb19b45298561322f4c15eae1b133993f9e323"
 
 inherit pypi python_flit_core
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108475): 
https://lists.openembedded.org/g/openembedded-devel/message/108475
Mute This Topic: https://lists.openembedded.org/mt/103985981/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-colorlog: update to version 6.8.2

2024-01-26 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../{python3-colorlog_6.8.0.bb => python3-colorlog_6.8.2.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-colorlog_6.8.0.bb => 
python3-colorlog_6.8.2.bb} (77%)

diff --git a/meta-python/recipes-devtools/python/python3-colorlog_6.8.0.bb 
b/meta-python/recipes-devtools/python/python3-colorlog_6.8.2.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python3-colorlog_6.8.0.bb
rename to meta-python/recipes-devtools/python/python3-colorlog_6.8.2.bb
index 6aefef6d1..c26f4bb70 100644
--- a/meta-python/recipes-devtools/python/python3-colorlog_6.8.0.bb
+++ b/meta-python/recipes-devtools/python/python3-colorlog_6.8.2.bb
@@ -7,6 +7,6 @@ inherit pypi setuptools3
 
 PYPI_PACKAGE = "colorlog"
 
-SRC_URI[sha256sum] = 
"fbb6fdf9d5685f2517f388fb29bb27d54e8654dd31f58bc2a3b217e967a95ca6"
+SRC_URI[sha256sum] = 
"3e3e079a41feb5a1b64f978b5ea4f46040a94f11f0e8bbb8261e3dbbeca64d44"
 
 RDEPENDS:${PN} += "python3-logging"
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108474): 
https://lists.openembedded.org/g/openembedded-devel/message/108474
Mute This Topic: https://lists.openembedded.org/mt/103985829/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-gmqtt: update to version 0.6.14

2024-01-26 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../python/{python3-gmqtt_0.6.13.bb => python3-gmqtt_0.6.14.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-gmqtt_0.6.13.bb => 
python3-gmqtt_0.6.14.bb} (81%)

diff --git a/meta-python/recipes-devtools/python/python3-gmqtt_0.6.13.bb 
b/meta-python/recipes-devtools/python/python3-gmqtt_0.6.14.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python3-gmqtt_0.6.13.bb
rename to meta-python/recipes-devtools/python/python3-gmqtt_0.6.14.bb
index 101bfb9aa..5d8a3ba51 100644
--- a/meta-python/recipes-devtools/python/python3-gmqtt_0.6.13.bb
+++ b/meta-python/recipes-devtools/python/python3-gmqtt_0.6.14.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/wialon/gmqtt;
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=903f1792621a3b35ee546da75d139177"
 
-SRC_URI[sha256sum] = 
"b4623d3e32ba266e96c04b0871bb057d05414371c1d279550648b390e6ba7577"
+SRC_URI[sha256sum] = 
"45b0f7794247455b9163155eeedf41c86e303c72b79056bf65d33038b17443a3"
 
 inherit pypi setuptools3
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108473): 
https://lists.openembedded.org/g/openembedded-devel/message/108473
Mute This Topic: https://lists.openembedded.org/mt/103985774/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-coverage: update to version 7.4.1

2024-01-26 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../{python3-coverage_7.4.0.bb => python3-coverage_7.4.1.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-coverage_7.4.0.bb => 
python3-coverage_7.4.1.bb} (84%)

diff --git a/meta-python/recipes-devtools/python/python3-coverage_7.4.0.bb 
b/meta-python/recipes-devtools/python/python3-coverage_7.4.1.bb
similarity index 84%
rename from meta-python/recipes-devtools/python/python3-coverage_7.4.0.bb
rename to meta-python/recipes-devtools/python/python3-coverage_7.4.1.bb
index 30922697a..b3da5d571 100644
--- a/meta-python/recipes-devtools/python/python3-coverage_7.4.0.bb
+++ b/meta-python/recipes-devtools/python/python3-coverage_7.4.1.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://coverage.readthedocs.io;
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2ee41112a44fe7014dce33e26468ba93"
 
-SRC_URI[sha256sum] = 
"707c0f58cb1712b8809ece32b68996ee1e609f71bd14615bd8f87a1293cb610e"
+SRC_URI[sha256sum] = 
"1ed4b95480952b1a26d863e546fa5094564aa0065e1e5f0d4d0041f293251d04"
 
 inherit pypi setuptools3
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108472): 
https://lists.openembedded.org/g/openembedded-devel/message/108472
Mute This Topic: https://lists.openembedded.org/mt/103985661/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-google-api-python-client: update to version 2.115.0

2024-01-26 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 ...t_2.114.0.bb => python3-google-api-python-client_2.115.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename 
meta-python/recipes-devtools/python/{python3-google-api-python-client_2.114.0.bb
 => python3-google-api-python-client_2.115.0.bb} (86%)

diff --git 
a/meta-python/recipes-devtools/python/python3-google-api-python-client_2.114.0.bb
 
b/meta-python/recipes-devtools/python/python3-google-api-python-client_2.115.0.bb
similarity index 86%
rename from 
meta-python/recipes-devtools/python/python3-google-api-python-client_2.114.0.bb
rename to 
meta-python/recipes-devtools/python/python3-google-api-python-client_2.115.0.bb
index 9564bff70..63628904a 100644
--- 
a/meta-python/recipes-devtools/python/python3-google-api-python-client_2.114.0.bb
+++ 
b/meta-python/recipes-devtools/python/python3-google-api-python-client_2.115.0.bb
@@ -4,7 +4,7 @@ HOMEPAGE = 
"https://github.com/googleapis/google-api-python-client;
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
 
-SRC_URI[sha256sum] = 
"e041bbbf60e682261281e9d64b4660035f04db1cccba19d1d68eebc24d1465ed"
+SRC_URI[sha256sum] = 
"96af11376535236ba600ebbe23588cfe003ec9b74e66dd6ddb53aa3ec87e1b52"
 
 inherit pypi setuptools3
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108471): 
https://lists.openembedded.org/g/openembedded-devel/message/108471
Mute This Topic: https://lists.openembedded.org/mt/103985564/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-pdm: update to version 2.12.2

2024-01-26 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../python/{python3-pdm_2.12.1.bb => python3-pdm_2.12.2.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pdm_2.12.1.bb => 
python3-pdm_2.12.2.bb} (81%)

diff --git a/meta-python/recipes-devtools/python/python3-pdm_2.12.1.bb 
b/meta-python/recipes-devtools/python/python3-pdm_2.12.2.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python3-pdm_2.12.1.bb
rename to meta-python/recipes-devtools/python/python3-pdm_2.12.2.bb
index 1ae40a7c4..b0849d13b 100644
--- a/meta-python/recipes-devtools/python/python3-pdm_2.12.1.bb
+++ b/meta-python/recipes-devtools/python/python3-pdm_2.12.2.bb
@@ -4,7 +4,7 @@ LICENSE = "MIT"
 SECTION = "devel/python"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=2eb31a2cc1a758c34b499f287dd04ef2"
 
-SRC_URI[sha256sum] = 
"39a2aba19986c945a79bf584c3775285e24e9c7f8ed8a603815b61c5fac5db4c"
+SRC_URI[sha256sum] = 
"b3ca4ab107ad65b57fe1312e4360e1f7b3d7c5ed81a841b6ed48b3777862ed57"
 
 inherit pypi python_setuptools_build_meta
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108470): 
https://lists.openembedded.org/g/openembedded-devel/message/108470
Mute This Topic: https://lists.openembedded.org/mt/103985438/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-cytoolz: update to version 0.12.3

2024-01-26 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../{python3-cytoolz_0.12.2.bb => python3-cytoolz_0.12.3.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-cytoolz_0.12.2.bb => 
python3-cytoolz_0.12.3.bb} (83%)

diff --git a/meta-python/recipes-devtools/python/python3-cytoolz_0.12.2.bb 
b/meta-python/recipes-devtools/python/python3-cytoolz_0.12.3.bb
similarity index 83%
rename from meta-python/recipes-devtools/python/python3-cytoolz_0.12.2.bb
rename to meta-python/recipes-devtools/python/python3-cytoolz_0.12.3.bb
index fa8549c54..6c35ad580 100644
--- a/meta-python/recipes-devtools/python/python3-cytoolz_0.12.2.bb
+++ b/meta-python/recipes-devtools/python/python3-cytoolz_0.12.3.bb
@@ -5,7 +5,7 @@ SECTION = "devel/python"
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=d422ebce3e9c6447563bd410e9b22f2e"
 
-SRC_URI[sha256sum] = 
"31d4b0455d72d914645f803d917daf4f314d115c70de0578d3820deb8b101f66"
+SRC_URI[sha256sum] = 
"4503dc59f4ced53a54643272c61dc305d1dbbfbd7d6bdf296948de9f34c3a282"
 
 inherit pypi setuptools3
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108469): 
https://lists.openembedded.org/g/openembedded-devel/message/108469
Mute This Topic: https://lists.openembedded.org/mt/103985379/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-argcomplete: update to version 3.2.2

2024-01-26 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 ...ython3-argcomplete_3.2.1.bb => python3-argcomplete_3.2.2.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-argcomplete_3.2.1.bb => 
python3-argcomplete_3.2.2.bb} (83%)

diff --git a/meta-python/recipes-devtools/python/python3-argcomplete_3.2.1.bb 
b/meta-python/recipes-devtools/python/python3-argcomplete_3.2.2.bb
similarity index 83%
rename from meta-python/recipes-devtools/python/python3-argcomplete_3.2.1.bb
rename to meta-python/recipes-devtools/python/python3-argcomplete_3.2.2.bb
index e6b9af084..fffecf521 100644
--- a/meta-python/recipes-devtools/python/python3-argcomplete_3.2.1.bb
+++ b/meta-python/recipes-devtools/python/python3-argcomplete_3.2.2.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/kislyuk/argcomplete;
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=2ee41112a44fe7014dce33e26468ba93"
 
-SRC_URI[sha256sum] = 
"437f67fb9b058da5a090df505ef9be0297c4883993f3f56cb186ff087778cfb4"
+SRC_URI[sha256sum] = 
"f3e49e8ea59b4026ee29548e24488af46e30c9de57d48638e24f54a1ea1000a2"
 
 PYPI_PACKAGE = "argcomplete"
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108468): 
https://lists.openembedded.org/g/openembedded-devel/message/108468
Mute This Topic: https://lists.openembedded.org/mt/103985347/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-web3: update to version 6.15.0

2024-01-26 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../python/{python3-web3_6.14.0.bb => python3-web3_6.15.0.bb}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-web3_6.14.0.bb => 
python3-web3_6.15.0.bb} (84%)

diff --git a/meta-python/recipes-devtools/python/python3-web3_6.14.0.bb 
b/meta-python/recipes-devtools/python/python3-web3_6.15.0.bb
similarity index 84%
rename from meta-python/recipes-devtools/python/python3-web3_6.14.0.bb
rename to meta-python/recipes-devtools/python/python3-web3_6.15.0.bb
index 177c6fc03..e216857de 100644
--- a/meta-python/recipes-devtools/python/python3-web3_6.14.0.bb
+++ b/meta-python/recipes-devtools/python/python3-web3_6.15.0.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=373fede350846fdffd23648fba504635"
 
-SRC_URI[sha256sum] = 
"a3726289da9eff2ce30f9b1b49ec59e9245216f7aecbfa2007f73dbe94999717"
+SRC_URI[sha256sum] = 
"a646d1fe5eba00625b5459d23910e472f0d0aa063788422bff2648ca4e1ebc7e"
 
 inherit pypi setuptools3
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108467): 
https://lists.openembedded.org/g/openembedded-devel/message/108467
Mute This Topic: https://lists.openembedded.org/mt/103985218/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-bandit: update to version 1.7.7

2024-01-26 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../python/{python3-bandit_1.7.6.bb => python3-bandit_1.7.7.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-bandit_1.7.6.bb => 
python3-bandit_1.7.7.bb} (84%)

diff --git a/meta-python/recipes-devtools/python/python3-bandit_1.7.6.bb 
b/meta-python/recipes-devtools/python/python3-bandit_1.7.7.bb
similarity index 84%
rename from meta-python/recipes-devtools/python/python3-bandit_1.7.6.bb
rename to meta-python/recipes-devtools/python/python3-bandit_1.7.7.bb
index 3cf927e10..2de7fc7ae 100644
--- a/meta-python/recipes-devtools/python/python3-bandit_1.7.6.bb
+++ b/meta-python/recipes-devtools/python/python3-bandit_1.7.7.bb
@@ -2,7 +2,7 @@ SUMMARY = "Security oriented static analyser for python code."
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658"
 
-SRC_URI[sha256sum] = 
"72ce7bc9741374d96fb2f1c9a8960829885f1243ffde743de70a19cee353e8f3"
+SRC_URI[sha256sum] = 
"527906bec6088cb499aae31bc962864b4e77569e9d529ee51df3a93b4b8ab28a"
 
 DEPENDS = "python3-pbr-native python3-git python3-pbr python3-pyyaml 
python3-six python3-stevedore"
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108466): 
https://lists.openembedded.org/g/openembedded-devel/message/108466
Mute This Topic: https://lists.openembedded.org/mt/103984259/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-google-api-python-client: update to version 2.113.0

2024-01-12 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 ...t_2.112.0.bb => python3-google-api-python-client_2.113.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename 
meta-python/recipes-devtools/python/{python3-google-api-python-client_2.112.0.bb
 => python3-google-api-python-client_2.113.0.bb} (86%)

diff --git 
a/meta-python/recipes-devtools/python/python3-google-api-python-client_2.112.0.bb
 
b/meta-python/recipes-devtools/python/python3-google-api-python-client_2.113.0.bb
similarity index 86%
rename from 
meta-python/recipes-devtools/python/python3-google-api-python-client_2.112.0.bb
rename to 
meta-python/recipes-devtools/python/python3-google-api-python-client_2.113.0.bb
index b1614b854..4e6bb7daf 100644
--- 
a/meta-python/recipes-devtools/python/python3-google-api-python-client_2.112.0.bb
+++ 
b/meta-python/recipes-devtools/python/python3-google-api-python-client_2.113.0.bb
@@ -4,7 +4,7 @@ HOMEPAGE = 
"https://github.com/googleapis/google-api-python-client;
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
 
-SRC_URI[sha256sum] = 
"c3bcb5fd70d57f4c94b30c0dbeade53c216febfbf1d771eeb1a2fa74bd0d6756"
+SRC_URI[sha256sum] = 
"bcffbc8ffbad631f699cf85aa91993f3dc03060b234ca9e6e2f9135028bd9b52"
 
 inherit pypi setuptools3
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108262): 
https://lists.openembedded.org/g/openembedded-devel/message/108262
Mute This Topic: https://lists.openembedded.org/mt/103693394/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-socketio: update to version 5.11.0

2024-01-12 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../{python3-socketio_5.10.0.bb => python3-socketio_5.11.0.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-socketio_5.10.0.bb => 
python3-socketio_5.11.0.bb} (89%)

diff --git a/meta-python/recipes-devtools/python/python3-socketio_5.10.0.bb 
b/meta-python/recipes-devtools/python/python3-socketio_5.11.0.bb
similarity index 89%
rename from meta-python/recipes-devtools/python/python3-socketio_5.10.0.bb
rename to meta-python/recipes-devtools/python/python3-socketio_5.11.0.bb
index 68168bb63..72471e956 100644
--- a/meta-python/recipes-devtools/python/python3-socketio_5.10.0.bb
+++ b/meta-python/recipes-devtools/python/python3-socketio_5.11.0.bb
@@ -9,7 +9,7 @@ inherit pypi python_setuptools_build_meta
 
 PYPI_PACKAGE = "python-socketio"
 
-SRC_URI[sha256sum] = 
"01c616946fa9f67ed5cc3d1568e1c4940acfc64aeeb9ff621a53e80cabeb748a"
+SRC_URI[sha256sum] = 
"b03186e04b942088781f6286c13604a853e5e35ed59158c51ff7af22fa032e6f"
 
 PACKAGECONFIG ?= "asyncio_client client"
 PACKAGECONFIG[asyncio_client] = ",,,${PYTHON_PN}-aiohttp 
${PYTHON_PN}-websockets"
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108261): 
https://lists.openembedded.org/g/openembedded-devel/message/108261
Mute This Topic: https://lists.openembedded.org/mt/103693329/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-google-auth: update to version 2.26.2

2024-01-12 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 ...hon3-google-auth_2.26.1.bb => python3-google-auth_2.26.2.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-google-auth_2.26.1.bb => 
python3-google-auth_2.26.2.bb} (87%)

diff --git a/meta-python/recipes-devtools/python/python3-google-auth_2.26.1.bb 
b/meta-python/recipes-devtools/python/python3-google-auth_2.26.2.bb
similarity index 87%
rename from meta-python/recipes-devtools/python/python3-google-auth_2.26.1.bb
rename to meta-python/recipes-devtools/python/python3-google-auth_2.26.2.bb
index 1a4913b71..9bd0926ca 100644
--- a/meta-python/recipes-devtools/python/python3-google-auth_2.26.1.bb
+++ b/meta-python/recipes-devtools/python/python3-google-auth_2.26.2.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = 
"54385acca5c0fbdda510cd8585ba6f3fcb06eeecf8a6ecca39d3ee148b092590"
+SRC_URI[sha256sum] = 
"97327dbbf58cccb58fc5a1712bba403ae76668e64814eb30f7316f7e27126b81"
 
 RDEPENDS:${PN} += "\
 ${PYTHON_PN}-asyncio \
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108260): 
https://lists.openembedded.org/g/openembedded-devel/message/108260
Mute This Topic: https://lists.openembedded.org/mt/103693035/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-eth-hash: update to version 0.6.0

2024-01-12 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../{python3-eth-hash_0.5.2.bb => python3-eth-hash_0.6.0.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-eth-hash_0.5.2.bb => 
python3-eth-hash_0.6.0.bb} (80%)

diff --git a/meta-python/recipes-devtools/python/python3-eth-hash_0.5.2.bb 
b/meta-python/recipes-devtools/python/python3-eth-hash_0.6.0.bb
similarity index 80%
rename from meta-python/recipes-devtools/python/python3-eth-hash_0.5.2.bb
rename to meta-python/recipes-devtools/python/python3-eth-hash_0.6.0.bb
index 683d84761..77e656527 100644
--- a/meta-python/recipes-devtools/python/python3-eth-hash_0.5.2.bb
+++ b/meta-python/recipes-devtools/python/python3-eth-hash_0.6.0.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=3d7bdfe69b1ffbde073ca6e96f5c53f7"
 
-SRC_URI[sha256sum] = 
"1b5f10eca7765cc385e1430eefc5ced6e2e463bb18d1365510e2e539c1a6fe4e"
+SRC_URI[sha256sum] = 
"ae72889e60db6acbb3872c288cfa02ed157f4c27630fcd7f9c8442302c31e478"
 
 inherit pypi setuptools3
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108259): 
https://lists.openembedded.org/g/openembedded-devel/message/108259
Mute This Topic: https://lists.openembedded.org/mt/103693011/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-protobuf: update to version 4.25.1

2024-01-12 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../{python3-protobuf_4.25.1.bb => python3-protobuf_4.25.2.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-protobuf_4.25.1.bb => 
python3-protobuf_4.25.2.bb} (92%)

diff --git a/meta-python/recipes-devtools/python/python3-protobuf_4.25.1.bb 
b/meta-python/recipes-devtools/python/python3-protobuf_4.25.2.bb
similarity index 92%
rename from meta-python/recipes-devtools/python/python3-protobuf_4.25.1.bb
rename to meta-python/recipes-devtools/python/python3-protobuf_4.25.2.bb
index 3c770e41d..5333d306b 100644
--- a/meta-python/recipes-devtools/python/python3-protobuf_4.25.1.bb
+++ b/meta-python/recipes-devtools/python/python3-protobuf_4.25.2.bb
@@ -6,7 +6,7 @@ LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = 
"file://PKG-INFO;beginline=8;endline=8;md5=53dbfa56f61b90215a9f8f0d527c043d"
 
 inherit pypi setuptools3
-SRC_URI[sha256sum] = 
"57d65074b4f5baa4ab5da1605c02be90ac20c8b40fb137d6a8df9f416b0d0ce2"
+SRC_URI[sha256sum] = 
"fe599e175cb347efc8ee524bcd4b902d11f7262c0e569ececcb89995c15f0a5e"
 
 # http://errors.yoctoproject.org/Errors/Details/184715/
 # Can't find required file: ../src/google/protobuf/descriptor.proto
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108257): 
https://lists.openembedded.org/g/openembedded-devel/message/108257
Mute This Topic: https://lists.openembedded.org/mt/103692982/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-apispec: update to version 6.4.0

2024-01-12 Thread Derek Straka
Updated license checksum for copyright year and verified MIT still applies

Signed-off-by: Derek Straka 
---
 .../{python3-apispec_6.3.1.bb => python3-apispec_6.4.0.bb}| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-apispec_6.3.1.bb => 
python3-apispec_6.4.0.bb} (62%)

diff --git a/meta-python/recipes-devtools/python/python3-apispec_6.3.1.bb 
b/meta-python/recipes-devtools/python/python3-apispec_6.4.0.bb
similarity index 62%
rename from meta-python/recipes-devtools/python/python3-apispec_6.3.1.bb
rename to meta-python/recipes-devtools/python/python3-apispec_6.4.0.bb
index 6b9f704a6..a48e1cfae 100644
--- a/meta-python/recipes-devtools/python/python3-apispec_6.3.1.bb
+++ b/meta-python/recipes-devtools/python/python3-apispec_6.4.0.bb
@@ -1,10 +1,10 @@
 SUMMARY = "A pluggable API specification generator. Currently supports the 
OpenAPI Specification (f.k.a. the Swagger specification)."
 HOMEPAGE = "https://github.com/marshmallow-code/apispec;
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=824d596e050c0d5e3361efb438425945"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=3d9c303644a2e62578f0347748a80358"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = 
"b38e4479916d43f2b1e88ce15fc2fae93adf2e8d55cb59ec74ac66a827941483"
+SRC_URI[sha256sum] = 
"42b8a6833cf154c9dbd22d006b56bf9c49c972d32d24fe716fd734e0f6b739b8"
 
 RDEPENDS:${PN} += "python3-packaging"
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108256): 
https://lists.openembedded.org/g/openembedded-devel/message/108256
Mute This Topic: https://lists.openembedded.org/mt/103692888/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-marshmallow: update to version 3.20.2

2024-01-12 Thread Derek Straka
Convert recipe to pypi
Update license checksum for copyright year and verify MIT still applies

Signed-off-by: Derek Straka 
---
 ...hmallow_3.20.1.bb => python3-marshmallow_3.20.2.bb} | 10 +++---
 1 file changed, 3 insertions(+), 7 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-marshmallow_3.20.1.bb => 
python3-marshmallow_3.20.2.bb} (69%)

diff --git a/meta-python/recipes-devtools/python/python3-marshmallow_3.20.1.bb 
b/meta-python/recipes-devtools/python/python3-marshmallow_3.20.2.bb
similarity index 69%
rename from meta-python/recipes-devtools/python/python3-marshmallow_3.20.1.bb
rename to meta-python/recipes-devtools/python/python3-marshmallow_3.20.2.bb
index f0ca630cc..c08aec5be 100644
--- a/meta-python/recipes-devtools/python/python3-marshmallow_3.20.1.bb
+++ b/meta-python/recipes-devtools/python/python3-marshmallow_3.20.2.bb
@@ -3,16 +3,12 @@ DESCRIPTION = "Marshmallow is an ORM/ODM/framework-agnostic 
library for converti
 HOMEPAGE = "https://github.com/marshmallow-code/marshmallow;
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "\
-file://LICENSE;md5=5bccd400dedfa74364481e56aacc0b4a \
+file://LICENSE;md5=653847350fed2e0e7b02791a35b98d59 \
 
file://docs/license.rst;md5=13da439ad060419fb7cf364523017cfb"
 
-SRC_URI = 
"git://github.com/marshmallow-code/marshmallow.git;protocol=https;branch=dev"
+SRC_URI[sha256sum] = 
"4c1daff273513dc5eb24b219a8035559dc573c8f322558ef85f5438ddd1236dd"
 
-SRCREV = "dda9a8014dfe1bcb35e21307cfd5a8e19615a284"
-
-S = "${WORKDIR}/git"
-
-inherit setuptools3
+inherit setuptools3 pypi
 
 PIP_INSTALL_PACKAGE = "marshmallow"
 
-- 
2.34.1


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



Re: [oe] [meta-python][PATCH] python-4.8.2: update to version 4.8.2

2024-01-12 Thread Derek Straka
Yes!  Got distracted.  Resent a v2

On Fri, Jan 12, 2024 at 1:23 PM Fabio Estevam  wrote:

> On Fri, Jan 12, 2024 at 4:19 PM Derek Straka  wrote:
> >
> > Signed-off-by: Derek Straka 
>
> Maybe change the Subject to:
>
> python3-engineio: update to version 4.8.2
>

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108254): 
https://lists.openembedded.org/g/openembedded-devel/message/108254
Mute This Topic: https://lists.openembedded.org/mt/103689812/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-engineio: update to version 4.8.2

2024-01-12 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../{python3-engineio_4.8.1.bb => python3-engineio_4.8.2.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-engineio_4.8.1.bb => 
python3-engineio_4.8.2.bb} (82%)

diff --git a/meta-python/recipes-devtools/python/python3-engineio_4.8.1.bb 
b/meta-python/recipes-devtools/python/python3-engineio_4.8.2.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-engineio_4.8.1.bb
rename to meta-python/recipes-devtools/python/python3-engineio_4.8.2.bb
index f88a3acf1..9dad138ea 100644
--- a/meta-python/recipes-devtools/python/python3-engineio_4.8.1.bb
+++ b/meta-python/recipes-devtools/python/python3-engineio_4.8.2.bb
@@ -17,4 +17,4 @@ RDEPENDS:${PN} += " \
python3-asyncio \
 "
 
-SRC_URI[sha256sum] = 
"fadc39c66348f96476d8dc2d7aaee7ea0a39d96e333217f5321300677b980121"
+SRC_URI[sha256sum] = 
"f8609e3afdda318fdc336b4ba2de8dd397bb8f9b8a1b43e56c27330e32c2e34c"
-- 
2.34.1


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

2024-01-12 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../{python3-engineio_4.8.1.bb => python3-engineio_4.8.2.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-engineio_4.8.1.bb => 
python3-engineio_4.8.2.bb} (82%)

diff --git a/meta-python/recipes-devtools/python/python3-engineio_4.8.1.bb 
b/meta-python/recipes-devtools/python/python3-engineio_4.8.2.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-engineio_4.8.1.bb
rename to meta-python/recipes-devtools/python/python3-engineio_4.8.2.bb
index f88a3acf1..9dad138ea 100644
--- a/meta-python/recipes-devtools/python/python3-engineio_4.8.1.bb
+++ b/meta-python/recipes-devtools/python/python3-engineio_4.8.2.bb
@@ -17,4 +17,4 @@ RDEPENDS:${PN} += " \
python3-asyncio \
 "
 
-SRC_URI[sha256sum] = 
"fadc39c66348f96476d8dc2d7aaee7ea0a39d96e333217f5321300677b980121"
+SRC_URI[sha256sum] = 
"f8609e3afdda318fdc336b4ba2de8dd397bb8f9b8a1b43e56c27330e32c2e34c"
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108251): 
https://lists.openembedded.org/g/openembedded-devel/message/108251
Mute This Topic: https://lists.openembedded.org/mt/103689812/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-eth-keys: update version to 0.5.0

2024-01-12 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../{python3-eth-keys_0.4.0.bb => python3-eth-keys_0.5.0.bb}  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-eth-keys_0.4.0.bb => 
python3-eth-keys_0.5.0.bb} (59%)

diff --git a/meta-python/recipes-devtools/python/python3-eth-keys_0.4.0.bb 
b/meta-python/recipes-devtools/python/python3-eth-keys_0.5.0.bb
similarity index 59%
rename from meta-python/recipes-devtools/python/python3-eth-keys_0.4.0.bb
rename to meta-python/recipes-devtools/python/python3-eth-keys_0.5.0.bb
index b0b1aad76..aabfff1b1 100644
--- a/meta-python/recipes-devtools/python/python3-eth-keys_0.4.0.bb
+++ b/meta-python/recipes-devtools/python/python3-eth-keys_0.5.0.bb
@@ -2,9 +2,9 @@ SUMMARY = "A common API for Ethereum key operations with 
pluggable backends."
 HOMEPAGE = "https://github.com/ethereum/eth-keys;
 SECTION = "devel/python"
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=2beaef1b1764f4d6b46084c885b4bcad"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=6749008d847c14b9718949c2e24d5c0a"
 
-SRC_URI[sha256sum] = 
"7d18887483bc9b8a3fdd8e32ddcb30044b9f08fcb24a380d93b6eee3a5bb3216"
+SRC_URI[sha256sum] = 
"a0abccb83f3d84322591a2c047a1e3aa52ea86b185fa3e82ce311d120ca2791e"
 
 inherit pypi setuptools3
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108250): 
https://lists.openembedded.org/g/openembedded-devel/message/108250
Mute This Topic: https://lists.openembedded.org/mt/103689608/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-web3: update to version 6.14.0

2024-01-12 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../python/{python3-web3_6.13.0.bb => python3-web3_6.14.0.bb}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-web3_6.13.0.bb => 
python3-web3_6.14.0.bb} (84%)

diff --git a/meta-python/recipes-devtools/python/python3-web3_6.13.0.bb 
b/meta-python/recipes-devtools/python/python3-web3_6.14.0.bb
similarity index 84%
rename from meta-python/recipes-devtools/python/python3-web3_6.13.0.bb
rename to meta-python/recipes-devtools/python/python3-web3_6.14.0.bb
index 0f0682fca..177c6fc03 100644
--- a/meta-python/recipes-devtools/python/python3-web3_6.13.0.bb
+++ b/meta-python/recipes-devtools/python/python3-web3_6.14.0.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=373fede350846fdffd23648fba504635"
 
-SRC_URI[sha256sum] = 
"769ab3cfffea69c6b495c63a1aecdb522651c0304260fc25467a886d0be622e2"
+SRC_URI[sha256sum] = 
"a3726289da9eff2ce30f9b1b49ec59e9245216f7aecbfa2007f73dbe94999717"
 
 inherit pypi setuptools3
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#108249): 
https://lists.openembedded.org/g/openembedded-devel/message/108249
Mute This Topic: https://lists.openembedded.org/mt/103689483/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 5/5] python3-cantools: update to version 39.4.1

2023-12-29 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../{python3-cantools_39.4.0.bb => python3-cantools_39.4.1.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-cantools_39.4.0.bb => 
python3-cantools_39.4.1.bb} (85%)

diff --git a/meta-python/recipes-devtools/python/python3-cantools_39.4.0.bb 
b/meta-python/recipes-devtools/python/python3-cantools_39.4.1.bb
similarity index 85%
rename from meta-python/recipes-devtools/python/python3-cantools_39.4.0.bb
rename to meta-python/recipes-devtools/python/python3-cantools_39.4.1.bb
index e7cafe14b..e26405dd7 100644
--- a/meta-python/recipes-devtools/python/python3-cantools_39.4.0.bb
+++ b/meta-python/recipes-devtools/python/python3-cantools_39.4.1.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/eerimoq/cantools;
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=d9aa4ec07de78abae21c490c9ffe61bd"
 
-SRC_URI[sha256sum] = 
"e38cf3972388436aa8e19ab985bfb19c2cb400d9ba882a5c070c3497629674cb"
+SRC_URI[sha256sum] = 
"98c4d007a6d9803c6433c743c0240e73de930530f8255e1e21d2e20e8991a30b"
 
 PYPI_PACKAGE = "cantools"
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107904): 
https://lists.openembedded.org/g/openembedded-devel/message/107904
Mute This Topic: https://lists.openembedded.org/mt/103421831/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 4/5] python3-pdm-backend: update to version 2.1.8

2023-12-29 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 ...ython3-pdm-backend_2.1.7.bb => python3-pdm-backend_2.1.8.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pdm-backend_2.1.7.bb => 
python3-pdm-backend_2.1.8.bb} (80%)

diff --git a/meta-python/recipes-devtools/python/python3-pdm-backend_2.1.7.bb 
b/meta-python/recipes-devtools/python/python3-pdm-backend_2.1.8.bb
similarity index 80%
rename from meta-python/recipes-devtools/python/python3-pdm-backend_2.1.7.bb
rename to meta-python/recipes-devtools/python/python3-pdm-backend_2.1.8.bb
index 679ecb0d4..f1f507243 100644
--- a/meta-python/recipes-devtools/python/python3-pdm-backend_2.1.7.bb
+++ b/meta-python/recipes-devtools/python/python3-pdm-backend_2.1.8.bb
@@ -4,7 +4,7 @@ LICENSE = "MIT"
 SECTION = "devel/python"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=4a564297b3c5b629a528b92fd8ff61ea"
 
-SRC_URI[sha256sum] = 
"d3b50ab6374557c1edc348135e0da5decef228ddf8c973a58e40f437cf3595ba"
+SRC_URI[sha256sum] = 
"2487dfbd13f69d80fb4e6a08006a3ee68272833970813047dc5fcfacdfdc0151"
 
 inherit pypi python_setuptools_build_meta
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107903): 
https://lists.openembedded.org/g/openembedded-devel/message/107903
Mute This Topic: https://lists.openembedded.org/mt/103421830/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 3/5] python3-sqlalchemy: update to version 2.0.24

2023-12-29 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 ...ython3-sqlalchemy_2.0.23.bb => python3-sqlalchemy_2.0.24.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-sqlalchemy_2.0.23.bb => 
python3-sqlalchemy_2.0.24.bb} (87%)

diff --git a/meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.23.bb 
b/meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.24.bb
similarity index 87%
rename from meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.23.bb
rename to meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.24.bb
index ce216b016..91ab762eb 100644
--- a/meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.23.bb
+++ b/meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.24.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "http://www.sqlalchemy.org/;
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=b707d50badb798e1d897f2c8f649382d"
 
-SRC_URI[sha256sum] = 
"c1bda93cbbe4aa2aa0aa8655c5aeda505cd219ff3e8da91d1d329e143e4aff69"
+SRC_URI[sha256sum] = 
"6db97656fd3fe3f7e5b077f12fa6adb5feb6e0b567a3e99f47ecf5f7ea0a09e3"
 
 PYPI_PACKAGE = "SQLAlchemy"
 inherit pypi setuptools3
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107902): 
https://lists.openembedded.org/g/openembedded-devel/message/107902
Mute This Topic: https://lists.openembedded.org/mt/103421829/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 2/5] python3-engineio: update to version 4.8.1

2023-12-29 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../{python3-engineio_4.8.0.bb => python3-engineio_4.8.1.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-engineio_4.8.0.bb => 
python3-engineio_4.8.1.bb} (82%)

diff --git a/meta-python/recipes-devtools/python/python3-engineio_4.8.0.bb 
b/meta-python/recipes-devtools/python/python3-engineio_4.8.1.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-engineio_4.8.0.bb
rename to meta-python/recipes-devtools/python/python3-engineio_4.8.1.bb
index 1cc79f1a9..f88a3acf1 100644
--- a/meta-python/recipes-devtools/python/python3-engineio_4.8.0.bb
+++ b/meta-python/recipes-devtools/python/python3-engineio_4.8.1.bb
@@ -17,4 +17,4 @@ RDEPENDS:${PN} += " \
python3-asyncio \
 "
 
-SRC_URI[sha256sum] = 
"2a32585d8fecd0118264fe0c39788670456ca9aa466d7c026d995cfff68af164"
+SRC_URI[sha256sum] = 
"fadc39c66348f96476d8dc2d7aaee7ea0a39d96e333217f5321300677b980121"
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107901): 
https://lists.openembedded.org/g/openembedded-devel/message/107901
Mute This Topic: https://lists.openembedded.org/mt/103421828/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 1/5] python3-kmod: add comment about update to version 0.9.2

2023-12-29 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python3-kmod_0.9.1.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-python/recipes-devtools/python/python3-kmod_0.9.1.bb 
b/meta-python/recipes-devtools/python/python3-kmod_0.9.1.bb
index 2ec4d474b..52e1cf6af 100644
--- a/meta-python/recipes-devtools/python/python3-kmod_0.9.1.bb
+++ b/meta-python/recipes-devtools/python/python3-kmod_0.9.1.bb
@@ -6,6 +6,7 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=6d62c2454850386a2ffe44f72db83d74"
 
 inherit pypi setuptools3
 
+RECIPE_NO_UPDATE_REASON = "Version 0.9.2 is broken when using latest build 
machinery for C extensions"
 SRC_URI[sha256sum] = 
"f3bf829059bf88eca22f4f549e17aa316cdaa14302bf2ba49ddeee60cea109ff"
 
 DEPENDS += " \
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107900): 
https://lists.openembedded.org/g/openembedded-devel/message/107900
Mute This Topic: https://lists.openembedded.org/mt/103421827/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-argh: update to version 0.30.5

2023-12-29 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../python/{python3-argh_0.30.4.bb => python3-argh_0.30.5.bb}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-argh_0.30.4.bb => 
python3-argh_0.30.5.bb} (90%)

diff --git a/meta-python/recipes-devtools/python/python3-argh_0.30.4.bb 
b/meta-python/recipes-devtools/python/python3-argh_0.30.5.bb
similarity index 90%
rename from meta-python/recipes-devtools/python/python3-argh_0.30.4.bb
rename to meta-python/recipes-devtools/python/python3-argh_0.30.5.bb
index 82cfa3b8e..78e614964 100644
--- a/meta-python/recipes-devtools/python/python3-argh_0.30.4.bb
+++ b/meta-python/recipes-devtools/python/python3-argh_0.30.5.bb
@@ -15,7 +15,7 @@ LIC_FILES_CHKSUM = 
"file://COPYING.LESSER;md5=3000208d539ec061b899bce1d9ce9404 \
 
file://README.rst;beginline=261;endline=275;md5=39ec83a704aed9f33618c5d04e478a08
 \
 "
 
-SRC_URI[sha256sum] = 
"9fca8e69c4dad4f8d2a7bdfbdd80b0754462b53510a03e1b5cf2b43a87e6e960"
+SRC_URI[sha256sum] = 
"b37dfd617a09d19a4a7bcaed0e060b288bc7ac8dfdc0facf886a49a25ff33728"
 
 inherit pypi python_flit_core
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107881): 
https://lists.openembedded.org/g/openembedded-devel/message/107881
Mute This Topic: https://lists.openembedded.org/mt/103419854/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-dominate: update to version 2.9.1

2023-12-29 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../{python3-dominate_2.9.0.bb => python3-dominate_2.9.1.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-dominate_2.9.0.bb => 
python3-dominate_2.9.1.bb} (86%)

diff --git a/meta-python/recipes-devtools/python/python3-dominate_2.9.0.bb 
b/meta-python/recipes-devtools/python/python3-dominate_2.9.1.bb
similarity index 86%
rename from meta-python/recipes-devtools/python/python3-dominate_2.9.0.bb
rename to meta-python/recipes-devtools/python/python3-dominate_2.9.1.bb
index 2234e541b..3bd9d8754 100644
--- a/meta-python/recipes-devtools/python/python3-dominate_2.9.0.bb
+++ b/meta-python/recipes-devtools/python/python3-dominate_2.9.1.bb
@@ -2,7 +2,7 @@ SUMMARY = "Dominate is a Python library for creating and 
manipulating HTML docum
 LICENSE = "LGPL-3.0-only"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=b52f2d57d10c4f7ee67a7eb9615d5d24"
 
-SRC_URI[sha256sum] = 
"b15791ebea432218543a1702d76ae45d2ff95ff994e52014b8686a69dad772fd"
+SRC_URI[sha256sum] = 
"558284687d9b8aae1904e3d6051ad132dd4a8c0cf551b37ea4e7e42a31d19dc4"
 
 inherit pypi ptest python_setuptools_build_meta
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107880): 
https://lists.openembedded.org/g/openembedded-devel/message/107880
Mute This Topic: https://lists.openembedded.org/mt/103419821/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-parse: update to version 1.20.0

2023-12-21 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 ...ython3-parse_1.19.1.bb => python3-parse_1.20.0.bb} | 11 +++
 1 file changed, 3 insertions(+), 8 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-parse_1.19.1.bb => 
python3-parse_1.20.0.bb} (56%)

diff --git a/meta-python/recipes-devtools/python/python3-parse_1.19.1.bb 
b/meta-python/recipes-devtools/python/python3-parse_1.20.0.bb
similarity index 56%
rename from meta-python/recipes-devtools/python/python3-parse_1.19.1.bb
rename to meta-python/recipes-devtools/python/python3-parse_1.20.0.bb
index 9dc7f7931..3ca6fbbeb 100644
--- a/meta-python/recipes-devtools/python/python3-parse_1.19.1.bb
+++ b/meta-python/recipes-devtools/python/python3-parse_1.20.0.bb
@@ -3,18 +3,13 @@ HOMEPAGE = "https://github.com/r1chardj0n3s/parse;
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=8ab458ad281b60e6f1b39b3feafbfc05"
 
-SRC_URI[sha256sum] = 
"cc3a47236ff05da377617ddefa867b7ba983819c664e1afe46249e5b469be464"
+SRC_URI[sha256sum] = 
"bd28bae37714b45d5894d77160a16e2be36b64a3b618c81168b3684676aa498b"
 
 SRC_URI += " \
-git://github.com/r1chardj0n3s/parse.git;branch=master;protocol=https \
 file://run-ptest \
 "
 
-SRCREV ?= "72776522285d516032faa0f80c4ee6a8964075e8"
-
-S = "${WORKDIR}/git"
-
-inherit python_setuptools_build_meta ptest
+inherit pypi python_setuptools_build_meta ptest
 
 RDEPENDS:${PN} += "\
 python3-datetime \
@@ -27,5 +22,5 @@ RDEPENDS:${PN}-ptest += " \
 "
 
 do_install_ptest() {
-cp -f ${S}/test_parse.py ${D}${PTEST_PATH}/
+cp -f ${S}/tests/test*.py ${D}${PTEST_PATH}/
 }
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107742): 
https://lists.openembedded.org/g/openembedded-devel/message/107742
Mute This Topic: https://lists.openembedded.org/mt/103309592/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-web3: update to version 6.13.0

2023-12-21 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../python/{python3-web3_6.12.0.bb => python3-web3_6.13.0.bb}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-web3_6.12.0.bb => 
python3-web3_6.13.0.bb} (84%)

diff --git a/meta-python/recipes-devtools/python/python3-web3_6.12.0.bb 
b/meta-python/recipes-devtools/python/python3-web3_6.13.0.bb
similarity index 84%
rename from meta-python/recipes-devtools/python/python3-web3_6.12.0.bb
rename to meta-python/recipes-devtools/python/python3-web3_6.13.0.bb
index c54f362c6..0f0682fca 100644
--- a/meta-python/recipes-devtools/python/python3-web3_6.12.0.bb
+++ b/meta-python/recipes-devtools/python/python3-web3_6.13.0.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=373fede350846fdffd23648fba504635"
 
-SRC_URI[sha256sum] = 
"81a68519ff4416eee7f16d4dbc498e70deb90908c7c1d7bebc950e5f3d1f29d5"
+SRC_URI[sha256sum] = 
"769ab3cfffea69c6b495c63a1aecdb522651c0304260fc25467a886d0be622e2"
 
 inherit pypi setuptools3
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107741): 
https://lists.openembedded.org/g/openembedded-devel/message/107741
Mute This Topic: https://lists.openembedded.org/mt/103309460/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-greenlet: update to version 3.0.3

2023-12-21 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../{python3-greenlet_3.0.2.bb => python3-greenlet_3.0.3.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-greenlet_3.0.2.bb => 
python3-greenlet_3.0.3.bb} (78%)

diff --git a/meta-python/recipes-devtools/python/python3-greenlet_3.0.2.bb 
b/meta-python/recipes-devtools/python/python3-greenlet_3.0.3.bb
similarity index 78%
rename from meta-python/recipes-devtools/python/python3-greenlet_3.0.2.bb
rename to meta-python/recipes-devtools/python/python3-greenlet_3.0.3.bb
index 337bd95a6..abd6c49ca 100644
--- a/meta-python/recipes-devtools/python/python3-greenlet_3.0.2.bb
+++ b/meta-python/recipes-devtools/python/python3-greenlet_3.0.3.bb
@@ -4,6 +4,6 @@ LICENSE = "MIT & PSF-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=e95668d68e4329085c7ab3535e6a7aee \
 file://LICENSE.PSF;md5=c106931d9429eda0492617f037b8f69a"
 
-SRC_URI[sha256sum] = 
"1c1129bc47266d83444c85a8e990ae22688cf05fb20d7951fd2866007c2ba9bc"
+SRC_URI[sha256sum] = 
"43374442353259554ce33599da8b692d5aa96f8976d567d4badf263371fbe491"
 
 inherit pypi setuptools3
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107740): 
https://lists.openembedded.org/g/openembedded-devel/message/107740
Mute This Topic: https://lists.openembedded.org/mt/103309432/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-flask-jwt-extended: update to version 4.6.0

2023-12-21 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 ...wt-extended_4.5.3.bb => python3-flask-jwt-extended_4.6.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename 
meta-python/recipes-devtools/python/{python3-flask-jwt-extended_4.5.3.bb => 
python3-flask-jwt-extended_4.6.0.bb} (80%)

diff --git 
a/meta-python/recipes-devtools/python/python3-flask-jwt-extended_4.5.3.bb 
b/meta-python/recipes-devtools/python/python3-flask-jwt-extended_4.6.0.bb
similarity index 80%
rename from 
meta-python/recipes-devtools/python/python3-flask-jwt-extended_4.5.3.bb
rename to 
meta-python/recipes-devtools/python/python3-flask-jwt-extended_4.6.0.bb
index d5438f11a..cc07c92f4 100644
--- a/meta-python/recipes-devtools/python/python3-flask-jwt-extended_4.5.3.bb
+++ b/meta-python/recipes-devtools/python/python3-flask-jwt-extended_4.6.0.bb
@@ -7,7 +7,7 @@ inherit pypi setuptools3
 
 PYPI_PACKAGE = "Flask-JWT-Extended"
 
-SRC_URI[sha256sum] = 
"061ef3d25ed5743babe4964ab38f36d870e6d2fd8a126bab5d77ddef8a01932b"
+SRC_URI[sha256sum] = 
"9215d05a9413d3855764bcd67035e75819d23af2fafb6b55197eb5a3313fdfb2"
 
 RDEPENDS:${PN} += "\
 python3-werkzeug \
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107739): 
https://lists.openembedded.org/g/openembedded-devel/message/107739
Mute This Topic: https://lists.openembedded.org/mt/103309345/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-mypy: update to version 1.8.0

2023-12-21 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../python/{python3-mypy_1.7.1.bb => python3-mypy_1.8.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-mypy_1.7.1.bb => 
python3-mypy_1.8.0.bb} (86%)

diff --git a/meta-python/recipes-devtools/python/python3-mypy_1.7.1.bb 
b/meta-python/recipes-devtools/python/python3-mypy_1.8.0.bb
similarity index 86%
rename from meta-python/recipes-devtools/python/python3-mypy_1.7.1.bb
rename to meta-python/recipes-devtools/python/python3-mypy_1.8.0.bb
index 90301f3cc..2e6c7cc07 100644
--- a/meta-python/recipes-devtools/python/python3-mypy_1.7.1.bb
+++ b/meta-python/recipes-devtools/python/python3-mypy_1.8.0.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=8d62fd8f8648cb018e52857347e340b9"
 
 inherit pypi python_setuptools_build_meta
 
-SRC_URI[sha256sum] = 
"fcb6d9afb1b6208b4c712af0dafdc650f518836065df0d4fb1d800f5d6773db2"
+SRC_URI[sha256sum] = 
"6ff8b244d7085a0b425b56d327b480c3b29cafbd2eff27316a004f9a7391ae07"
 
 BBCLASSEXTEND = "native"
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107738): 
https://lists.openembedded.org/g/openembedded-devel/message/107738
Mute This Topic: https://lists.openembedded.org/mt/103309306/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-constantly: update to version 23.10.4

2023-12-21 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 ...-constantly_15.1.0.bb => python3-constantly_23.10.4.bb} | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-constantly_15.1.0.bb => 
python3-constantly_23.10.4.bb} (57%)

diff --git a/meta-python/recipes-devtools/python/python3-constantly_15.1.0.bb 
b/meta-python/recipes-devtools/python/python3-constantly_23.10.4.bb
similarity index 57%
rename from meta-python/recipes-devtools/python/python3-constantly_15.1.0.bb
rename to meta-python/recipes-devtools/python/python3-constantly_23.10.4.bb
index 7f9b0326f..cb6ca0a82 100644
--- a/meta-python/recipes-devtools/python/python3-constantly_15.1.0.bb
+++ b/meta-python/recipes-devtools/python/python3-constantly_23.10.4.bb
@@ -3,9 +3,10 @@ HOMEPAGE = "https://github.com/twisted/constantly;
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=e393e4ddd223e3a74982efa784f89fd7"
 
-SRC_URI[md5sum] = "f0762f083d83039758e53f8cf0086eef"
-SRC_URI[sha256sum] = 
"586372eb92059873e29eba4f9dec8381541b4d3834660707faf8ba59146dfc35"
+SRC_URI[sha256sum] = 
"aa92b70a33e2ac0bb33cd745eb61776594dc48764b06c35e0efd050b7f1c7cbd"
 
-inherit pypi setuptools3
+inherit pypi python_poetry_core 
+
+DEPENDS += "${PYTHON_PN}-versioneer-native"
 
 RDEPENDS:${PN} += "${PYTHON_PN}-json"
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107737): 
https://lists.openembedded.org/g/openembedded-devel/message/107737
Mute This Topic: https://lists.openembedded.org/mt/103309286/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-pyroute2: update to version 0.7.10

2023-12-21 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../{python3-pyroute2_0.7.9.bb => python3-pyroute2_0.7.10.bb}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pyroute2_0.7.9.bb => 
python3-pyroute2_0.7.10.bb} (92%)

diff --git a/meta-python/recipes-devtools/python/python3-pyroute2_0.7.9.bb 
b/meta-python/recipes-devtools/python/python3-pyroute2_0.7.10.bb
similarity index 92%
rename from meta-python/recipes-devtools/python/python3-pyroute2_0.7.9.bb
rename to meta-python/recipes-devtools/python/python3-pyroute2_0.7.10.bb
index 9365a330e..6b340a18c 100644
--- a/meta-python/recipes-devtools/python/python3-pyroute2_0.7.9.bb
+++ b/meta-python/recipes-devtools/python/python3-pyroute2_0.7.10.bb
@@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=dccbff78d7d79ae7e53953d43445c6e6 \
 
file://LICENSE.GPL-2.0-or-later;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
 
file://LICENSE.Apache-2.0;md5=34281e312165f843a2b7d1f114fe65ce"
 
-SRC_URI[sha256sum] = 
"b69d82f140b0774317d7ba40f6c5fa1d755098ba3f3eb619982d16e750dc631a"
+SRC_URI[sha256sum] = 
"cc2f90aad1517cb0b301041f678cc8d3c3427c26e53f15c78c93c67928d89a02"
 
 inherit setuptools3 pypi ptest
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107736): 
https://lists.openembedded.org/g/openembedded-devel/message/107736
Mute This Topic: https://lists.openembedded.org/mt/103305930/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 2/2] python3-setuptools-scm-git-archive: remove obsolete package

2023-12-21 Thread Derek Straka
Upstream project is obsolete with setuptools_scm >= 7.0 which natively supports 
git archives

See upstream repo for details - 
https://github.com/Changaco/setuptools_scm_git_archive/

Signed-off-by: Derek Straka 
---
 .../packagegroups/packagegroup-meta-python.bb|  1 -
 .../python/python3-ansi2html_1.9.1.bb|  1 -
 .../python3-setuptools-scm-git-archive_1.1.bb| 16 
 3 files changed, 18 deletions(-)
 delete mode 100644 
meta-python/recipes-devtools/python/python3-setuptools-scm-git-archive_1.1.bb

diff --git a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb 
b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
index a8b4532c3..7b7d7bee9 100644
--- a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
+++ b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
@@ -391,7 +391,6 @@ RDEPENDS:packagegroup-meta-python3 = "\
 python3-serpent \
 python3-service-identity \
 python3-setuptools-declarative-requirements \
-python3-setuptools-scm-git-archive \
 python3-sh \
 python3-sijax \
 python3-simpleeval \
diff --git a/meta-python/recipes-devtools/python/python3-ansi2html_1.9.1.bb 
b/meta-python/recipes-devtools/python/python3-ansi2html_1.9.1.bb
index 82b8ef37e..e419fdcf1 100644
--- a/meta-python/recipes-devtools/python/python3-ansi2html_1.9.1.bb
+++ b/meta-python/recipes-devtools/python/python3-ansi2html_1.9.1.bb
@@ -11,7 +11,6 @@ inherit pypi python_setuptools_build_meta
 
 DEPENDS += " \
${PYTHON_PN}-setuptools-scm-native \
-   ${PYTHON_PN}-setuptools-scm-git-archive-native \
 "
 
 RDEPENDS:${PN} = " \
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
deleted file mode 100644
index 2068871d9..0
--- 
a/meta-python/recipes-devtools/python/python3-setuptools-scm-git-archive_1.1.bb
+++ /dev/null
@@ -1,16 +0,0 @@
-SUMMARY = "setuptools_scm plugin for git archives"
-HOMEPAGE = "https://pypi.org/project/setuptools-scm-git-archive/;
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=838c366f69b72c5df05c96dff79b35f2"
-
-SRC_URI[sha256sum] = 
"6026f61089b73fa1b5ee737e95314f41cb512609b393530385ed281d0b46c062"
-
-inherit pypi setuptools3
-
-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.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107735): 
https://lists.openembedded.org/g/openembedded-devel/message/107735
Mute This Topic: https://lists.openembedded.org/mt/103305871/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 1/2] python3-pytest-html: update to version 4.1.1

2023-12-21 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 ...test-html_3.2.0.bb => python3-pytest-html_4.1.1.bb} | 10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-pytest-html_3.2.0.bb => 
python3-pytest-html_4.1.1.bb} (59%)

diff --git a/meta-python/recipes-devtools/python/python3-pytest-html_3.2.0.bb 
b/meta-python/recipes-devtools/python/python3-pytest-html_4.1.1.bb
similarity index 59%
rename from meta-python/recipes-devtools/python/python3-pytest-html_3.2.0.bb
rename to meta-python/recipes-devtools/python/python3-pytest-html_4.1.1.bb
index 713a84b41..b9023dfcd 100644
--- a/meta-python/recipes-devtools/python/python3-pytest-html_3.2.0.bb
+++ b/meta-python/recipes-devtools/python/python3-pytest-html_4.1.1.bb
@@ -4,13 +4,15 @@ DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
 LICENSE = "MPL-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=5d425c8f3157dbf212db2ec53d9e5132"
 
-SRC_URI[sha256sum] = 
"c4e2f4bb0bffc437f51ad2174a8a3e71df81bbc2f6894604e604af18fbe687c3"
+SRC_URI[sha256sum] = 
"70a01e8ae5800f4a074b56a4cb1025c8f4f9b038bba5fe31e3c98eb996686f07"
 
-PYPI_PACKAGE = "pytest-html"
+PYPI_PACKAGE = "pytest_html"
 
-inherit pypi python_setuptools_build_meta
+inherit pypi python_hatchling
 
-DEPENDS += "python3-setuptools-scm-git-archive-native"
+DEPENDS += "\
+${PYTHON_PN}-hatch-vcs-native \
+"
 
 RDEPENDS:${PN} += " \
 ${PYTHON_PN}-pytest \
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107734): 
https://lists.openembedded.org/g/openembedded-devel/message/107734
Mute This Topic: https://lists.openembedded.org/mt/103305870/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-gspread: update to version 5.12.3

2023-12-21 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../python3-gspread/python3-gspread_5.10.0.bb   | 13 -
 .../python3-gspread/python3-gspread_5.12.3.bb   | 12 
 2 files changed, 12 insertions(+), 13 deletions(-)
 delete mode 100644 
meta-python/recipes-devtools/python3-gspread/python3-gspread_5.10.0.bb
 create mode 100644 
meta-python/recipes-devtools/python3-gspread/python3-gspread_5.12.3.bb

diff --git 
a/meta-python/recipes-devtools/python3-gspread/python3-gspread_5.10.0.bb 
b/meta-python/recipes-devtools/python3-gspread/python3-gspread_5.10.0.bb
deleted file mode 100644
index 3918ed3ac..0
--- a/meta-python/recipes-devtools/python3-gspread/python3-gspread_5.10.0.bb
+++ /dev/null
@@ -1,13 +0,0 @@
-SUMMARY = "Google Spreadsheets Python API"
-HOMEPAGE = "https://github.com/burnash/gspread;
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=9488e21983675fa56dc05af558b83e2f"
-
-SRC_URI = 
"https://files.pythonhosted.org/packages/b4/4f/033ebf34778745061b67b104ef212ed5b05fa65a530f345f88c4355fdcc3/gspread-5.10.0.tar.gz;
-SRC_URI[sha256sum] = 
"2b6bba6dc111580170346a9bcd1893e0e8c52f67a9e537caec7b7a1e27c14435"
-
-S = "${WORKDIR}/gspread-${PV}"
-
-RDEPENDS:${PN} = "python3-requests"
-
-inherit python_poetry_core
diff --git 
a/meta-python/recipes-devtools/python3-gspread/python3-gspread_5.12.3.bb 
b/meta-python/recipes-devtools/python3-gspread/python3-gspread_5.12.3.bb
new file mode 100644
index 0..932cf22b1
--- /dev/null
+++ b/meta-python/recipes-devtools/python3-gspread/python3-gspread_5.12.3.bb
@@ -0,0 +1,12 @@
+SUMMARY = "Google Spreadsheets Python API"
+HOMEPAGE = "https://github.com/burnash/gspread;
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=9488e21983675fa56dc05af558b83e2f"
+
+SRC_URI[sha256sum] = 
"298ebab76e6ed6a998eabc81545ec58f5610f44e2ddb4858b539a0634093f8ce"
+
+S = "${WORKDIR}/gspread-${PV}"
+
+RDEPENDS:${PN} = "python3-requests"
+
+inherit pypi python_poetry_core
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107733): 
https://lists.openembedded.org/g/openembedded-devel/message/107733
Mute This Topic: https://lists.openembedded.org/mt/103305579/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-flask-wtf: fix upstream uri and version check

2023-12-21 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python3-flask-wtf_1.2.1.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python3-flask-wtf_1.2.1.bb 
b/meta-python/recipes-devtools/python/python3-flask-wtf_1.2.1.bb
index 54d7bd637..973bb570b 100644
--- a/meta-python/recipes-devtools/python/python3-flask-wtf_1.2.1.bb
+++ b/meta-python/recipes-devtools/python/python3-flask-wtf_1.2.1.bb
@@ -5,6 +5,8 @@ LIC_FILES_CHKSUM = 
"file://LICENSE.rst;md5=d98d089889e14b227732d45dac3aacc4"
 SRC_URI[sha256sum] = 
"8bb269eb9bb46b87e7c8233d7e7debdf1f8b74bf90cc1789988c29b37a97b695"
 
 PYPI_PACKAGE = "flask_wtf"
+UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/Flask-WTF;
+UPSTREAM_CHECK_REGEX = "/Flask-WTF/(?P(\d+[\.\-_]*)+)"
 
 inherit pypi python_hatchling
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107732): 
https://lists.openembedded.org/g/openembedded-devel/message/107732
Mute This Topic: https://lists.openembedded.org/mt/103305433/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-uswid: update to version 0.4.7

2023-12-21 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../{python3-uswid_git.bb => python3-uswid_0.4.7.bb} | 12 +---
 1 file changed, 5 insertions(+), 7 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-uswid_git.bb => 
python3-uswid_0.4.7.bb} (70%)

diff --git a/meta-python/recipes-devtools/python/python3-uswid_git.bb 
b/meta-python/recipes-devtools/python/python3-uswid_0.4.7.bb
similarity index 70%
rename from meta-python/recipes-devtools/python/python3-uswid_git.bb
rename to meta-python/recipes-devtools/python/python3-uswid_0.4.7.bb
index 40adc34c1..4499edb21 100644
--- a/meta-python/recipes-devtools/python/python3-uswid_git.bb
+++ b/meta-python/recipes-devtools/python/python3-uswid_0.4.7.bb
@@ -2,6 +2,11 @@ SUMMARY = "A pure-python library for embedding CoSWID data"
 HOMEPAGE = "https://github.com/hughsie/python-uswid;
 SECTION = "devel/python"
 LICENSE = "LGPL-2.1-or-later"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=40d2542b8c43a3ec2b7f5da31a697b88"
+
+SRC_URI[sha256sum] = 
"de15c2421bedaa5f54606558700c1f628f07d73da49ec69d1888214ac52c49e6"
+
+inherit setuptools3 python3native pypi
 
 DEPENDS += " python3-cbor2 python3-lxml python3-pefile"
 RDEPENDS:${PN} += " \
@@ -10,12 +15,5 @@ RDEPENDS:${PN} += " \
 python3-lxml \
 python3-netclient \
 "
-LIC_FILES_CHKSUM = "file://LICENSE;md5=40d2542b8c43a3ec2b7f5da31a697b88"
-
-SRC_URI = 
"git://github.com/hughsie/python-uswid.git;branch=main;protocol=https"
-SRCREV = "3223034abef88ae29cf79fdc7fe11ec7e21e11ff"
-S = "${WORKDIR}/git"
-
-inherit setuptools3 python3native
 
 BBCLASSEXTEND = "native nativesdk"
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107730): 
https://lists.openembedded.org/g/openembedded-devel/message/107730
Mute This Topic: https://lists.openembedded.org/mt/103305383/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-wpa-supplicant: fix upstream uri and version check

2023-12-21 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../recipes-devtools/python/python3-wpa-supplicant_0.2.bb   | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python3-wpa-supplicant_0.2.bb 
b/meta-python/recipes-devtools/python/python3-wpa-supplicant_0.2.bb
index 5ac7786ad..b9c62ced7 100644
--- a/meta-python/recipes-devtools/python/python3-wpa-supplicant_0.2.bb
+++ b/meta-python/recipes-devtools/python/python3-wpa-supplicant_0.2.bb
@@ -10,6 +10,8 @@ SRC_URI[sha256sum] = 
"3ad0f40a696763bb0f4d4dec5b51f6b53ccfeb7c16ebb5897349303045
 SRC_URI += 
"file://0001-cli-drop-the-second-argument-from-click.argument-dec.patch"
 
 PYPI_PACKAGE = "wpa_supplicant"
+UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/wpa_supplicant;
+UPSTREAM_CHECK_REGEX = "/wpa_supplicant/(?P(\d+[\.\-_]*)+)"
 
 inherit pypi setuptools3
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107729): 
https://lists.openembedded.org/g/openembedded-devel/message/107729
Mute This Topic: https://lists.openembedded.org/mt/103305266/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-flask: fix upstream uri and version check

2023-12-21 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python3-flask_2.3.3.bb | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python3-flask_2.3.3.bb 
b/meta-python/recipes-devtools/python/python3-flask_2.3.3.bb
index c8c8d870a..99a61f136 100644
--- a/meta-python/recipes-devtools/python/python3-flask_2.3.3.bb
+++ b/meta-python/recipes-devtools/python/python3-flask_2.3.3.bb
@@ -8,6 +8,9 @@ LIC_FILES_CHKSUM = 
"file://LICENSE.rst;md5=ffeffa59c90c9c4a033c7574f8f3fb75"
 
 SRC_URI[sha256sum] = 
"09c347a92aa7ff4a8e7f3206795f30d826654baf38b873d0744cd571ca609efc"
 
+UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/Flask;
+UPSTREAM_CHECK_REGEX = "/Flask/(?P(\d+[\.\-_]*)+)"
+
 inherit pypi python_setuptools_build_meta
 
 CLEANBROKEN = "1"
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107728): 
https://lists.openembedded.org/g/openembedded-devel/message/107728
Mute This Topic: https://lists.openembedded.org/mt/103305173/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-ipython-genutils: fix upstream uri and version check

2023-12-21 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../recipes-devtools/python/python3-ipython-genutils_0.2.0.bb  | 3 +++
 1 file changed, 3 insertions(+)

diff --git 
a/meta-python/recipes-devtools/python/python3-ipython-genutils_0.2.0.bb 
b/meta-python/recipes-devtools/python/python3-ipython-genutils_0.2.0.bb
index 8725150e4..3261d8047 100644
--- a/meta-python/recipes-devtools/python/python3-ipython-genutils_0.2.0.bb
+++ b/meta-python/recipes-devtools/python/python3-ipython-genutils_0.2.0.bb
@@ -5,6 +5,9 @@ LIC_FILES_CHKSUM = 
"file://COPYING.md;md5=f7c3032c3ac398265224533a0a333a35"
 
 PYPI_PACKAGE = "ipython_genutils"
 
+UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/ipython_genutils;
+UPSTREAM_CHECK_REGEX = "/ipython_genutils/(?P(\d+[\.\-_]*)+)"
+
 SRC_URI[md5sum] = "5a4f9781f78466da0ea1a648f3e1f79f"
 SRC_URI[sha256sum] = 
"eb2e116e75ecef9d4d228fdc66af54269afa26ab4463042e33785b887c628ba8"
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107727): 
https://lists.openembedded.org/g/openembedded-devel/message/107727
Mute This Topic: https://lists.openembedded.org/mt/103305012/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] gyp: update to the latest commit

2023-12-21 Thread Derek Straka
NOTE: gyp is now idle, and support will be removed in future releases
https://chromium.googlesource.com/external/gyp/+/d6c5dd51dc3a60bf4ff32a5256713690a1a10376

Signed-off-by: Derek Straka 
---
 ...01-Fix-for-Python-3.10-compatibility.patch | 36 ---
 meta-python/recipes-devtools/gyp/gyp_git.bb   |  3 +-
 2 files changed, 1 insertion(+), 38 deletions(-)
 delete mode 100644 
meta-python/recipes-devtools/gyp/gyp/0001-Fix-for-Python-3.10-compatibility.patch

diff --git 
a/meta-python/recipes-devtools/gyp/gyp/0001-Fix-for-Python-3.10-compatibility.patch
 
b/meta-python/recipes-devtools/gyp/gyp/0001-Fix-for-Python-3.10-compatibility.patch
deleted file mode 100644
index d1ac2c6b4..0
--- 
a/meta-python/recipes-devtools/gyp/gyp/0001-Fix-for-Python-3.10-compatibility.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From bfe579283e5fcab60172818bfe4e6e1d40c2bed0 Mon Sep 17 00:00:00 2001
-From: Kurt Kiefer 
-Date: Mon, 18 Oct 2021 11:21:14 -0700
-Subject: [PATCH] Fix for Python 3.10 compatibility
-
-The collections.abc module replaces collections for Python 3.10
-
-Signed-off-by: Kurt Kiefer 

-Upstream-Status: Pending
-
- pylib/gyp/common.py | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/pylib/gyp/common.py b/pylib/gyp/common.py
-index b268d229..4f9cb0ec 100644
 a/pylib/gyp/common.py
-+++ b/pylib/gyp/common.py
-@@ -4,7 +4,7 @@
- 
- from __future__ import with_statement
- 
--import collections
-+import collections.abc
- import errno
- import filecmp
- import os.path
-@@ -494,7 +494,7 @@ def uniquer(seq, idfun=None):
- 
- 
- # Based on http://code.activestate.com/recipes/576694/.
--class OrderedSet(collections.MutableSet):
-+class OrderedSet(collections.abc.MutableSet):
-   def __init__(self, iterable=None):
- self.end = end = []
- end += [None, end, end] # sentinel node for doubly linked list
diff --git a/meta-python/recipes-devtools/gyp/gyp_git.bb 
b/meta-python/recipes-devtools/gyp/gyp_git.bb
index 38906de75..0f94a4476 100644
--- a/meta-python/recipes-devtools/gyp/gyp_git.bb
+++ b/meta-python/recipes-devtools/gyp/gyp_git.bb
@@ -5,9 +5,8 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=ab828cb8ce4c62ee82945a11247b6bbd"
 SECTION = "devel"
 
 SRC_URI = 
"git://chromium.googlesource.com/external/gyp;protocol=https;branch=master \
-   file://0001-Fix-for-Python-3.10-compatibility.patch \
"
-SRCREV = "caa60026e223fc501e8b337fd5086ece4028b1c6"
+SRCREV = "a03d7413becefc8d55c8aa3df58b55b9bd0e9052"
 
 S = "${WORKDIR}/git"
 PV = "0.1+git${SRCPV}"
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107726): 
https://lists.openembedded.org/g/openembedded-devel/message/107726
Mute This Topic: https://lists.openembedded.org/mt/103304965/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-wtforms: fix upstream uri and version check

2023-12-21 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python3-wtforms_3.1.1.bb | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python3-wtforms_3.1.1.bb 
b/meta-python/recipes-devtools/python/python3-wtforms_3.1.1.bb
index c9ad1be48..b57c31100 100644
--- a/meta-python/recipes-devtools/python/python3-wtforms_3.1.1.bb
+++ b/meta-python/recipes-devtools/python/python3-wtforms_3.1.1.bb
@@ -7,6 +7,9 @@ LIC_FILES_CHKSUM = 
"file://LICENSE.rst;md5=17ed54aa95f4a6cd0d7a4747d14b64d0"
 
 SRC_URI[sha256sum] = 
"5e51df8af9a60f6beead75efa10975e97768825a82146a65c7cbf5b915990620"
 
+UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/WTForms;
+UPSTREAM_CHECK_REGEX = "/WTForms/(?P(\d+[\.\-_]*)+)"
+
 inherit pypi python_hatchling
 
 DEPENDS += "\
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107725): 
https://lists.openembedded.org/g/openembedded-devel/message/107725
Mute This Topic: https://lists.openembedded.org/mt/103304593/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-flask-sqlalchemy: fix upstream uri check

2023-12-21 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../recipes-devtools/python/python3-flask-sqlalchemy_3.1.1.bb   | 2 ++
 1 file changed, 2 insertions(+)

diff --git 
a/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_3.1.1.bb 
b/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_3.1.1.bb
index ecbcf16dd..56f63bf03 100644
--- a/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_3.1.1.bb
+++ b/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_3.1.1.bb
@@ -5,6 +5,8 @@ LIC_FILES_CHKSUM = 
"file://LICENSE.rst;md5=ffeffa59c90c9c4a033c7574f8f3fb75"
 SRC_URI[sha256sum] = 
"e4b68bb881802dda1a7d878b2fc84c06d1ee57fb40b874d3dc97dabfa36b8312"
 
 PYPI_PACKAGE = "flask_sqlalchemy"
+UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/Flask-SQLAlchemy;
+UPSTREAM_CHECK_REGEX = "/Flask-SQLAlchemy/(?P(\d+[\.\-_]*)+)"
 
 inherit pypi python_setuptools_build_meta
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107724): 
https://lists.openembedded.org/g/openembedded-devel/message/107724
Mute This Topic: https://lists.openembedded.org/mt/103303697/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-cmake: update to version 3.28.1

2023-12-21 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../python/{python3-cmake_3.28.0.bb => python3-cmake_3.28.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-cmake_3.28.0.bb => 
python3-cmake_3.28.1.bb} (90%)

diff --git a/meta-python/recipes-devtools/python/python3-cmake_3.28.0.bb 
b/meta-python/recipes-devtools/python/python3-cmake_3.28.1.bb
similarity index 90%
rename from meta-python/recipes-devtools/python/python3-cmake_3.28.0.bb
rename to meta-python/recipes-devtools/python/python3-cmake_3.28.1.bb
index c31161e8f..a6a7b6c4f 100644
--- a/meta-python/recipes-devtools/python/python3-cmake_3.28.0.bb
+++ b/meta-python/recipes-devtools/python/python3-cmake_3.28.1.bb
@@ -11,7 +11,7 @@ PYPI_PACKAGE = "cmake"
 PYPI_ARCHIVE_NAME_PREFIX = "pypi-"
 
 inherit pypi python_setuptools_build_meta
-SRC_URI[sha256sum] = 
"cb16c350eaa8543afcb1a9b142809b075f5ee8d94fa07b7c769fbd827c985dd0"
+SRC_URI[sha256sum] = 
"0d4051d101d151d8387156c463aa45c8cd0e164f870e0ac0c8c91d3ff08528e1"
 
 SRC_URI += " \
file://CMakeLists.txt \
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107723): 
https://lists.openembedded.org/g/openembedded-devel/message/107723
Mute This Topic: https://lists.openembedded.org/mt/103303552/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 2/2] python3-grpcio-tools: update to version 1.60.0

2023-12-21 Thread Derek Straka
Delete upstreamed patch for off_t
Rebase the other patches on the latest version

Signed-off-by: Derek Straka 
---
 .../0001-direct_mmap-Use-off_t-on-linux.patch | 37 ---
 ...f-Disable-musttail-attribute-on-mips.patch | 10 ++---
 ...-Do-not-mix-C-and-C-compiler-options.patch | 25 +++--
 ...56.0.bb => python3-grpcio-tools_1.60.0.bb} |  3 +-
 4 files changed, 19 insertions(+), 56 deletions(-)
 delete mode 100644 
meta-python/recipes-devtools/python/python3-grpcio-tools/0001-direct_mmap-Use-off_t-on-linux.patch
 rename meta-python/recipes-devtools/python/{python3-grpcio-tools_1.56.0.bb => 
python3-grpcio-tools_1.60.0.bb} (77%)

diff --git 
a/meta-python/recipes-devtools/python/python3-grpcio-tools/0001-direct_mmap-Use-off_t-on-linux.patch
 
b/meta-python/recipes-devtools/python/python3-grpcio-tools/0001-direct_mmap-Use-off_t-on-linux.patch
deleted file mode 100644
index 9b3e5d4a5..0
--- 
a/meta-python/recipes-devtools/python/python3-grpcio-tools/0001-direct_mmap-Use-off_t-on-linux.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From 45fdade6c0415ec5af3f9312e6311a4ccc682a7b Mon Sep 17 00:00:00 2001
-From: Khem Raj 
-Date: Wed, 28 Dec 2022 18:24:21 -0800
-Subject: [PATCH] direct_mmap: Use off_t on linux
-
-off64_t is not provided without defining _LARGEFILE64_SOURCE on musl
-this define is not defined automatically like glibc where it gets
-defined when _GNU_SOURCE is defined. Using off_t makes it portable
-across musl/glibc and for using 64bit off_t on glibc 32bit systems
--D_FILE_OFFSET_BITS=64 can be defined during build via CXXFLAGS
-
-Upstream-Status: Submitted [https://github.com/abseil/abseil-cpp/pull/1349]
-Signed-off-by: Khem Raj 

- absl/base/internal/direct_mmap.h | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
 a/third_party/abseil-cpp/absl/base/internal/direct_mmap.h
-+++ b/third_party/abseil-cpp/absl/base/internal/direct_mmap.h
-@@ -72,7 +72,7 @@ namespace base_internal {
- // Platform specific logic extracted from
- // 
https://chromium.googlesource.com/linux-syscall-support/+/master/linux_syscall_support.h
- inline void* DirectMmap(void* start, size_t length, int prot, int flags, int 
fd,
--off64_t offset) noexcept {
-+off_t offset) noexcept {
- #if defined(__i386__) || defined(__ARM_ARCH_3__) || defined(__ARM_EABI__) || \
- defined(__m68k__) || defined(__sh__) ||  \
- (defined(__hppa__) && !defined(__LP64__)) || \
-@@ -102,7 +102,7 @@ inline void* DirectMmap(void* start, siz
- #else
-   return reinterpret_cast(
-   syscall(SYS_mmap2, start, length, prot, flags, fd,
--  static_cast(offset / pagesize)));
-+  offset / pagesize));
- #endif
- #elif defined(__s390x__)
-   // On s390x, mmap() arguments are passed in memory.
diff --git 
a/meta-python/recipes-devtools/python/python3-grpcio-tools/0001-protobuf-Disable-musttail-attribute-on-mips.patch
 
b/meta-python/recipes-devtools/python/python3-grpcio-tools/0001-protobuf-Disable-musttail-attribute-on-mips.patch
index 8c70b2b6a..67505d0ce 100644
--- 
a/meta-python/recipes-devtools/python/python3-grpcio-tools/0001-protobuf-Disable-musttail-attribute-on-mips.patch
+++ 
b/meta-python/recipes-devtools/python/python3-grpcio-tools/0001-protobuf-Disable-musttail-attribute-on-mips.patch
@@ -14,11 +14,11 @@ Signed-off-by: Wang Mingyu 
 
 --- a/third_party/protobuf/src/google/protobuf/port_def.inc
 +++ b/third_party/protobuf/src/google/protobuf/port_def.inc
-@@ -338,6 +338,7 @@ static_assert(PROTOBUF_ABSL_MIN(20230125
+@@ -298,6 +298,7 @@
  #error PROTOBUF_TAILCALL was previously defined
  #endif
- #if __has_cpp_attribute(clang::musttail) && !defined(__arm__) &&  \
-+!defined(__mips__) &&\
+ #if ABSL_HAVE_CPP_ATTRIBUTE(clang::musttail) && !defined(__arm__) &&  \
++!defined(__mips__) && \
  !defined(_ARCH_PPC) && !defined(__wasm__) &&  \
- !(defined(_MSC_VER) && defined(_M_IX86)) && !defined(__i386__) && \
- !(defined(__NDK_MAJOR__) && __NDK_MAJOR <= 24)
+ !(defined(_MSC_VER) && defined(_M_IX86)) && !defined(__i386__)
+ // Compilation fails on ARM32: b/195943306
diff --git 
a/meta-python/recipes-devtools/python/python3-grpcio-tools/0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch
 
b/meta-python/recipes-devtools/python/python3-grpcio-tools/0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch
index 4aa11bd57..07276c17f 100644
--- 
a/meta-python/recipes-devtools/python/python3-grpcio-tools/0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch
+++ 
b/meta-python/recipes-devtools/python/python3-grpcio-tools/0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch
@@ -30,29 +30,30 @@ diff --git a/setup

[oe] [meta-python][PATCH 1/2] python3-grpcio: update to version 1.60.0

2023-12-21 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../{python3-grpcio_1.59.3.bb => python3-grpcio_1.60.0.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-grpcio_1.59.3.bb => 
python3-grpcio_1.60.0.bb} (93%)

diff --git a/meta-python/recipes-devtools/python/python3-grpcio_1.59.3.bb 
b/meta-python/recipes-devtools/python/python3-grpcio_1.60.0.bb
similarity index 93%
rename from meta-python/recipes-devtools/python/python3-grpcio_1.59.3.bb
rename to meta-python/recipes-devtools/python/python3-grpcio_1.60.0.bb
index 7b1631527..77b4198e3 100644
--- a/meta-python/recipes-devtools/python/python3-grpcio_1.59.3.bb
+++ b/meta-python/recipes-devtools/python/python3-grpcio_1.60.0.bb
@@ -10,7 +10,7 @@ SRC_URI += "file://0001-Include-missing-cstdint-header.patch \
file://abseil-ppc-fixes.patch \
file://0001-zlib-Include-unistd.h-for-open-close-C-APIs.patch \
"
-SRC_URI[sha256sum] = 
"7800f99568a74a06ebdccd419dd1b6e639b477dcaf6da77ea702f8fb14ce5f80"
+SRC_URI[sha256sum] = 
"2199165a1affb666aa24adf0c97436686d0a61bc5fc113c037701fb7c7fceb96"
 
 RDEPENDS:${PN} = "${PYTHON_PN}-protobuf \
   ${PYTHON_PN}-setuptools \
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107720): 
https://lists.openembedded.org/g/openembedded-devel/message/107720
Mute This Topic: https://lists.openembedded.org/mt/103303315/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 5/5] python3-flask-wtf: update to version 1.2.1

2023-12-21 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 ...ython3-flask-wtf_1.1.1.bb => python3-flask-wtf_1.2.1.bb} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-flask-wtf_1.1.1.bb => 
python3-flask-wtf_1.2.1.bb} (66%)

diff --git a/meta-python/recipes-devtools/python/python3-flask-wtf_1.1.1.bb 
b/meta-python/recipes-devtools/python/python3-flask-wtf_1.2.1.bb
similarity index 66%
rename from meta-python/recipes-devtools/python/python3-flask-wtf_1.1.1.bb
rename to meta-python/recipes-devtools/python/python3-flask-wtf_1.2.1.bb
index ec47fcac2..54d7bd637 100644
--- a/meta-python/recipes-devtools/python/python3-flask-wtf_1.1.1.bb
+++ b/meta-python/recipes-devtools/python/python3-flask-wtf_1.2.1.bb
@@ -2,11 +2,11 @@ DESCRIPTION = "Simple integration of Flask and WTForms."
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=d98d089889e14b227732d45dac3aacc4"
 
-SRC_URI[sha256sum] = 
"41c4244e9ae626d63bed42ae4785b90667b885b1535d5a4095e1f63060d12aa9"
+SRC_URI[sha256sum] = 
"8bb269eb9bb46b87e7c8233d7e7debdf1f8b74bf90cc1789988c29b37a97b695"
 
-PYPI_PACKAGE = "Flask-WTF"
+PYPI_PACKAGE = "flask_wtf"
 
-inherit pypi setuptools3
+inherit pypi python_hatchling
 
 RDEPENDS:${PN} = "\
 ${PYTHON_PN}-flask \
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107719): 
https://lists.openembedded.org/g/openembedded-devel/message/107719
Mute This Topic: https://lists.openembedded.org/mt/103302171/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 4/5] python3-eventlet: update to version 0.34.1

2023-12-21 Thread Derek Straka
Remove patch incorporated in the upstream release

Signed-off-by: Derek Straka 
---
 ...o-host-0-is-not-supported-on-OpenInd.patch | 78 ---
 ...t_0.33.3.bb => python3-eventlet_0.34.1.bb} |  3 +-
 2 files changed, 1 insertion(+), 80 deletions(-)
 delete mode 100644 
meta-python/recipes-devtools/python/python3-eventlet/0001-tests-getaddrinfo-host-0-is-not-supported-on-OpenInd.patch
 rename meta-python/recipes-devtools/python/{python3-eventlet_0.33.3.bb => 
python3-eventlet_0.34.1.bb} (66%)

diff --git 
a/meta-python/recipes-devtools/python/python3-eventlet/0001-tests-getaddrinfo-host-0-is-not-supported-on-OpenInd.patch
 
b/meta-python/recipes-devtools/python/python3-eventlet/0001-tests-getaddrinfo-host-0-is-not-supported-on-OpenInd.patch
deleted file mode 100644
index 61a37d94e..0
--- 
a/meta-python/recipes-devtools/python/python3-eventlet/0001-tests-getaddrinfo-host-0-is-not-supported-on-OpenInd.patch
+++ /dev/null
@@ -1,78 +0,0 @@
-From ac2f960a50710bb257e87bed4e3c95a746f2a0fe Mon Sep 17 00:00:00 2001
-From: Sergey Shepelev 
-Date: Mon, 27 Mar 2023 22:07:15 +0300
-Subject: [PATCH] tests: getaddrinfo(host, 0) is not supported on OpenIndiana
- platform
-
-https://github.com/eventlet/eventlet/issues/791
-
-Upstream-Status: Backport
-Signed-off-by: Alexander Kanavin 

- tests/greendns_test.py | 14 +++---
- 1 file changed, 7 insertions(+), 7 deletions(-)
-
-diff --git a/tests/greendns_test.py b/tests/greendns_test.py
-index feab2b6..3802f44 100644
 a/tests/greendns_test.py
-+++ b/tests/greendns_test.py
-@@ -613,14 +613,14 @@ class TestGetaddrinfo(tests.LimitedTestCase):
- def test_getaddrinfo_only_a_ans(self):
- greendns.resolve = _make_mock_resolve()
- greendns.resolve.add('example.com', '1.2.3.4')
--res = greendns.getaddrinfo('example.com', 0)
-+res = greendns.getaddrinfo('example.com', None)
- addr = [('1.2.3.4', 0)] * len(res)
- assert addr == [ai[-1] for ai in res]
- 
- def test_getaddrinfo_only__ans(self):
- greendns.resolve = _make_mock_resolve()
- greendns.resolve.add('example.com', 'dead:beef::1')
--res = greendns.getaddrinfo('example.com', 0)
-+res = greendns.getaddrinfo('example.com', None)
- addr = [('dead:beef::1', 0, 0, 0)] * len(res)
- assert addr == [ai[-1] for ai in res]
- 
-@@ -637,7 +637,7 @@ class TestGetaddrinfo(tests.LimitedTestCase):
- res.raises = greendns.dns.exception.Timeout
- greendns.resolver._resolver = res()
- 
--result = greendns.getaddrinfo('example.com', 0, 0)
-+result = greendns.getaddrinfo('example.com', None, 0)
- addr = [('1.2.3.4', 0)] * len(result)
- assert addr == [ai[-1] for ai in result]
- 
-@@ -654,7 +654,7 @@ class TestGetaddrinfo(tests.LimitedTestCase):
- res.raises = greendns.dns.exception.DNSException
- greendns.resolver._resolver = res()
- 
--result = greendns.getaddrinfo('example.com', 0, 0)
-+result = greendns.getaddrinfo('example.com', None, 0)
- addr = [('1.2.3.4', 0)] * len(result)
- assert addr == [ai[-1] for ai in result]
- 
-@@ -667,7 +667,7 @@ class TestGetaddrinfo(tests.LimitedTestCase):
- greendns.resolver._resolver = res()
- 
- with tests.assert_raises(socket.gaierror):
--greendns.getaddrinfo('example.com', 0, 0)
-+greendns.getaddrinfo('example.com', None, 0)
- 
- def test_getaddrinfo_hosts_only_dns_error(self):
- hostsres = _make_mock_base_resolver()
-@@ -678,13 +678,13 @@ class TestGetaddrinfo(tests.LimitedTestCase):
- greendns.resolver._resolver = res()
- 
- with tests.assert_raises(socket.gaierror):
--greendns.getaddrinfo('example.com', 0, 0)
-+greendns.getaddrinfo('example.com', None, 0)
- 
- def test_canonname(self):
- greendns.resolve = _make_mock_resolve()
- greendns.resolve.add('host.example.com', '1.2.3.4')
- greendns.resolve_cname = self._make_mock_resolve_cname()
--res = greendns.getaddrinfo('host.example.com', 0,
-+res = greendns.getaddrinfo('host.example.com', None,
-0, 0, 0, socket.AI_CANONNAME)
- assert res[0][3] == 'cname.example.com'
- 
diff --git a/meta-python/recipes-devtools/python/python3-eventlet_0.33.3.bb 
b/meta-python/recipes-devtools/python/python3-eventlet_0.34.1.bb
similarity index 66%
rename from meta-python/recipes-devtools/python/python3-eventlet_0.33.3.bb
rename to meta-python/recipes-devtools/python/python3-eventlet_0.34.1.bb
index fe4d4f020..cd6d2b25e 100644
--- a/meta-python/recipes-devtools/python/python3-eventlet_0.33.3.bb
+++ b/meta-python/recipes-devtools/python/python3-eventlet_0.34.1.bb
@@ -4,8 +4,7 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=56472ad6de4caf50e05332a34b66e778"
 
-SRC_URI += 
"file://0001-

[oe] [meta-python][PATCH 3/5] python3-pyfanotify: update to version 0.2.2

2023-12-21 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 ...ine-FNM_EXTMATCH-if-not-already-defined.patch | 16 +++-
 ...tify_0.2.1.bb => python3-pyfanotify_0.2.2.bb} |  2 +-
 2 files changed, 8 insertions(+), 10 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-pyfanotify_0.2.1.bb => 
python3-pyfanotify_0.2.2.bb} (83%)

diff --git 
a/meta-python/recipes-devtools/python/python3-pyfanotify/0001-ext-define-FNM_EXTMATCH-if-not-already-defined.patch
 
b/meta-python/recipes-devtools/python/python3-pyfanotify/0001-ext-define-FNM_EXTMATCH-if-not-already-defined.patch
index 2fa3cb05d..4c279bbcd 100644
--- 
a/meta-python/recipes-devtools/python/python3-pyfanotify/0001-ext-define-FNM_EXTMATCH-if-not-already-defined.patch
+++ 
b/meta-python/recipes-devtools/python/python3-pyfanotify/0001-ext-define-FNM_EXTMATCH-if-not-already-defined.patch
@@ -1,19 +1,20 @@
-From 9e7894b97ae7afe43a9901b774de5aef401549ac Mon Sep 17 00:00:00 2001
+From 87f1bf7d1e0ca2a841706d1c41d14382f11264db Mon Sep 17 00:00:00 2001
 From: Bartosz Golaszewski 
 Date: Thu, 28 Apr 2022 16:32:06 +0200
 Subject: [PATCH] ext: define FNM_EXTMATCH if not already defined
 
 On musl this constant is not defined. Define it locally if not present.
 
-Signed-off-by: Bartosz Golaszewski 

 Upstream-Status: Inappropriate
 
+Signed-off-by: Bartosz Golaszewski 
+
+---
  src/ext.c | 3 +++
  1 file changed, 3 insertions(+)
 
 diff --git a/src/ext.c b/src/ext.c
-index e0bbe21..7d979d3 100644
+index fb33de1..fa01a81 100644
 --- a/src/ext.c
 +++ b/src/ext.c
 @@ -19,6 +19,9 @@
@@ -24,8 +25,5 @@ index e0bbe21..7d979d3 100644
 +#define FNM_EXTMATCH 0
 +#endif
  
- PyDoc_STRVAR(ext__doc__,
- "Wrapper for fanotify.\n"
--- 
-2.34.1
-
+ #define FUNUSED __attribute__((unused))
+ 
diff --git a/meta-python/recipes-devtools/python/python3-pyfanotify_0.2.1.bb 
b/meta-python/recipes-devtools/python/python3-pyfanotify_0.2.2.bb
similarity index 83%
rename from meta-python/recipes-devtools/python/python3-pyfanotify_0.2.1.bb
rename to meta-python/recipes-devtools/python/python3-pyfanotify_0.2.2.bb
index c9fd07144..292ceab2e 100644
--- a/meta-python/recipes-devtools/python/python3-pyfanotify_0.2.1.bb
+++ b/meta-python/recipes-devtools/python/python3-pyfanotify_0.2.2.bb
@@ -5,7 +5,7 @@ LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=636a36c9df04efcfacf839b8866d9a37"
 
 SRC_URI += "file://0001-ext-define-FNM_EXTMATCH-if-not-already-defined.patch"
-SRC_URI[sha256sum] = 
"fd62dccdf3c17ca117e3279f0cbc65c639e53c9dec8a459d44ed6a35c1a18e60"
+SRC_URI[sha256sum] = 
"90219aa9f8b78fa732f24aa7b21c7bb6ac97a6eb47f1763c899b8194e23af1df"
 
 inherit pypi setuptools3
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107717): 
https://lists.openembedded.org/g/openembedded-devel/message/107717
Mute This Topic: https://lists.openembedded.org/mt/103302166/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 2/5] python3-bitarray: update to version 2.9.0

2023-12-21 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../{python3-bitarray_2.8.5.bb => python3-bitarray_2.9.0.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-bitarray_2.8.5.bb => 
python3-bitarray_2.9.0.bb} (80%)

diff --git a/meta-python/recipes-devtools/python/python3-bitarray_2.8.5.bb 
b/meta-python/recipes-devtools/python/python3-bitarray_2.9.0.bb
similarity index 80%
rename from meta-python/recipes-devtools/python/python3-bitarray_2.8.5.bb
rename to meta-python/recipes-devtools/python/python3-bitarray_2.9.0.bb
index 5047784ab..e899c800b 100644
--- a/meta-python/recipes-devtools/python/python3-bitarray_2.8.5.bb
+++ b/meta-python/recipes-devtools/python/python3-bitarray_2.9.0.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "https://github.com/ilanschnell/bitarray;
 LICENSE = "PSF-2.0"
 LIC_FILES_CHKSUM = 
"file://PKG-INFO;beginline=8;endline=8;md5=2ad702cdcd49e8d2ac01d7e7d0810d2d"
 
-SRC_URI[sha256sum] = 
"b7564fd218cc4479f7f0106d341e096f78907b47865aeeff702c807df1927c01"
+SRC_URI[sha256sum] = 
"41f6b46f01bc59abfc38653d203565113b6e7dd04d0ec688774ed28e6d9755db"
 
 inherit setuptools3 pypi
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107716): 
https://lists.openembedded.org/g/openembedded-devel/message/107716
Mute This Topic: https://lists.openembedded.org/mt/103302165/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 1/5] python3-rapidjson: update to version 1.14

2023-12-21 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 ...thon3-rapidjson_1.13.bb => python3-rapidjson_1.14.bb} | 9 -
 1 file changed, 4 insertions(+), 5 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-rapidjson_1.13.bb => 
python3-rapidjson_1.14.bb} (82%)

diff --git a/meta-python/recipes-devtools/python/python3-rapidjson_1.13.bb 
b/meta-python/recipes-devtools/python/python3-rapidjson_1.14.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-rapidjson_1.13.bb
rename to meta-python/recipes-devtools/python/python3-rapidjson_1.14.bb
index 1623f721f..8b76397bf 100644
--- a/meta-python/recipes-devtools/python/python3-rapidjson_1.13.bb
+++ b/meta-python/recipes-devtools/python/python3-rapidjson_1.14.bb
@@ -4,13 +4,12 @@ HOMEPAGE = 
"https://github.com/python-rapidjson/python-rapidjson;
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=4daf3929156304df67003c33274a98bd"
 
-SRC_URI = 
"git://github.com/python-rapidjson/python-rapidjson.git;protocol=https;branch=master"
-SRCREV = "a87053d9b97750afddb504da05bd1cd9f4b94654"
-
-S = "${WORKDIR}/git"
+SRC_URI[sha256sum] = 
"26806f0a658c34b48d2951d8d3f846ca9deb93a34e664ef436db632a188b6779"
 
 # Inheriting ptest provides functionality for packaging and installing runtime 
tests for this recipe
-inherit setuptools3 ptest
+inherit setuptools3 pypi ptest
+
+PYPI_PACKAGE = "python-rapidjson"
 
 SETUPTOOLS_BUILD_ARGS += " --rj-include-dir=${RECIPE_SYSROOT}${includedir}"
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107715): 
https://lists.openembedded.org/g/openembedded-devel/message/107715
Mute This Topic: https://lists.openembedded.org/mt/103302164/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-apiflask: update to version 2.1.0

2023-12-20 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../{python3-apiflask_2.0.2.bb => python3-apiflask_2.1.0.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-apiflask_2.0.2.bb => 
python3-apiflask_2.1.0.bb} (83%)

diff --git a/meta-python/recipes-devtools/python/python3-apiflask_2.0.2.bb 
b/meta-python/recipes-devtools/python/python3-apiflask_2.1.0.bb
similarity index 83%
rename from meta-python/recipes-devtools/python/python3-apiflask_2.0.2.bb
rename to meta-python/recipes-devtools/python/python3-apiflask_2.1.0.bb
index 88afdda71..5bffa2291 100644
--- a/meta-python/recipes-devtools/python/python3-apiflask_2.0.2.bb
+++ b/meta-python/recipes-devtools/python/python3-apiflask_2.1.0.bb
@@ -7,7 +7,7 @@ inherit pypi setuptools3
 
 PYPI_PACKAGE = "APIFlask"
 
-SRC_URI[sha256sum] = 
"c1ab81640a1ab252888e2cc7ae556272a169b449c582abae309a8fe295f9337d"
+SRC_URI[sha256sum] = 
"e7616d902d446eb9e1c67d1d8a34691b437f9da4fe7a3b4d49c91ba88c85ee2a"
 
 RDEPENDS:${PN} += "\
 python3-flask \
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107691): 
https://lists.openembedded.org/g/openembedded-devel/message/107691
Mute This Topic: https://lists.openembedded.org/mt/103290939/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-xmlschema: update to version 2.5.1

2023-12-20 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../{python3-xmlschema_2.3.1.bb => python3-xmlschema_2.5.1.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-xmlschema_2.3.1.bb => 
python3-xmlschema_2.5.1.bb} (84%)

diff --git a/meta-python/recipes-devtools/python/python3-xmlschema_2.3.1.bb 
b/meta-python/recipes-devtools/python/python3-xmlschema_2.5.1.bb
similarity index 84%
rename from meta-python/recipes-devtools/python/python3-xmlschema_2.3.1.bb
rename to meta-python/recipes-devtools/python/python3-xmlschema_2.5.1.bb
index 9be7cb555..19fae9131 100644
--- a/meta-python/recipes-devtools/python/python3-xmlschema_2.3.1.bb
+++ b/meta-python/recipes-devtools/python/python3-xmlschema_2.5.1.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/sissaschool/xmlschema;
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=0ab20f8e337bea2e6874f372edfd12c0"
 
-SRC_URI[sha256sum] = 
"2eb426c5710833a05610c22c8766713a1b87e9405e3eca0b7c658375bf7ec810"
+SRC_URI[sha256sum] = 
"4f7497de6c8b6dc2c28ad7b9ed6e21d186f4afe248a5bea4f54eedab4da44083"
 
 PYPI_PACKAGE = "xmlschema"
 inherit pypi setuptools3
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107690): 
https://lists.openembedded.org/g/openembedded-devel/message/107690
Mute This Topic: https://lists.openembedded.org/mt/103290896/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-sentry-sdk: update to version 1.39.1

2023-12-20 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 ...ython3-sentry-sdk_1.39.0.bb => python3-sentry-sdk_1.39.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-sentry-sdk_1.39.0.bb => 
python3-sentry-sdk_1.39.1.bb} (86%)

diff --git a/meta-python/recipes-devtools/python/python3-sentry-sdk_1.39.0.bb 
b/meta-python/recipes-devtools/python/python3-sentry-sdk_1.39.1.bb
similarity index 86%
rename from meta-python/recipes-devtools/python/python3-sentry-sdk_1.39.0.bb
rename to meta-python/recipes-devtools/python/python3-sentry-sdk_1.39.1.bb
index 81828737f..9f421328b 100644
--- a/meta-python/recipes-devtools/python/python3-sentry-sdk_1.39.0.bb
+++ b/meta-python/recipes-devtools/python/python3-sentry-sdk_1.39.1.bb
@@ -15,7 +15,7 @@ RDEPENDS:${PN} += "\
${PYTHON_PN}-datetime \
 "
 
-SRC_URI[sha256sum] = 
"67f62238af273eebd6432f85116dc6cd5422d4bc02df886514e8139e755f48e4"
+SRC_URI[sha256sum] = 
"320a55cdf9da9097a0bead239c35b7e61f53660ef9878861824fd6d9b2eaf3b5"
 
 PYPI_PACKAGE = "sentry-sdk"
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107689): 
https://lists.openembedded.org/g/openembedded-devel/message/107689
Mute This Topic: https://lists.openembedded.org/mt/103290864/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-cantools: update to version 39.4.0

2023-12-20 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 ...{python3-cantools_39.3.0.bb => python3-cantools_39.4.0.bb} | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-cantools_39.3.0.bb => 
python3-cantools_39.4.0.bb} (78%)

diff --git a/meta-python/recipes-devtools/python/python3-cantools_39.3.0.bb 
b/meta-python/recipes-devtools/python/python3-cantools_39.4.0.bb
similarity index 78%
rename from meta-python/recipes-devtools/python/python3-cantools_39.3.0.bb
rename to meta-python/recipes-devtools/python/python3-cantools_39.4.0.bb
index 0b590d258..e7cafe14b 100644
--- a/meta-python/recipes-devtools/python/python3-cantools_39.3.0.bb
+++ b/meta-python/recipes-devtools/python/python3-cantools_39.4.0.bb
@@ -3,12 +3,14 @@ HOMEPAGE = "https://github.com/eerimoq/cantools;
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=d9aa4ec07de78abae21c490c9ffe61bd"
 
-SRC_URI[sha256sum] = 
"2c3d081922591bc1611c9f1ff52d6c8af1d03314f8c724cc114d856cc555cc28"
+SRC_URI[sha256sum] = 
"e38cf3972388436aa8e19ab985bfb19c2cb400d9ba882a5c070c3497629674cb"
 
 PYPI_PACKAGE = "cantools"
 
 inherit pypi python_poetry_core
 
+DEPENDS += "python3-setuptools-scm-native"
+
 RDEPENDS:${PN} += "\
 ${PYTHON_PN}-can \
 ${PYTHON_PN}-bitstruct \
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107688): 
https://lists.openembedded.org/g/openembedded-devel/message/107688
Mute This Topic: https://lists.openembedded.org/mt/103290811/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-lazy-object-proxy: update to version 1.10.0

2023-12-20 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 ...bject-proxy_1.9.0.bb => python3-lazy-object-proxy_1.10.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-lazy-object-proxy_1.9.0.bb 
=> python3-lazy-object-proxy_1.10.0.bb} (79%)

diff --git 
a/meta-python/recipes-devtools/python/python3-lazy-object-proxy_1.9.0.bb 
b/meta-python/recipes-devtools/python/python3-lazy-object-proxy_1.10.0.bb
similarity index 79%
rename from 
meta-python/recipes-devtools/python/python3-lazy-object-proxy_1.9.0.bb
rename to 
meta-python/recipes-devtools/python/python3-lazy-object-proxy_1.10.0.bb
index 74c5e9b52..9232a5a91 100644
--- a/meta-python/recipes-devtools/python/python3-lazy-object-proxy_1.9.0.bb
+++ b/meta-python/recipes-devtools/python/python3-lazy-object-proxy_1.10.0.bb
@@ -6,6 +6,6 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=d606e94f56c21c8e0cdde0b622dcdf57"
 
 DEPENDS += "${PYTHON_PN}-setuptools-scm-native ${PYTHON_PN}-pip-native"
 
-SRC_URI[sha256sum] = 
"659fb5809fa4629b8a1ac5106f669cfc7bef26fbb389dda53b3e010d1ac4ebae"
+SRC_URI[sha256sum] = 
"78247b6d45f43a52ef35c25b5581459e85117225408a4128a3daf8bf9648ac69"
 
 inherit pypi setuptools3
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107687): 
https://lists.openembedded.org/g/openembedded-devel/message/107687
Mute This Topic: https://lists.openembedded.org/mt/103290780/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-protobuf: update to version 4.25.1

2023-12-20 Thread Derek Straka
Remove patch 0001-message.c-Cast-uintptr_t-types-to-upb_MessageDef.patch
that was incorporated upstream and released in 4.25.1

Signed-off-by: Derek Straka 
---
 ...st-uintptr_t-types-to-upb_MessageDef.patch | 57 ---
 ...f_4.24.4.bb => python3-protobuf_4.25.1.bb} |  3 +-
 2 files changed, 1 insertion(+), 59 deletions(-)
 delete mode 100644 
meta-python/recipes-devtools/python/python3-protobuf/0001-message.c-Cast-uintptr_t-types-to-upb_MessageDef.patch
 rename meta-python/recipes-devtools/python/{python3-protobuf_4.24.4.bb => 
python3-protobuf_4.25.1.bb} (85%)

diff --git 
a/meta-python/recipes-devtools/python/python3-protobuf/0001-message.c-Cast-uintptr_t-types-to-upb_MessageDef.patch
 
b/meta-python/recipes-devtools/python/python3-protobuf/0001-message.c-Cast-uintptr_t-types-to-upb_MessageDef.patch
deleted file mode 100644
index 89315e3a7..0
--- 
a/meta-python/recipes-devtools/python/python3-protobuf/0001-message.c-Cast-uintptr_t-types-to-upb_MessageDef.patch
+++ /dev/null
@@ -1,57 +0,0 @@
-From 8ce4b50b210d3c0f8de40156d4ba7827bfe16b21 Mon Sep 17 00:00:00 2001
-From: Khem Raj 
-Date: Wed, 16 Aug 2023 17:36:19 -0700
-Subject: [PATCH] message.c: Cast uintptr_t types to upb_MessageDef
-
-This fixes build with clang
-
-python/message.c:1238:49: error: incompatible integer to pointer conversion 
passing 'uintptr_t' (aka 'unsigned long') to parameter of type 'const 
upb_MessageDef *' (aka 'const struct upb_MessageDef *') [-Wint-conversion]
- 1238 |upb_MessageDef_MiniTable(other->def),
-  | ^~
-/mnt/b/yoe/master/build/tmp/work/cortexa72-cortexa53-crypto-yoe-linux/python3-protobuf/4.24.0/protobuf-4.24.0/upb/reflection/message_def.h:138:69:
 note: passing argument to parameter 'm' here
-  138 | const upb_MiniTable* upb_MessageDef_MiniTable(const upb_MessageDef* m);
-  | ^
-python/message.c:1609:69: error: incompatible integer to pointer conversion 
passing 'uintptr_t' (aka 'unsigned long') to parameter of type 'const 
upb_MessageDef *' (aka 'const struct upb_MessageDef *') [-Wint-conversion]
- 1609 |   upb_Message_DeepClone(self->ptr.msg, 
upb_MessageDef_MiniTable(self->def),
-  | 
^
-/mnt/b/yoe/master/build/tmp/work/cortexa72-cortexa53-crypto-yoe-linux/python3-protobuf/4.24.0/protobuf-4.24.0/upb/reflection/message_def.h:138:69:
 note: passing argument to parameter 'm' here
-  138 | const upb_MiniTable* upb_MessageDef_MiniTable(const upb_MessageDef* m);
-  | ^
-python/message.c:1611:44: error: incompatible integer to pointer conversion 
passing 'uintptr_t' (aka 'unsigned long') to parameter of type 'const 
upb_MessageDef *' (aka 'const struct upb_MessageDef *') [-Wint-conversion]
- 1611 |   PyObject* ret = PyUpb_Message_Get(clone, self->def, arena);
-  |^
-
-Upstream-Status: Submitted [https://github.com/protocolbuffers/upb/pull/1492]
-Signed-off-by: Khem Raj 

- python/message.c | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/python/message.c b/python/message.c
-index a01ce16..c418b84 100644
 a/python/message.c
-+++ b/python/message.c
-@@ -1235,7 +1235,7 @@ static PyObject* PyUpb_Message_CopyFrom(PyObject* _self, 
PyObject* arg) {
-   Py_DECREF(tmp);
- 
-   upb_Message_DeepCopy(self->ptr.msg, other->ptr.msg,
--   upb_MessageDef_MiniTable(other->def),
-+   upb_MessageDef_MiniTable((const 
upb_MessageDef*)other->def),
-PyUpb_Arena_Get(self->arena));
-   PyUpb_Message_SyncSubobjs(self);
- 
-@@ -1606,9 +1606,9 @@ PyObject* DeepCopy(PyObject* _self, PyObject* arg) {
- 
-   PyObject* arena = PyUpb_Arena_New();
-   upb_Message* clone =
--  upb_Message_DeepClone(self->ptr.msg, 
upb_MessageDef_MiniTable(self->def),
-+  upb_Message_DeepClone(self->ptr.msg, upb_MessageDef_MiniTable((const 
upb_MessageDef*)self->def),
- PyUpb_Arena_Get(arena));
--  PyObject* ret = PyUpb_Message_Get(clone, self->def, arena);
-+  PyObject* ret = PyUpb_Message_Get(clone, (const upb_MessageDef*)self->def, 
arena);
-   Py_DECREF(arena);
- 
-   return ret;
--- 
-2.41.0
-
diff --git a/meta-python/recipes-devtools/python/python3-protobuf_4.24.4.bb 
b/meta-python/recipes-devtools/python/python3-protobuf_4.25.1.bb
similarity index 85%
rename from meta-python/recipes-devtools/python/python3-protobuf_4.24.4.bb
rename to meta-python/recipes-devtools/python/python3-protobuf_4.25.1.bb
index 4b530c3b1..3c770e41d 100644
--- a/meta-python/recipes-devtools/python/python3-protobuf_4.24.4.bb
+++ b/meta-python/recipes-devtools/python/python3-protobuf_4.25.1.bb
@@ -6,8 +6,7 @@ LICENSE = &

[oe] [meta-python][PATCH] python3-isort: update to version 5.13.2

2023-12-20 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../python/{python3-isort_5.13.1.bb => python3-isort_5.13.2.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-isort_5.13.1.bb => 
python3-isort_5.13.2.bb} (85%)

diff --git a/meta-python/recipes-devtools/python/python3-isort_5.13.1.bb 
b/meta-python/recipes-devtools/python/python3-isort_5.13.2.bb
similarity index 85%
rename from meta-python/recipes-devtools/python/python3-isort_5.13.1.bb
rename to meta-python/recipes-devtools/python/python3-isort_5.13.2.bb
index f8deaae08..60d44181c 100644
--- a/meta-python/recipes-devtools/python/python3-isort_5.13.1.bb
+++ b/meta-python/recipes-devtools/python/python3-isort_5.13.2.bb
@@ -4,7 +4,7 @@ LICENSE = "MIT"
 SECTION = "devel/python"
 LIC_FILES_CHKSUM = 
"file://PKG-INFO;beginline=6;endline=6;md5=8227180126797a0148f94f483f3e1489"
 
-SRC_URI[sha256sum] = 
"aaed790b463e8703fb1eddb831dfa8e8616bacde2c083bd557ef73c8189b7263"
+SRC_URI[sha256sum] = 
"48fdfcb9face5d58a4f6dde2e72a1fb8dcaf8ab26f95ab49fab84c2ddefb0109"
 
 inherit pypi python_poetry_core
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107685): 
https://lists.openembedded.org/g/openembedded-devel/message/107685
Mute This Topic: https://lists.openembedded.org/mt/103290509/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-wtforms: update to version 3.1.1

2023-12-20 Thread Derek Straka
Updated the license file and verified terms remained the same

Signed-off-by: Derek Straka 
---
 ...{python3-wtforms_3.0.1.bb => python3-wtforms_3.1.1.bb} | 8 +++-
 1 file changed, 3 insertions(+), 5 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-wtforms_3.0.1.bb => 
python3-wtforms_3.1.1.bb} (62%)

diff --git a/meta-python/recipes-devtools/python/python3-wtforms_3.0.1.bb 
b/meta-python/recipes-devtools/python/python3-wtforms_3.1.1.bb
similarity index 62%
rename from meta-python/recipes-devtools/python/python3-wtforms_3.0.1.bb
rename to meta-python/recipes-devtools/python/python3-wtforms_3.1.1.bb
index 36a0191dc..c9ad1be48 100644
--- a/meta-python/recipes-devtools/python/python3-wtforms_3.0.1.bb
+++ b/meta-python/recipes-devtools/python/python3-wtforms_3.1.1.bb
@@ -3,13 +3,11 @@ HOMEPAGE = "https://pypi.python.org/pypi/WTForms;
 SECTION = "devel/python"
 LICENSE = "BSD-3-Clause"
 
-LIC_FILES_CHKSUM = 
"file://PKG-INFO;beginline=8;endline=8;md5=53dbfa56f61b90215a9f8f0d527c043d"
+LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=17ed54aa95f4a6cd0d7a4747d14b64d0"
 
-SRC_URI[sha256sum] = 
"6b351bbb12dd58af57ffef05bc78425d08d1914e0fd68ee14143b7ade023c5bc"
+SRC_URI[sha256sum] = 
"5e51df8af9a60f6beead75efa10975e97768825a82146a65c7cbf5b915990620"
 
-PYPI_PACKAGE = "WTForms"
-
-inherit pypi setuptools3
+inherit pypi python_hatchling
 
 DEPENDS += "\
 ${PYTHON_PN}-pip-native \
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107684): 
https://lists.openembedded.org/g/openembedded-devel/message/107684
Mute This Topic: https://lists.openembedded.org/mt/103290461/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-zeroconf: update to version 0.131.0

2023-12-20 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 ...{python3-zeroconf_0.130.0.bb => python3-zeroconf_0.131.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-zeroconf_0.130.0.bb => 
python3-zeroconf_0.131.0.bb} (82%)

diff --git a/meta-python/recipes-devtools/python/python3-zeroconf_0.130.0.bb 
b/meta-python/recipes-devtools/python/python3-zeroconf_0.131.0.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-zeroconf_0.130.0.bb
rename to meta-python/recipes-devtools/python/python3-zeroconf_0.131.0.bb
index 8ae169c52..1963d899b 100644
--- a/meta-python/recipes-devtools/python/python3-zeroconf_0.130.0.bb
+++ b/meta-python/recipes-devtools/python/python3-zeroconf_0.131.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/jstasiak/python-zeroconf;
 LICENSE = "LGPL-2.1-only"
 LIC_FILES_CHKSUM = 
"file://PKG-INFO;beginline=6;endline=6;md5=6517bdc8f2416f27ab725d4702f7aac3"
 
-SRC_URI[sha256sum] = 
"db96a3033bc2ece2c75d873796e82530e092e250d03d07dd530828cf84ae16f0"
+SRC_URI[sha256sum] = 
"90c431e99192a044a5e0217afd7ca0ca9824af93190332e6f7baf4da5375f331"
 
 inherit pypi setuptools3
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107683): 
https://lists.openembedded.org/g/openembedded-devel/message/107683
Mute This Topic: https://lists.openembedded.org/mt/103290286/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-paramiko: update to version 3.4.0

2023-12-20 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../{python3-paramiko_3.3.1.bb => python3-paramiko_3.4.0.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-paramiko_3.3.1.bb => 
python3-paramiko_3.4.0.bb} (82%)

diff --git a/meta-python/recipes-devtools/python/python3-paramiko_3.3.1.bb 
b/meta-python/recipes-devtools/python/python3-paramiko_3.4.0.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-paramiko_3.3.1.bb
rename to meta-python/recipes-devtools/python/python3-paramiko_3.4.0.bb
index da87e5199..0d32d361c 100644
--- a/meta-python/recipes-devtools/python/python3-paramiko_3.3.1.bb
+++ b/meta-python/recipes-devtools/python/python3-paramiko_3.4.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/paramiko/paramiko/;
 LICENSE = "LGPL-2.1-only"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=fd0120fc2e9f841c73ac707a30389af5"
 
-SRC_URI[sha256sum] = 
"6a3777a961ac86dbef375c5f5b8d50014a1a96d0fd7f054a43bc880134b0ff77"
+SRC_URI[sha256sum] = 
"aac08f26a31dc4dffd92821527d1682d99d52f9ef6851968114a8728f3c274d3"
 
 PYPI_PACKAGE = "paramiko"
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107682): 
https://lists.openembedded.org/g/openembedded-devel/message/107682
Mute This Topic: https://lists.openembedded.org/mt/103290257/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-pdm: update to version 2.11.1

2023-12-20 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../python/{python3-pdm_2.10.4.bb => python3-pdm_2.11.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pdm_2.10.4.bb => 
python3-pdm_2.11.1.bb} (81%)

diff --git a/meta-python/recipes-devtools/python/python3-pdm_2.10.4.bb 
b/meta-python/recipes-devtools/python/python3-pdm_2.11.1.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python3-pdm_2.10.4.bb
rename to meta-python/recipes-devtools/python/python3-pdm_2.11.1.bb
index fffefb3c6..5ff6ffc9e 100644
--- a/meta-python/recipes-devtools/python/python3-pdm_2.10.4.bb
+++ b/meta-python/recipes-devtools/python/python3-pdm_2.11.1.bb
@@ -4,7 +4,7 @@ LICENSE = "MIT"
 SECTION = "devel/python"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=2eb31a2cc1a758c34b499f287dd04ef2"
 
-SRC_URI[sha256sum] = 
"6dfd9d4cb59043edecb2d0b47d208e55d89d333ba7197deb05cca2dfbc7a4bfb"
+SRC_URI[sha256sum] = 
"b10bc4e5394856f1639ddc9bc754d9c26323ec5b828a135c6ed35f935b054b83"
 
 inherit pypi python_setuptools_build_meta
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107681): 
https://lists.openembedded.org/g/openembedded-devel/message/107681
Mute This Topic: https://lists.openembedded.org/mt/103290212/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-coverage: update to version 7.3.4

2023-12-20 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../{python3-coverage_7.3.3.bb => python3-coverage_7.3.4.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-coverage_7.3.3.bb => 
python3-coverage_7.3.4.bb} (83%)

diff --git a/meta-python/recipes-devtools/python/python3-coverage_7.3.3.bb 
b/meta-python/recipes-devtools/python/python3-coverage_7.3.4.bb
similarity index 83%
rename from meta-python/recipes-devtools/python/python3-coverage_7.3.3.bb
rename to meta-python/recipes-devtools/python/python3-coverage_7.3.4.bb
index 16a67e9e6..42bc9fc8e 100644
--- a/meta-python/recipes-devtools/python/python3-coverage_7.3.3.bb
+++ b/meta-python/recipes-devtools/python/python3-coverage_7.3.4.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://coverage.readthedocs.io;
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2ee41112a44fe7014dce33e26468ba93"
 
-SRC_URI[sha256sum] = 
"df04c64e58df96b4427db8d0559e95e2df3138c9916c96f9f6a4dd220db2fdb7"
+SRC_URI[sha256sum] = 
"020d56d2da5bc22a0e00a5b0d54597ee91ad72446fa4cf1b97c35022f6b6dbf0"
 
 inherit pypi setuptools3
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107680): 
https://lists.openembedded.org/g/openembedded-devel/message/107680
Mute This Topic: https://lists.openembedded.org/mt/103290169/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-ninja: update to version 1.11.1.1

2023-12-20 Thread Derek Straka
Changelog
  fix(wheels): link libstdc++ statically on manylinux1 by @mayeut in #159
  chore(wheels): link libstdc++/libgcc statically on musllinux by @mayeut in 
#160
  chore: add Windows ARM support by @henryiii in #169
  chore: continue testing with python 2.7 by @mayeut in #199
  chore: move to setuptools_scm by @henryiii in #170
  chore: switch to ruff by @henryiii in #174
  chore: use trusted publisher deployment by @jcfr in #191
  chore: use wheel tags cli by @mayeut in #84
  ci: allow setting a version by @henryiii in #171
  ci: cancel on repeated pushes by @henryiii in #177

Signed-off-by: Derek Straka 
---
 .../python/python3-ninja/no-scikit-build.patch| 8 
 ...{python3-ninja_1.11.1.bb => python3-ninja_1.11.1.1.bb} | 4 +++-
 2 files changed, 7 insertions(+), 5 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-ninja_1.11.1.bb => 
python3-ninja_1.11.1.1.bb} (79%)

diff --git 
a/meta-python/recipes-devtools/python/python3-ninja/no-scikit-build.patch 
b/meta-python/recipes-devtools/python/python3-ninja/no-scikit-build.patch
index 276fb5017..b7d191e24 100644
--- a/meta-python/recipes-devtools/python/python3-ninja/no-scikit-build.patch
+++ b/meta-python/recipes-devtools/python/python3-ninja/no-scikit-build.patch
@@ -8,11 +8,11 @@ diff --git a/pyproject.toml b/pyproject.toml
 index b895c20..577b642 100644
 --- a/pyproject.toml
 +++ b/pyproject.toml
-@@ -1,7 +1,6 @@
- [build-system]
+@@ -2,7 +2,6 @@
  requires = [
- "setuptools>=42",
--"scikit-build>=0.12",
+ "setuptools >=42",
+ "setuptools-scm[toml]",
+-"scikit-build",
  ]
  build-backend = "setuptools.build_meta"
  
diff --git a/meta-python/recipes-devtools/python/python3-ninja_1.11.1.bb 
b/meta-python/recipes-devtools/python/python3-ninja_1.11.1.1.bb
similarity index 79%
rename from meta-python/recipes-devtools/python/python3-ninja_1.11.1.bb
rename to meta-python/recipes-devtools/python/python3-ninja_1.11.1.1.bb
index 3b9077f32..a9e0ed208 100644
--- a/meta-python/recipes-devtools/python/python3-ninja_1.11.1.bb
+++ b/meta-python/recipes-devtools/python/python3-ninja_1.11.1.1.bb
@@ -6,11 +6,13 @@ PYPI_PACKAGE = "ninja"
 PYPI_ARCHIVE_NAME_PREFIX = "pypi-"
 
 inherit pypi python_setuptools_build_meta
-SRC_URI[sha256sum] = 
"c833a47d39b2d1eee3f9ca886fa1581efd5be6068b82734ac229961ee8748f90"
+SRC_URI[sha256sum] = 
"9d793b08dd857e38d0b6ffe9e6b7145d7c485a42dcfea04905ca0cdb6017cc3c"
 
 SRC_URI += "file://no-scikit-build.patch \
 file://run-ninja-from-path.patch"
 
+DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
+
 do_install:append () {
rm -rf ${D}${bindir}
 }
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107679): 
https://lists.openembedded.org/g/openembedded-devel/message/107679
Mute This Topic: https://lists.openembedded.org/mt/103290010/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-pymisp: update to verion 2.4.182

2023-12-20 Thread Derek Straka
Leverage pypi rather than git for the source download

Signed-off-by: Derek Straka 
---
 ...{python3-pymisp_2.4.179.bb => python3-pymisp_2.4.182.bb} | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-pymisp_2.4.179.bb => 
python3-pymisp_2.4.182.bb} (76%)

diff --git a/meta-python/recipes-devtools/python/python3-pymisp_2.4.179.bb 
b/meta-python/recipes-devtools/python/python3-pymisp_2.4.182.bb
similarity index 76%
rename from meta-python/recipes-devtools/python/python3-pymisp_2.4.179.bb
rename to meta-python/recipes-devtools/python/python3-pymisp_2.4.182.bb
index 69c774221..12bf6245e 100644
--- a/meta-python/recipes-devtools/python/python3-pymisp_2.4.179.bb
+++ b/meta-python/recipes-devtools/python/python3-pymisp_2.4.182.bb
@@ -3,11 +3,9 @@ HOMEPAGE = "https://github.com/MISP/PyMISP;
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=a3639cf5780f71b125d3e9d1dc127c20"
 
-SRC_URI = "git://github.com/MISP/PyMISP.git;protocol=https;branch=main"
-SRCREV = "cc6391233c01362a1b4b483c4ea8e67f306e3459"
-S = "${WORKDIR}/git"
+SRC_URI[sha256sum] = 
"888e848494e04148c8ff5887f04154a2b40f3065c53d93f9cec65f7ca7171362"
 
-inherit python_poetry_core
+inherit python_poetry_core pypi
 
 PIP_INSTALL_PACKAGE = "pymisp"
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107676): 
https://lists.openembedded.org/g/openembedded-devel/message/107676
Mute This Topic: https://lists.openembedded.org/mt/103289809/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-alembic: update to version 1.13.1

2023-12-20 Thread Derek Straka
Misc bug fixes for typing, versioning, and environment.

See https://alembic.sqlalchemy.org/en/latest/changelog.html

Signed-off-by: Derek Straka 
---
 .../{python3-alembic_1.13.0.bb => python3-alembic_1.13.1.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-alembic_1.13.0.bb => 
python3-alembic_1.13.1.bb} (81%)

diff --git a/meta-python/recipes-devtools/python/python3-alembic_1.13.0.bb 
b/meta-python/recipes-devtools/python/python3-alembic_1.13.1.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python3-alembic_1.13.0.bb
rename to meta-python/recipes-devtools/python/python3-alembic_1.13.1.bb
index 865dd017c..2a9ac2c5d 100644
--- a/meta-python/recipes-devtools/python/python3-alembic_1.13.0.bb
+++ b/meta-python/recipes-devtools/python/python3-alembic_1.13.1.bb
@@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=e3023b042cb6002cb398344b51c67093"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = 
"ab4b3b94d2e1e5f81e34be8a9b7b7575fc9dd5398fccb0bef351ec9b14872623"
+SRC_URI[sha256sum] = 
"4932c8558bf68f2ee92b9bbcb8218671c627064d5b08939437af6d77dc05e595"
 
 PYPI_PACKAGE = "alembic"
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107674): 
https://lists.openembedded.org/g/openembedded-devel/message/107674
Mute This Topic: https://lists.openembedded.org/mt/103289196/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-astroid: update to version 3.0.2

2023-12-20 Thread Derek Straka
Changelog
* Avoid duplicate inference results for some uses of typing.X constructs like 
Tuple[Optional[int], ...].
  This was causing pylint to occasionally omit messages like 
deprecated-typing-alias.

Closes pylint-dev/pylint#9220

Signed-off-by: Derek Straka 
---
 .../{python3-astroid_3.0.1.bb => python3-astroid_3.0.2.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-astroid_3.0.1.bb => 
python3-astroid_3.0.2.bb} (90%)

diff --git a/meta-python/recipes-devtools/python/python3-astroid_3.0.1.bb 
b/meta-python/recipes-devtools/python/python3-astroid_3.0.2.bb
similarity index 90%
rename from meta-python/recipes-devtools/python/python3-astroid_3.0.1.bb
rename to meta-python/recipes-devtools/python/python3-astroid_3.0.2.bb
index 348dc2ebb..23501ce00 100644
--- a/meta-python/recipes-devtools/python/python3-astroid_3.0.1.bb
+++ b/meta-python/recipes-devtools/python/python3-astroid_3.0.2.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "LGPL-2.1-only"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=a70cf540abf41acb644ac3b621b2fad1"
 
-SRC_URI[sha256sum] = 
"86b0bb7d7da0be1a7c4aedb7974e391b32d4ed89e33de6ed6902b4b15c97577e"
+SRC_URI[sha256sum] = 
"4a61cf0a59097c7bb52689b0fd63717cd2a8a14dc9f1eee97b82d814881c8c91"
 
 inherit pypi python_setuptools_build_meta
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107673): 
https://lists.openembedded.org/g/openembedded-devel/message/107673
Mute This Topic: https://lists.openembedded.org/mt/103289110/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-portalocker: update to version 2.8.2

2023-12-14 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 ...n3-portalocker_2.7.0.bb => python3-portalocker_2.8.2.bb} | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)
 rename 
meta-python/recipes-extended/python3-portalocker/{python3-portalocker_2.7.0.bb 
=> python3-portalocker_2.8.2.bb} (66%)

diff --git 
a/meta-python/recipes-extended/python3-portalocker/python3-portalocker_2.7.0.bb 
b/meta-python/recipes-extended/python3-portalocker/python3-portalocker_2.8.2.bb
similarity index 66%
rename from 
meta-python/recipes-extended/python3-portalocker/python3-portalocker_2.7.0.bb
rename to 
meta-python/recipes-extended/python3-portalocker/python3-portalocker_2.8.2.bb
index 03c4f2f40..e18aa83df 100644
--- 
a/meta-python/recipes-extended/python3-portalocker/python3-portalocker_2.7.0.bb
+++ 
b/meta-python/recipes-extended/python3-portalocker/python3-portalocker_2.8.2.bb
@@ -4,9 +4,11 @@ LICENSE = "BSD-3-Clause"
 
 LIC_FILES_CHKSUM = "file://LICENSE;md5=152634da660a374ca18c0734ed07c63c"
 
-SRC_URI[sha256sum] = 
"032e81d534a88ec1736d03f780ba073f047a06c478b06e2937486f334e955c51"
+SRC_URI[sha256sum] = 
"2b035aa7828e46c58e9b31390ee1f169b98e1066ab10b9a6a861fe7e25ee4f33"
 
-inherit pypi setuptools3
+DEPENDS += "python3-setuptools-scm-native"
+
+inherit pypi python_setuptools_build_meta
 
 BBCLASSEXTEND = "native nativesdk"
 
-- 
2.34.1


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



[oe] [meta-webserver][PATCHv3] nginx: update versions for both the stable branch and mainline

2023-12-14 Thread Derek Straka
Stable: None -> 1.24.0
Legacy Mainline 1.21.1 -> Removed

Signed-off-by: Derek Straka 
---
 meta-webserver/recipes-httpd/nginx/nginx_1.21.1.bb | 10 --
 meta-webserver/recipes-httpd/nginx/nginx_1.24.0.bb |  6 ++
 meta-webserver/recipes-httpd/nginx/nginx_1.25.3.bb |  4 
 3 files changed, 10 insertions(+), 10 deletions(-)
 delete mode 100644 meta-webserver/recipes-httpd/nginx/nginx_1.21.1.bb
 create mode 100644 meta-webserver/recipes-httpd/nginx/nginx_1.24.0.bb

diff --git a/meta-webserver/recipes-httpd/nginx/nginx_1.21.1.bb 
b/meta-webserver/recipes-httpd/nginx/nginx_1.21.1.bb
deleted file mode 100644
index b69fd7dab..0
--- a/meta-webserver/recipes-httpd/nginx/nginx_1.21.1.bb
+++ /dev/null
@@ -1,10 +0,0 @@
-require nginx.inc
-
-# 1.20.x branch is the current stable branch, the recommended default
-# 1.21.x is the current mainline branches containing all new features
-DEFAULT_PREFERENCE = "-1"
-
-LIC_FILES_CHKSUM = "file://LICENSE;md5=206629dc7c7b3e87acb31162363ae505"
-
-SRC_URI[md5sum] = "7dce9e2136ec32dfd823736e871815b1"
-SRC_URI[sha256sum] = 
"68ba0311342115163a0354cad34f90c05a7e8bf689dc498abf07899eda155560"
diff --git a/meta-webserver/recipes-httpd/nginx/nginx_1.24.0.bb 
b/meta-webserver/recipes-httpd/nginx/nginx_1.24.0.bb
new file mode 100644
index 0..2e865e400
--- /dev/null
+++ b/meta-webserver/recipes-httpd/nginx/nginx_1.24.0.bb
@@ -0,0 +1,6 @@
+require nginx.inc
+
+LIC_FILES_CHKSUM = "file://LICENSE;md5=175abb631c799f54573dc481454c8632"
+
+SRC_URI[sha256sum] = 
"77a2541637b92a621e3ee76776c8b7b40cf6d707e69ba53a940283e30ff2f55d"
+
diff --git a/meta-webserver/recipes-httpd/nginx/nginx_1.25.3.bb 
b/meta-webserver/recipes-httpd/nginx/nginx_1.25.3.bb
index 8aa9fa026..d0371dd3c 100644
--- a/meta-webserver/recipes-httpd/nginx/nginx_1.25.3.bb
+++ b/meta-webserver/recipes-httpd/nginx/nginx_1.25.3.bb
@@ -1,5 +1,9 @@
 require nginx.inc
 
+# 1.24.x branch is the current stable branch, the recommended default
+# 1.25.x is the current mainline branches containing all new features
+DEFAULT_PREFERENCE = "-1"
+
 LIC_FILES_CHKSUM = "file://LICENSE;md5=79ad2eb837299421c4435dedc8897b3d"
 
 SRC_URI[sha256sum] = 
"64c5b975ca287939e828303fa857d22f142b251f17808dfe41733512d9cded86"
-- 
2.34.1


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



[oe] [meta-webserver][PATCHv2] nginx: update versions for both the stable branch and mainline

2023-12-14 Thread Derek Straka
Mainline version 1.25.2 -> 1.25.3
Stable: None -> 1.24.0
Legacy Mainline 1.21.1 -> Removed

Updated license checksums to reflect changes in copyright year.  License terms 
remain the same

Signed-off-by: Derek Straka 
---
 meta-webserver/recipes-httpd/nginx/nginx_1.21.1.bb | 10 --
 meta-webserver/recipes-httpd/nginx/nginx_1.24.0.bb |  6 ++
 meta-webserver/recipes-httpd/nginx/nginx_1.25.2.bb |  6 --
 meta-webserver/recipes-httpd/nginx/nginx_1.25.3.bb |  9 +
 4 files changed, 15 insertions(+), 16 deletions(-)
 delete mode 100644 meta-webserver/recipes-httpd/nginx/nginx_1.21.1.bb
 create mode 100644 meta-webserver/recipes-httpd/nginx/nginx_1.24.0.bb
 delete mode 100644 meta-webserver/recipes-httpd/nginx/nginx_1.25.2.bb
 create mode 100644 meta-webserver/recipes-httpd/nginx/nginx_1.25.3.bb

diff --git a/meta-webserver/recipes-httpd/nginx/nginx_1.21.1.bb 
b/meta-webserver/recipes-httpd/nginx/nginx_1.21.1.bb
deleted file mode 100644
index b69fd7dab..0
--- a/meta-webserver/recipes-httpd/nginx/nginx_1.21.1.bb
+++ /dev/null
@@ -1,10 +0,0 @@
-require nginx.inc
-
-# 1.20.x branch is the current stable branch, the recommended default
-# 1.21.x is the current mainline branches containing all new features
-DEFAULT_PREFERENCE = "-1"
-
-LIC_FILES_CHKSUM = "file://LICENSE;md5=206629dc7c7b3e87acb31162363ae505"
-
-SRC_URI[md5sum] = "7dce9e2136ec32dfd823736e871815b1"
-SRC_URI[sha256sum] = 
"68ba0311342115163a0354cad34f90c05a7e8bf689dc498abf07899eda155560"
diff --git a/meta-webserver/recipes-httpd/nginx/nginx_1.24.0.bb 
b/meta-webserver/recipes-httpd/nginx/nginx_1.24.0.bb
new file mode 100644
index 0..2e865e400
--- /dev/null
+++ b/meta-webserver/recipes-httpd/nginx/nginx_1.24.0.bb
@@ -0,0 +1,6 @@
+require nginx.inc
+
+LIC_FILES_CHKSUM = "file://LICENSE;md5=175abb631c799f54573dc481454c8632"
+
+SRC_URI[sha256sum] = 
"77a2541637b92a621e3ee76776c8b7b40cf6d707e69ba53a940283e30ff2f55d"
+
diff --git a/meta-webserver/recipes-httpd/nginx/nginx_1.25.2.bb 
b/meta-webserver/recipes-httpd/nginx/nginx_1.25.2.bb
deleted file mode 100644
index 66eef2389..0
--- a/meta-webserver/recipes-httpd/nginx/nginx_1.25.2.bb
+++ /dev/null
@@ -1,6 +0,0 @@
-require nginx.inc
-
-LIC_FILES_CHKSUM = "file://LICENSE;md5=79ad2eb837299421c4435dedc8897b3d"
-
-SRC_URI[sha256sum] = 
"05dd6d9356d66a74e61035f2a42162f8c754c97cf1ba64e7a801ba158d6c0711"
-
diff --git a/meta-webserver/recipes-httpd/nginx/nginx_1.25.3.bb 
b/meta-webserver/recipes-httpd/nginx/nginx_1.25.3.bb
new file mode 100644
index 0..e893fc3a0
--- /dev/null
+++ b/meta-webserver/recipes-httpd/nginx/nginx_1.25.3.bb
@@ -0,0 +1,9 @@
+require nginx.inc
+
+# 1.24.x branch is the current stable branch, the recommended default
+# 1.25.x is the current mainline branches containing all new features
+DEFAULT_PREFERENCE = "-1"
+
+LIC_FILES_CHKSUM = "file://LICENSE;md5=79ad2eb837299421c4435dedc8897b3d"
+
+SRC_URI[sha256sum] = 
"64c5b975ca287939e828303fa857d22f142b251f17808dfe41733512d9cded86"
-- 
2.34.1


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



[oe] [meta-webserver][PATCH] nginx: update versions for both the stable branch and mainline

2023-12-14 Thread Derek Straka
Mainline version 1.25.2 -> 1.25.3
Stable: None -> 1.24.0
Legacy Mainline 1.21.1 -> Removed

Signed-off-by: Derek Straka 
---
 meta-webserver/recipes-httpd/nginx/nginx_1.21.1.bb | 10 --
 meta-webserver/recipes-httpd/nginx/nginx_1.24.0.bb |  6 ++
 meta-webserver/recipes-httpd/nginx/nginx_1.25.2.bb |  6 --
 meta-webserver/recipes-httpd/nginx/nginx_1.25.3.bb |  9 +
 4 files changed, 15 insertions(+), 16 deletions(-)
 delete mode 100644 meta-webserver/recipes-httpd/nginx/nginx_1.21.1.bb
 create mode 100644 meta-webserver/recipes-httpd/nginx/nginx_1.24.0.bb
 delete mode 100644 meta-webserver/recipes-httpd/nginx/nginx_1.25.2.bb
 create mode 100644 meta-webserver/recipes-httpd/nginx/nginx_1.25.3.bb

diff --git a/meta-webserver/recipes-httpd/nginx/nginx_1.21.1.bb 
b/meta-webserver/recipes-httpd/nginx/nginx_1.21.1.bb
deleted file mode 100644
index b69fd7dab..0
--- a/meta-webserver/recipes-httpd/nginx/nginx_1.21.1.bb
+++ /dev/null
@@ -1,10 +0,0 @@
-require nginx.inc
-
-# 1.20.x branch is the current stable branch, the recommended default
-# 1.21.x is the current mainline branches containing all new features
-DEFAULT_PREFERENCE = "-1"
-
-LIC_FILES_CHKSUM = "file://LICENSE;md5=206629dc7c7b3e87acb31162363ae505"
-
-SRC_URI[md5sum] = "7dce9e2136ec32dfd823736e871815b1"
-SRC_URI[sha256sum] = 
"68ba0311342115163a0354cad34f90c05a7e8bf689dc498abf07899eda155560"
diff --git a/meta-webserver/recipes-httpd/nginx/nginx_1.24.0.bb 
b/meta-webserver/recipes-httpd/nginx/nginx_1.24.0.bb
new file mode 100644
index 0..2e865e400
--- /dev/null
+++ b/meta-webserver/recipes-httpd/nginx/nginx_1.24.0.bb
@@ -0,0 +1,6 @@
+require nginx.inc
+
+LIC_FILES_CHKSUM = "file://LICENSE;md5=175abb631c799f54573dc481454c8632"
+
+SRC_URI[sha256sum] = 
"77a2541637b92a621e3ee76776c8b7b40cf6d707e69ba53a940283e30ff2f55d"
+
diff --git a/meta-webserver/recipes-httpd/nginx/nginx_1.25.2.bb 
b/meta-webserver/recipes-httpd/nginx/nginx_1.25.2.bb
deleted file mode 100644
index 66eef2389..0
--- a/meta-webserver/recipes-httpd/nginx/nginx_1.25.2.bb
+++ /dev/null
@@ -1,6 +0,0 @@
-require nginx.inc
-
-LIC_FILES_CHKSUM = "file://LICENSE;md5=79ad2eb837299421c4435dedc8897b3d"
-
-SRC_URI[sha256sum] = 
"05dd6d9356d66a74e61035f2a42162f8c754c97cf1ba64e7a801ba158d6c0711"
-
diff --git a/meta-webserver/recipes-httpd/nginx/nginx_1.25.3.bb 
b/meta-webserver/recipes-httpd/nginx/nginx_1.25.3.bb
new file mode 100644
index 0..e893fc3a0
--- /dev/null
+++ b/meta-webserver/recipes-httpd/nginx/nginx_1.25.3.bb
@@ -0,0 +1,9 @@
+require nginx.inc
+
+# 1.24.x branch is the current stable branch, the recommended default
+# 1.25.x is the current mainline branches containing all new features
+DEFAULT_PREFERENCE = "-1"
+
+LIC_FILES_CHKSUM = "file://LICENSE;md5=79ad2eb837299421c4435dedc8897b3d"
+
+SRC_URI[sha256sum] = 
"64c5b975ca287939e828303fa857d22f142b251f17808dfe41733512d9cded86"
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107452): 
https://lists.openembedded.org/g/openembedded-devel/message/107452
Mute This Topic: https://lists.openembedded.org/mt/103172966/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-ipython: update to version 8.18.1

2023-12-13 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../{python3-ipython_8.18.0.bb => python3-ipython_8.18.1.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-ipython_8.18.0.bb => 
python3-ipython_8.18.1.bb} (88%)

diff --git a/meta-python/recipes-devtools/python/python3-ipython_8.18.0.bb 
b/meta-python/recipes-devtools/python/python3-ipython_8.18.1.bb
similarity index 88%
rename from meta-python/recipes-devtools/python/python3-ipython_8.18.0.bb
rename to meta-python/recipes-devtools/python/python3-ipython_8.18.1.bb
index aaeb720e6..5a7e1fbc5 100644
--- a/meta-python/recipes-devtools/python/python3-ipython_8.18.0.bb
+++ b/meta-python/recipes-devtools/python/python3-ipython_8.18.1.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = 
"file://COPYING.rst;md5=59b20262b8663cdd094005bddf47af5f"
 
 PYPI_PACKAGE = "ipython"
 
-SRC_URI[sha256sum] = 
"4feb61210160f75e229ce932dbf8b719bff37af123c0b985fd038b14233daa16"
+SRC_URI[sha256sum] = 
"ca6f079bb33457c66e233e4580ebfc4128855b4cf637073842a9563e8a27"
 
 RDEPENDS:${PN} = "\
 ${PYTHON_PN}-setuptools \
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107421): 
https://lists.openembedded.org/g/openembedded-devel/message/107421
Mute This Topic: https://lists.openembedded.org/mt/103165404/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-bitstring: update to version 4.1.4

2023-12-13 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../{python3-bitstring_4.1.3.bb => python3-bitstring_4.1.4.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-bitstring_4.1.3.bb => 
python3-bitstring_4.1.4.bb} (83%)

diff --git a/meta-python/recipes-devtools/python/python3-bitstring_4.1.3.bb 
b/meta-python/recipes-devtools/python/python3-bitstring_4.1.4.bb
similarity index 83%
rename from meta-python/recipes-devtools/python/python3-bitstring_4.1.3.bb
rename to meta-python/recipes-devtools/python/python3-bitstring_4.1.4.bb
index 8831d84cb..6fc2cf480 100644
--- a/meta-python/recipes-devtools/python/python3-bitstring_4.1.3.bb
+++ b/meta-python/recipes-devtools/python/python3-bitstring_4.1.4.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/scott-griffiths/bitstring;
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=661f450e2c0aef39b4b15597333444a7"
 
-SRC_URI[sha256sum] = 
"1b47c84644a961ba8503db2bba8a5965ab53e81474becdf0a18383b5b5f3f795"
+SRC_URI[sha256sum] = 
"94f3f1c45383ebe8fd4a359424ffeb75c2f290760ae8fcac421b44f89ac85213"
 
 PYPI_PACKAGE = "bitstring"
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107420): 
https://lists.openembedded.org/g/openembedded-devel/message/107420
Mute This Topic: https://lists.openembedded.org/mt/103165368/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-asyncinotify: update to version 4.0.4

2023-12-13 Thread Derek Straka
NOTE: License changed from MIT -> MPL-2.0 in version 4.0.3

Signed-off-by: Derek Straka 
---
 ...-asyncinotify_4.0.2.bb => python3-asyncinotify_4.0.4.bb} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-asyncinotify_4.0.2.bb => 
python3-asyncinotify_4.0.4.bb} (65%)

diff --git a/meta-python/recipes-devtools/python/python3-asyncinotify_4.0.2.bb 
b/meta-python/recipes-devtools/python/python3-asyncinotify_4.0.4.bb
similarity index 65%
rename from meta-python/recipes-devtools/python/python3-asyncinotify_4.0.2.bb
rename to meta-python/recipes-devtools/python/python3-asyncinotify_4.0.4.bb
index 08dc77bd1..c11b2d5e0 100644
--- a/meta-python/recipes-devtools/python/python3-asyncinotify_4.0.2.bb
+++ b/meta-python/recipes-devtools/python/python3-asyncinotify_4.0.4.bb
@@ -1,9 +1,9 @@
 SUMMARY = "A simple optionally-async python inotify library, focused on 
simplicity of use and operation, and leveraging modern Python features"
 HOMEPAGE = "https://gitlab.com/Taywee/asyncinotify;
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=6ec941a1cd6616454970d03cb9c9e8f8"
+LICENSE = "MPL-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=f75d2927d3c1ed2414ef72048f5ad640"
 
-SRC_URI[sha256sum] = 
"bcac19425b1b418bbbc4d31193ea3c39e24343cd7ddff2074ae7b599f1a04829"
+SRC_URI[sha256sum] = 
"811051db219e8d6bee14ac7cb58a0ebe565094f7aabb988943b1d9d58e994381"
 
 inherit pypi python_setuptools_build_meta
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107419): 
https://lists.openembedded.org/g/openembedded-devel/message/107419
Mute This Topic: https://lists.openembedded.org/mt/103165341/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-prompt-toolkit: update to version 3.0.43

2023-12-13 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 ...rompt-toolkit_3.0.41.bb => python3-prompt-toolkit_3.0.43.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-prompt-toolkit_3.0.41.bb 
=> python3-prompt-toolkit_3.0.43.bb} (87%)

diff --git 
a/meta-python/recipes-devtools/python/python3-prompt-toolkit_3.0.41.bb 
b/meta-python/recipes-devtools/python/python3-prompt-toolkit_3.0.43.bb
similarity index 87%
rename from meta-python/recipes-devtools/python/python3-prompt-toolkit_3.0.41.bb
rename to meta-python/recipes-devtools/python/python3-prompt-toolkit_3.0.43.bb
index aa19116e8..9f7802b53 100644
--- a/meta-python/recipes-devtools/python/python3-prompt-toolkit_3.0.41.bb
+++ b/meta-python/recipes-devtools/python/python3-prompt-toolkit_3.0.43.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://python-prompt-toolkit.readthedocs.io/;
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=b2cde7da89f0c1f3e49bf968d00d554f"
 
-SRC_URI[sha256sum] = 
"941367d97fc815548822aa26c2a269fdc4eb21e9ec05fc5d447cf09bad5d75f0"
+SRC_URI[sha256sum] = 
"3527b7af26106cbc65a040bcc84839a3566ec1b051bb0bfe953631e704b0ff7d"
 
 inherit pypi setuptools3
 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107418): 
https://lists.openembedded.org/g/openembedded-devel/message/107418
Mute This Topic: https://lists.openembedded.org/mt/103165285/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-portion: update to version 2.4.2

2023-12-13 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../{python3-portion_2.4.1.bb => python3-portion_2.4.2.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-portion_2.4.1.bb => 
python3-portion_2.4.2.bb} (80%)

diff --git a/meta-python/recipes-devtools/python/python3-portion_2.4.1.bb 
b/meta-python/recipes-devtools/python/python3-portion_2.4.2.bb
similarity index 80%
rename from meta-python/recipes-devtools/python/python3-portion_2.4.1.bb
rename to meta-python/recipes-devtools/python/python3-portion_2.4.2.bb
index a340ba7fc..b4bbfc6c6 100644
--- a/meta-python/recipes-devtools/python/python3-portion_2.4.1.bb
+++ b/meta-python/recipes-devtools/python/python3-portion_2.4.2.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSE.txt;md5=05f1e16a8e59ce3e9a979e881816c2ab"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = 
"9dcbf1808898f440aed304a5e9f0742a2859eca3b0ac7f1f58e50502852a8ef9"
+SRC_URI[sha256sum] = 
"5289b40d98959b16b3f6927781678935d3df1b7c14947f5d7778e5e04dd9a065"
 
 RDEPENDS:${PN} = "\
 ${PYTHON_PN}-sortedcontainers \
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#107417): 
https://lists.openembedded.org/g/openembedded-devel/message/107417
Mute This Topic: https://lists.openembedded.org/mt/103165166/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   7   8   9   10   >