[oe][meta-python] [PATCH] python3-packaging 21.0 ->21.2

2021-11-09 Thread xuhuan.f...@fujitsu.com
Signed-off-by: Xu huan mailto:xuh...@fujitsu.com>>
---
.../{python3-packaging_21.0.bb => python3-packaging_21.2.bb}| 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-devtools/python/{python3-packaging_21.0.bb => 
python3-packaging_21.2.bb} (80%)

diff --git a/meta/recipes-devtools/python/python3-packaging_21.0.bb 
b/meta/recipes-devtools/python/python3-packaging_21.2.bb
similarity index 80%
rename from meta/recipes-devtools/python/python3-packaging_21.0.bb
rename to meta/recipes-devtools/python/python3-packaging_21.2.bb
index f20f8886a4..15d5e6e90b 100644
--- a/meta/recipes-devtools/python/python3-packaging_21.0.bb
+++ b/meta/recipes-devtools/python/python3-packaging_21.2.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/pypa/packaging";
LICENSE = "Apache-2.0 | BSD-2-Clause"
LIC_FILES_CHKSUM = "file://LICENSE;md5=faadaedca9251a90b205c9167578ce91"

-SRC_URI[sha256sum] = 
"7dc96269f53a4ccec5c0670940a4281106dd0bb343f47b7471f779df49c2fbe7"
+SRC_URI[sha256sum] = 
"096d689d78ca690e4cd8a89568ba06d07ca097e3306a4381635073ca91479966"

 inherit pypi setuptools3

--
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#93901): 
https://lists.openembedded.org/g/openembedded-devel/message/93901
Mute This Topic: https://lists.openembedded.org/mt/86951564/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-xlsxwriter: upgrade 3.0.1 -> 3.0.2

2021-11-22 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 ...ython3-xlsxwriter_3.0.1.bb => python3-xlsxwriter_3.0.2.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-xlsxwriter_3.0.1.bb => 
python3-xlsxwriter_3.0.2.bb} (67%)

diff --git a/meta-python/recipes-devtools/python/python3-xlsxwriter_3.0.1.bb 
b/meta-python/recipes-devtools/python/python3-xlsxwriter_3.0.2.bb
similarity index 67%
rename from meta-python/recipes-devtools/python/python3-xlsxwriter_3.0.1.bb
rename to meta-python/recipes-devtools/python/python3-xlsxwriter_3.0.2.bb
index aeb27cef42..04f25532a6 100644
--- a/meta-python/recipes-devtools/python/python3-xlsxwriter_3.0.1.bb
+++ b/meta-python/recipes-devtools/python/python3-xlsxwriter_3.0.2.bb
@@ -2,7 +2,7 @@ SUMMARY = "Python 2 and 3 compatibility library"
 HOMEPAGE = "https://xlsxwriter.readthedocs.io";
 SECTION = "devel/python"
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=4e95e368cd6cb090815046688e92d11e"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e5c795ec8cf90514a6d844b1d3cc3224"
 
 inherit pypi setuptools3
 
@@ -16,6 +16,6 @@ RDEPENDS:${PN} += " \
python3-io \
 "
 
-SRC_URI[sha256sum] = 
"3f39bf581c55f3ad1438bc170d7f4c4649cee8b6b7a80d21f79508118eeea52a"
+SRC_URI[sha256sum] = 
"53005f03e8eb58f061ebf41d5767c7495ee0772c2396fe26b7e0ca22fa9c2570"
 
 BBCLASSEXTEND = "native nativesdk"
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94105): 
https://lists.openembedded.org/g/openembedded-devel/message/94105
Mute This Topic: https://lists.openembedded.org/mt/87253674/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-websockets: upgrade 10.0 -> 10.1

2021-11-22 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

New features
Added a tutorial.

Made the second parameter of connection handlers optional. It will be 
deprecated in the next major release. The request path is available in
 the path attribute of the first argument.

If you implemented the connection handler of a server as:

async def handler(request, path):
...
You should replace it by:

async def handler(request):
path = request.path  # if handler() uses the path argument
...
Added python -m websockets --version.

Improvements
Added wheels for Python 3.10, PyPy 3.7, and for more platforms.

Reverted optimization of default compression settings for clients, mainly 
to avoid triggering bugs in poorly implemented servers like AWS API Gateway.

Mirrored the entire Server API in WebSocketServer.

Improved performance for large messages on ARM processors.

Documented how to auto-reload on code changes in development.

Bug fixes
Avoided half-closing TCP connections that are already closed.

Signed-off-by: Xu Huan 
---
 .../{python3-websockets_10.0.bb => python3-websockets_10.1.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-websockets_10.0.bb => 
python3-websockets_10.1.bb} (79%)

diff --git a/meta-python/recipes-devtools/python/python3-websockets_10.0.bb 
b/meta-python/recipes-devtools/python/python3-websockets_10.1.bb
similarity index 79%
rename from meta-python/recipes-devtools/python/python3-websockets_10.0.bb
rename to meta-python/recipes-devtools/python/python3-websockets_10.1.bb
index 004d3beb17..6dd29a9ff6 100644
--- a/meta-python/recipes-devtools/python/python3-websockets_10.0.bb
+++ b/meta-python/recipes-devtools/python/python3-websockets_10.1.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=78c2cc91e172ca96d6f8e4a76c739ec6"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = 
"c4fc9a1d242317892590abe5b61a9127f1a61740477bfb121743f290b8054002"
+SRC_URI[sha256sum] = 
"181d2b25de5a437b36aefedaf006ecb6fa3aa1328ec0236cdde15f32f9d3ff6d"
 
 BBCLASSEXTEND = "native nativesdk"
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94106): 
https://lists.openembedded.org/g/openembedded-devel/message/94106
Mute This Topic: https://lists.openembedded.org/mt/87254578/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: upgrade 5.4.1 -> 5.5.0

2021-11-23 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Option to disable the SIGINT handler in the client
Do not invoke reserved events on a catch-all handler
Use correct binary packet types in the msgpack packet encoder
Add missing call() method to namespace classes
Add missing to argument to namespace emit() and send() methods
Configure Redis pubsub to skip subscription message
Migrate async Redis client manager to aioredis 2
Update Python supported versions in docs
Document how to get the connection state in the client
Improved documentation of start_background_task() function
Improved documentation of call() method
Fixed intermittent test failures

Signed-off-by: Xu Huan 
---
 .../{python3-socketio_5.4.1.bb => python3-socketio_5.5.0.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-socketio_5.4.1.bb => 
python3-socketio_5.5.0.bb} (89%)

diff --git a/meta-python/recipes-devtools/python/python3-socketio_5.4.1.bb 
b/meta-python/recipes-devtools/python/python3-socketio_5.5.0.bb
similarity index 89%
rename from meta-python/recipes-devtools/python/python3-socketio_5.4.1.bb
rename to meta-python/recipes-devtools/python/python3-socketio_5.5.0.bb
index bf8ce4c7bf..425dadc4f1 100644
--- a/meta-python/recipes-devtools/python/python3-socketio_5.4.1.bb
+++ b/meta-python/recipes-devtools/python/python3-socketio_5.5.0.bb
@@ -9,7 +9,7 @@ inherit pypi setuptools3
 
 PYPI_PACKAGE = "python-socketio"
 
-SRC_URI[sha256sum] = 
"ef4e273ddfebb421144a228cbab1e7e27ffe8d372514fa561e57d590ea6627b0"
+SRC_URI[sha256sum] = 
"ce972ea1b82aa1811fa10d30cf0d5c251b9a1558c3d66829b6fe70854bcccf0b"
 
 PACKAGECONFIG ?= "asyncio_client client"
 PACKAGECONFIG[asyncio_client] = ",,,${PYTHON_PN}-aiohttp 
${PYTHON_PN}-websockets"
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94111): 
https://lists.openembedded.org/g/openembedded-devel/message/94111
Mute This Topic: https://lists.openembedded.org/mt/87276168/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-pymongo: upgrade 3.12.0 -> 4.0

2021-12-01 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

See changelog: 
https://github.com/mongodb/mongo-python-driver/blob/master/doc/changelog.rst

Signed-off-by: Xu Huan 
---
 .../{python3-pymongo_3.12.0.bb => python3-pymongo_4.0.bb}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pymongo_3.12.0.bb => 
python3-pymongo_4.0.bb} (91%)

diff --git a/meta-python/recipes-devtools/python/python3-pymongo_3.12.0.bb 
b/meta-python/recipes-devtools/python/python3-pymongo_4.0.bb
similarity index 91%
rename from meta-python/recipes-devtools/python/python3-pymongo_3.12.0.bb
rename to meta-python/recipes-devtools/python/python3-pymongo_4.0.bb
index 17975ff5d3..ea057c1804 100644
--- a/meta-python/recipes-devtools/python/python3-pymongo_3.12.0.bb
+++ b/meta-python/recipes-devtools/python/python3-pymongo_4.0.bb
@@ -8,7 +8,7 @@ HOMEPAGE = "http://github.com/mongodb/mongo-python-driver";
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
 
-SRC_URI[sha256sum] = 
"b88d1742159bc93a078733f9789f563cef26f5e370eba810476a71aa98e5fbc2"
+SRC_URI[sha256sum] = 
"6d158eadba3aaab276a3b188b7f467ab0384b68c1d31cfa87335e52addd9dcb6"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94169): 
https://lists.openembedded.org/g/openembedded-devel/message/94169
Mute This Topic: https://lists.openembedded.org/mt/87446060/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-pyephem: upgrade 4.1 -> 4.1.1

2021-12-02 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

changelog:
===
When you provide PyEphem with a Python datetime that has a time
 zone attached, PyEphem now detects the time zone and converts
the date and time to UTC automatically.

A new search routine had been written and tested to power the
:ref:`transit-rising-setting` methods previous_rising(),
previous_setting(), next_rising(), and next_setting(). They
should no longer be susceptible to getting hung up in a loop.
You should also find them substantially faster.

Fixed the constellation() routine so that it uses astrometric,
rather than apparent, right ascension and declination. This
should make it more accurate along the borders of each
constellation.

Fixed how the underlying “libastro” library computes whether a
body’s image is deflected by gravity when its light passes close
 to the Sun. Previously, users would see coordinates jump
unexpectedly as the deflection formula turned on and off haphazardly.

Fixed the star positions in the ephem.stars star catalog by adding
 8.75 years of proper motion to each star. Previously, each
1991.25 position from the Hipparcos catalog was being incorrectly
treated as a 2000.0 position.

A new routine unrefract() lets you compute the real altitude of
a body that you observe in the sky at a given apparent altitude.

The old cities.lookup() function is now officially deprecated.
Because of a Google API restriction, it stopped working in 2018.

Signed-off-by: Xu Huan 
---
 .../{python3-pyephem_4.1.bb => python3-pyephem_4.1.1.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-extended/python-pyephem/{python3-pyephem_4.1.bb => 
python3-pyephem_4.1.1.bb} (77%)

diff --git a/meta-python/recipes-extended/python-pyephem/python3-pyephem_4.1.bb 
b/meta-python/recipes-extended/python-pyephem/python3-pyephem_4.1.1.bb
similarity index 77%
rename from meta-python/recipes-extended/python-pyephem/python3-pyephem_4.1.bb
rename to meta-python/recipes-extended/python-pyephem/python3-pyephem_4.1.1.bb
index add4458333..ec3cde87d3 100644
--- a/meta-python/recipes-extended/python-pyephem/python3-pyephem_4.1.bb
+++ b/meta-python/recipes-extended/python-pyephem/python3-pyephem_4.1.1.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "http://rhodesmill.org/pyephem/";
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=9c930b395b435b00bb13ec83b0c99f40"

-SRC_URI[sha256sum] = 
"c076794a511a34b5b91871c1cf6374dbc323ec69fca3f50eb718f20b171259d6"
+SRC_URI[sha256sum] = 
"dba9e05c78ce910ae75a06351a5592479191a8dc570ac0cd6d18a77e98138873"

 PYPI_PACKAGE = "ephem"

--
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94177): 
https://lists.openembedded.org/g/openembedded-devel/message/94177
Mute This Topic: https://lists.openembedded.org/mt/87449195/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-pycparser: upgrade 2.20 -> 2.21

2021-12-02 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

changelog:
=
  - Much improved support for C11 (multiple PRs)
  - Support for parehthesized compount statements
  - Support for modern Python versions (3.9 and 3.10)
  - Fix support for structs with nested enums
  - Multiple small bug fixes

Signed-off-by: Xu Huan 
---
 ...{python3-pycparser_2.20.bb => python3-pycparser_2.21.bb} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-pycparser_2.20.bb => 
python3-pycparser_2.21.bb} (64%)

diff --git a/meta-python/recipes-devtools/python/python3-pycparser_2.20.bb 
b/meta-python/recipes-devtools/python/python3-pycparser_2.21.bb
similarity index 64%
rename from meta-python/recipes-devtools/python/python3-pycparser_2.20.bb
rename to meta-python/recipes-devtools/python/python3-pycparser_2.21.bb
index fde868a701..3b8a9cd206 100644
--- a/meta-python/recipes-devtools/python/python3-pycparser_2.20.bb
+++ b/meta-python/recipes-devtools/python/python3-pycparser_2.21.bb
@@ -1,10 +1,10 @@
 SUMMARY = "Parser of the C language, written in pure Python"
 HOMEPAGE = "https://github.com/eliben/pycparser";
 LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=86f1cedb4e6410a88ce8e30b91079169"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=2c28cdeabcb88f5843d934381b4b4fea"
 
-SRC_URI[md5sum] = "b8f88de737db8c346ee8d31c07c7a25a"
-SRC_URI[sha256sum] = 
"2d475327684562c3a96cc71adf7dc8c4f0565175cf86b6d7a404ff4c771f15f0"
+SRC_URI[md5sum] = "48f7d743bf018f7bb2ffc5fb976d1492"
+SRC_URI[sha256sum] = 
"e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94190): 
https://lists.openembedded.org/g/openembedded-devel/message/94190
Mute This Topic: https://lists.openembedded.org/mt/87471515/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 v2] python3-pycparser: upgrade 2.20 -> 2.21

2021-12-03 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Lisence-Update:
year updated to 2020

changelog:
=
  - Much improved support for C11 (multiple PRs)
  - Support for parehthesized compount statements
  - Support for modern Python versions (3.9 and 3.10)
  - Fix support for structs with nested enums
  - Multiple small bug fixes

Signed-off-by: Xu Huan 
---
 .../{python3-pycparser_2.20.bb => python3-pycparser_2.21.bb} | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-pycparser_2.20.bb => 
python3-pycparser_2.21.bb} (64%)

diff --git a/meta-python/recipes-devtools/python/python3-pycparser_2.20.bb 
b/meta-python/recipes-devtools/python/python3-pycparser_2.21.bb
similarity index 64%
rename from meta-python/recipes-devtools/python/python3-pycparser_2.20.bb
rename to meta-python/recipes-devtools/python/python3-pycparser_2.21.bb
index fde868a701..53b7367903 100644
--- a/meta-python/recipes-devtools/python/python3-pycparser_2.20.bb
+++ b/meta-python/recipes-devtools/python/python3-pycparser_2.21.bb
@@ -1,10 +1,9 @@
 SUMMARY = "Parser of the C language, written in pure Python"
 HOMEPAGE = "https://github.com/eliben/pycparser";
 LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=86f1cedb4e6410a88ce8e30b91079169"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=2c28cdeabcb88f5843d934381b4b4fea"
 
-SRC_URI[md5sum] = "b8f88de737db8c346ee8d31c07c7a25a"
-SRC_URI[sha256sum] = 
"2d475327684562c3a96cc71adf7dc8c4f0565175cf86b6d7a404ff4c771f15f0"
+SRC_URI[sha256sum] = 
"e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94195): 
https://lists.openembedded.org/g/openembedded-devel/message/94195
Mute This Topic: https://lists.openembedded.org/mt/87472826/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-msgpack: upgrade 1.0.3 -> 1.0.4

2022-06-09 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Changelog:
==
Support Python 3.11 (beta)
refresh ci settings.
Don't define _*ENDIAN macro on Unix.
Update setuptools and black
Use PyFloat_Pack8() on Python 3.11a7
Upgrade black to fix CI
Fix Unpacker max_buffer_length handling
ci: Update action versions.

Signed-off-by: Xu Huan 
---
 .../{python3-msgpack_1.0.3.bb => python3-msgpack_1.0.4.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-msgpack_1.0.3.bb => 
python3-msgpack_1.0.4.bb} (84%)

diff --git a/meta-python/recipes-devtools/python/python3-msgpack_1.0.3.bb 
b/meta-python/recipes-devtools/python/python3-msgpack_1.0.4.bb
similarity index 84%
rename from meta-python/recipes-devtools/python/python3-msgpack_1.0.3.bb
rename to meta-python/recipes-devtools/python/python3-msgpack_1.0.4.bb
index 92999255b..a796d7cb5 100644
--- a/meta-python/recipes-devtools/python/python3-msgpack_1.0.3.bb
+++ b/meta-python/recipes-devtools/python/python3-msgpack_1.0.4.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=cd9523181d9d4fbf7ffca52eaa2a5751"
 PYPI_PACKAGE = "msgpack"
 inherit pypi setuptools3 ptest
 
-SRC_URI[sha256sum] = 
"51fdc7fb93615286428ee7758cecc2f374d5ff363bdd884c7ea622a7a327a81e"
+SRC_URI[sha256sum] = 
"f5d869c18f030202eb412f08b28d2afeea553d6613aee89e200d7aca7ef01f5f"
 
 RDEPENDS:${PN}:class-target += "\
 ${PYTHON_PN}-io \
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97447): 
https://lists.openembedded.org/g/openembedded-devel/message/97447
Mute This Topic: https://lists.openembedded.org/mt/91640857/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-hatchling: upgrade 1.3.0 -> 1.3.1

2022-06-09 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 .../{python3-hatchling_1.3.0.bb => python3-hatchling_1.3.1.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-hatchling_1.3.0.bb => 
python3-hatchling_1.3.1.bb} (88%)

diff --git a/meta-python/recipes-devtools/python/python3-hatchling_1.3.0.bb 
b/meta-python/recipes-devtools/python/python3-hatchling_1.3.1.bb
similarity index 88%
rename from meta-python/recipes-devtools/python/python3-hatchling_1.3.0.bb
rename to meta-python/recipes-devtools/python/python3-hatchling_1.3.1.bb
index a6550a973..1c08bd60f 100644
--- a/meta-python/recipes-devtools/python/python3-hatchling_1.3.0.bb
+++ b/meta-python/recipes-devtools/python/python3-hatchling_1.3.1.bb
@@ -8,7 +8,7 @@ inherit pypi python_hatchling
 DEPENDS += "python3-pluggy-native python3-tomli-native python3-pathspec-native 
python3-packaging-native python3-editables-native"
 DEPENDS:remove:class-native = "python3-hatchling-native"
 
-SRC_URI[sha256sum] = 
"1401d45d3dd6a5910f64d539acaa943486d5e8b7dda1a97f2b0040fdddc5b85e"
+SRC_URI[sha256sum] = 
"aaa63019c9d666053d9ff318097335e766123844547c52940155c0401c3c142f"
 
 # Until we have a proper tool to invoke PEP517 builds, hatchling can't
 # bootstrap itself automatically.
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97449): 
https://lists.openembedded.org/g/openembedded-devel/message/97449
Mute This Topic: https://lists.openembedded.org/mt/91640859/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-lxml: upgrade 4.8.0 -> 4.9.0

2022-06-09 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Changelog:
=
Bugs fixed
--

* GH#341: The mixin inheritance order in ''lxml.html'' was corrected.
  Patch by xmo-odoo.

Other changes
-

* Built with Cython 0.29.30 to adapt to changes in Python 3.11 and 3.12.

* Wheels include zlib 1.2.12, libxml2 2.9.14 and libxslt 1.1.35
  (libxml2 2.9.12+ and libxslt 1.1.34 on Windows).

* GH#343: Windows-AArch64 build support in Visual Studio.
  Patch by Steve Dower.

Signed-off-by: Xu Huan 
---
 .../python/{python3-lxml_4.8.0.bb => python3-lxml_4.9.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-lxml_4.8.0.bb => 
python3-lxml_4.9.0.bb} (95%)

diff --git a/meta-python/recipes-devtools/python/python3-lxml_4.8.0.bb 
b/meta-python/recipes-devtools/python/python3-lxml_4.9.0.bb
similarity index 95%
rename from meta-python/recipes-devtools/python/python3-lxml_4.8.0.bb
rename to meta-python/recipes-devtools/python/python3-lxml_4.9.0.bb
index c4d4df383..74c5e480a 100644
--- a/meta-python/recipes-devtools/python/python3-lxml_4.8.0.bb
+++ b/meta-python/recipes-devtools/python/python3-lxml_4.9.0.bb
@@ -18,7 +18,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSES.txt;md5=e4c045ebad958ead4b48008f70838403 \
 
 DEPENDS += "libxml2 libxslt"
 
-SRC_URI[sha256sum] = 
"f63f62fc60e6228a4ca9abae28228f35e1bd3ce675013d1dfb828688d50c6e23"
+SRC_URI[sha256sum] = 
"520461c36727268a989790aef08884347cd41f2d8ae855489ccf40b50321d8d7"
 
 SRC_URI += "${PYPI_SRC_URI}"
 inherit pkgconfig pypi setuptools3
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97448): 
https://lists.openembedded.org/g/openembedded-devel/message/97448
Mute This Topic: https://lists.openembedded.org/mt/91640858/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: upgrade 3.20.1 -> 4.21.1

2022-06-09 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 .../{python3-protobuf_3.20.1.bb => python3-protobuf_4.21.1.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-protobuf_3.20.1.bb => 
python3-protobuf_4.21.1.bb} (92%)

diff --git a/meta-python/recipes-devtools/python/python3-protobuf_3.20.1.bb 
b/meta-python/recipes-devtools/python/python3-protobuf_4.21.1.bb
similarity index 92%
rename from meta-python/recipes-devtools/python/python3-protobuf_3.20.1.bb
rename to meta-python/recipes-devtools/python/python3-protobuf_4.21.1.bb
index 976d2aa9b..cdce531e8 100644
--- a/meta-python/recipes-devtools/python/python3-protobuf_3.20.1.bb
+++ b/meta-python/recipes-devtools/python/python3-protobuf_4.21.1.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = 
"file://PKG-INFO;beginline=8;endline=8;md5=53dbfa56f61b90215a
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = 
"adc31566d027f45efe3f44eeb5b1f329da43891634d61c75a5944e9be6dd42c9"
+SRC_URI[sha256sum] = 
"5d9b5c8270461706973c3871c6fbdd236b51dfe9dab652f1fb6a36aa88287e47"
 
 # http://errors.yoctoproject.org/Errors/Details/184715/
 # Can't find required file: ../src/google/protobuf/descriptor.proto
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97451): 
https://lists.openembedded.org/g/openembedded-devel/message/97451
Mute This Topic: https://lists.openembedded.org/mt/91640865/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: upgrade 0.960 -> 0.961

