All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/5] [oe] [meta-python] [PATCH] python3-xxhash: upgrade 2.0.2 -> 3.0.0
@ 2022-03-09  7:30 XU Huan
  2022-03-09  7:30 ` [PATCH 2/5] [oe] [meta-python] [PATCH] python3-txaio: upgrade 21.2.1 -> 22.2.1 XU Huan
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: XU Huan @ 2022-03-09  7:30 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Xu Huan

From: Xu Huan <xuhuan.fnst@fujitsu.com>

changelog:
===============================================================================
New set algorithms_available lists all implemented algorithms in xxhash package.
Upgrade xxHash to v0.8.1.
Drop support for EOL Python versions, require python >= 3.6 from now on.
Migrate to github actions and build arm64 wheels for macOS.
Always release GIL.

Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
---
 .../python/{python3-xxhash_2.0.2.bb => python3-xxhash_3.0.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-xxhash_2.0.2.bb => python3-xxhash_3.0.0.bb} (83%)

diff --git a/meta-python/recipes-devtools/python/python3-xxhash_2.0.2.bb b/meta-python/recipes-devtools/python/python3-xxhash_3.0.0.bb
similarity index 83%
rename from meta-python/recipes-devtools/python/python3-xxhash_2.0.2.bb
rename to meta-python/recipes-devtools/python/python3-xxhash_3.0.0.bb
index 01343abc85..ca8ed3b01e 100644
--- a/meta-python/recipes-devtools/python/python3-xxhash_2.0.2.bb
+++ b/meta-python/recipes-devtools/python/python3-xxhash_3.0.0.bb
@@ -3,7 +3,7 @@ SECTION = "devel/python"
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=3a9dab7f159514231249aa3e108ab26b"
 
-SRC_URI[sha256sum] = "b7bead8cf6210eadf9cecf356e17af794f57c0939a3d420a00d87ea652f87b49"
+SRC_URI[sha256sum] = "30b2d97aaf11fb122023f6b44ebb97c6955e9e00d7461a96415ca030b5ceb9c7"
 
 SRC_URI += " \
     file://run-ptest \
-- 
2.25.1



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/5] [oe] [meta-python] [PATCH] python3-txaio: upgrade 21.2.1 -> 22.2.1
  2022-03-09  7:30 [PATCH 1/5] [oe] [meta-python] [PATCH] python3-xxhash: upgrade 2.0.2 -> 3.0.0 XU Huan
@ 2022-03-09  7:30 ` XU Huan
  2022-03-09  7:30 ` [PATCH 3/5] [oe] [meta-python] [PATCH] python3-regex :upgrade 2021.11.10 -> 2022.3.2 XU Huan
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: XU Huan @ 2022-03-09  7:30 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Xu Huan

From: Xu Huan <xuhuan.fnst@fujitsu.com>

changelog:
=============================================================

- fix: cancel handling in python 3.8/3.9.
- fix: gracefully fail if coroutine called with wrong args
- fix: eliminate redundant dep. on mock
- fix: doc note that twisted supports native coroutines

Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
---
 .../python/{python3-txaio_21.2.1.bb => python3-txaio_22.2.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-txaio_21.2.1.bb => python3-txaio_22.2.1.bb} (75%)

diff --git a/meta-python/recipes-devtools/python/python3-txaio_21.2.1.bb b/meta-python/recipes-devtools/python/python3-txaio_22.2.1.bb
similarity index 75%
rename from meta-python/recipes-devtools/python/python3-txaio_21.2.1.bb
rename to meta-python/recipes-devtools/python/python3-txaio_22.2.1.bb
index 8b55b3641c..e2102695ec 100644
--- a/meta-python/recipes-devtools/python/python3-txaio_21.2.1.bb
+++ b/meta-python/recipes-devtools/python/python3-txaio_22.2.1.bb
@@ -3,7 +3,7 @@ DESCRIPTION = "Compatibility API between asyncio/Twisted/Trollius"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=97c0bda20ad1d845c6369c0e47a1cd98"
 
-SRC_URI[sha256sum] = "7d6f89745680233f1c4db9ddb748df5e88d2a7a37962be174c0fd04c8dba1dc8"
+SRC_URI[sha256sum] = "2e4582b70f04b2345908254684a984206c0d9b50e3074a24a4c55aba21d24d01"
 
 inherit pypi setuptools3
 
-- 
2.25.1



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 3/5] [oe] [meta-python] [PATCH] python3-regex :upgrade 2021.11.10 -> 2022.3.2
  2022-03-09  7:30 [PATCH 1/5] [oe] [meta-python] [PATCH] python3-xxhash: upgrade 2.0.2 -> 3.0.0 XU Huan
  2022-03-09  7:30 ` [PATCH 2/5] [oe] [meta-python] [PATCH] python3-txaio: upgrade 21.2.1 -> 22.2.1 XU Huan