2022-06-16 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 .../python/{python3-mypy_0.960.bb => python3-mypy_0.961.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-mypy_0.960.bb => 
python3-mypy_0.961.bb} (86%)

diff --git a/meta-python/recipes-devtools/python/python3-mypy_0.960.bb 
b/meta-python/recipes-devtools/python/python3-mypy_0.961.bb
similarity index 86%
rename from meta-python/recipes-devtools/python/python3-mypy_0.960.bb
rename to meta-python/recipes-devtools/python/python3-mypy_0.961.bb
index 5d99b6468..02f7cce4c 100644
--- a/meta-python/recipes-devtools/python/python3-mypy_0.960.bb
+++ b/meta-python/recipes-devtools/python/python3-mypy_0.961.bb
@@ -7,7 +7,7 @@ PYPI_PACKAGE = "mypy"
 
 inherit pypi python_setuptools_build_meta
 
-SRC_URI[sha256sum] = 
"d4fccf04c1acf750babd74252e0f2db6bd2ac3aa8fe960797d9f3ef41cf2bfd4"
+SRC_URI[sha256sum] = 
"f730d56cb924d371c26b8eaddeea3cc07d78ff51c521c6d04899ac6904b75492"
 
 BBCLASSEXTEND = "native"
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97530): 
https://lists.openembedded.org/g/openembedded-devel/message/97530
Mute This Topic: https://lists.openembedded.org/mt/91813529/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-pylint: upgrade 2.13.9 -> 2.14.1

2022-06-16 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Changelog:
=
Avoid reporting unnecessary-dict-index-lookup or unnecessary-list-index-lookup
when the index lookup is part of a destructuring assignment.

Fixed parsing of unrelated options in tox.ini.

Fixed a crash when linting __new__() methods that return a call expression.

Don't crash if we can't find the user's home directory.

Fixed false positives for unused-import when aliasing typing e.g. as t
and guarding imports under t.TYPE_CHECKING.

Fixed a false positive regression in 2.13 for used-before-assignment where it 
is safe to rely
on a name defined only in an except block because the else block returned.

Fixed the use of abbreviations for some special options on the command line.

Fix a crash in the optional pylint.extensions.private_import extension.


bad-option-value (E0012) is now a warning unknown-option-value (W0012). Deleted 
messages that do not exist
anymore in pylint now raise useless-option-value (R0022) instead of 
bad-option-value. This allows to
distinguish between genuine typos and configuration that could be cleaned up. 
Existing message disables for
bad-option-value will still work on both new messages.

Signed-off-by: Xu Huan 
---
 .../{python3-pylint_2.13.9.bb => python3-pylint_2.14.1.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pylint_2.13.9.bb => 
python3-pylint_2.14.1.bb} (86%)

diff --git a/meta-python/recipes-devtools/python/python3-pylint_2.13.9.bb 
b/meta-python/recipes-devtools/python/python3-pylint_2.14.1.bb
similarity index 86%
rename from meta-python/recipes-devtools/python/python3-pylint_2.13.9.bb
rename to meta-python/recipes-devtools/python/python3-pylint_2.14.1.bb
index 1946a8923..d4d2d2c8a 100644
--- a/meta-python/recipes-devtools/python/python3-pylint_2.13.9.bb
+++ b/meta-python/recipes-devtools/python/python3-pylint_2.14.1.bb
@@ -3,7 +3,7 @@ HOMEPAGE= "http://www.pylint.org/";
 LICENSE = "GPL-2.0-only"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=c107cf754550e65755c42985a5d4e9c9"
 
-SRC_URI[sha256sum] = 
"095567c96e19e6f57b5b907e67d265ff535e588fe26b12b5ebe1fc5645b2c731"
+SRC_URI[sha256sum] = 
"549261e0762c3466cc001024c4419c08252cb8c8d40f5c2c6966fea690e7fe2a"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97529): 
https://lists.openembedded.org/g/openembedded-devel/message/97529
Mute This Topic: https://lists.openembedded.org/mt/91813528/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-smbus2: upgrade 0.4.1 -> 0.4.2

2022-06-16 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Changelog:
=
*  Explicitly export from top level of package #69.
*  Transitioned pipelines from Travis-CI to GitHub Actions.
  Python 3.10 added.


Signed-off-by: Xu Huan 
---
 .../python/{python3-smbus2_0.4.1.bb => python3-smbus2_0.4.2.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-smbus2_0.4.1.bb => 
python3-smbus2_0.4.2.bb} (84%)

diff --git a/meta-python/recipes-devtools/python/python3-smbus2_0.4.1.bb 
b/meta-python/recipes-devtools/python/python3-smbus2_0.4.2.bb
similarity index 84%
rename from meta-python/recipes-devtools/python/python3-smbus2_0.4.1.bb
rename to meta-python/recipes-devtools/python/python3-smbus2_0.4.2.bb
index a27793012..f22a402df 100644
--- a/meta-python/recipes-devtools/python/python3-smbus2_0.4.1.bb
+++ b/meta-python/recipes-devtools/python/python3-smbus2_0.4.2.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = 
"file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = 
"6276eb599b76c4e74372f2582d2282f03b4398f0da16bc996608e4f21557ca9b"
+SRC_URI[sha256sum] = 
"634541ed794068a822fe7499f1577468b9d4641b68dd9bfb6d0eb7270f4d2a32"
 
 CLEANBROKEN = "1"
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97531): 
https://lists.openembedded.org/g/openembedded-devel/message/97531
Mute This Topic: https://lists.openembedded.org/mt/91813530/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-pillow: upgrade 9.0.1 -> 9.1.1

2022-06-23 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 .../{python3-pillow_9.0.1.bb => python3-pillow_9.1.1.bb}| 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-pillow_9.0.1.bb => 
python3-pillow_9.1.1.bb} (87%)

diff --git a/meta-python/recipes-devtools/python/python3-pillow_9.0.1.bb 
b/meta-python/recipes-devtools/python/python3-pillow_9.1.1.bb
similarity index 87%
rename from meta-python/recipes-devtools/python/python3-pillow_9.0.1.bb
rename to meta-python/recipes-devtools/python/python3-pillow_9.1.1.bb
index fb86322f7..00df22a3d 100644
--- a/meta-python/recipes-devtools/python/python3-pillow_9.0.1.bb
+++ b/meta-python/recipes-devtools/python/python3-pillow_9.1.1.bb
@@ -5,10 +5,10 @@ HOMEPAGE = "https://pillow.readthedocs.io";
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=ad081a0aede51e89f8da1a8fb849"
 
-SRC_URI = 
"git://github.com/python-pillow/Pillow.git;branch=9.0.x;protocol=https \
+SRC_URI = 
"git://github.com/python-pillow/Pillow.git;branch=9.1.x;protocol=https \
file://0001-support-cross-compiling.patch \
file://0001-explicitly-set-compile-options.patch \
-"
+   "
 SRCREV ?= "82541b6dec8452cb612067fcebba1c5a1a2bfdc8"
 
 inherit setuptools3
@@ -39,4 +39,4 @@ RPROVIDES:${PN} += "python3-imaging"
 
 BBCLASSEXTEND = "native"
 
-SRCREV = "6deac9e3a23caffbfdd75c00d3f0a1cd36cdbd5d"
+SRCREV = "0f44136e720cd3b2db72bdf29614897b7aa3e868"
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97579): 
https://lists.openembedded.org/g/openembedded-devel/message/97579
Mute This Topic: https://lists.openembedded.org/mt/91938549/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-pychromecast: upgrade 12.1.2 -> 12.1.3

2022-06-23 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 ...n3-pychromecast_12.1.2.bb => python3-pychromecast_12.1.3.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pychromecast_12.1.2.bb => 
python3-pychromecast_12.1.3.bb} (83%)

diff --git a/meta-python/recipes-devtools/python/python3-pychromecast_12.1.2.bb 
b/meta-python/recipes-devtools/python/python3-pychromecast_12.1.3.bb
similarity index 83%
rename from meta-python/recipes-devtools/python/python3-pychromecast_12.1.2.bb
rename to meta-python/recipes-devtools/python/python3-pychromecast_12.1.3.bb
index c8686ab52..bbed92150 100644
--- a/meta-python/recipes-devtools/python/python3-pychromecast_12.1.2.bb
+++ b/meta-python/recipes-devtools/python/python3-pychromecast_12.1.3.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/balloob/pychromecast";
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=b1dbd4e85f47b389bdadee9c694669f5"
 
-SRC_URI[sha256sum] = 
"6be626e5ba2f6ffaefbc13ddced84e8b60a9ef1b012f71039fc0f7a0bcb4bda6"
+SRC_URI[sha256sum] = 
"edd67b6d23d5d064a56c97cd90ea661fa8ffd76720bf199b5a126c6869f81e01"
 
 PYPI_PACKAGE = "PyChromecast"
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97580): 
https://lists.openembedded.org/g/openembedded-devel/message/97580
Mute This Topic: https://lists.openembedded.org/mt/91938550/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-pylint: upgrade 2.14.1 -> 2.14.3

2022-06-23 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Changelog:
==
* Fixed two false positives for bad-super-call for calls that refer to a 
non-direct parent.
* Fixed a false positive for useless-super-delegation for subclasses that 
specify the number of
  of parameters against a parent that uses a variadic argument.
* Allow suppressing undefined-loop-variable and undefined-variable without 
raising useless-suppression.
* Fixed false positive for undefined-variable for __class__ in inner methods.

Signed-off-by: Xu Huan 
---
 .../{python3-pylint_2.14.1.bb => python3-pylint_2.14.3.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pylint_2.14.1.bb => 
python3-pylint_2.14.3.bb} (86%)

diff --git a/meta-python/recipes-devtools/python/python3-pylint_2.14.1.bb 
b/meta-python/recipes-devtools/python/python3-pylint_2.14.3.bb
similarity index 86%
rename from meta-python/recipes-devtools/python/python3-pylint_2.14.1.bb
rename to meta-python/recipes-devtools/python/python3-pylint_2.14.3.bb
index d4d2d2c8a..835ed2203 100644
--- a/meta-python/recipes-devtools/python/python3-pylint_2.14.1.bb
+++ b/meta-python/recipes-devtools/python/python3-pylint_2.14.3.bb
@@ -3,7 +3,7 @@ HOMEPAGE= "http://www.pylint.org/";
 LICENSE = "GPL-2.0-only"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=c107cf754550e65755c42985a5d4e9c9"
 
-SRC_URI[sha256sum] = 
"549261e0762c3466cc001024c4419c08252cb8c8d40f5c2c6966fea690e7fe2a"
+SRC_URI[sha256sum] = 
"4e1378f815c63e7e44590d0d339ed6435f5281d0a0cc357d29a86ea0365ef868"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97581): 
https://lists.openembedded.org/g/openembedded-devel/message/97581
Mute This Topic: https://lists.openembedded.org/mt/91938551/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-pyscaffold: upgrade 4.2.2 -> 4.2.3

2022-06-23 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Changelog:
==
Fix github action creating the demo-repo by, #644
Update GitHub actions, #645
Automatically create directory when saving config file, #648

Signed-off-by: Xu Huan 
---
 ...{python3-pyscaffold_4.2.2.bb => python3-pyscaffold_4.2.3.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pyscaffold_4.2.2.bb => 
python3-pyscaffold_4.2.3.bb} (88%)

diff --git a/meta-python/recipes-devtools/python/python3-pyscaffold_4.2.2.bb 
b/meta-python/recipes-devtools/python/python3-pyscaffold_4.2.3.bb
similarity index 88%
rename from meta-python/recipes-devtools/python/python3-pyscaffold_4.2.2.bb
rename to meta-python/recipes-devtools/python/python3-pyscaffold_4.2.3.bb
index 5b61c06ad..fe4f7e4eb 100644
--- a/meta-python/recipes-devtools/python/python3-pyscaffold_4.2.2.bb
+++ b/meta-python/recipes-devtools/python/python3-pyscaffold_4.2.3.bb
@@ -9,7 +9,7 @@ LICENSE = "0BSD & MIT"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=14a49c74a1d91829908ac756c07e6b91"
 DEPENDS += "python3-setuptools-scm-native"
 
-SRC_URI[sha256sum] = 
"11be56d21a0047ea604e7bc4349e95592cdc734b0a405082a6a4f2a7028dc896"
+SRC_URI[sha256sum] = 
"58c7d9ce296cc26ac377061365c2f87cd8e28f46e4fb2c96ee48f9c64e33ac4a"
 
 inherit pypi python_setuptools_build_meta
 PYPI_PACKAGE = "PyScaffold"
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97582): 
https://lists.openembedded.org/g/openembedded-devel/message/97582
Mute This Topic: https://lists.openembedded.org/mt/91938552/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-redis: upgrade 4.3.1 -> 4.3.3

2022-06-23 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Changelog:
==
Fix Lock crash, and versioning 4.3.3 (#2210)
Async cluster: improve docs (#2208)

Signed-off-by: Xu Huan 
---
 .../python/{python3-redis_4.3.1.bb => python3-redis_4.3.3.bb}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-redis_4.3.1.bb => 
python3-redis_4.3.3.bb} (81%)

diff --git a/meta-python/recipes-devtools/python/python3-redis_4.3.1.bb 
b/meta-python/recipes-devtools/python/python3-redis_4.3.3.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python3-redis_4.3.1.bb
rename to meta-python/recipes-devtools/python/python3-redis_4.3.3.bb
index c0d9c0064..66051d420 100644
--- a/meta-python/recipes-devtools/python/python3-redis_4.3.1.bb
+++ b/meta-python/recipes-devtools/python/python3-redis_4.3.3.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "http://github.com/andymccurdy/redis-py";
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=51d9ad56299ab60ba7be65a621004f27"
 
-SRC_URI[sha256sum] = 
"94b617b4cd296e94991146f66fc5559756fbefe9493604f0312e4d3298ac63e9"
+SRC_URI[sha256sum] = 
"2f7a57cf4af15cd543c4394bcbe2b9148db2606a37edba755368836e3a1d053e"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97583): 
https://lists.openembedded.org/g/openembedded-devel/message/97583
Mute This Topic: https://lists.openembedded.org/mt/91938553/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-aiohue: upgrade 4.4.1 -> 4.4.2

2022-06-29 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 .../python/{python3-aiohue_4.4.1.bb => python3-aiohue_4.4.2.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-aiohue_4.4.1.bb => 
python3-aiohue_4.4.2.bb} (81%)

diff --git a/meta-python/recipes-devtools/python/python3-aiohue_4.4.1.bb 
b/meta-python/recipes-devtools/python/python3-aiohue_4.4.2.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python3-aiohue_4.4.1.bb
rename to meta-python/recipes-devtools/python/python3-aiohue_4.4.2.bb
index b3a88fb67..63d29a48f 100644
--- a/meta-python/recipes-devtools/python/python3-aiohue_4.4.1.bb
+++ b/meta-python/recipes-devtools/python/python3-aiohue_4.4.2.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=dab31a1d28183826937f4b152143a33f"
 
-SRC_URI[sha256sum] = 
"fa3bb0cf68aefdd0710704443c896abda69ae227500ad9539ac6c3d1d6dad804"
+SRC_URI[sha256sum] = 
"871c27da3d5a5b7d7c5049e6d23713425a2f251639ff1fb5fac460724ba42f15"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97623): 
https://lists.openembedded.org/g/openembedded-devel/message/97623
Mute This Topic: https://lists.openembedded.org/mt/92079092/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: upgrade 2.11.5 -> 2.11.6

2022-06-29 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Changelog:
==
The Qt brain now correctly treats calling .disconnect() (with no
arguments) on a slot as valid.

The argparse brain no longer incorrectly adds "Namespace" to the locals
of functions that return an argparse.Namespace object.

Signed-off-by: Xu Huan 
---
 .../{python3-astroid_2.11.5.bb => python3-astroid_2.11.6.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-astroid_2.11.5.bb => 
python3-astroid_2.11.6.bb} (89%)

diff --git a/meta-python/recipes-devtools/python/python3-astroid_2.11.5.bb 
b/meta-python/recipes-devtools/python/python3-astroid_2.11.6.bb
similarity index 89%
rename from meta-python/recipes-devtools/python/python3-astroid_2.11.5.bb
rename to meta-python/recipes-devtools/python/python3-astroid_2.11.6.bb
index f11a4a13d..4f9d1af93 100644
--- a/meta-python/recipes-devtools/python/python3-astroid_2.11.5.bb
+++ b/meta-python/recipes-devtools/python/python3-astroid_2.11.6.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "LGPL-2.1-only"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=a70cf540abf41acb644ac3b621b2fad1"
 
-SRC_URI[sha256sum] = 
"f4e4ec5294c4b07ac38bab9ca5ddd3914d4bf46f9006eb5c0ae755755061044e"
+SRC_URI[sha256sum] = 
"4f933d0bf5e408b03a6feb5d23793740c27e07340605f236496cd6ce552043d6"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97624): 
https://lists.openembedded.org/g/openembedded-devel/message/97624
Mute This Topic: https://lists.openembedded.org/mt/92079093/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-charset-normalizer: upgrade 2.0.12 -> 2.1.0

2022-06-29 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Changelog:
==
Added

Output the Unicode table version when running the CLI with --version (PR 
#194)

Changed

Re-use decoded buffer for single byte character sets
Fixing some performance bottlenecks

Fixed

Workaround potential bug in cpython with Zero Width No-Break Space located 
in Arabic Presentation Forms-B, Unicode 1.1 not acknowledged as space (PR #175)
CLI default threshold aligned with the API threshold from 
@oleksandr-kuzmenko (PR #181)

Removed

Support for Python 3.5 (PR #192)

Deprecated

Use of backport unicodedata from unicodedata2 as Python is quickly catching 
up, scheduled for removal in 3.0 (PR #194)

Signed-off-by: Xu Huan 
---
 ...normalizer_2.0.12.bb => python3-charset-normalizer_2.1.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename 
meta-python/recipes-devtools/python/{python3-charset-normalizer_2.0.12.bb => 
python3-charset-normalizer_2.1.0.bb} (82%)

diff --git 
a/meta-python/recipes-devtools/python/python3-charset-normalizer_2.0.12.bb 
b/meta-python/recipes-devtools/python/python3-charset-normalizer_2.1.0.bb
similarity index 82%
rename from 
meta-python/recipes-devtools/python/python3-charset-normalizer_2.0.12.bb
rename to 
meta-python/recipes-devtools/python/python3-charset-normalizer_2.1.0.bb
index 47b8579a1..7c3d3ffc1 100644
--- a/meta-python/recipes-devtools/python/python3-charset-normalizer_2.0.12.bb
+++ b/meta-python/recipes-devtools/python/python3-charset-normalizer_2.1.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/ousret/charset_normalizer";
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=0974a390827087287db39928f7c524b5"
 
-SRC_URI[sha256sum] = 
"2857e29ff0d34db842cd7ca3230549d1a697f96ee6d3fb071cfa6c7393832597"
+SRC_URI[sha256sum] = 
"575e708016ff3a5e3681541cb9d79312c416835686d054a23accb873b254f413"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97625): 
https://lists.openembedded.org/g/openembedded-devel/message/97625
Mute This Topic: https://lists.openembedded.org/mt/92079094/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-typing: upgrade 3.0.0 -> 3.1.0

2022-06-29 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 ...{python3-eth-typing_3.0.0.bb => python3-eth-typing_3.1.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-eth-typing_3.0.0.bb => 
python3-eth-typing_3.1.0.bb} (74%)

diff --git a/meta-python/recipes-devtools/python/python3-eth-typing_3.0.0.bb 
b/meta-python/recipes-devtools/python/python3-eth-typing_3.1.0.bb
similarity index 74%
rename from meta-python/recipes-devtools/python/python3-eth-typing_3.0.0.bb
rename to meta-python/recipes-devtools/python/python3-eth-typing_3.1.0.bb
index a500d5b52..0e274c25d 100644
--- a/meta-python/recipes-devtools/python/python3-eth-typing_3.0.0.bb
+++ b/meta-python/recipes-devtools/python/python3-eth-typing_3.1.0.bb
@@ -4,6 +4,6 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=bf9691ead96f1163622689e47ce3f366"
 
-SRC_URI[sha256sum] = 
"079e4c41e98cf2635d3830a99f3cbd7b1d73d2368464d4493c002bece545184a"
+SRC_URI[sha256sum] = 
"92698268be83c75f65a028d47421f7c0aed459be76dd7ce916af166dca8bc53e"
 
 inherit pypi setuptools3
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97627): 
https://lists.openembedded.org/g/openembedded-devel/message/97627
Mute This Topic: https://lists.openembedded.org/mt/92079096/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-colorama: upgrade 0.4.4 -> 0.4.5

2022-06-29 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Changelog:

  Catch a racy ValueError that could occur on exit.
  Create README-hacking.md, for Colorama contributors.
  Tweak some README unicode characters that don't render correctly on PyPI.
  Fix some tests that were failing on some operating systems.
  Add support for Python 3.9.
  Add support for PyPy3.
  Add support for pickling with the dill module.

Signed-off-by: Xu Huan 
---
 .../{python3-colorama_0.4.4.bb => python3-colorama_0.4.5.bb}   | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-colorama_0.4.4.bb => 
python3-colorama_0.4.5.bb} (65%)

diff --git a/meta-python/recipes-devtools/python/python3-colorama_0.4.4.bb 
b/meta-python/recipes-devtools/python/python3-colorama_0.4.5.bb
similarity index 65%
rename from meta-python/recipes-devtools/python/python3-colorama_0.4.4.bb
rename to meta-python/recipes-devtools/python/python3-colorama_0.4.5.bb
index 54640de04..122ae5399 100644
--- a/meta-python/recipes-devtools/python/python3-colorama_0.4.4.bb
+++ b/meta-python/recipes-devtools/python/python3-colorama_0.4.5.bb
@@ -5,7 +5,6 @@ LIC_FILES_CHKSUM = 
"file://LICENSE.txt;md5=b4936429a56a652b84c5c01280dcaa26"
 
 inherit pypi setuptools3
 
-SRC_URI[md5sum] = "57b22f2597f63df051b69906fbf310cc"
-SRC_URI[sha256sum] = 
"5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b"
+SRC_URI[sha256sum] = 
"e6c6b4334fc50988a639d9b98aa429a0b57da6e17b9a44f0451f930b6967b7a4"
 
 BBCLASSEXTEND = "native nativesdk"
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97626): 
https://lists.openembedded.org/g/openembedded-devel/message/97626
Mute This Topic: https://lists.openembedded.org/mt/92079095/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-lxml: upgrade 4.9.0 -> 4.9.1

2022-07-07 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 .../python/{python3-lxml_4.9.0.bb => python3-lxml_4.9.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-lxml_4.9.0.bb => 
python3-lxml_4.9.1.bb} (95%)

diff --git a/meta-python/recipes-devtools/python/python3-lxml_4.9.0.bb 
b/meta-python/recipes-devtools/python/python3-lxml_4.9.1.bb
similarity index 95%
rename from meta-python/recipes-devtools/python/python3-lxml_4.9.0.bb
rename to meta-python/recipes-devtools/python/python3-lxml_4.9.1.bb
index 74c5e480a..92a30f790 100644
--- a/meta-python/recipes-devtools/python/python3-lxml_4.9.0.bb
+++ b/meta-python/recipes-devtools/python/python3-lxml_4.9.1.bb
@@ -18,7 +18,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSES.txt;md5=e4c045ebad958ead4b48008f70838403 \
 
 DEPENDS += "libxml2 libxslt"
 
-SRC_URI[sha256sum] = 
"520461c36727268a989790aef08884347cd41f2d8ae855489ccf40b50321d8d7"
+SRC_URI[sha256sum] = 
"fe749b052bb7233fe5d072fcb549221a8cb1a16725c47c37e42b0b9cb3ff2c3f"
 
 SRC_URI += "${PYPI_SRC_URI}"
 inherit pkgconfig pypi setuptools3
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97754): 
https://lists.openembedded.org/g/openembedded-devel/message/97754
Mute This Topic: https://lists.openembedded.org/mt/92224291/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-grpcio: upgrade 1.45.0 -> 1.47.0