@ 2022-03-09  7:30 ` XU Huan
  2022-03-09  7:30 ` [PATCH 4/5] [oe] [meta-python] [PATCH] python3-pywbemtools: upgrade 0.9.1 -> 1.0.0 XU Huan
  2022-03-09  7:30 ` [PATCH 5/5] [oe] [meta-python] [PATCH] python3-pymongo: upgrade 4.0.1 -> 4.0.2 XU Huan
  3 siblings, 0 replies; 5+ messages in thread
From: XU Huan @ 2022-03-09  7:30 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Xu Huan

From: Xu Huan <xuhuan.fnst@fujitsu.com>

Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
---
 .../{python3-regex_2021.11.10.bb => python3-regex_2022.3.2.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-regex_2021.11.10.bb => python3-regex_2022.3.2.bb} (79%)

diff --git a/meta-python/recipes-devtools/python/python3-regex_2021.11.10.bb b/meta-python/recipes-devtools/python/python3-regex_2022.3.2.bb
similarity index 79%
rename from meta-python/recipes-devtools/python/python3-regex_2021.11.10.bb
rename to meta-python/recipes-devtools/python/python3-regex_2022.3.2.bb
index dce232ba68..c71394cb38 100644
--- a/meta-python/recipes-devtools/python/python3-regex_2021.11.10.bb
+++ b/meta-python/recipes-devtools/python/python3-regex_2022.3.2.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=7b5751ddd6b643203c31ff873051d069"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "f341ee2df0999bfdf7a95e448075effe0db212a59387de1a70690e4acb03d4c6"
+SRC_URI[sha256sum] = "79e5af1ff258bc0fe0bdd6f69bc4ae33935a898e3cbefbbccf22e88a27fa053b"
 
 RDEPENDS:${PN} += " \
 	python3-stringold \
-- 
2.25.1



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 4/5] [oe] [meta-python] [PATCH] python3-pywbemtools: upgrade 0.9.1 -> 1.0.0
  2022-03-09  7:30 [PATCH 1/5] [oe] [meta-python] [PATCH] python3-xxhash: upgrade 2.0.2 -> 3.0.0 XU Huan
  2022-03-09  7:30 ` [PATCH 2/5] [oe] [meta-python] [PATCH] python3-txaio: upgrade 21.2.1 -> 22.2.1 XU Huan
  2022-03-09  7:30 ` [PATCH 3/5] [oe] [meta-python] [PATCH] python3-regex :upgrade 2021.11.10 -> 2022.3.2 XU Huan
@ 2022-03-09  7:30 ` XU Huan
  2022-03-09  7:30 ` [PATCH 5/5] [oe] [meta-python] [PATCH] python3-pymongo: upgrade 4.0.1 -> 4.0.2 XU Huan
  3 siblings, 0 replies; 5+ messages in thread
From: XU Huan @ 2022-03-09  7:30 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Xu Huan

From: Xu Huan <xuhuan.fnst@fujitsu.com>

changelog see https://pywbemtools.readthedocs.io/en/stable/changes.html

Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
---
 ...ython3-pywbemtools_0.9.1.bb => python3-pywbemtools_1.0.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-extended/pywbemtools/{python3-pywbemtools_0.9.1.bb => python3-pywbemtools_1.0.0.bb} (92%)

diff --git a/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.9.1.bb b/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_1.0.0.bb
similarity index 92%
rename from meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.9.1.bb
rename to meta-python/recipes-extended/pywbemtools/python3-pywbemtools_1.0.0.bb
index c51f860fd5..3a9f0ad6fd 100644
--- a/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.9.1.bb
+++ b/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_1.0.0.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "https://pywbemtools.readthedocs.io/en/stable/"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e23fadd6ceef8c618fc1c65191d846fa"
 
-SRC_URI[sha256sum] = "cbe2fe67620e73a81807940a75aeed8570205e2213d6f8de4db15fbc06fe8804"
+SRC_URI[sha256sum] = "0af7e067e0c0ba32cc19c2c2dc67875c591b806c4b49480ebe46e37bfb399684"
 
 inherit pypi setuptools3
 
-- 
2.25.1



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 5/5] [oe] [meta-python] [PATCH] python3-pymongo: upgrade 4.0.1 -> 4.0.2
  2022-03-09  7:30 [PATCH 1/5] [oe] [meta-python] [PATCH] python3-xxhash: upgrade 2.0.2 -> 3.0.0 XU Huan
                   ` (2 preceding siblings ...)
  2022-03-09  7:30 ` [PATCH 4/5] [oe] [meta-python] [PATCH] python3-pywbemtools: upgrade 0.9.1 -> 1.0.0 XU Huan
@ 2022-03-09  7:30 ` XU Huan
  3 siblings, 0 replies; 5+ messages in thread
From: XU Huan @ 2022-03-09  7:30 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Xu Huan

From: Xu Huan <xuhuan.fnst@fujitsu.com>

changelog:
===============================================================================
Fixed a bug pymongo.collection.Collection.bulk_write() did not apply the
collection’s CodecOptions to upserted_ids result (PYTHON-3075).

Fixes the High Availability and PyMongo example for initializing a replica
set (PYTHON-3041).

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

diff --git a/meta-python/recipes-devtools/python/python3-pymongo_4.0.1.bb b/meta-python/recipes-devtools/python/python3-pymongo_4.0.2.bb
similarity index 91%
rename from meta-python/recipes-devtools/python/python3-pymongo_4.0.1.bb
rename to meta-python/recipes-devtools/python/python3-pymongo_4.0.2.bb
index 8eb0833fd0..6189730b34 100644
--- a/meta-python/recipes-devtools/python/python3-pymongo_4.0.1.bb
+++ b/meta-python/recipes-devtools/python/python3-pymongo_4.0.2.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] = "13d0624c13a91da71fa0d960205d93b3d98344481be865ee7cc238c972d41d73"
+SRC_URI[sha256sum] = "3364b5c153b0de15c39cd13c5ee73a473f7337eb2d9610711f50f14a3a611413"

 inherit pypi setuptools3

--
2.25.1



^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-03-09  7:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-09  7:30 [PATCH 1/5] [oe] [meta-python] [PATCH] python3-xxhash: upgrade 2.0.2 -> 3.0.0 XU Huan
2022-03-09  7:30 ` [PATCH 2/5] [oe] [meta-python] [PATCH] python3-txaio: upgrade 21.2.1 -> 22.2.1 XU Huan
2022-03-09  7:30 ` [PATCH 3/5] [oe] [meta-python] [PATCH] python3-regex :upgrade 2021.11.10 -> 2022.3.2 XU Huan
2022-03-09  7:30 ` [PATCH 4/5] [oe] [meta-python] [PATCH] python3-pywbemtools: upgrade 0.9.1 -> 1.0.0 XU Huan
2022-03-09  7:30 ` [PATCH 5/5] [oe] [meta-python] [PATCH] python3-pymongo: upgrade 4.0.1 -> 4.0.2 XU Huan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.