2022-07-07 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch
refreshed for new version.

Signed-off-by: Xu Huan 
---
 ...-Do-not-mix-C-and-C-compiler-options.patch | 25 ---
 ...cio_1.45.0.bb => python3-grpcio_1.47.0.bb} |  2 +-
 2 files changed, 17 insertions(+), 10 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-grpcio_1.45.0.bb => 
python3-grpcio_1.47.0.bb} (94%)

diff --git 
a/meta-python/recipes-devtools/python/python3-grpcio/0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch
 
b/meta-python/recipes-devtools/python/python3-grpcio/0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch
index febe6c4c8..f416ca272 100644
--- 
a/meta-python/recipes-devtools/python/python3-grpcio/0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch
+++ 
b/meta-python/recipes-devtools/python/python3-grpcio/0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch
@@ -28,42 +28,49 @@ Signed-off-by: Hongxu Jia 
  src/python/grpcio/commands.py | 5 -
  2 files changed, 10 insertions(+), 4 deletions(-)
 
+diff --git a/setup.py b/setup.py
+index ec27fe4..b2d2d1a 100644
 --- a/setup.py
 +++ b/setup.py
-@@ -199,8 +199,11 @@ def check_linker_need_libatomic():
+@@ -206,8 +206,11 @@ def check_linker_need_libatomic():
  """Test if linker on system needs libatomic."""
  code_test = (b'#include \n' +
   b'int main() { return std::atomic{}; }')
--cxx = os.environ.get('CXX', 'c++')
--cpp_test = subprocess.Popen([cxx, '-x', 'c++', '-std=c++11', '-'],
+-cxx = shlex.split(os.environ.get('CXX', 'c++'))
+-cpp_test = subprocess.Popen(cxx + ['-x', 'c++', '-std=c++14', '-'],
 +cxx, cxx_args = os.environ.get('CXX').split(' ', 1) or 'c++'
 +if not cxx_args:
 +  cxx_args = "-g"
 +
-+cpp_test = subprocess.Popen([cxx, cxx_args, '-x', 'c++', '-std=c++11', 
'-'],
++cpp_test = subprocess.Popen([cxx, cxx_args, '-x', 'c++', '-std=c++14', 
'-'],
  stdin=PIPE,
  stdout=PIPE,
  stderr=PIPE)
-@@ -210,7 +213,7 @@ def check_linker_need_libatomic():
+@@ -217,7 +220,7 @@ def check_linker_need_libatomic():
  # Double-check to see if -latomic actually can solve the problem.
  # https://github.com/grpc/grpc/issues/22491
  cpp_test = subprocess.Popen(
--[cxx, '-x', 'c++', '-std=c++11', '-', '-latomic'],
-+[cxx, cxx_args, '-x', 'c++', '-std=c++11', '-', '-latomic'],
+-[cxx, '-x', 'c++', '-std=c++14', '-', '-latomic'],
++[cxx, cxx_args, '-x', 'c++', '-std=c++14', '-', '-latomic'],
  stdin=PIPE,
  stdout=PIPE,
  stderr=PIPE)
+diff --git a/src/python/grpcio/commands.py b/src/python/grpcio/commands.py
+index d93b6c7..a8c4a51 100644
 --- a/src/python/grpcio/commands.py
 +++ b/src/python/grpcio/commands.py
 @@ -228,7 +228,10 @@ class BuildExt(build_ext.build_ext):
  """
  try:
  # TODO(lidiz) Remove the generated a.out for success tests.
--cc_test = subprocess.Popen(['cc', '-x', 'c', '-std=c++11', 
'-'],
+-cc_test = subprocess.Popen(['cc', '-x', 'c', '-std=c++14', 
'-'],
 +cc_test, cc_args = os.environ.get('CC').split(' ', 1) or 'gcc'
 +if not cc_args:
 +cc_args = "-g"
-+cc_test = subprocess.Popen([cc_test, cc_args, '-x', 'c', 
'-std=c++11', '-'],
++cc_test = subprocess.Popen([cc_test, cc_args, '-x', 'c', 
'-std=c++14', '-'],
 stdin=subprocess.PIPE,
 stdout=subprocess.PIPE,
 stderr=subprocess.PIPE)
+-- 
+2.25.1
+
diff --git a/meta-python/recipes-devtools/python/python3-grpcio_1.45.0.bb 
b/meta-python/recipes-devtools/python/python3-grpcio_1.47.0.bb
similarity index 94%
rename from meta-python/recipes-devtools/python/python3-grpcio_1.45.0.bb
rename to meta-python/recipes-devtools/python/python3-grpcio_1.47.0.bb
index ca55a7f09..24c6e5344 100644
--- a/meta-python/recipes-devtools/python/python3-grpcio_1.45.0.bb
+++ b/meta-python/recipes-devtools/python/python3-grpcio_1.47.0.bb
@@ -13,7 +13,7 @@ SRC_URI:append:class-target = " 
file://ppc-boringssl-support.patch \
 
file://0001-absl-always-use-asm-sgidefs.h.patch \
 
file://abseil-ppc-fixes.patch;patchdir=third_party/abseil-cpp \
 "
-SRC_URI[sha256sum] = 
"ff2c8b965b0fc25cf281961aa46619c10900543effe3f806ef818231c40aaff3"
+SRC_URI[sha256sum] = 
"5dbba95fab9b35957b4977b8904fc1fa56b302f9051eff4d7716ebb0c087f801"
 
 RDEPENDS:${PN} = "${PYTHON_PN}-protobuf \
   ${PYTHON_PN}-setuptools \
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97755): 
https://lists.openembedded.org/g/openembedded-devel/message/97755
Mute This Topic: https://lists.op

[oe] [meta-python] [PATCH] python3-awesomeversion: upgrade 22.5.2 -> 22.6.0

2022-07-07 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Changelog:
===
Handle ValueError for possible blank values when casting to int
Remove deprecated method AwesomeVersion.ensure_strategy

Signed-off-by: Xu Huan 
---
 ...wesomeversion_22.5.2.bb => python3-awesomeversion_22.6.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-awesomeversion_22.5.2.bb 
=> python3-awesomeversion_22.6.0.bb} (82%)

diff --git 
a/meta-python/recipes-devtools/python/python3-awesomeversion_22.5.2.bb 
b/meta-python/recipes-devtools/python/python3-awesomeversion_22.6.0.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-awesomeversion_22.5.2.bb
rename to meta-python/recipes-devtools/python/python3-awesomeversion_22.6.0.bb
index c43f9ee54..cadb6f502 100644
--- a/meta-python/recipes-devtools/python/python3-awesomeversion_22.5.2.bb
+++ b/meta-python/recipes-devtools/python/python3-awesomeversion_22.6.0.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENCE.md;md5=92622b5a8e216099be741d78328bae5d"
 
-SRC_URI[sha256sum] = 
"051f89efd8ba0b157fb516bda5e1dad4d63f87e8f9c0c148930023d984fce62f"
+SRC_URI[sha256sum] = 
"38f580bfacf1c06b674bcd0f68e0c445ebb03fcd3700c6a2c588fb9313308e0f"
 
 RDEPENDS:${PN} += "python3-profile python3-logging"
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97756): 
https://lists.openembedded.org/g/openembedded-devel/message/97756
Mute This Topic: https://lists.openembedded.org/mt/92224293/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-grpcio-tools: upgrade 1.46.3 -> 1.47.0

2022-07-07 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch
refreshed for new version.

Signed-off-by: Xu Huan 
---
 ...tup.py-Do-not-mix-C-and-C-compiler-options.patch | 13 +
 ...ols_1.46.3.bb => python3-grpcio-tools_1.47.0.bb} |  2 +-
 2 files changed, 10 insertions(+), 5 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-grpcio-tools_1.46.3.bb => 
python3-grpcio-tools_1.47.0.bb} (82%)

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 4713da174..4aa11bd57 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
@@ -26,6 +26,8 @@ Signed-off-by: Khem Raj 
  setup.py | 9 ++---
  1 file changed, 6 insertions(+), 3 deletions(-)
 
+diff --git a/setup.py b/setup.py
+index cc53e79..be3bc78 100644
 --- a/setup.py
 +++ b/setup.py
 @@ -87,8 +87,11 @@ def check_linker_need_libatomic():
@@ -33,12 +35,12 @@ Signed-off-by: Khem Raj 
  code_test = (b'#include \n' +
   b'int main() { return std::atomic{}; }')
 -cxx = os.environ.get('CXX', 'c++')
--cpp_test = subprocess.Popen([cxx, '-x', 'c++', '-std=c++11', '-'],
+-cpp_test = subprocess.Popen([cxx, '-x', 'c++', '-std=c++14', '-'],
 +cxx, cxx_args = os.environ.get('CXX').split(' ', 1) or 'c++'
 +if not cxx_args:
 +  cxx_args = "-g"
 +
-+cpp_test = subprocess.Popen([cxx, cxx_args, '-x', 'c++', '-std=c++11', 
'-'],
++cpp_test = subprocess.Popen([cxx, cxx_args, '-x', 'c++', '-std=c++14', 
'-'],
  stdin=PIPE,
  stdout=PIPE,
  stderr=PIPE)
@@ -46,8 +48,11 @@ Signed-off-by: Khem Raj 
  # Double-check to see if -latomic actually can solve the problem.
  # https://github.com/grpc/grpc/issues/22491
  cpp_test = subprocess.Popen(
--[cxx, '-x', 'c++', '-std=c++11', '-', '-latomic'],
-+[cxx, cxx_args, '-x', 'c++', '-std=c++11', '-', '-latomic'],
+-[cxx, '-x', 'c++', '-std=c++14', '-', '-latomic'],
++[cxx, cxx_args, '-x', 'c++', '-std=c++14', '-', '-latomic'],
  stdin=PIPE,
  stdout=PIPE,
  stderr=PIPE)
+-- 
+2.25.1
+
diff --git a/meta-python/recipes-devtools/python/python3-grpcio-tools_1.46.3.bb 
b/meta-python/recipes-devtools/python/python3-grpcio-tools_1.47.0.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-grpcio-tools_1.46.3.bb
rename to meta-python/recipes-devtools/python/python3-grpcio-tools_1.47.0.bb
index 221a05ef1..90c8efeec 100644
--- a/meta-python/recipes-devtools/python/python3-grpcio-tools_1.46.3.bb
+++ b/meta-python/recipes-devtools/python/python3-grpcio-tools_1.47.0.bb
@@ -10,7 +10,7 @@ inherit pypi setuptools3
 DEPENDS += "${PYTHON_PN}-grpcio"
 
 SRC_URI += "file://0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch"
-SRC_URI[sha256sum] = 
"31fee436ace5b3bd950cc3a8e68d6b84de1d6dc755959db7badc3470cdf22f70"
+SRC_URI[sha256sum] = 
"f64b5378484be1d6ce59311f86174be29c8ff98d8d90f589e1c56d5acae67d3c"
 
 RDEPENDS:${PN} = "${PYTHON_PN}-grpcio"
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97757): 
https://lists.openembedded.org/g/openembedded-devel/message/97757
Mute This Topic: https://lists.openembedded.org/mt/92224232/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-autobahn: upgrade 22.5.1 -> 22.6.1

2022-07-07 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 .../{python3-autobahn_22.5.1.bb => python3-autobahn_22.6.1.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-autobahn_22.5.1.bb => 
python3-autobahn_22.6.1.bb} (86%)

diff --git a/meta-python/recipes-devtools/python/python3-autobahn_22.5.1.bb 
b/meta-python/recipes-devtools/python/python3-autobahn_22.6.1.bb
similarity index 86%
rename from meta-python/recipes-devtools/python/python3-autobahn_22.5.1.bb
rename to meta-python/recipes-devtools/python/python3-autobahn_22.6.1.bb
index 956399b56..71da18f81 100644
--- a/meta-python/recipes-devtools/python/python3-autobahn_22.5.1.bb
+++ b/meta-python/recipes-devtools/python/python3-autobahn_22.6.1.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "http://crossbar.io/autobahn";
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=97c0bda20ad1d845c6369c0e47a1cd98"
 
-SRC_URI[sha256sum] = 
"34aa5569b0b4419f8c277792c600dc2518c4930928c74e2279ef8b88d8b8a3ea"
+SRC_URI[sha256sum] = 
"fb63e946d5c2dd0df680851e84e65624a494ce87c999f2a4944e4f2d81bf4498"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97758): 
https://lists.openembedded.org/g/openembedded-devel/message/97758
Mute This Topic: https://lists.openembedded.org/mt/92224294/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-ujson: upgrade 5.3.0 -> 5.4.0

2022-07-14 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Changelog:
=
Added
--
Add support for arbitrary size integers (#548)

Fixed
-
CVE-2022-31116:
Replace wchar_t string decoding implementation with a uint32_t-based 
one (#555)
Fix handling of surrogates on decoding (#550)
CVE-2022-31117: Potential double free of buffer during string decoding
Fix memory leak on encoding errors when the buffer was resized (#549)
Integer parsing: always detect overflows (#544)
Fix handling of surrogates on encoding (#530)

Signed-off-by: Xu Huan 
---
 .../python/{python3-ujson_5.3.0.bb => python3-ujson_5.4.0.bb}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-ujson_5.3.0.bb => 
python3-ujson_5.4.0.bb} (90%)

diff --git a/meta-python/recipes-devtools/python/python3-ujson_5.3.0.bb 
b/meta-python/recipes-devtools/python/python3-ujson_5.4.0.bb
similarity index 90%
rename from meta-python/recipes-devtools/python/python3-ujson_5.3.0.bb
rename to meta-python/recipes-devtools/python/python3-ujson_5.4.0.bb
index 4c3ef82c9..15cf80e36 100644
--- a/meta-python/recipes-devtools/python/python3-ujson_5.3.0.bb
+++ b/meta-python/recipes-devtools/python/python3-ujson_5.4.0.bb
@@ -4,7 +4,7 @@ DESCRIPTION = "UltraJSON is an ultra fast JSON encoder and 
decoder written in pu
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = 
"file://PKG-INFO;beginline=8;endline=8;md5=e0039a83d8a99726b5418f0b03302d0a"
 
-SRC_URI[sha256sum] = 
"ab938777b3ac0372231ee654a7f6a13787e587b1ca268d8aa7e6fb6846e477d0"
+SRC_URI[sha256sum] = 
"6b953e09441e307504130755e5bd6b15850178d591f66292bba4608c4f7f9b00"
 
 inherit pypi ptest setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97833): 
https://lists.openembedded.org/g/openembedded-devel/message/97833
Mute This Topic: https://lists.openembedded.org/mt/92394625/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: upgrade 5.6.0 -> 5.7.0

2022-07-14 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Changelog:
=
Server refuses connections on unknown namespaces #822
Do not send ACK packet for unknown events #824
Fix Python 3.11 deprecation warning #941
Correct handling of RedisError exception #919
Update Django example
Documentation fix for async client
Update documentation of asyncio server
Fix documentation typo #948

Signed-off-by: Xu Huan 
---
 .../{python3-socketio_5.6.0.bb => python3-socketio_5.7.0.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-socketio_5.6.0.bb => 
python3-socketio_5.7.0.bb} (89%)

diff --git a/meta-python/recipes-devtools/python/python3-socketio_5.6.0.bb 
b/meta-python/recipes-devtools/python/python3-socketio_5.7.0.bb
similarity index 89%
rename from meta-python/recipes-devtools/python/python3-socketio_5.6.0.bb
rename to meta-python/recipes-devtools/python/python3-socketio_5.7.0.bb
index d76261148..54ea3c2a1 100644
--- a/meta-python/recipes-devtools/python/python3-socketio_5.6.0.bb
+++ b/meta-python/recipes-devtools/python/python3-socketio_5.7.0.bb
@@ -9,7 +9,7 @@ inherit pypi python_setuptools_build_meta
 
 PYPI_PACKAGE = "python-socketio"
 
-SRC_URI[sha256sum] = 
"f1f2eabdea500dbcb384902418cacedd98b7fe4d0fed818415ddf8af10e428fa"
+SRC_URI[sha256sum] = 
"82e3c45baa51f2180f176e5e1c4232a4452f7545a3fe3156d093fa7e5890e816"
 
 PACKAGECONFIG ?= "asyncio_client client"
 PACKAGECONFIG[asyncio_client] = ",,,${PYTHON_PN}-aiohttp 
${PYTHON_PN}-websockets"
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97832): 
https://lists.openembedded.org/g/openembedded-devel/message/97832
Mute This Topic: https://lists.openembedded.org/mt/92394624/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: upgrade 5.29.2 -> 5.30.0

2022-07-14 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 .../python/{python3-web3_5.29.2.bb => python3-web3_5.30.0.bb}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-web3_5.29.2.bb => 
python3-web3_5.30.0.bb} (84%)

diff --git a/meta-python/recipes-devtools/python/python3-web3_5.29.2.bb 
b/meta-python/recipes-devtools/python/python3-web3_5.30.0.bb
similarity index 84%
rename from meta-python/recipes-devtools/python/python3-web3_5.29.2.bb
rename to meta-python/recipes-devtools/python/python3-web3_5.30.0.bb
index c9820ebdf..a35c05e06 100644
--- a/meta-python/recipes-devtools/python/python3-web3_5.29.2.bb
+++ b/meta-python/recipes-devtools/python/python3-web3_5.30.0.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=1dc2732bdc5e50382737979791cbb3b7"
 
-SRC_URI[sha256sum] = 
"f37b01f3dc32010b176cef01c2107bc25b7cf94b63c3269d4ec52d7e5ded9a36"
+SRC_URI[sha256sum] = 
"e141d90408fd9fe5156e2ef22884a160bef8bfd55e6cecd51181af3162ea84dd"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97834): 
https://lists.openembedded.org/g/openembedded-devel/message/97834
Mute This Topic: https://lists.openembedded.org/mt/92394626/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: upgrade 0.3.3 -> 0.4.0

2022-07-14 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 .../{python3-eth-hash_0.3.3.bb => python3-eth-hash_0.4.0.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-eth-hash_0.3.3.bb => 
python3-eth-hash_0.4.0.bb} (80%)

diff --git a/meta-python/recipes-devtools/python/python3-eth-hash_0.3.3.bb 
b/meta-python/recipes-devtools/python/python3-eth-hash_0.4.0.bb
similarity index 80%
rename from meta-python/recipes-devtools/python/python3-eth-hash_0.3.3.bb
rename to meta-python/recipes-devtools/python/python3-eth-hash_0.4.0.bb
index c4e8e5e51..317bcd528 100644
--- a/meta-python/recipes-devtools/python/python3-eth-hash_0.3.3.bb
+++ b/meta-python/recipes-devtools/python/python3-eth-hash_0.4.0.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=287820ad3553117aa2f92bf84c219324"
 
-SRC_URI[sha256sum] = 
"8cde211519ff1a98b46e9057cb909f12ab62e263eb30a0a94e2f7e1f46ac67a0"
+SRC_URI[sha256sum] = 
"ae8ba88c1c2f0074e5e169bc0c08318c063054532809aa1bfc8367962b1b7088"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97835): 
https://lists.openembedded.org/g/openembedded-devel/message/97835
Mute This Topic: https://lists.openembedded.org/mt/92394627/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-fastjsonschema: upgrade 2.15.3 -> 2.16.1

2022-07-21 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Add dependence python3-json

Changelog from 2.15.3 to 2.16.1

* Fix uniqueItems when explicitly set to False
* Fix generating invalid code for some schemas using items
* Preserving full path in combination with $ref
* Improved error messages for oneOf and anyOf

Signed-off-by: Xu Huan 
---
 ...stjsonschema_2.15.3.bb => python3-fastjsonschema_2.16.1.bb} | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-fastjsonschema_2.15.3.bb 
=> python3-fastjsonschema_2.16.1.bb} (93%)

diff --git 
a/meta-python/recipes-devtools/python/python3-fastjsonschema_2.15.3.bb 
b/meta-python/recipes-devtools/python/python3-fastjsonschema_2.16.1.bb
similarity index 93%
rename from meta-python/recipes-devtools/python/python3-fastjsonschema_2.15.3.bb
rename to meta-python/recipes-devtools/python/python3-fastjsonschema_2.16.1.bb
index a2821c1177..bb6c1ee813 100644
--- a/meta-python/recipes-devtools/python/python3-fastjsonschema_2.15.3.bb
+++ b/meta-python/recipes-devtools/python/python3-fastjsonschema_2.16.1.bb
@@ -6,7 +6,7 @@ HOMEPAGE = "https://github.com/seznam/python-fastjsonschema";
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=18950e8362b69c0c617b42b8bd8e7532"
 
-SRCREV = "d03f3835da4899bdeb597a9d3f30a709e7c3254f"
+SRCREV = "98399bb4029b2d7020d8abd9770661a5b2c4f9f8"
 PYPI_SRC_URI = 
"git://github.com/horejsek/python-fastjsonschema;protocol=https;branch=master"
 
 SRC_URI += "file://run-ptest"
@@ -33,6 +33,7 @@ RDEPENDS:${PN} += "\
 python3-urllib3 \
 python3-numbers \
 python3-pickle \
+python3-json \
 "
 
 BBCLASSEXTEND = "native nativesdk"
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97925): 
https://lists.openembedded.org/g/openembedded-devel/message/97925
Mute This Topic: https://lists.openembedded.org/mt/92539973/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: upgrade 2.1.2 -> 2.1.3

2022-07-21 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Changelog:
=
-  Inline some optional imports that are only used for certain CLI commands.
-  Relax type annotation for after_request functions.
-  instance_path for namespace packages uses the path closest to the imported 
submodule.
-  Clearer error message when render_template and render_template_string are
   used outside an application context.

Signed-off-by: Xu Huan 
---
 .../python/{python3-flask_2.1.2.bb => python3-flask_2.1.3.bb}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-flask_2.1.2.bb => 
python3-flask_2.1.3.bb} (87%)

diff --git a/meta-python/recipes-devtools/python/python3-flask_2.1.2.bb 
b/meta-python/recipes-devtools/python/python3-flask_2.1.3.bb
similarity index 87%
rename from meta-python/recipes-devtools/python/python3-flask_2.1.2.bb
rename to meta-python/recipes-devtools/python/python3-flask_2.1.3.bb
index 7d290a4fe3..95abddfd95 100644
--- a/meta-python/recipes-devtools/python/python3-flask_2.1.2.bb
+++ b/meta-python/recipes-devtools/python/python3-flask_2.1.3.bb
@@ -6,7 +6,7 @@ HOMEPAGE = "https://github.com/mitsuhiko/flask/";
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=ffeffa59c90c9c4a033c7574f8f3fb75"
 
-SRC_URI[sha256sum] = 
"315ded2ddf8a6281567edb27393010fe3406188bafbfe65a3339d5787d89e477"
+SRC_URI[sha256sum] = 
"15972e5017df0575c3d6c090ba168b6db90259e620ac8d7ea813a396bad5b6cb"
 
 PYPI_PACKAGE = "Flask"
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97926): 
https://lists.openembedded.org/g/openembedded-devel/message/97926
Mute This Topic: https://lists.openembedded.org/mt/92539974/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-googleapis-common-protos: upgrade 1.56.3 -> 1.56.4

2022-07-21 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Bug Fixes
-
require python 3.7+ (#119) 

Signed-off-by: Xu Huan 
---
 ...tos_1.56.3.bb => python3-googleapis-common-protos_1.56.4.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename 
meta-python/recipes-devtools/python/{python3-googleapis-common-protos_1.56.3.bb 
=> python3-googleapis-common-protos_1.56.4.bb} (80%)

diff --git 
a/meta-python/recipes-devtools/python/python3-googleapis-common-protos_1.56.3.bb
 
b/meta-python/recipes-devtools/python/python3-googleapis-common-protos_1.56.4.bb
similarity index 80%
rename from 
meta-python/recipes-devtools/python/python3-googleapis-common-protos_1.56.3.bb
rename to 
meta-python/recipes-devtools/python/python3-googleapis-common-protos_1.56.4.bb
index 95823ea487..3f03933e06 100644
--- 
a/meta-python/recipes-devtools/python/python3-googleapis-common-protos_1.56.3.bb
+++ 
b/meta-python/recipes-devtools/python/python3-googleapis-common-protos_1.56.4.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = 
"file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7ca
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = 
"6f1369b58ed6cf3a4b7054a44ebe8d03b29c309257583a2bbdc064cd1e4a1442"
+SRC_URI[sha256sum] = 
"c25873c47279387cfdcbdafa36149887901d36202cb645a0e4f29686bf6e4417"
 
 RDEPENDS:${PN} += "\
 ${PYTHON_PN}-grpcio \
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97928): 
https://lists.openembedded.org/g/openembedded-devel/message/97928
Mute This Topic: https://lists.openembedded.org/mt/92539976/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-iso3166: upgrade 2.0.2 -> 2.1.1

2022-07-21 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Changelog from 2.0.2 to 2.1.1
==
* Move install metadata from "setup.py" to "setup.cfg"
* Add py.typed to source distribution
* "Turkey" changed to "Türkiye"

Signed-off-by: Xu Huan 
---
 .../{python3-iso3166_2.0.2.bb => python3-iso3166_2.1.1.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-iso3166_2.0.2.bb => 
python3-iso3166_2.1.1.bb} (85%)

diff --git a/meta-python/recipes-devtools/python/python3-iso3166_2.0.2.bb 
b/meta-python/recipes-devtools/python/python3-iso3166_2.1.1.bb
similarity index 85%
rename from meta-python/recipes-devtools/python/python3-iso3166_2.0.2.bb
rename to meta-python/recipes-devtools/python/python3-iso3166_2.1.1.bb
index e578b8aeff..b32cfe5956 100644
--- a/meta-python/recipes-devtools/python/python3-iso3166_2.0.2.bb
+++ b/meta-python/recipes-devtools/python/python3-iso3166_2.1.1.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://pypi.org/project/iso3166/";
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=5e2f4edc7e7408a82e4a1d05f229b695"

-SRC_URI[sha256sum] = 
"04d02cfcfc18a6f8a9a4edb4d0a55e2e4fc575626c29d702f750de415e88d372"
+SRC_URI[sha256sum] = 
"fcd551b8dda66b44e9f9e6d6bbbee3a1145a22447c0a556e5d0fb1ad1e491719"

 inherit pypi python_setuptools_build_meta ptest

--
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97929): 
https://lists.openembedded.org/g/openembedded-devel/message/97929
Mute This Topic: https://lists.openembedded.org/mt/92539988/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-kiwisolver: upgrade 1.4.3 -> 1.4.4

2022-07-21 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Changelog:
==
- fix timing in shared data release procedure PR #149
- revert use of nullpointer introduced in #142 Its use is not necessary anymore
  in 3.11.0-beta.4 and used to cause issues on some platforms (see #144 ) PR 
#145

Signed-off-by: Xu Huan 
---
 ...{python3-kiwisolver_1.4.3.bb => python3-kiwisolver_1.4.4.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-kiwisolver_1.4.3.bb => 
python3-kiwisolver_1.4.4.bb} (82%)

diff --git a/meta-python/recipes-devtools/python/python3-kiwisolver_1.4.3.bb 
b/meta-python/recipes-devtools/python/python3-kiwisolver_1.4.4.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-kiwisolver_1.4.3.bb
rename to meta-python/recipes-devtools/python/python3-kiwisolver_1.4.4.bb
index 0280afc114..acc8bd5b6f 100644
--- a/meta-python/recipes-devtools/python/python3-kiwisolver_1.4.3.bb
+++ b/meta-python/recipes-devtools/python/python3-kiwisolver_1.4.4.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/nucleic/kiwi";
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=f137eeae9cf8004d06830f6ab25b2d52"
 
-SRC_URI[sha256sum] = 
"ab8a15c2750ae8d53e31f77a94f846d0a00772240f1c12817411fa2344351f86"
+SRC_URI[sha256sum] = 
"d41997519fcba4a1e46eb4a2fe31bc12f0ff957b2b81bac28db24744f333e955"
 
 inherit pypi python_setuptools_build_meta
 
-- 
2.25.1


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

2022-07-21 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Add dependence python3-fcntl python3-logging

Changelog:
===
Added clear warning when locking in non-blocking mode without specifying
either EXCLUSIVE or SHARED mode. Fixes #77

Signed-off-by: Xu Huan 
---
 ...3-portalocker_2.4.0.bb => python3-portalocker_2.5.1.bb} | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)
 rename 
meta-python/recipes-extended/python3-portalocker/{python3-portalocker_2.4.0.bb 
=> python3-portalocker_2.5.1.bb} (61%)

diff --git 
a/meta-python/recipes-extended/python3-portalocker/python3-portalocker_2.4.0.bb 
b/meta-python/recipes-extended/python3-portalocker/python3-portalocker_2.5.1.bb
similarity index 61%
rename from 
meta-python/recipes-extended/python3-portalocker/python3-portalocker_2.4.0.bb
rename to 
meta-python/recipes-extended/python3-portalocker/python3-portalocker_2.5.1.bb
index e3b55a7eab..55037d1ebd 100644
--- 
a/meta-python/recipes-extended/python3-portalocker/python3-portalocker_2.4.0.bb
+++ 
b/meta-python/recipes-extended/python3-portalocker/python3-portalocker_2.5.1.bb
@@ -4,8 +4,13 @@ LICENSE = "PSF-2.0"
 
 LIC_FILES_CHKSUM = "file://LICENSE;md5=f9273424c73af966635d66eb53487e14"
 
-SRC_URI[sha256sum] = 
"a648ad761b8ea27370cb5915350122cd807b820d2193ed5c9cc28f163df637f4"
+SRC_URI[sha256sum] = 
"ae8e9cc2660da04bf41fa1a0eef7e300bb5e4a5869adfb1a6d8551632b559b2b"
 
 inherit pypi setuptools3
 
 BBCLASSEXTEND = "native nativesdk"
+
+RDEPENDS:${PN} += " \
+${PYTHON_PN}-fcntl \
+${PYTHON_PN}-logging \
+"
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#97943): 
https://lists.openembedded.org/g/openembedded-devel/message/97943
Mute This Topic: https://lists.openembedded.org/mt/92541290/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: upgrade 4.21.2 -> 4.21.3

2022-07-27 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 .../{python3-protobuf_4.21.2.bb => python3-protobuf_4.21.3.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-protobuf_4.21.2.bb => 
python3-protobuf_4.21.3.bb} (92%)

diff --git a/meta-python/recipes-devtools/python/python3-protobuf_4.21.2.bb 
b/meta-python/recipes-devtools/python/python3-protobuf_4.21.3.bb
similarity index 92%
rename from meta-python/recipes-devtools/python/python3-protobuf_4.21.2.bb
rename to meta-python/recipes-devtools/python/python3-protobuf_4.21.3.bb
index b8287a88e5..528f99ef20 100644
--- a/meta-python/recipes-devtools/python/python3-protobuf_4.21.2.bb
+++ b/meta-python/recipes-devtools/python/python3-protobuf_4.21.3.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = 
"file://PKG-INFO;beginline=8;endline=8;md5=53dbfa56f61b90215a
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = 
"863f65e137d9de4a76cac39ae731a19bea1c30997f512ecf0dc9348112313401"
+SRC_URI[sha256sum] = 
"9130759e719bee1e6d05ca6a3037f7eff66d7a7ff6ba25871917dc40e8f3fbb6"
 
 # http://errors.yoctoproject.org/Errors/Details/184715/
 # Can't find required file: ../src/google/protobuf/descriptor.proto
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98006): 
https://lists.openembedded.org/g/openembedded-devel/message/98006
Mute This Topic: https://lists.openembedded.org/mt/92646106/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: upgrade 0.961 -> 0.971

2022-07-27 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 .../python/{python3-mypy_0.961.bb => python3-mypy_0.971.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-mypy_0.961.bb => 
python3-mypy_0.971.bb} (86%)

diff --git a/meta-python/recipes-devtools/python/python3-mypy_0.961.bb 
b/meta-python/recipes-devtools/python/python3-mypy_0.971.bb
similarity index 86%
rename from meta-python/recipes-devtools/python/python3-mypy_0.961.bb
rename to meta-python/recipes-devtools/python/python3-mypy_0.971.bb
index 02f7cce4ca..31fcb06c9e 100644
--- a/meta-python/recipes-devtools/python/python3-mypy_0.961.bb
+++ b/meta-python/recipes-devtools/python/python3-mypy_0.971.bb
@@ -7,7 +7,7 @@ PYPI_PACKAGE = "mypy"
 
 inherit pypi python_setuptools_build_meta
 
-SRC_URI[sha256sum] = 
"f730d56cb924d371c26b8eaddeea3cc07d78ff51c521c6d04899ac6904b75492"
+SRC_URI[sha256sum] = 
"40b0f21484238269ae6a57200c807d80debc6459d444c0489a102d7c6a75fa56"
 
 BBCLASSEXTEND = "native"
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98005): 
https://lists.openembedded.org/g/openembedded-devel/message/98005
Mute This Topic: https://lists.openembedded.org/mt/92646105/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-pyaudio: upgrade 0.2.11 -> 0.2.12

2022-07-27 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

License-Update: license check file changed to LICENSE.txt

Changelog:
==
modernizing the Microsoft Windows build process
the use paFramesPerBufferUnspecified as the default frames per buffer
the patch that uses the system's preferred encoding
the patches that skip unit tests that require audio hardware
fixes and suggestions to the documentation
fixes to the website documentation

Signed-off-by: Xu Huan 
---
 .../{python3-pyaudio_0.2.11.bb => python3-pyaudio_0.2.12.bb} | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-pyaudio_0.2.11.bb => 
python3-pyaudio_0.2.12.bb} (54%)

diff --git a/meta-python/recipes-devtools/python/python3-pyaudio_0.2.11.bb 
b/meta-python/recipes-devtools/python/python3-pyaudio_0.2.12.bb
similarity index 54%
rename from meta-python/recipes-devtools/python/python3-pyaudio_0.2.11.bb
rename to meta-python/recipes-devtools/python/python3-pyaudio_0.2.12.bb
index 802ca35100..ae5fcae4ac 100644
--- a/meta-python/recipes-devtools/python/python3-pyaudio_0.2.11.bb
+++ b/meta-python/recipes-devtools/python/python3-pyaudio_0.2.12.bb
@@ -1,12 +1,11 @@
 SUMMARY = "PyAudio provides Python bindings for PortAudio, the cross-platform 
audio I/O library"
 SECTION = "devel/python"
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://README;md5=288793c2b9b05bd67abbd2a8f5d144f7"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=7c3152b432b96d6dc4a1cb35397da9ec"
 
 PYPI_PACKAGE = "PyAudio"
 
-SRC_URI[md5sum] = "7e4c88139284033f67b4336c74eda3b8"
-SRC_URI[sha256sum] = 
"93bfde30e0b64e63a46f2fd77e85c41fd51182a4a3413d9edfaf9ffaa26efb74"
+SRC_URI[sha256sum] = 
"55ddf5db72bc537bba5f5dbca3ab9f0222ee5b842bda83978eab0b7b8f60fb9e"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98007): 
https://lists.openembedded.org/g/openembedded-devel/message/98007
Mute This Topic: https://lists.openembedded.org/mt/92646107/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-imageio: upgrade 2.19.3 -> 2.19.5

2022-07-27 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Changelog:
==
Fix
-
Allow multiple reads from imopen (#830) (18e3cb6)

Other
--
Fix typos in v3 narrative docs. (#835) (d68f16b)
Point source links to github (#834) (20eef2a)
Remove outdated numpy minimum version (#833) (39947a7)

Signed-off-by: Xu Huan 
---
 .../{python3-imageio_2.19.3.bb => python3-imageio_2.19.5.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-imageio_2.19.3.bb => 
python3-imageio_2.19.5.bb} (81%)

diff --git a/meta-python/recipes-devtools/python/python3-imageio_2.19.3.bb 
b/meta-python/recipes-devtools/python/python3-imageio_2.19.5.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python3-imageio_2.19.3.bb
rename to meta-python/recipes-devtools/python/python3-imageio_2.19.5.bb
index 86229322b8..6fa43930de 100644
--- a/meta-python/recipes-devtools/python/python3-imageio_2.19.3.bb
+++ b/meta-python/recipes-devtools/python/python3-imageio_2.19.5.bb
@@ -5,7 +5,7 @@ SECTION = "devel/python"
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=24cb9a367a9e641b459a01c4d15256ba"
 
-SRC_URI[sha256sum] = 
"0c9df80e42f2ee68bea92001e7fcf612aa149910efe040eb757f5ce323250ae1"
+SRC_URI[sha256sum] = 
"eb3cd70de8be87b72ea85716b7363c700b91144589ee6b5d7b49d42998b7d185"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98003): 
https://lists.openembedded.org/g/openembedded-devel/message/98003
Mute This Topic: https://lists.openembedded.org/mt/92646103/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-lz4: upgrade 4.0.1 -> 4.0.2

2022-07-27 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Fix a memory leak when frame decompression fails

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

diff --git a/meta-python/recipes-devtools/python/python3-lz4_4.0.1.bb 
b/meta-python/recipes-devtools/python/python3-lz4_4.0.2.bb
similarity index 88%
rename from meta-python/recipes-devtools/python/python3-lz4_4.0.1.bb
rename to meta-python/recipes-devtools/python/python3-lz4_4.0.2.bb
index 0dd353bfee..ad006e61b1 100644
--- a/meta-python/recipes-devtools/python/python3-lz4_4.0.1.bb
+++ b/meta-python/recipes-devtools/python/python3-lz4_4.0.2.bb
@@ -11,7 +11,7 @@ DEPENDS += " \
 
 SRC_URI += "file://run-ptest"
 
-SRC_URI[sha256sum] = 
"efdfec2175715bf2d814ed72a7a185406f3456464eb3f343db1b87ed813e039c"
+SRC_URI[sha256sum] = 
"083b7172c2938412ae37c3a090250bfdd9e4a6e855442594f86c3608ed12729b"
 
 inherit pkgconfig pypi python_setuptools_build_meta ptest
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98004): 
https://lists.openembedded.org/g/openembedded-devel/message/98004
Mute This Topic: https://lists.openembedded.org/mt/92646104/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: upgrade 4.21.3 -> 4.21.4

2022-08-03 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 .../{python3-protobuf_4.21.3.bb => python3-protobuf_4.21.4.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-protobuf_4.21.3.bb => 
python3-protobuf_4.21.4.bb} (92%)

diff --git a/meta-python/recipes-devtools/python/python3-protobuf_4.21.3.bb 
b/meta-python/recipes-devtools/python/python3-protobuf_4.21.4.bb
similarity index 92%
rename from meta-python/recipes-devtools/python/python3-protobuf_4.21.3.bb
rename to meta-python/recipes-devtools/python/python3-protobuf_4.21.4.bb
index 528f99ef20..6ebd797987 100644
--- a/meta-python/recipes-devtools/python/python3-protobuf_4.21.3.bb
+++ b/meta-python/recipes-devtools/python/python3-protobuf_4.21.4.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = 
"file://PKG-INFO;beginline=8;endline=8;md5=53dbfa56f61b90215a
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = 
"9130759e719bee1e6d05ca6a3037f7eff66d7a7ff6ba25871917dc40e8f3fbb6"
+SRC_URI[sha256sum] = 
"5783dc0d6edae631145337fabb18503b4f77274f94cdd22a4b26b9fe5029e718"
 
 # http://errors.yoctoproject.org/Errors/Details/184715/
 # Can't find required file: ../src/google/protobuf/descriptor.proto
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98124): 
https://lists.openembedded.org/g/openembedded-devel/message/98124
Mute This Topic: https://lists.openembedded.org/mt/92808586/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-pycodestyle: upgrade 2.8.0 -> 2.9.0

2022-08-03 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Changelog:
==
E221, E222, E223, E224: add support for := operator. PR #1032.
Drop python 2.7 / 3.5.
E262: consider non-breaking spaces (\xa0) as whitespace. PR #1035.
Improve performance of _is_binary_operator. PR #1052.
E275: requires whitespace around keywords. PR #1063.
Add support for python 3.11. PR #1070.

Signed-off-by: Xu Huan 
---
 ...ython3-pycodestyle_2.8.0.bb => python3-pycodestyle_2.9.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pycodestyle_2.8.0.bb => 
python3-pycodestyle_2.9.0.bb} (76%)

diff --git a/meta-python/recipes-devtools/python/python3-pycodestyle_2.8.0.bb 
b/meta-python/recipes-devtools/python/python3-pycodestyle_2.9.0.bb
similarity index 76%
rename from meta-python/recipes-devtools/python/python3-pycodestyle_2.8.0.bb
rename to meta-python/recipes-devtools/python/python3-pycodestyle_2.9.0.bb
index 31720e2aab..b383828f0f 100644
--- a/meta-python/recipes-devtools/python/python3-pycodestyle_2.8.0.bb
+++ b/meta-python/recipes-devtools/python/python3-pycodestyle_2.9.0.bb
@@ -4,7 +4,7 @@ LICENSE = "MIT"
 SECTION = "devel/python"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=a8546d0e77f416fb05a26acd89c8b3bd"
 
-SRC_URI[sha256sum] = 
"eddd5847ef438ea1c7870ca7eb78a9d47ce0cdb4851a5523949f2601d0cbbe7f"
+SRC_URI[sha256sum] = 
"beaba44501f89d785be791c9462553f06958a221d166c64e1f107320f839acc2"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98125): 
https://lists.openembedded.org/g/openembedded-devel/message/98125
Mute This Topic: https://lists.openembedded.org/mt/92808587/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-pyflakes: upgrade 2.4.0 -> 2.5.0

2022-08-03 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Changelog:
===
Drop support for EOL python 2.7 / 3.4 / 3.5
Ignore __all__ when not directly assigned
Handle TypeAlias annotations as aliases (PEP 613)
Assignment expressions (:=) target outer scope in comprehensions
Add support for new python 3.11 syntax
Unify output so it is always filename:lineno:col: message
Properly report SyntaxError from stdin in python < 3.9
Fix offsets of "SyntaxError"s in pypy

Signed-off-by: Xu Huan 
---
 .../{python3-pyflakes_2.4.0.bb => python3-pyflakes_2.5.0.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pyflakes_2.4.0.bb => 
python3-pyflakes_2.5.0.bb} (73%)

diff --git a/meta-python/recipes-devtools/python/python3-pyflakes_2.4.0.bb 
b/meta-python/recipes-devtools/python/python3-pyflakes_2.5.0.bb
similarity index 73%
rename from meta-python/recipes-devtools/python/python3-pyflakes_2.4.0.bb
rename to meta-python/recipes-devtools/python/python3-pyflakes_2.5.0.bb
index 827ff0b292..5c75ea48aa 100644
--- a/meta-python/recipes-devtools/python/python3-pyflakes_2.4.0.bb
+++ b/meta-python/recipes-devtools/python/python3-pyflakes_2.5.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/PyCQA/pyflakes";
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=690c2d09203dc9e07c4083fc45ea981f"
 
-SRC_URI[sha256sum] = 
"05a85c2872edf37a4ed30b0cce2f6093e1d0581f8c19d7393122da7e25b2b24c"
+SRC_URI[sha256sum] = 
"491feb020dca48ccc562a8c0cbe8df07ee13078df59813b83959cbdada312ea3"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98126): 
https://lists.openembedded.org/g/openembedded-devel/message/98126
Mute This Topic: https://lists.openembedded.org/mt/92808588/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-pythonping: upgrade 1.1.1 -> 1.1.2

2022-08-03 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 ...{python3-pythonping_1.1.1.bb => python3-pythonping_1.1.2.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pythonping_1.1.1.bb => 
python3-pythonping_1.1.2.bb} (77%)

diff --git a/meta-python/recipes-devtools/python/python3-pythonping_1.1.1.bb 
b/meta-python/recipes-devtools/python/python3-pythonping_1.1.2.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python3-pythonping_1.1.1.bb
rename to meta-python/recipes-devtools/python/python3-pythonping_1.1.2.bb
index 75cef501f3..3fce07b43d 100644
--- a/meta-python/recipes-devtools/python/python3-pythonping_1.1.1.bb
+++ b/meta-python/recipes-devtools/python/python3-pythonping_1.1.2.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = 
"file://setup.py;beginline=12;endline=12;md5=2d33c00f47720c7e35e1fdb4b9fab027"
 
-SRC_URI[sha256sum] = 
"0022f6cbe52762e9d596316e3bccb8a3b794355a49c0d788f7228d90f9461cfc"
+SRC_URI[sha256sum] = 
"7f783688268334fbfdec31b3a3b105a347844bd621de48d63f38e6ecfaf14af2"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98127): 
https://lists.openembedded.org/g/openembedded-devel/message/98127
Mute This Topic: https://lists.openembedded.org/mt/92808589/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-regex: upgrade 2022.7.24 -> 2022.7.25

2022-08-03 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 .../{python3-regex_2022.7.24.bb => python3-regex_2022.7.25.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-regex_2022.7.24.bb => 
python3-regex_2022.7.25.bb} (79%)

diff --git a/meta-python/recipes-devtools/python/python3-regex_2022.7.24.bb 
b/meta-python/recipes-devtools/python/python3-regex_2022.7.25.bb
similarity index 79%
rename from meta-python/recipes-devtools/python/python3-regex_2022.7.24.bb
rename to meta-python/recipes-devtools/python/python3-regex_2022.7.25.bb
index 897aa76c35..437563b1c0 100644
--- a/meta-python/recipes-devtools/python/python3-regex_2022.7.24.bb
+++ b/meta-python/recipes-devtools/python/python3-regex_2022.7.25.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSE.txt;md5=7b5751ddd6b643203c31ff873051d069"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = 
"fa8a4bc81b15f49c57ede3fd636786c6619179661acf2430fcc387d75bf28d33"
+SRC_URI[sha256sum] = 
"bd0883e86964cd61360ffc36dbebbc49b928e92a306f886eab02c11dfde5b7aa"
 
 RDEPENDS:${PN} += " \
python3-stringold \
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98128): 
https://lists.openembedded.org/g/openembedded-devel/message/98128
Mute This Topic: https://lists.openembedded.org/mt/92808590/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-werkzeug: upgrade 2.2.0 -> 2.2.1

2022-08-04 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Changelog:
=
-Fix router so that /path/ will match a rule /path if strict slashes mode is
 disabled for the rule. #2467
-Fix router so that partial part matches are not allowed i.e. /2df does not
 match /. #2470
-Fix router static part weighting, so that simpler routes are matched before
 more complex ones. #2471
-Restore ValidationError to be importable from werkzeug.routing. #2465

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

diff --git a/meta-python/recipes-devtools/python/python3-werkzeug_2.2.0.bb 
b/meta-python/recipes-devtools/python/python3-werkzeug_2.2.1.bb
similarity index 93%
rename from meta-python/recipes-devtools/python/python3-werkzeug_2.2.0.bb
rename to meta-python/recipes-devtools/python/python3-werkzeug_2.2.1.bb
index c9e3b0de40..d73235d253 100644
--- a/meta-python/recipes-devtools/python/python3-werkzeug_2.2.0.bb
+++ b/meta-python/recipes-devtools/python/python3-werkzeug_2.2.1.bb
@@ -12,7 +12,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSE.rst;md5=5dc88300786f1c214c1e9827a5229462"
 
 PYPI_PACKAGE = "Werkzeug"
 
-SRC_URI[sha256sum] = 
"fe8bcdcef40275ed915fc734c2527a39d705b57a716d4f09e790296abbd16a7f"
+SRC_URI[sha256sum] = 
"4d7013ef96fd197d1cdeb03e066c6c5a491ccb44758a5b2b91137319383e5a5a"
 
 inherit pypi setuptools3
 
-- 
2.25.1


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

2022-08-16 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Changelog:
==
Features

add integration tests for pluggable auth
support for configurable token lifetime
support for configurable token lifetime

Bug Fixes
-
async certificate decoding
Async system tests were not unwrapping async_generators
Fix IDTokenCredentials update bug
make expiration_time optional in response schema
refactor credential subclass parameters

Signed-off-by: Xu Huan 
---
 ...thon3-google-auth_2.9.1.bb => python3-google-auth_2.10.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-google-auth_2.9.1.bb => 
python3-google-auth_2.10.0.bb} (87%)

diff --git a/meta-python/recipes-devtools/python/python3-google-auth_2.9.1.bb 
b/meta-python/recipes-devtools/python/python3-google-auth_2.10.0.bb
similarity index 87%
rename from meta-python/recipes-devtools/python/python3-google-auth_2.9.1.bb
rename to meta-python/recipes-devtools/python/python3-google-auth_2.10.0.bb
index e884abac1b..610a4d7dd8 100644
--- a/meta-python/recipes-devtools/python/python3-google-auth_2.9.1.bb
+++ b/meta-python/recipes-devtools/python/python3-google-auth_2.10.0.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = 
"14292fa3429f2bb1e99862554cde1ee730d6840ebae067814d3d15d8549c0888"
+SRC_URI[sha256sum] = 
"7904dbd44b745c7323fef29565adee2fe7ff48473e2d94443aced40b0404a395"
 
 RDEPENDS:${PN} += "\
 ${PYTHON_PN}-asyncio \
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98265): 
https://lists.openembedded.org/g/openembedded-devel/message/98265
Mute This Topic: https://lists.openembedded.org/mt/93073437/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-imageio: upgrade 2.21.0 -> 2.21.1

2022-08-16 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Fix
--
Seeking to last frame caused EoF in pyav

Signed-off-by: Xu Huan 
---
 .../{python3-imageio_2.21.0.bb => python3-imageio_2.21.1.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-imageio_2.21.0.bb => 
python3-imageio_2.21.1.bb} (81%)

diff --git a/meta-python/recipes-devtools/python/python3-imageio_2.21.0.bb 
b/meta-python/recipes-devtools/python/python3-imageio_2.21.1.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python3-imageio_2.21.0.bb
rename to meta-python/recipes-devtools/python/python3-imageio_2.21.1.bb
index 21a8c4f37a..5c792a5db8 100644
--- a/meta-python/recipes-devtools/python/python3-imageio_2.21.0.bb
+++ b/meta-python/recipes-devtools/python/python3-imageio_2.21.1.bb
@@ -5,7 +5,7 @@ SECTION = "devel/python"
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=24cb9a367a9e641b459a01c4d15256ba"
 
-SRC_URI[sha256sum] = 
"a5d19c3c787d5b4920356d85999a24fcff32be8941950dc2409ec1513993952d"
+SRC_URI[sha256sum] = 
"5f0278217c1cf99d90ef855dab948f93d9fce0ab7ab388e13a597c706b7ec4e5"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98267): 
https://lists.openembedded.org/g/openembedded-devel/message/98267
Mute This Topic: https://lists.openembedded.org/mt/93073439/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-hexbytes: upgrade 0.2.2 -> 0.2.3

2022-08-16 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 .../{python3-hexbytes_0.2.2.bb => python3-hexbytes_0.2.3.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-hexbytes_0.2.2.bb => 
python3-hexbytes_0.2.3.bb} (75%)

diff --git a/meta-python/recipes-devtools/python/python3-hexbytes_0.2.2.bb 
b/meta-python/recipes-devtools/python/python3-hexbytes_0.2.3.bb
similarity index 75%
rename from meta-python/recipes-devtools/python/python3-hexbytes_0.2.2.bb
rename to meta-python/recipes-devtools/python/python3-hexbytes_0.2.3.bb
index 89792d9806..534cc88e1d 100644
--- a/meta-python/recipes-devtools/python/python3-hexbytes_0.2.2.bb
+++ b/meta-python/recipes-devtools/python/python3-hexbytes_0.2.3.bb
@@ -4,6 +4,6 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=287820ad3553117aa2f92bf84c219324"
 
-SRC_URI[sha256sum] = 
"a5881304d186e87578fb263a85317c808cf130e1d4b3d37d30142ab0f7898d03"
+SRC_URI[sha256sum] = 
"199daa356aeb14879ee9c43de637acaaa1409febf15151a0e3dbcf1f8df128c0"
 
 inherit pypi setuptools3
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98266): 
https://lists.openembedded.org/g/openembedded-devel/message/98266
Mute This Topic: https://lists.openembedded.org/mt/93073438/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-humanize: upgrade 4.2.3 -> 4.3.0

2022-08-16 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Changelog:
=
Added
---
Add Greek translation
Polish: Added thousand, fixed big numbers

Fixed
--
Fix intword for negative numbers

Signed-off-by: Xu Huan 
---
 .../{python3-humanize_4.2.3.bb => python3-humanize_4.3.0.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-humanize_4.2.3.bb => 
python3-humanize_4.3.0.bb} (82%)

diff --git a/meta-python/recipes-devtools/python/python3-humanize_4.2.3.bb 
b/meta-python/recipes-devtools/python/python3-humanize_4.3.0.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-humanize_4.2.3.bb
rename to meta-python/recipes-devtools/python/python3-humanize_4.3.0.bb
index 2e4822cad8..55386b6907 100644
--- a/meta-python/recipes-devtools/python/python3-humanize_4.2.3.bb
+++ b/meta-python/recipes-devtools/python/python3-humanize_4.3.0.bb
@@ -5,7 +5,7 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENCE;md5=4ecc42519e84f6f3e23529464df7bd1d"
 
-SRC_URI[sha256sum] = 
"2bc1fdd831cd00557d3010abdd84d3e41b4a96703a3eaf6c24ee290b26b75a44"
+SRC_URI[sha256sum] = 
"0dfac79fe8c1c0c734c14177b07b857bad9ae30dd50daa0a14e2c3d8054ee0c4"
 
 inherit pypi python_setuptools_build_meta
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98268): 
https://lists.openembedded.org/g/openembedded-devel/message/98268
Mute This Topic: https://lists.openembedded.org/mt/93073440/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-nocaselist: upgrade 1.0.5 -> 1.0.6

2022-08-16 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 ...{python3-nocaselist_1.0.5.bb => python3-nocaselist_1.0.6.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-nocaselist_1.0.5.bb => 
python3-nocaselist_1.0.6.bb} (72%)

diff --git a/meta-python/recipes-devtools/python/python3-nocaselist_1.0.5.bb 
b/meta-python/recipes-devtools/python/python3-nocaselist_1.0.6.bb
similarity index 72%
rename from meta-python/recipes-devtools/python/python3-nocaselist_1.0.5.bb
rename to meta-python/recipes-devtools/python/python3-nocaselist_1.0.6.bb
index 22b8825801..9e6842961d 100644
--- a/meta-python/recipes-devtools/python/python3-nocaselist_1.0.5.bb
+++ b/meta-python/recipes-devtools/python/python3-nocaselist_1.0.6.bb
@@ -3,6 +3,6 @@ HOMEPAGE = "https://nocaselist.readthedocs.io/en/latest/";
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
 
-SRC_URI[sha256sum] = 
"e1c12ca2ae9d345b34948f2c8f60e3894619e2be2ed28b4ecc5e7f1dea117d1d"
+SRC_URI[sha256sum] = 
"48f067f8cb841245f34d03120bc1ba9900f13b19cb51bcc6c7bee017f7c874da"
 
 inherit pypi setuptools3
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98269): 
https://lists.openembedded.org/g/openembedded-devel/message/98269
Mute This Topic: https://lists.openembedded.org/mt/93073441/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: upgrade 4.21.4 -> 4.21.5

2022-08-16 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 .../{python3-protobuf_4.21.4.bb => python3-protobuf_4.21.5.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-protobuf_4.21.4.bb => 
python3-protobuf_4.21.5.bb} (92%)

diff --git a/meta-python/recipes-devtools/python/python3-protobuf_4.21.4.bb 
b/meta-python/recipes-devtools/python/python3-protobuf_4.21.5.bb
similarity index 92%
rename from meta-python/recipes-devtools/python/python3-protobuf_4.21.4.bb
rename to meta-python/recipes-devtools/python/python3-protobuf_4.21.5.bb
index 6ebd797987..537683000d 100644
--- a/meta-python/recipes-devtools/python/python3-protobuf_4.21.4.bb
+++ b/meta-python/recipes-devtools/python/python3-protobuf_4.21.5.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = 
"file://PKG-INFO;beginline=8;endline=8;md5=53dbfa56f61b90215a
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = 
"5783dc0d6edae631145337fabb18503b4f77274f94cdd22a4b26b9fe5029e718"
+SRC_URI[sha256sum] = 
"eb1106e87e095628e96884a877a51cdb90087106ee693925ec0a300468a9be3a"
 
 # http://errors.yoctoproject.org/Errors/Details/184715/
 # Can't find required file: ../src/google/protobuf/descriptor.proto
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98270): 
https://lists.openembedded.org/g/openembedded-devel/message/98270
Mute This Topic: https://lists.openembedded.org/mt/93073474/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-pycares: upgrade 4.2.1 -> 4.2.2

2022-08-16 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Changelog:
  Build macOS arm64 and musllinux wheels

Signed-off-by: Xu Huan 
---
 .../{python3-pycares_4.2.1.bb => python3-pycares_4.2.2.bb} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-pycares_4.2.1.bb => 
python3-pycares_4.2.2.bb} (78%)

diff --git a/meta-python/recipes-devtools/python/python3-pycares_4.2.1.bb 
b/meta-python/recipes-devtools/python/python3-pycares_4.2.2.bb
similarity index 78%
rename from meta-python/recipes-devtools/python/python3-pycares_4.2.1.bb
rename to meta-python/recipes-devtools/python/python3-pycares_4.2.2.bb
index dacaaa7878..d2de4d3b74 100644
--- a/meta-python/recipes-devtools/python/python3-pycares_4.2.1.bb
+++ b/meta-python/recipes-devtools/python/python3-pycares_4.2.2.bb
@@ -6,8 +6,7 @@ HOMEPAGE = "https://github.com/saghul/pycares";
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=b1538fcaea82ebf2313ed648b96c69b1"
 
-SRC_URI[md5sum] = "92fa9622ba42cb895d598910722e80b5"
-SRC_URI[sha256sum] = 
"735b4f75fd0f595c4e9184da18cd87737f46bc81a64ea41f4edce2b6b68d46d2"
+SRC_URI[sha256sum] = 
"e1f57a8004370080694bd6fb969a1ffc9171a59c6824d54f791c1b2e4d298385"
 
 PYPI_PACKAGE = "pycares"
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98271): 
https://lists.openembedded.org/g/openembedded-devel/message/98271
Mute This Topic: https://lists.openembedded.org/mt/93073476/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-fastjsonschema: upgrade 2.16.1 -> 2.16.2

2022-08-25 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Changelog:
===
Fix compile to code tests to run them on any platform

Signed-off-by: Xu Huan 
---
 ...astjsonschema_2.16.1.bb => python3-fastjsonschema_2.16.2.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-fastjsonschema_2.16.1.bb 
=> python3-fastjsonschema_2.16.2.bb} (94%)

diff --git 
a/meta-python/recipes-devtools/python/python3-fastjsonschema_2.16.1.bb 
b/meta-python/recipes-devtools/python/python3-fastjsonschema_2.16.2.bb
similarity index 94%
rename from meta-python/recipes-devtools/python/python3-fastjsonschema_2.16.1.bb
rename to meta-python/recipes-devtools/python/python3-fastjsonschema_2.16.2.bb
index bb6c1ee813..a1d3392e19 100644
--- a/meta-python/recipes-devtools/python/python3-fastjsonschema_2.16.1.bb
+++ b/meta-python/recipes-devtools/python/python3-fastjsonschema_2.16.2.bb
@@ -6,7 +6,7 @@ HOMEPAGE = "https://github.com/seznam/python-fastjsonschema";
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=18950e8362b69c0c617b42b8bd8e7532"
 
-SRCREV = "98399bb4029b2d7020d8abd9770661a5b2c4f9f8"
+SRCREV = "1aad747bab39d4b1201ab99917463f4079955ecd"
 PYPI_SRC_URI = 
"git://github.com/horejsek/python-fastjsonschema;protocol=https;branch=master"
 
 SRC_URI += "file://run-ptest"
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98455): 
https://lists.openembedded.org/g/openembedded-devel/message/98455
Mute This Topic: https://lists.openembedded.org/mt/93263024/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: upgrade 2.56.0 -> 2.57.0

2022-08-25 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 ...ent_2.56.0.bb => python3-google-api-python-client_2.57.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename 
meta-python/recipes-devtools/python/{python3-google-api-python-client_2.56.0.bb 
=> python3-google-api-python-client_2.57.0.bb} (86%)

diff --git 
a/meta-python/recipes-devtools/python/python3-google-api-python-client_2.56.0.bb
 
b/meta-python/recipes-devtools/python/python3-google-api-python-client_2.57.0.bb
similarity index 86%
rename from 
meta-python/recipes-devtools/python/python3-google-api-python-client_2.56.0.bb
rename to 
meta-python/recipes-devtools/python/python3-google-api-python-client_2.57.0.bb
index b8f7ff97b2..fdbad826bd 100644
--- 
a/meta-python/recipes-devtools/python/python3-google-api-python-client_2.56.0.bb
+++ 
b/meta-python/recipes-devtools/python/python3-google-api-python-client_2.57.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] = 
"70d33203a4752bf4144b33fc689e997a2b5ed42c696d57149e4b3f5082682436"
+SRC_URI[sha256sum] = 
"ec4412545b0c5978a833bb03993a46121ad2c700f32af0cba23f8439b3f5fb02"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98456): 
https://lists.openembedded.org/g/openembedded-devel/message/98456
Mute This Topic: https://lists.openembedded.org/mt/93263029/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: upgrade 2.10.0 -> 2.11.0

2022-08-25 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Changelog:
=
Features
-
add integration tests for configurable token lifespan (#1103) (124bae6)

Bug Fixes

Async certificate retrieving (#1101) (05f125d)

Signed-off-by: Xu Huan 
---
 ...hon3-google-auth_2.10.0.bb => python3-google-auth_2.11.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-google-auth_2.10.0.bb => 
python3-google-auth_2.11.0.bb} (87%)

diff --git a/meta-python/recipes-devtools/python/python3-google-auth_2.10.0.bb 
b/meta-python/recipes-devtools/python/python3-google-auth_2.11.0.bb
similarity index 87%
rename from meta-python/recipes-devtools/python/python3-google-auth_2.10.0.bb
rename to meta-python/recipes-devtools/python/python3-google-auth_2.11.0.bb
index 610a4d7dd8..d1698f5931 100644
--- a/meta-python/recipes-devtools/python/python3-google-auth_2.10.0.bb
+++ b/meta-python/recipes-devtools/python/python3-google-auth_2.11.0.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = 
"7904dbd44b745c7323fef29565adee2fe7ff48473e2d94443aced40b0404a395"
+SRC_URI[sha256sum] = 
"ed65ecf9f681832298e29328e1ef0a3676e3732b2e56f41532d45f70a22de0fb"
 
 RDEPENDS:${PN} += "\
 ${PYTHON_PN}-asyncio \
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98458): 
https://lists.openembedded.org/g/openembedded-devel/message/98458
Mute This Topic: https://lists.openembedded.org/mt/93263031/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-grpcio-tools: upgrade 1.47.0 -> 1.48.0

2022-08-25 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 ...n3-grpcio-tools_1.47.0.bb => python3-grpcio-tools_1.48.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-grpcio-tools_1.47.0.bb => 
python3-grpcio-tools_1.48.0.bb} (82%)

diff --git a/meta-python/recipes-devtools/python/python3-grpcio-tools_1.47.0.bb 
b/meta-python/recipes-devtools/python/python3-grpcio-tools_1.48.0.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-grpcio-tools_1.47.0.bb
rename to meta-python/recipes-devtools/python/python3-grpcio-tools_1.48.0.bb
index 90c8efeeca..fcd2840701 100644
--- a/meta-python/recipes-devtools/python/python3-grpcio-tools_1.47.0.bb
+++ b/meta-python/recipes-devtools/python/python3-grpcio-tools_1.48.0.bb
@@ -10,7 +10,7 @@ inherit pypi setuptools3
 DEPENDS += "${PYTHON_PN}-grpcio"
 
 SRC_URI += "file://0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch"
-SRC_URI[sha256sum] = 
"f64b5378484be1d6ce59311f86174be29c8ff98d8d90f589e1c56d5acae67d3c"
+SRC_URI[sha256sum] = 
"dd7f757608e7dfae4ab2e7fc1e8951e6eb9526ebdc7ce90597329bc4c408c9a1"
 
 RDEPENDS:${PN} = "${PYTHON_PN}-grpcio"
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98457): 
https://lists.openembedded.org/g/openembedded-devel/message/98457
Mute This Topic: https://lists.openembedded.org/mt/93263030/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-grpcio: upgrade 1.47.0 -> 1.48.0

2022-08-25 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

0001-absl-always-use-asm-sgidefs.h.patch
removed since it's included in 1.48.0

abseil-ppc-fixes.patch
refreshed for new version

License-Update:
  Add the contents of Mozilla Public License to license file.

Signed-off-by: Xu Huan 
---
 .../0001-absl-always-use-asm-sgidefs.h.patch  | 33 ---
 .../python3-grpcio/abseil-ppc-fixes.patch | 28 +---
 ...cio_1.47.0.bb => python3-grpcio_1.48.0.bb} |  5 ++-
 3 files changed, 25 insertions(+), 41 deletions(-)
 delete mode 100644 
meta-python/recipes-devtools/python/python3-grpcio/0001-absl-always-use-asm-sgidefs.h.patch
 rename meta-python/recipes-devtools/python/{python3-grpcio_1.47.0.bb => 
python3-grpcio_1.48.0.bb} (83%)

diff --git 
a/meta-python/recipes-devtools/python/python3-grpcio/0001-absl-always-use-asm-sgidefs.h.patch
 
b/meta-python/recipes-devtools/python/python3-grpcio/0001-absl-always-use-asm-sgidefs.h.patch
deleted file mode 100644
index be516ca508..00
--- 
a/meta-python/recipes-devtools/python/python3-grpcio/0001-absl-always-use-asm-sgidefs.h.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 8f21fdfb83b0fa844a9f1f03a86a9ca46642d85e Mon Sep 17 00:00:00 2001
-From: Khem Raj 
-Date: Thu, 9 Apr 2020 13:06:27 -0700
-Subject: [PATCH 1/2] absl: always use 
-
-Fixes mips/musl build, since sgidefs.h is not present on all C libraries
-but on linux asm/sgidefs.h is there and contains same definitions, using
-that makes it portable.
-
-Upstream-Status: Pending
-
-Signed-off-by: Khem Raj 

- third_party/abseil-cpp/absl/base/internal/direct_mmap.h | 6 +-
- 1 file changed, 1 insertion(+), 5 deletions(-)
-
 a/third_party/abseil-cpp/absl/base/internal/direct_mmap.h
-+++ b/third_party/abseil-cpp/absl/base/internal/direct_mmap.h
-@@ -41,13 +41,9 @@
- 
- #ifdef __mips__
- // Include definitions of the ABI currently in use.
--#ifdef __BIONIC__
--// Android doesn't have sgidefs.h, but does have asm/sgidefs.h, which has the
-+// bionic/musl C libs don't have sgidefs.h, but do have asm/sgidefs.h, which 
has the
- // definitions we need.
- #include 
--#else
--#include 
--#endif  // __BIONIC__
- #endif  // __mips__
- 
- // SYS_mmap and SYS_munmap are not defined in Android.
diff --git 
a/meta-python/recipes-devtools/python/python3-grpcio/abseil-ppc-fixes.patch 
b/meta-python/recipes-devtools/python/python3-grpcio/abseil-ppc-fixes.patch
index e8048fe940..304e389936 100644
--- a/meta-python/recipes-devtools/python/python3-grpcio/abseil-ppc-fixes.patch
+++ b/meta-python/recipes-devtools/python/python3-grpcio/abseil-ppc-fixes.patch
@@ -8,7 +8,16 @@ An all-in-one patch that fixes several issues:
 Sourced from void linux
 
 Signed-off-by: Khem Raj 
+Signed-off-by: Xu Huan 
+---
+ absl/base/internal/unscaledcycleclock.cc| 4 ++--
+ absl/base/internal/unscaledcycleclock.h | 3 ++-
+ absl/debugging/internal/examine_stack.cc| 8 +++-
+ absl/debugging/internal/stacktrace_config.h | 2 +-
+ 4 files changed, 12 insertions(+), 5 deletions(-)
 
+diff --git a/absl/base/internal/unscaledcycleclock.cc 
b/absl/base/internal/unscaledcycleclock.cc
+index b1c396c..d62bfd6 100644
 --- a/absl/base/internal/unscaledcycleclock.cc
 +++ b/absl/base/internal/unscaledcycleclock.cc
 @@ -20,7 +20,7 @@
@@ -20,7 +29,7 @@ Signed-off-by: Khem Raj 
  #ifdef __GLIBC__
  #include 
  #elif defined(__FreeBSD__)
-@@ -59,7 +59,7 @@ double UnscaledCycleClock::Frequency() {
+@@ -58,7 +58,7 @@ double UnscaledCycleClock::Frequency() {
return base_internal::NominalCPUFrequency();
  }
  
@@ -29,6 +38,8 @@ Signed-off-by: Khem Raj 
  
  int64_t UnscaledCycleClock::Now() {
  #ifdef __GLIBC__
+diff --git a/absl/base/internal/unscaledcycleclock.h 
b/absl/base/internal/unscaledcycleclock.h
+index 2cbeae3..683a5ef 100644
 --- a/absl/base/internal/unscaledcycleclock.h
 +++ b/absl/base/internal/unscaledcycleclock.h
 @@ -46,7 +46,8 @@
@@ -38,12 +49,14 @@ Signed-off-by: Khem Raj 
 -defined(__powerpc__) || defined(__ppc__) || defined(__riscv) || \
 +((defined(__powerpc__) || defined(__ppc__)) && defined(__GLIBC__)) || \
 +defined(__riscv) || \
- defined(_M_IX86) || defined(_M_X64)
+ defined(_M_IX86) || (defined(_M_X64) && !defined(_M_ARM64EC))
  #define ABSL_HAVE_UNSCALED_CYCLECLOCK_IMPLEMENTATION 1
  #else
+diff --git a/absl/debugging/internal/examine_stack.cc 
b/absl/debugging/internal/examine_stack.cc
+index 5bdd341..a784e0d 100644
 --- a/absl/debugging/internal/examine_stack.cc
 +++ b/absl/debugging/internal/examine_stack.cc
-@@ -27,6 +27,10 @@
+@@ -33,6 +33,10 @@
  #include 
  #include 
  
@@ -54,7 +67,7 @@ Signed-off-by: Khem Raj 
  #include "absl/base/attributes.h"
  #include "absl/base/internal/raw_logging.h"
  #include "absl/base/macros.h"
-@@ -63,8 +67,10 @@ void* GetProgramCounter(void* vuc) {
+@@ -174,8 +178,10 @@ void* GetProgramCounter(void* const vuc) {
  return reinterpret_cast(context->uc_mcontext.pc);
  #elif defined(__powerpc64__)
  return reinterpret_cast(context->uc_mcontext.gp_regs[32]);
@@ -66,9 +79,1

[oe] [meta-python] [PATCH] python3-marshmallow: upgrade 3.17.0 -> 3.17.1

2022-09-01 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 ...hon3-marshmallow_3.17.0.bb => python3-marshmallow_3.17.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-marshmallow_3.17.0.bb => 
python3-marshmallow_3.17.1.bb} (94%)

diff --git a/meta-python/recipes-devtools/python/python3-marshmallow_3.17.0.bb 
b/meta-python/recipes-devtools/python/python3-marshmallow_3.17.1.bb
similarity index 94%
rename from meta-python/recipes-devtools/python/python3-marshmallow_3.17.0.bb
rename to meta-python/recipes-devtools/python/python3-marshmallow_3.17.1.bb
index f2f5281d6c..a7f4020cfc 100644
--- a/meta-python/recipes-devtools/python/python3-marshmallow_3.17.0.bb
+++ b/meta-python/recipes-devtools/python/python3-marshmallow_3.17.1.bb
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "\
 
 SRC_URI = 
"git://github.com/marshmallow-code/marshmallow.git;protocol=https;branch=dev"
 
-SRCREV = "4a6c08d53f181195c78b505abe155b2f35cbc0c1"
+SRCREV = "22e063270fea6ef6669425f53216e47eb8b04cc5"
 
 S = "${WORKDIR}/git"
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98590): 
https://lists.openembedded.org/g/openembedded-devel/message/98590
Mute This Topic: https://lists.openembedded.org/mt/93410507/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: upgrade 1.1.2 -> 1.1.3

2022-09-01 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 .../{python3-greenlet_1.1.2.bb => python3-greenlet_1.1.3.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-greenlet_1.1.2.bb => 
python3-greenlet_1.1.3.bb} (78%)

diff --git a/meta-python/recipes-devtools/python/python3-greenlet_1.1.2.bb 
b/meta-python/recipes-devtools/python/python3-greenlet_1.1.3.bb
similarity index 78%
rename from meta-python/recipes-devtools/python/python3-greenlet_1.1.2.bb
rename to meta-python/recipes-devtools/python/python3-greenlet_1.1.3.bb
index d14987b1fe..5175212a71 100644
--- a/meta-python/recipes-devtools/python/python3-greenlet_1.1.2.bb
+++ b/meta-python/recipes-devtools/python/python3-greenlet_1.1.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] = 
"e30f5ea4ae2346e62cedde8794a56858a67b878dd79f7df76a0767e356b1744a"
+SRC_URI[sha256sum] = 
"bcb6c6dd1d6be6d38d6db283747d07fda089ff8c559a835236560a4410340455"
 
 inherit pypi setuptools3
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98589): 
https://lists.openembedded.org/g/openembedded-devel/message/98589
Mute This Topic: https://lists.openembedded.org/mt/93410506/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-pyudev: upgrade 0.23.2 -> 0.24.0

2022-09-01 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 .../{python3-pyudev_0.23.2.bb => python3-pyudev_0.24.0.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pyudev_0.23.2.bb => 
python3-pyudev_0.24.0.bb} (84%)

diff --git a/meta-python/recipes-devtools/python/python3-pyudev_0.23.2.bb 
b/meta-python/recipes-devtools/python/python3-pyudev_0.24.0.bb
similarity index 84%
rename from meta-python/recipes-devtools/python/python3-pyudev_0.23.2.bb
rename to meta-python/recipes-devtools/python/python3-pyudev_0.24.0.bb
index 4c4c959eba..84154641ff 100644
--- a/meta-python/recipes-devtools/python/python3-pyudev_0.23.2.bb
+++ b/meta-python/recipes-devtools/python/python3-pyudev_0.24.0.bb
@@ -3,7 +3,7 @@ SUMMARY = "A libudev binding"
 LICENSE = "LGPL-2.1-or-later"
 LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343"
 
-SRC_URI[sha256sum] = 
"32ae3585b320a51bc283e0a04000fd8a25599edb44541e2f5034f6afee5d15cc"
+SRC_URI[sha256sum] = 
"b2a3afe1c99ea751f8296652557eac559874da2a1b1ec0625178706ec5a345f3"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98591): 
https://lists.openembedded.org/g/openembedded-devel/message/98591
Mute This Topic: https://lists.openembedded.org/mt/93410508/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-websocket-client: upgrade 1.3.3 -> 1.4.0

2022-09-01 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 ...socket-client_1.3.3.bb => python3-websocket-client_1.4.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-websocket-client_1.3.3.bb 
=> python3-websocket-client_1.4.0.bb} (84%)

diff --git 
a/meta-python/recipes-devtools/python/python3-websocket-client_1.3.3.bb 
b/meta-python/recipes-devtools/python/python3-websocket-client_1.4.0.bb
similarity index 84%
rename from 
meta-python/recipes-devtools/python/python3-websocket-client_1.3.3.bb
rename to meta-python/recipes-devtools/python/python3-websocket-client_1.4.0.bb
index 9c3ff02e9f..ad43fab24d 100644
--- a/meta-python/recipes-devtools/python/python3-websocket-client_1.3.3.bb
+++ b/meta-python/recipes-devtools/python/python3-websocket-client_1.4.0.bb
@@ -7,7 +7,7 @@ HOMEPAGE = 
"https://github.com/websocket-client/websocket-client";
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=b969e9612325987c823fc0737063ebc8"
 
-SRC_URI[sha256sum] = 
"d58c5f284d6a9bf8379dab423259fe8f85b70d5fa5d2916d5791a84594b122b1"
+SRC_URI[sha256sum] = 
"79d730c9776f4f112f33b10b78c8d209f23b5806d9a783e296b3813fc5add2f1"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98592): 
https://lists.openembedded.org/g/openembedded-devel/message/98592
Mute This Topic: https://lists.openembedded.org/mt/93410509/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: upgrade 2.0.2 -> 2.0.3

2022-09-01 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 .../{python3-xmlschema_2.0.2.bb => python3-xmlschema_2.0.3.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-xmlschema_2.0.2.bb => 
python3-xmlschema_2.0.3.bb} (84%)

diff --git a/meta-python/recipes-devtools/python/python3-xmlschema_2.0.2.bb 
b/meta-python/recipes-devtools/python/python3-xmlschema_2.0.3.bb
similarity index 84%
rename from meta-python/recipes-devtools/python/python3-xmlschema_2.0.2.bb
rename to meta-python/recipes-devtools/python/python3-xmlschema_2.0.3.bb
index eb9d4f511b..5c1c60f601 100644
--- a/meta-python/recipes-devtools/python/python3-xmlschema_2.0.2.bb
+++ b/meta-python/recipes-devtools/python/python3-xmlschema_2.0.3.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/sissaschool/xmlschema";
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=47489cb18c469474afeb259ed1d4832f"
 
-SRC_URI[sha256sum] = 
"ce915696b3a819fe0f986824517b9281dbd5626fd2d213363fab40f34edf05bd"
+SRC_URI[sha256sum] = 
"adef8cb1e6572fe095b56ae4243b3618f842b32adba98e1b1bab0bd014f2234e"
 
 PYPI_PACKAGE = "xmlschema"
 inherit pypi setuptools3
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98593): 
https://lists.openembedded.org/g/openembedded-devel/message/98593
Mute This Topic: https://lists.openembedded.org/mt/93410511/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-aiofiles: upgrade 0.7.0 -> 0.8.0

2021-12-06 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 .../{python3-aiofiles_0.7.0.bb => python3-aiofiles_0.8.0.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-aiofiles_0.7.0.bb => 
python3-aiofiles_0.8.0.bb} (80%)

diff --git a/meta-python/recipes-devtools/python/python3-aiofiles_0.7.0.bb 
b/meta-python/recipes-devtools/python/python3-aiofiles_0.8.0.bb
similarity index 80%
rename from meta-python/recipes-devtools/python/python3-aiofiles_0.7.0.bb
rename to meta-python/recipes-devtools/python/python3-aiofiles_0.8.0.bb
index 55e5545373..f7a75ec1ef 100644
--- a/meta-python/recipes-devtools/python/python3-aiofiles_0.7.0.bb
+++ b/meta-python/recipes-devtools/python/python3-aiofiles_0.8.0.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "https://github.com/aio-libs/aiohttp";
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=d2794c0df5b907fdace235a619d80314"
 
-SRC_URI[sha256sum] = 
"a1c4fc9b2ff81568c83e21392a82f344ea9d23da906e4f6a52662764545e19d4"
+SRC_URI[sha256sum] = 
"8334f23235248a3b2e83b2c3a78a22674f39969b96397126cc93664d9a901e59"
 
 PYPI_PACKAGE = "aiofiles"
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94220): 
https://lists.openembedded.org/g/openembedded-devel/message/94220
Mute This Topic: https://lists.openembedded.org/mt/87558697/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-bitstruct: upgrade 8.11.1 -> 8.12.1

2021-12-06 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 ...{python3-bitstruct_8.11.1.bb => python3-bitstruct_8.12.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-bitstruct_8.11.1.bb => 
python3-bitstruct_8.12.1.bb} (79%)

diff --git a/meta-python/recipes-devtools/python/python3-bitstruct_8.11.1.bb 
b/meta-python/recipes-devtools/python/python3-bitstruct_8.12.1.bb
similarity index 79%
rename from meta-python/recipes-devtools/python/python3-bitstruct_8.11.1.bb
rename to meta-python/recipes-devtools/python/python3-bitstruct_8.12.1.bb
index 49b31971a6..f53f84f83e 100644
--- a/meta-python/recipes-devtools/python/python3-bitstruct_8.11.1.bb
+++ b/meta-python/recipes-devtools/python/python3-bitstruct_8.12.1.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/eerimoq/bitstruct";
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=d9aa4ec07de78abae21c490c9ffe61bd"
 
-SRC_URI[sha256sum] = 
"4e7b8769c0f09fee403d0a5f637f8b575b191a79a92e140811aa109ce7461f0c"
+SRC_URI[sha256sum] = 
"45b2b932ce6681f5c6ce8cba39abdd423b579b0568c76fa48b1e09c88368ede7"
 
 PYPI_PACKAGE = "bitstruct"
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94224): 
https://lists.openembedded.org/g/openembedded-devel/message/94224
Mute This Topic: https://lists.openembedded.org/mt/87560311/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-cmd2: upgrade 2.3.1 -> 2.3.3

2021-12-07 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

changelog:
=
Enhancements:
Added clearer exception handling to BorderedTable and SimpleTable.

Signed-off-by: Xu Huan 
---
 .../python/{python3-cmd2_2.3.1.bb => python3-cmd2_2.3.3.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-cmd2_2.3.1.bb => 
python3-cmd2_2.3.3.bb} (86%)

diff --git a/meta-python/recipes-devtools/python/python3-cmd2_2.3.1.bb 
b/meta-python/recipes-devtools/python/python3-cmd2_2.3.3.bb
similarity index 86%
rename from meta-python/recipes-devtools/python/python3-cmd2_2.3.1.bb
rename to meta-python/recipes-devtools/python/python3-cmd2_2.3.3.bb
index 8167d20504..d8a4fb5f23 100644
--- a/meta-python/recipes-devtools/python/python3-cmd2_2.3.1.bb
+++ b/meta-python/recipes-devtools/python/python3-cmd2_2.3.3.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=4c527bcb481233ebcb803de975f42701"
 
 DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
 
-SRC_URI[sha256sum] = 
"44f9d93bbcd90c6dda70e73db722d6b27b551d98bef28bd82fd14ccbe88d18ea"
+SRC_URI[sha256sum] = 
"750d7eb04d55c3bc2a413e191bc177856f388102de47d11f2210a35266543640"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94244): 
https://lists.openembedded.org/g/openembedded-devel/message/94244
Mute This Topic: https://lists.openembedded.org/mt/87580971/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-configparser: upgrade 5.1.0 -> 5.2.0

2021-12-07 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

changelog:
Project now uses PEP 420 (native) namespace package for backports package.

Signed-off-by: Xu Huan 
---
 ...hon3-configparser_5.1.0.bb => python3-configparser_5.2.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-configparser_5.1.0.bb => 
python3-configparser_5.2.0.bb} (85%)

diff --git a/meta-python/recipes-devtools/python/python3-configparser_5.1.0.bb 
b/meta-python/recipes-devtools/python/python3-configparser_5.2.0.bb
similarity index 85%
rename from meta-python/recipes-devtools/python/python3-configparser_5.1.0.bb
rename to meta-python/recipes-devtools/python/python3-configparser_5.2.0.bb
index de9fe2be17..e629331330 100644
--- a/meta-python/recipes-devtools/python/python3-configparser_5.1.0.bb
+++ b/meta-python/recipes-devtools/python/python3-configparser_5.2.0.bb
@@ -5,7 +5,7 @@ LICENSE = "MIT"
 
 LIC_FILES_CHKSUM = 
"file://PKG-INFO;beginline=10;endline=10;md5=23f9ad5cad3d8cc0336e2a5d8a87e1fa"
 
-SRC_URI[sha256sum] = 
"202b9679a809b703720afa2eacaad4c6c2d63196070e5d9edc953c0489dfd536"
+SRC_URI[sha256sum] = 
"1b35798fdf1713f1c3139016cfcbc461f09edbf099d1fb658d4b7479fcaa3daa"
 
 DEPENDS += "${PYTHON_PN}-setuptools-scm-native ${PYTHON_PN}-toml-native"
 inherit pypi setuptools3
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94246): 
https://lists.openembedded.org/g/openembedded-devel/message/94246
Mute This Topic: https://lists.openembedded.org/mt/87581710/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-rsa: upgrade 4.7.2 -> 4.8

2021-12-07 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

changelog:


- Switch to Poetry for dependency and release management.
- Compatibility with Python 3.10.
- Chain exceptions using raise new_exception from old_exception (#157)
- Added marker file for PEP 561. This will allow type checking tools
in dependent projects to use type annotations from Python-RSA (#136).
- Use the Chinese Remainder Theorem when decrypting with a private key.
This makes decryption 2-4x faster (#163).

Signed-off-by: Xu Huan 
---
 .../python/{python3-rsa_4.7.2.bb => python3-rsa_4.8.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-rsa_4.7.2.bb => 
python3-rsa_4.8.bb} (92%)

diff --git a/meta-python/recipes-devtools/python/python3-rsa_4.7.2.bb 
b/meta-python/recipes-devtools/python/python3-rsa_4.8.bb
similarity index 92%
rename from meta-python/recipes-devtools/python/python3-rsa_4.7.2.bb
rename to meta-python/recipes-devtools/python/python3-rsa_4.8.bb
index 4a9b9a9d3f..d0a18f92e5 100644
--- a/meta-python/recipes-devtools/python/python3-rsa_4.7.2.bb
+++ b/meta-python/recipes-devtools/python/python3-rsa_4.8.bb
@@ -4,7 +4,7 @@ AUTHOR = "Sybren A. Stuvel"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=c403f6882d4f97a9cd927df987d55634"
 
-SRC_URI[sha256sum] = 
"9d689e6ca1b3038bc82bf8d23e944b6b6037bc02301a574935b2dd946e0353b9"
+SRC_URI[sha256sum] = 
"5c6bd9dc7a543b7fe4304a631f8a8a3b674e2bbfc49c2ae96200cdbe55df6b17"
 
 inherit pypi setuptools3 update-alternatives
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94248): 
https://lists.openembedded.org/g/openembedded-devel/message/94248
Mute This Topic: https://lists.openembedded.org/mt/87583601/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-gnupg: upgrade 0.4.7 ->0.4.8

2021-12-15 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 .../python/{python3-gnupg_0.4.7.bb => python3-gnupg_0.4.8.bb}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-gnupg_0.4.7.bb => 
python3-gnupg_0.4.8.bb} (77%)

diff --git a/meta-python/recipes-devtools/python/python3-gnupg_0.4.7.bb 
b/meta-python/recipes-devtools/python/python3-gnupg_0.4.8.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python3-gnupg_0.4.7.bb
rename to meta-python/recipes-devtools/python/python3-gnupg_0.4.8.bb
index 83ee57926e..b42225b620 100644
--- a/meta-python/recipes-devtools/python/python3-gnupg_0.4.7.bb
+++ b/meta-python/recipes-devtools/python/python3-gnupg_0.4.8.bb
@@ -4,7 +4,7 @@ LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=b0b7ac63b60085b23fa9f7e1951daa1d"
 
 PYPI_PACKAGE = "python-gnupg"
-SRC_URI[sha256sum] = 
"2061f56b1942c29b92727bf9aecbd3cea3893acc9cccbdc7eb4604285efe4ac7"
+SRC_URI[sha256sum] = 
"b64de1ae5cedf872b437201a566fa2c62ce0c95ea2e30177eb53aee1258507d7"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94365): 
https://lists.openembedded.org/g/openembedded-devel/message/94365
Mute This Topic: https://lists.openembedded.org/mt/87741079/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-django: upgrade 2.2.24 -> 2.2.25

2021-12-15 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

changelog:


Django 2.2.25 fixes a security issue with severity "low" in 2.2.24.

CVE-2021-44420: Potential bypass of an upstream access control based on URL 
paths
=

HTTP requests for URLs with trailing newlines could bypass an upstream access
control based on URL paths.

Signed-off-by: Xu Huan 
---
 .../{python3-django_2.2.24.bb => python3-django_2.2.25.bb} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-django_2.2.24.bb => 
python3-django_2.2.25.bb} (60%)

diff --git a/meta-python/recipes-devtools/python/python3-django_2.2.24.bb 
b/meta-python/recipes-devtools/python/python3-django_2.2.25.bb
similarity index 60%
rename from meta-python/recipes-devtools/python/python3-django_2.2.24.bb
rename to meta-python/recipes-devtools/python/python3-django_2.2.25.bb
index 982362bdd1..86d21fed06 100644
--- a/meta-python/recipes-devtools/python/python3-django_2.2.24.bb
+++ b/meta-python/recipes-devtools/python/python3-django_2.2.25.bb
@@ -5,8 +5,7 @@ UPSTREAM_CHECK_REGEX = 
"/${PYPI_PACKAGE}/(?P(2\.2\.\d*)+)/"
 
 inherit setuptools3
 
-SRC_URI[md5sum] = "ebf3bbb7716a7b11029e860475b9a122"
-SRC_URI[sha256sum] = 
"3339ff0e03dee13045aef6ae7b523edff75b6d726adf7a7a48f53d5a501f7db7"
+SRC_URI[sha256sum] = 
"b1e65eaf371347d4b13eb7e061b09786c973061de95390c327c85c1e2aa2349c"
 
 RDEPENDS:${PN} += "\
 ${PYTHON_PN}-sqlparse \
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94366): 
https://lists.openembedded.org/g/openembedded-devel/message/94366
Mute This Topic: https://lists.openembedded.org/mt/87741085/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-graphviz: upgrade 0.19 -> 0.19.1

2021-12-15 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

changelog:
=
-Fix undecoded CalledProcessError.stdout and .stderr when .pipe()
call with an encoding different from self.encoding fails.
-Fix missing project root conftest.py in source distribution.
-Extend examples/graphviz-escapes.ipynb.
-Improve test coverage.
-Increase build scripts verbosity.

Signed-off-by: Xu Huan 
---
 .../{python3-graphviz_0.19.bb => python3-graphviz_0.19.1.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-graphviz_0.19.bb => 
python3-graphviz_0.19.1.bb} (79%)

diff --git a/meta-python/recipes-devtools/python/python3-graphviz_0.19.bb 
b/meta-python/recipes-devtools/python/python3-graphviz_0.19.1.bb
similarity index 79%
rename from meta-python/recipes-devtools/python/python3-graphviz_0.19.bb
rename to meta-python/recipes-devtools/python/python3-graphviz_0.19.1.bb
index 593cdb4e53..f1246b4b21 100644
--- a/meta-python/recipes-devtools/python/python3-graphviz_0.19.bb
+++ b/meta-python/recipes-devtools/python/python3-graphviz_0.19.1.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://graphviz.readthedocs.io/en/stable/";
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=87cd8818b7e63c6a9c580034e80d7521"
 
-SRC_URI[sha256sum] = 
"b42554a1c47f24a9473b7f4e380d17b228586a067c97ea69d5354d6074be8dfd"
+SRC_URI[sha256sum] = 
"09ed0cde452d015fe77c4845a210eb642f28d245f5bc250d4b97808cb8f49078"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94367): 
https://lists.openembedded.org/g/openembedded-devel/message/94367
Mute This Topic: https://lists.openembedded.org/mt/87741091/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-gmpy2: upgrade 2.1.0rc1 -> 2.1.1

2021-12-20 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 .../{python3-gmpy2_2.1.0rc1.bb => python3-gmpy2_2.1.1.bb}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-gmpy2_2.1.0rc1.bb => 
python3-gmpy2_2.1.1.bb} (82%)

diff --git a/meta-python/recipes-devtools/python/python3-gmpy2_2.1.0rc1.bb 
b/meta-python/recipes-devtools/python/python3-gmpy2_2.1.1.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-gmpy2_2.1.0rc1.bb
rename to meta-python/recipes-devtools/python/python3-gmpy2_2.1.1.bb
index d3150d665d..fc8db9509b 100644
--- a/meta-python/recipes-devtools/python/python3-gmpy2_2.1.0rc1.bb
+++ b/meta-python/recipes-devtools/python/python3-gmpy2_2.1.1.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
 DEPENDS += "gmp mpfr libmpc"
 
 PYPI_PACKAGE = "gmpy2"
-SRC_URI[sha256sum] = 
"86cb6d8e5837560c32c706d48d6ed25676be6b3c79e6aa5d245965b9e99231b9"
+SRC_URI[sha256sum] = 
"346f442063c8212c347e330519905591626ea6fa31aa6ccd299ecd5654e1086f"
 
 inherit pypi setuptools3 python3native
 BBCLASSEXTEND = "native nativesdk"
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94458): 
https://lists.openembedded.org/g/openembedded-devel/message/94458
Mute This Topic: https://lists.openembedded.org/mt/87871215/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-grpcio: upgrade 1.41.1 -> 1.43.0

2021-12-20 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

License-Update:Add BSD-3-Clause License

changlog:


Core:
This release contains refinements, improvements, and bug fixes, 
with highlights listed below.
Remove redundant work serializer usage in c-ares windows code. (#28016)
Support RDS updates on the server. (#27851)
Use WorkSerializer in XdsClient to propagate updates in a synchronized
manner. (#27975)
Support Custom Post-handshake Verification in TlsCredentials. (#25631)
Reintroduce the EventEngine default factory. (#27920)
Assert Android API >= v21. (#27943)
Add support for abstract unix domain sockets. (#27906)

Python:
[Aio] Validate the input type for set_trailing_metadata and abort. (#27958)

Signed-off-by: Xu Huan 
---
 .../{python3-grpcio_1.41.1.bb => python3-grpcio_1.43.0.bb}  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-grpcio_1.41.1.bb => 
python3-grpcio_1.43.0.bb} (86%)

diff --git a/meta-python/recipes-devtools/python/python3-grpcio_1.41.1.bb 
b/meta-python/recipes-devtools/python/python3-grpcio_1.43.0.bb
similarity index 86%
rename from meta-python/recipes-devtools/python/python3-grpcio_1.41.1.bb
rename to meta-python/recipes-devtools/python/python3-grpcio_1.43.0.bb
index a882f6e031..6d76967bee 100644
--- a/meta-python/recipes-devtools/python/python3-grpcio_1.41.1.bb
+++ b/meta-python/recipes-devtools/python/python3-grpcio_1.43.0.bb
@@ -1,8 +1,8 @@
 DESCRIPTION = "Google gRPC"
 HOMEPAGE = "http://www.grpc.io/";
 SECTION = "devel/python"
-LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
+LICENSE = "Apache-2.0 & BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=6e4cf218112648d22420a84281b68b88"
 
 DEPENDS += "${PYTHON_PN}-protobuf"
 
@@ -12,7 +12,7 @@ SRC_URI:append:class-target = " 
file://ppc-boringssl-support.patch \
 file://mips_bigendian.patch \
 
file://0001-absl-always-use-asm-sgidefs.h.patch \
 "
-SRC_URI[sha256sum] = 
"9b751271b029432a526a4970dc9b70d93eb6f0963b6a841b574f780b72651969"
+SRC_URI[sha256sum] = 
"735d9a437c262ab039d02defddcb9f8f545d7009ae61c0114e19dda3843febe5"
 
 RDEPENDS:${PN} = "${PYTHON_PN}-protobuf \
   ${PYTHON_PN}-setuptools \
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94457): 
https://lists.openembedded.org/g/openembedded-devel/message/94457
Mute This Topic: https://lists.openembedded.org/mt/87871214/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-msgpack: upgrade 1.0.2 -> 1.0.3

2021-12-21 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

changelog:

Release Date: 2021-11-24 JST

Fix Docstring (#459)
Fix error formatting (#463)
Improve error message about strict_map_key (#485)

Signed-off-by: Xu Huan 
---
 .../{python3-msgpack_1.0.2.bb => python3-msgpack_1.0.3.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-msgpack_1.0.2.bb => 
python3-msgpack_1.0.3.bb} (84%)

diff --git a/meta-python/recipes-devtools/python/python3-msgpack_1.0.2.bb 
b/meta-python/recipes-devtools/python/python3-msgpack_1.0.3.bb
similarity index 84%
rename from meta-python/recipes-devtools/python/python3-msgpack_1.0.2.bb
rename to meta-python/recipes-devtools/python/python3-msgpack_1.0.3.bb
index 19c9caa406..92999255b6 100644
--- a/meta-python/recipes-devtools/python/python3-msgpack_1.0.2.bb
+++ b/meta-python/recipes-devtools/python/python3-msgpack_1.0.3.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=cd9523181d9d4fbf7ffca52eaa2a5751"
 PYPI_PACKAGE = "msgpack"
 inherit pypi setuptools3 ptest
 
-SRC_URI[sha256sum] = 
"fae04496f5bc150eefad4e9571d1a76c55d021325dcd484ce45065ebbdd00984"
+SRC_URI[sha256sum] = 
"51fdc7fb93615286428ee7758cecc2f374d5ff363bdd884c7ea622a7a327a81e"
 
 RDEPENDS:${PN}:class-target += "\
 ${PYTHON_PN}-io \
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94480): 
https://lists.openembedded.org/g/openembedded-devel/message/94480
Mute This Topic: https://lists.openembedded.org/mt/87894017/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-huey: upgrade 2.4.1 -> 2.4.2

2021-12-21 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

changelog:
=
Fix implementation of schedule-pop Lua script so it works with Redis cluster.
Ensure Django connections are closed before and after (previously they were
only closed after) task execution with db_task() and db_periodic_task().
Allow additional lock-names to be specified when flushing locks.

Signed-off-by: Xu Huan 
---
 .../python/{python3-huey_2.4.1.bb => python3-huey_2.4.2.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-huey_2.4.1.bb => 
python3-huey_2.4.2.bb} (78%)

diff --git a/meta-python/recipes-devtools/python/python3-huey_2.4.1.bb 
b/meta-python/recipes-devtools/python/python3-huey_2.4.2.bb
similarity index 78%
rename from meta-python/recipes-devtools/python/python3-huey_2.4.1.bb
rename to meta-python/recipes-devtools/python/python3-huey_2.4.2.bb
index 64bd8880ec..865e9ff772 100644
--- a/meta-python/recipes-devtools/python/python3-huey_2.4.1.bb
+++ b/meta-python/recipes-devtools/python/python3-huey_2.4.2.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=5cac039fcc82f01141cc170b48f315d4"
 
 PYPI_PACKAGE = "huey"
 
-SRC_URI[sha256sum] = 
"bd55e90746cec16e7a61d6dc60d4591c74cba59000dca96c387a4d4eee1395f6"
+SRC_URI[sha256sum] = 
"20683288e27e851f786b38465784c5d0e7e2b93b8791cc826898f9555a320cb4"
 
 RDEPENDS:${PN} += " \
python3-datetime \
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94479): 
https://lists.openembedded.org/g/openembedded-devel/message/94479
Mute This Topic: https://lists.openembedded.org/mt/87894015/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-h5py: upgrade 3.5.0 -> 3.6.0

2021-12-21 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 .../python/{python3-h5py_3.5.0.bb => python3-h5py_3.6.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-h5py_3.5.0.bb => 
python3-h5py_3.6.0.bb} (90%)

diff --git a/meta-python/recipes-devtools/python/python3-h5py_3.5.0.bb 
b/meta-python/recipes-devtools/python/python3-h5py_3.6.0.bb
similarity index 90%
rename from meta-python/recipes-devtools/python/python3-h5py_3.5.0.bb
rename to meta-python/recipes-devtools/python/python3-h5py_3.6.0.bb
index aad2f91777..5b0510f710 100644
--- a/meta-python/recipes-devtools/python/python3-h5py_3.5.0.bb
+++ b/meta-python/recipes-devtools/python/python3-h5py_3.6.0.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=113251d71fb0384712c719b567261c5c"
 
-SRC_URI[sha256sum] = 
"77c7be4001ac7d3ed80477de5b6942501d782de1bbe4886597bdfec2a7ab821f"
+SRC_URI[sha256sum] = 
"8752d2814a92aba4e2b2a5922d2782d0029102d99caaf3c201a566bc0b40db29"
 
 SRC_URI:append = " \
file://0001-setup_build.py-avoid-absolute-path.patch \
-- 
2.25.1


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



[PATCH 1/2] [oe] [meta-python] [PATCH] python3-wheel: upgrade 0.37.0 -> 0.37.1

2021-12-28 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

changelog:
===
Fixed wheel pack duplicating the WHEEL contents when the build number has
changed (#415)
Fixed parsing of file names containing commas in RECORD

Signed-off-by: Xu Huan 
---
 .../python/{python3-wheel_0.37.0.bb => python3-wheel_0.37.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-wheel_0.37.0.bb => 
python3-wheel_0.37.1.bb} (77%)

diff --git a/meta-python/recipes-devtools/python/python3-wheel_0.37.0.bb 
b/meta-python/recipes-devtools/python/python3-wheel_0.37.1.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python3-wheel_0.37.0.bb
rename to meta-python/recipes-devtools/python/python3-wheel_0.37.1.bb
index aae4903d01..6c7a31db9e 100644
--- a/meta-python/recipes-devtools/python/python3-wheel_0.37.0.bb
+++ b/meta-python/recipes-devtools/python/python3-wheel_0.37.1.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = 
"file://PKG-INFO;beginline=10;endline=10;md5=8227180126797a0148f94f483f3e1489"
 
-SRC_URI[sha256sum] = 
"e2ef7239991699e3355d54f8e968a21bb940a1dbf34a4d226741e64462516fad"
+SRC_URI[sha256sum] = 
"e9a504e793efbca1b8e0e9cb979a249cf4a0a7b5b8c9e8b65a5e39d49529c1c4"
 
 inherit pypi setuptools3
 
-- 
2.25.1


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



[PATCH 2/2] [oe] [meta-python] [PATCH] python3-smpplib: upgrade 2.2.0 -> 2.2.1

2021-12-28 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 .../{python3-smpplib_2.2.0.bb => python3-smpplib_2.2.1.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-smpplib_2.2.0.bb => 
python3-smpplib_2.2.1.bb} (87%)

diff --git a/meta-python/recipes-devtools/python/python3-smpplib_2.2.0.bb 
b/meta-python/recipes-devtools/python/python3-smpplib_2.2.1.bb
similarity index 87%
rename from meta-python/recipes-devtools/python/python3-smpplib_2.2.0.bb
rename to meta-python/recipes-devtools/python/python3-smpplib_2.2.1.bb
index 00a4939147..7401e039bf 100644
--- a/meta-python/recipes-devtools/python/python3-smpplib_2.2.0.bb
+++ b/meta-python/recipes-devtools/python/python3-smpplib_2.2.1.bb
@@ -4,7 +4,7 @@ LICENSE = "GPLv3.0"
 LIC_FILES_CHKSUM = "file://README.md;md5=8b4e2ac8cf248f7b991784f88b630852"
 
 PYPI_PACKAGE = "smpplib"
-SRC_URI[sha256sum] = 
"3d513178a35573f66faac4ef2127c4bd73307ddb463d145b17b013cf709d9ddd"
+SRC_URI[sha256sum] = 
"c0b01947b47e404f42ccb59e906b6e4eb507963c971d59b44350db0f29c76166"
 
 inherit pypi setuptools3 ptest
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94547): 
https://lists.openembedded.org/g/openembedded-devel/message/94547
Mute This Topic: https://lists.openembedded.org/mt/87992798/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-sqlalchemy: upgrade 1.4.28 ->1.4.29

2021-12-28 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 ...ython3-sqlalchemy_1.4.28.bb => python3-sqlalchemy_1.4.29.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-sqlalchemy_1.4.28.bb => 
python3-sqlalchemy_1.4.29.bb} (87%)

diff --git a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.28.bb 
b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.29.bb
similarity index 87%
rename from meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.28.bb
rename to meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.29.bb
index 7a19f96f6e..b535951c00 100644
--- a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.28.bb
+++ b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.29.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "http://www.sqlalchemy.org/";
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=3359ed561ac16aaa25b6c6eff84df595"
 
-SRC_URI[sha256sum] = 
"7fdb7b775fb0739d3e71461509f978beb788935bc0aa9e47df14837cb33e5226"
+SRC_URI[sha256sum] = 
"fa2bad14e1474ba649cfc969c1d2ec915dd3e79677f346bbfe08e93ef9020b39"
 
 PYPI_PACKAGE = "SQLAlchemy"
 inherit pypi setuptools3
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94561): 
https://lists.openembedded.org/g/openembedded-devel/message/94561
Mute This Topic: https://lists.openembedded.org/mt/88011223/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-pyro4: upgrade 4.81 -> 4.82

2021-12-29 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

changelog:
===
fixed @expose issue on static method/classmethod due to API change in Python 
3.10
switched from travis to using github actions for CI builds and tests
Python 3.10 is now included in the unit test runs

Signed-off-by: Xu Huan 
---
 .../{python3-pyro4_4.81.bb => python3-pyro4_4.82.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-connectivity/python-pyro4/{python3-pyro4_4.81.bb => 
python3-pyro4_4.82.bb} (76%)

diff --git 
a/meta-python/recipes-connectivity/python-pyro4/python3-pyro4_4.81.bb 
b/meta-python/recipes-connectivity/python-pyro4/python3-pyro4_4.82.bb
similarity index 76%
rename from meta-python/recipes-connectivity/python-pyro4/python3-pyro4_4.81.bb
rename to meta-python/recipes-connectivity/python-pyro4/python3-pyro4_4.82.bb
index b05ce34f84..a7ed75f018 100644
--- a/meta-python/recipes-connectivity/python-pyro4/python3-pyro4_4.81.bb
+++ b/meta-python/recipes-connectivity/python-pyro4/python3-pyro4_4.82.bb
@@ -2,7 +2,7 @@ SUMMARY = "Python Remote Objects"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=cd13dafd4eeb0802bb6efea6b4a4bdbc"
 
-SRC_URI[sha256sum] = 
"e130da06478b813173b959f7013d134865e07fbf58cc5f1a2598f99479cdac5f"
+SRC_URI[sha256sum] = 
"511f5b0804e92dd77dc33adf9c947787e3f9e9c5a96b12162f0557a7c4ce21fb"
 
 PYPI_PACKAGE = "Pyro4"
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94562): 
https://lists.openembedded.org/g/openembedded-devel/message/94562
Mute This Topic: https://lists.openembedded.org/mt/88011454/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-meh: upgrade 0.50 -> 0.50.1

2022-01-06 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 .../{python3-meh_0.50.bb => python3-meh_0.50.1.bb}   | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
 rename meta-python/recipes-extended/python-meh/{python3-meh_0.50.bb => 
python3-meh_0.50.1.bb} (85%)

diff --git a/meta-python/recipes-extended/python-meh/python3-meh_0.50.bb 
b/meta-python/recipes-extended/python-meh/python3-meh_0.50.1.bb
similarity index 85%
rename from meta-python/recipes-extended/python-meh/python3-meh_0.50.bb
rename to meta-python/recipes-extended/python-meh/python3-meh_0.50.1.bb
index 372b3a006f..bf0df021a4 100644
--- a/meta-python/recipes-extended/python-meh/python3-meh_0.50.bb
+++ b/meta-python/recipes-extended/python-meh/python3-meh_0.50.1.bb
@@ -9,9 +9,8 @@ inherit setuptools3
 
 S = "${WORKDIR}/git"
 
-SRC_URI = 
"git://github.com/rhinstaller/python-meh.git;protocol=https;branch=master \
-"
-SRCREV = "11980776c5ad757401ea1d12fd1f331d96428105"
+SRC_URI = 
"git://github.com/rhinstaller/python-meh.git;protocol=https;branch=rhel9-branch"
+SRCREV = "c321ce22950aff76611a3c6beffa02b5ea3adbed"
 
 FILES:${PN} += "${datadir}/*"
 
-- 
2.25.1


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

2022-01-06 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

See changelog: https://www.paramiko.org/changelog.html

Signed-off-by: Xu Huan 
---
 .../{python3-paramiko_2.8.0.bb => python3-paramiko_2.9.1.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-paramiko_2.8.0.bb => 
python3-paramiko_2.9.1.bb} (82%)

diff --git a/meta-python/recipes-devtools/python/python3-paramiko_2.8.0.bb 
b/meta-python/recipes-devtools/python/python3-paramiko_2.9.1.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-paramiko_2.8.0.bb
rename to meta-python/recipes-devtools/python/python3-paramiko_2.9.1.bb
index 1942a1d6c5..8cf004aa34 100644
--- a/meta-python/recipes-devtools/python/python3-paramiko_2.8.0.bb
+++ b/meta-python/recipes-devtools/python/python3-paramiko_2.9.1.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/paramiko/paramiko/";
 LICENSE = "LGPL-2.1"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=fd0120fc2e9f841c73ac707a30389af5"
 
-SRC_URI[sha256sum] = 
"e673b10ee0f1c80d46182d3af7751d033d9b573dd7054d2d0aa46be186c3c1d2"
+SRC_URI[sha256sum] = 
"a1fdded3b55f61d23389e4fe52d9ae428960ac958d2edf50373faa5d8926edd0"
 
 PYPI_PACKAGE = "paramiko"
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94668): 
https://lists.openembedded.org/g/openembedded-devel/message/94668
Mute This Topic: https://lists.openembedded.org/mt/88234700/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-parso: upgrade 0.8.2 -> 0.8.3

2022-01-06 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

changelog:
Add basic support for Python 3.11 and 3.12

Signed-off-by: Xu Huan 
---
 .../python/{python3-parso_0.8.2.bb => python3-parso_0.8.3.bb}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-parso_0.8.2.bb => 
python3-parso_0.8.3.bb} (80%)

diff --git a/meta-python/recipes-devtools/python/python3-parso_0.8.2.bb 
b/meta-python/recipes-devtools/python/python3-parso_0.8.3.bb
similarity index 80%
rename from meta-python/recipes-devtools/python/python3-parso_0.8.2.bb
rename to meta-python/recipes-devtools/python/python3-parso_0.8.3.bb
index 950e82d1e9..e14f28ad03 100644
--- a/meta-python/recipes-devtools/python/python3-parso_0.8.2.bb
+++ b/meta-python/recipes-devtools/python/python3-parso_0.8.3.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSE.txt;md5=cbaa2675b2424d771451332a7a69503f"
 
 PYPI_PACKAGE = "parso"
 
-SRC_URI[sha256sum] = 
"12b83492c6239ce32ff5eed6d3639d6a536170723c6f3f1506869f1ace413398"
+SRC_URI[sha256sum] = 
"8c07be290bb59f03588915921e29e8a50002acaf2cdc5fa0e0114f91709fafa0"
 
 inherit setuptools3 pypi
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94669): 
https://lists.openembedded.org/g/openembedded-devel/message/94669
Mute This Topic: https://lists.openembedded.org/mt/88234716/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-pandas: upgrade 1.3.4 -> 1.3.5

2022-01-06 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

changelog:
===

-Fixed regression in Series.equals() when comparing floats with dtype object to
None (GH44190)
-Fixed regression in merge_asof() raising error when array was supplied as join
key (GH42844)
-Fixed regression when resampling DataFrame with DateTimeIndex with empty groups
and uint8, uint16 or uint32 columns incorrectly raising RuntimeError (GH43329)
-Fixed regression in creating a DataFrame from a timezone-aware Timestamp scalar
near a Daylight Savings Time transition (GH42505)
-Fixed performance regression in read_csv() (GH44106)
-Fixed regression in Series.duplicated() and Series.drop_duplicates() when 
Series
has Categorical dtype with boolean categories (GH44351)
-Fixed regression in GroupBy.sum() with timedelta64[ns] dtype containing NaT
failing to treat that value as NA (GH42659)
-Fixed regression in RollingGroupby.cov() and RollingGroupby.corr() when other
had the same shape as each group would incorrectly return superfluous groups
in the result (GH42915)

Signed-off-by: Xu Huan 
---
 .../python/{python3-pandas_1.3.4.bb => python3-pandas_1.3.5.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pandas_1.3.4.bb => 
python3-pandas_1.3.5.bb} (89%)

diff --git a/meta-python/recipes-devtools/python/python3-pandas_1.3.4.bb 
b/meta-python/recipes-devtools/python/python3-pandas_1.3.5.bb
similarity index 89%
rename from meta-python/recipes-devtools/python/python3-pandas_1.3.4.bb
rename to meta-python/recipes-devtools/python/python3-pandas_1.3.5.bb
index cde43184bb..2547875395 100644
--- a/meta-python/recipes-devtools/python/python3-pandas_1.3.4.bb
+++ b/meta-python/recipes-devtools/python/python3-pandas_1.3.5.bb
@@ -6,7 +6,7 @@ HOMEPAGE = "http://pandas.pydata.org/";
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=3f23c5c092b74d245d48eeef72bc3fd2"
 
-SRC_URI[sha256sum] = 
"a2aa18d3f0b7d538e21932f637fbfe8518d085238b429e4790a35e1e44a96ffc"
+SRC_URI[sha256sum] = 
"1e4285f5de1012de20ca46b188ccf33521bff61ba5c5ebd78b4fb28e5416a9f1"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94670): 
https://lists.openembedded.org/g/openembedded-devel/message/94670
Mute This Topic: https://lists.openembedded.org/mt/88234734/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-pymongo: upgrade 4.0 -> 4.0.1

2022-01-12 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

changelog:
===
:meth:`pymongo.collection.Collection.update_one`,
:meth:`pymongo.collection.Collection.update_many`,
:meth:`pymongo.collection.Collection.delete_one`,
:meth:`pymongo.collection.Collection.delete_many`,
:meth:`pymongo.collection.Collection.aggregate`,
:meth:`pymongo.collection.Collection.find_one_and_delete`,
:meth:`pymongo.collection.Collection.find_one_and_replace`,
:meth:`pymongo.collection.Collection.find_one_and_update`,
and :meth:`pymongo.collection.Collection.find` all support a new keyword 
argument
let which is a map of parameter names and values. Parameters can then be
accessed as variables in an aggregate expression context.

:meth:`~pymongo.collection.Collection.aggregate` now supports $merge and $out
executing on secondaries on MongoDB >=5.0. aggregate() now always obeys the
collection's :attr:`read_preference` on MongoDB >= 5.0.

Signed-off-by: Xu Huan 
---
 .../python/{python3-pymongo_4.0.bb => python3-pymongo_4.0.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pymongo_4.0.bb => 
python3-pymongo_4.0.1.bb} (91%)

diff --git a/meta-python/recipes-devtools/python/python3-pymongo_4.0.bb 
b/meta-python/recipes-devtools/python/python3-pymongo_4.0.1.bb
similarity index 91%
rename from meta-python/recipes-devtools/python/python3-pymongo_4.0.bb
rename to meta-python/recipes-devtools/python/python3-pymongo_4.0.1.bb
index ea057c1804..8eb0833fd0 100644
--- a/meta-python/recipes-devtools/python/python3-pymongo_4.0.bb
+++ b/meta-python/recipes-devtools/python/python3-pymongo_4.0.1.bb
@@ -8,7 +8,7 @@ HOMEPAGE = "http://github.com/mongodb/mongo-python-driver";
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
 
-SRC_URI[sha256sum] = 
"6d158eadba3aaab276a3b188b7f467ab0384b68c1d31cfa87335e52addd9dcb6"
+SRC_URI[sha256sum] = 
"13d0624c13a91da71fa0d960205d93b3d98344481be865ee7cc238c972d41d73"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94783): 
https://lists.openembedded.org/g/openembedded-devel/message/94783
Mute This Topic: https://lists.openembedded.org/mt/88369732/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-pynacl: upgrade 1.4.0 -> 1.5.0

2022-01-12 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

changelog:
===
BACKWARDS INCOMPATIBLE: Removed support for Python 2.7 and Python 3.5.
BACKWARDS INCOMPATIBLE: We no longer distribute manylinux1 wheels.
Added manylinux2014, manylinux_2_24, musllinux, and macOS universal2 wheels
(the latter supports macOS arm64).
Update libsodium to 1.0.18-stable (July 25, 2021 release).
Add inline type hints.

Signed-off-by: Xu Huan 
---
 .../{python3-pynacl_1.4.0.bb => python3-pynacl_1.5.0.bb}   | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-pynacl_1.4.0.bb => 
python3-pynacl_1.5.0.bb} (82%)

diff --git a/meta-python/recipes-devtools/python/python3-pynacl_1.4.0.bb 
b/meta-python/recipes-devtools/python/python3-pynacl_1.5.0.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-pynacl_1.4.0.bb
rename to meta-python/recipes-devtools/python/python3-pynacl_1.5.0.bb
index b4a6b7af6f..10f624b484 100644
--- a/meta-python/recipes-devtools/python/python3-pynacl_1.4.0.bb
+++ b/meta-python/recipes-devtools/python/python3-pynacl_1.5.0.bb
@@ -4,8 +4,7 @@ HOMEPAGE = "https://github.com/pyca/pynacl";
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=8cc789b082b3d97e1ccc5261f8594d3f"
 
-SRC_URI[md5sum] = "8c6c57893327a694c72510fb620e4744"
-SRC_URI[sha256sum] = 
"54e9a2c849c742006516ad56a88f5c74bf2ce92c9f67435187c3c5953b346505"
+SRC_URI[sha256sum] = 
"8ac7448f09ab85811607bdd21ec2464495ac8b7c66d146bf545b0f08fb9220ba"
 
 PYPI_PACKAGE = "PyNaCl"
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94784): 
https://lists.openembedded.org/g/openembedded-devel/message/94784
Mute This Topic: https://lists.openembedded.org/mt/88369733/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: upgrade 3.19.0 ->3.19.3

2022-01-12 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

changelog:
==
  * Fix missing Windows wheel for Python 3.10 on PyPI

Signed-off-by: Xu Huan 
---
 .../{python3-protobuf_3.19.0.bb => python3-protobuf_3.19.3.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-protobuf_3.19.0.bb => 
python3-protobuf_3.19.3.bb} (92%)

diff --git a/meta-python/recipes-devtools/python/python3-protobuf_3.19.0.bb 
b/meta-python/recipes-devtools/python/python3-protobuf_3.19.3.bb
similarity index 92%
rename from meta-python/recipes-devtools/python/python3-protobuf_3.19.0.bb
rename to meta-python/recipes-devtools/python/python3-protobuf_3.19.3.bb
index 4ef51c6c20..5e0ee7cb26 100644
--- a/meta-python/recipes-devtools/python/python3-protobuf_3.19.0.bb
+++ b/meta-python/recipes-devtools/python/python3-protobuf_3.19.3.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = 
"file://PKG-INFO;beginline=8;endline=8;md5=19e8f490f9526b1de8
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = 
"6a1dc6584d24ef86f5b104bcad64fa0fe06ed36e5687f426e0445d363a041d18"
+SRC_URI[sha256sum] = 
"d975a6314fbf5c524d4981e24294739216b5fb81ef3c14b86fb4b045d6690907"
 
 # http://errors.yoctoproject.org/Errors/Details/184715/
 # Can't find required file: ../src/google/protobuf/descriptor.proto
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94785): 
https://lists.openembedded.org/g/openembedded-devel/message/94785
Mute This Topic: https://lists.openembedded.org/mt/88369734/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-pytest-timeout: upgrade 2.0.1 -> 2.0.2

2022-01-13 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 ...-pytest-timeout_2.0.1.bb => python3-pytest-timeout_2.0.2.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pytest-timeout_2.0.1.bb => 
python3-pytest-timeout_2.0.2.bb} (77%)

diff --git 
a/meta-python/recipes-devtools/python/python3-pytest-timeout_2.0.1.bb 
b/meta-python/recipes-devtools/python/python3-pytest-timeout_2.0.2.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python3-pytest-timeout_2.0.1.bb
rename to meta-python/recipes-devtools/python/python3-pytest-timeout_2.0.2.bb
index a790a6551f..7c77e4add6 100644
--- a/meta-python/recipes-devtools/python/python3-pytest-timeout_2.0.1.bb
+++ b/meta-python/recipes-devtools/python/python3-pytest-timeout_2.0.2.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=d8048cd156eda3df2e7f111b0ae9ceff"
 
 PYPI_PACKAGE = "pytest-timeout"
 
-SRC_URI[sha256sum] = 
"a5ec4eceddb8ea726911848593d668594107e797621e97f93a1d1dbc6fbb9080"
+SRC_URI[sha256sum] = 
"e6f98b54dafde8d70e4088467ff621260b641eb64895c4195b6e5c8f45638112"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94804): 
https://lists.openembedded.org/g/openembedded-devel/message/94804
Mute This Topic: https://lists.openembedded.org/mt/88393630/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-pystache: upgrade 0.5.4 -> 0.6.0

2022-01-13 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

changelog:
===
Bump spec versions to latest => v1.1.3
Modernize python and CI tools, update docs/doctests
Update unicode conversion test for py3-only
Add pep8speaks cfg, cleanup warnings
Remove superfluous setup test/unused imports
Add conda recipe/CI build

Signed-off-by: Xu Huan 
---
 .../{python3-pystache_0.5.4.bb => python3-pystache_0.6.0.bb}   | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-pystache_0.5.4.bb => 
python3-pystache_0.6.0.bb} (73%)

diff --git a/meta-python/recipes-devtools/python/python3-pystache_0.5.4.bb 
b/meta-python/recipes-devtools/python/python3-pystache_0.6.0.bb
similarity index 73%
rename from meta-python/recipes-devtools/python/python3-pystache_0.5.4.bb
rename to meta-python/recipes-devtools/python/python3-pystache_0.6.0.bb
index 0ae5a19115..d64b806600 100644
--- a/meta-python/recipes-devtools/python/python3-pystache_0.5.4.bb
+++ b/meta-python/recipes-devtools/python/python3-pystache_0.6.0.bb
@@ -5,8 +5,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=eb4417802c56384aac71b34505528a60"
 
 SRC_URI += 
"file://0001-Modernize-python-versions-remove-py2x-and-fix-tests-.patch"
 
-SRC_URI[md5sum] = "485885e67a0f6411d5252e69b20a35ca"
-SRC_URI[sha256sum] = 
"f7bbc265fb957b4d6c7c042b336563179444ab313fb93a719759111eabd3b85a"
+SRC_URI[sha256sum] = 
"93bf92b2149a4c4b58d12142e2c4c6dd5c08d89e4c95afccd4b6efe2ee1d470d"
 
 inherit pypi setuptools3
 
-- 
2.25.1


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



[PATCH 1/5] [oe] [meta-python] [PATCH] python3-socketio: upgrade 5.5.0 -> 5.5.1

2022-01-19 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

changelogs:
Support multiple Kafka servers
Include example code in flake8 pass

Signed-off-by: Xu Huan 
---
 .../{python3-socketio_5.5.0.bb => python3-socketio_5.5.1.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-socketio_5.5.0.bb => 
python3-socketio_5.5.1.bb} (89%)

diff --git a/meta-python/recipes-devtools/python/python3-socketio_5.5.0.bb 
b/meta-python/recipes-devtools/python/python3-socketio_5.5.1.bb
similarity index 89%
rename from meta-python/recipes-devtools/python/python3-socketio_5.5.0.bb
rename to meta-python/recipes-devtools/python/python3-socketio_5.5.1.bb
index 425dadc4f1..ebbb5c047a 100644
--- a/meta-python/recipes-devtools/python/python3-socketio_5.5.0.bb
+++ b/meta-python/recipes-devtools/python/python3-socketio_5.5.1.bb
@@ -9,7 +9,7 @@ inherit pypi setuptools3
 
 PYPI_PACKAGE = "python-socketio"
 
-SRC_URI[sha256sum] = 
"ce972ea1b82aa1811fa10d30cf0d5c251b9a1558c3d66829b6fe70854bcccf0b"
+SRC_URI[sha256sum] = 
"ac8e64d59a15d1c31a4fe8434f4ff16d0f640c824ba517dce7ca99e95f0cd36a"
 
 PACKAGECONFIG ?= "asyncio_client client"
 PACKAGECONFIG[asyncio_client] = ",,,${PYTHON_PN}-aiohttp 
${PYTHON_PN}-websockets"
-- 
2.25.1


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



[PATCH 2/5] [oe] [meta-python] [PATCH] python3-argcomplete upgrade 1.12.3 -> 2.0.0

2022-01-19 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

changelogs:
=
Truncate input after cursor. Fixes #351 (#352)
Support of path completion in fish #327 (#359)
Drop support for Python 2.7 and 3.5 (#361)
Add support for Python 3.10 (#356)
Test, documentation, and release infrastructure improvements

Signed-off-by: Xu Huan 
---
 ...thon3-argcomplete_1.12.3.bb => python3-argcomplete_2.0.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-argcomplete_1.12.3.bb => 
python3-argcomplete_2.0.0.bb} (83%)

diff --git a/meta-python/recipes-devtools/python/python3-argcomplete_1.12.3.bb 
b/meta-python/recipes-devtools/python/python3-argcomplete_2.0.0.bb
similarity index 83%
rename from meta-python/recipes-devtools/python/python3-argcomplete_1.12.3.bb
rename to meta-python/recipes-devtools/python/python3-argcomplete_2.0.0.bb
index aff0c97ec9..4eab34f488 100644
--- a/meta-python/recipes-devtools/python/python3-argcomplete_1.12.3.bb
+++ b/meta-python/recipes-devtools/python/python3-argcomplete_2.0.0.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] = 
"2c7dbffd8c045ea534921e63b0be6fe65e8850d8dc408ac8c542b72a5445"
+SRC_URI[sha256sum] = 
"6372ad78c89d662035101418ae253668445b391755cfe94ea52f1b9d22425b20"
 
 PYPI_PACKAGE = "argcomplete"
 
-- 
2.25.1


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



[PATCH 3/5] [oe] [meta-python] [PATCH] python3-async-timeout: upgrade 4.0.0 -> 4.0.2

2022-01-19 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

Signed-off-by: Xu Huan 
---
 .../python/python3-async-timeout_4.0.2.bb  | 18 ++
 1 file changed, 18 insertions(+)
 create mode 100644 
meta-python/recipes-devtools/python/python3-async-timeout_4.0.2.bb

diff --git a/meta-python/recipes-devtools/python/python3-async-timeout_4.0.2.bb 
b/meta-python/recipes-devtools/python/python3-async-timeout_4.0.2.bb
new file mode 100644
index 00..7355f00131
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-async-timeout_4.0.2.bb
@@ -0,0 +1,18 @@
+SUMMARY = "asyncio-compatible timeout context manager"
+DESCRIPTION = "\
+The context manager is useful in cases when you want to apply \
+timeout logic around block of code or in cases when asyncio.wait_for() \
+is not suitable. Also it's much faster than asyncio.wait_for() because \
+timeout doesn't create a new task."
+HOMEPAGE = "https://github.com/aio-libs/async-timeout";
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=4fa41f15bb5f23b6d3560c5845eb8d57"
+
+SRC_URI[sha256sum] = 
"2163e1640ddb52b7a8c80d0a67a08587e5d245cc9c553a74a847056bc2976b15"
+
+PYPI_PACKAGE = "async-timeout"
+inherit pypi setuptools3
+
+RDEPENDS:${PN} = "\
+${PYTHON_PN}-asyncio \
+"
-- 
2.25.1


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



[PATCH 4/5] [oe] [meta-python] [PATCH] python3-engineio: upgrade 4.3.0 -> 4.3.1

2022-01-19 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

changelog:
Fix support for Sanic v21.9.0 and up
Include example code in flake8 pass
Remove unused __version__ constant #262

Signed-off-by: Xu Huan 
---
 .../{python3-engineio_4.3.0.bb => python3-engineio_4.3.1.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-engineio_4.3.0.bb => 
python3-engineio_4.3.1.bb} (81%)

diff --git a/meta-python/recipes-devtools/python/python3-engineio_4.3.0.bb 
b/meta-python/recipes-devtools/python/python3-engineio_4.3.1.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python3-engineio_4.3.0.bb
rename to meta-python/recipes-devtools/python/python3-engineio_4.3.1.bb
index 95edb860ac..a16306effb 100644
--- a/meta-python/recipes-devtools/python/python3-engineio_4.3.0.bb
+++ b/meta-python/recipes-devtools/python/python3-engineio_4.3.1.bb
@@ -17,4 +17,4 @@ RDEPENDS:${PN} += " \
python3-asyncio \
 "
 
-SRC_URI[sha256sum] = 
"fed35eeacfa21f53f1fc05ef0cadd65a50780364da3a2be7650eb92f928fdb11"
+SRC_URI[sha256sum] = 
"6e1d26977ffefe3b7da1b5df7a8750aedc7686da8201cd90daf36693db122489"
-- 
2.25.1


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



[PATCH 5/5] [oe] [meta-python] [PATCH] python3-google-api-python-client: upgrade 2.33.0 -> 2.36.0

2022-01-19 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

changelog:

see changes at
https://github.com/googleapis/google-api-python-client/blob/main/CHANGELOG.md

Features
analyticsadmin: update the api 981bbe3 (4d5c983)
artifactregistry: update the api 0d1152f (4d5c983)
content: update the api 195bfc2 (4d5c983)
datapipelines: update the api 3bb1937 (4d5c983)
dataproc: update the api 2fc3a16 (4d5c983)
datastream: update the api d51a6ee (4d5c983)
displayvideo: update the api 459a636 (4d5c983)
drive: update the api 92ec7cf (4d5c983)
eventarc: update the api 8fd4b62 (4d5c983)
metastore: update the api b7f92e4 (4d5c983)
ondemandscanning: update the api e8a2008 (4d5c983)
osconfig: update the api 974f389 (4d5c983)
privateca: update the api f48c528 (4d5c983)
recaptchaenterprise: update the api edd3d24 (4d5c983)
redis: update the api 0a68f42 (4d5c983)
run: update the api 59c518f (4d5c983)
sasportal: update the api 1517d9d (4d5c983)
servicedirectory: update the api 298a0e1 (4d5c983)

Signed-off-by: Xu Huan 
---
 ...ent_2.33.0.bb => python3-google-api-python-client_2.36.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename 
meta-python/recipes-devtools/python/{python3-google-api-python-client_2.33.0.bb 
=> python3-google-api-python-client_2.36.0.bb} (86%)

diff --git 
a/meta-python/recipes-devtools/python/python3-google-api-python-client_2.33.0.bb
 
b/meta-python/recipes-devtools/python/python3-google-api-python-client_2.36.0.bb
similarity index 86%
rename from 
meta-python/recipes-devtools/python/python3-google-api-python-client_2.33.0.bb
rename to 
meta-python/recipes-devtools/python/python3-google-api-python-client_2.36.0.bb
index 913c3719fd..502ebad3f0 100644
--- 
a/meta-python/recipes-devtools/python/python3-google-api-python-client_2.33.0.bb
+++ 
b/meta-python/recipes-devtools/python/python3-google-api-python-client_2.36.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] = 
"38e98611794632a12479fafbabe0b5027e8fcfc412e8375f1b23db0bc0209181"
+SRC_URI[sha256sum] = 
"533c69e8ddce6630a2ce5b98348f6a58a23df49cb92040a0086315df979404af"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#94954): 
https://lists.openembedded.org/g/openembedded-devel/message/94954
Mute This Topic: https://lists.openembedded.org/mt/88554608/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-multidict: upgrade 5.2.0 -> 6.0.2

2022-01-26 Thread xuhuan.f...@fujitsu.com
From: Xu Huan 

changelog:
Bugfixes
Revert :issue:`644`
restore type annotations to as-of 5.2.0 version. (:issue:`688`)

Signed-off-by: Xu Huan 
---
 .../{python3-multidict_5.2.0.bb => python3-multidict_6.0.2.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-multidict_5.2.0.bb => 
python3-multidict_6.0.2.bb} (85%)

diff --git a/meta-python/recipes-devtools/python/python3-multidict_5.2.0.bb 
b/meta-python/recipes-devtools/python/python3-multidict_6.0.2.bb
similarity index 85%
rename from meta-python/recipes-devtools/python/python3-multidict_5.2.0.bb
rename to meta-python/recipes-devtools/python/python3-multidict_6.0.2.bb
index 05b18fa0b5..b0e111d643 100644
--- a/meta-python/recipes-devtools/python/python3-multidict_5.2.0.bb
+++ b/meta-python/recipes-devtools/python/python3-multidict_6.0.2.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "https://github.com/aio-libs/multidict/";
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=84c63e2bcd84e619d249af5181e2147f"
 
-SRC_URI[sha256sum] = 
"0dd1c93edb444b33ba2274b66f63def8a327d607c6c790772f448a53b6ea59ce"
+SRC_URI[sha256sum] = 
"5ff3bd75f38e4c43f1f470f2df7a4d430b821c4ce22be384e1459cb57d6bb013"
 
 inherit pypi setuptools3 ptest
 
-- 
2.25.1


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



  1   2   >