openembedded-devel.lists.openembedded.org archive mirror
 help / color / mirror / Atom feed
* [oe] [meta-oe] [PATCH] ctags: upgrade 6.0.20230521.0 -> 6.0.20230528.0
@ 2023-05-31  7:39 wangmy
  2023-05-31  7:40 ` [oe] [meta-gnome] [PATCH] eog: upgrade 44.1 -> 44.2 wangmy
                   ` (20 more replies)
  0 siblings, 21 replies; 22+ messages in thread
From: wangmy @ 2023-05-31  7:39 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../ctags/{ctags_6.0.20230521.0.bb => ctags_6.0.20230528.0.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-devtools/ctags/{ctags_6.0.20230521.0.bb => ctags_6.0.20230528.0.bb} (95%)

diff --git a/meta-oe/recipes-devtools/ctags/ctags_6.0.20230521.0.bb b/meta-oe/recipes-devtools/ctags/ctags_6.0.20230528.0.bb
similarity index 95%
rename from meta-oe/recipes-devtools/ctags/ctags_6.0.20230521.0.bb
rename to meta-oe/recipes-devtools/ctags/ctags_6.0.20230528.0.bb
index 8949380f3..6c9a08f13 100644
--- a/meta-oe/recipes-devtools/ctags/ctags_6.0.20230521.0.bb
+++ b/meta-oe/recipes-devtools/ctags/ctags_6.0.20230528.0.bb
@@ -14,7 +14,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3"
 
 inherit autotools-brokensep pkgconfig manpages
 
-SRCREV = "dfabddcc12549abefa92e5ff628be25ddb112eca"
+SRCREV = "b3e1ad7db92a5fbe6df96e576210001c74bc7949"
 SRC_URI = "git://github.com/universal-ctags/ctags;branch=master;protocol=https"
 
 S = "${WORKDIR}/git"
-- 
2.34.1



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

* [oe] [meta-gnome] [PATCH] eog: upgrade 44.1 -> 44.2
  2023-05-31  7:39 [oe] [meta-oe] [PATCH] ctags: upgrade 6.0.20230521.0 -> 6.0.20230528.0 wangmy
@ 2023-05-31  7:40 ` wangmy
  2023-05-31  7:40 ` [oe] [meta-gnome] [PATCH] nautilus: " wangmy
                   ` (19 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: wangmy @ 2023-05-31  7:40 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

0001-Replace-filename-with-basename.patch
removed since it's included in 44.2

Changelog:
==========
- EogWindow: Fix refcount and signal handler issues around
  GSettings handles
- Replace filename with basename

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../0001-Replace-filename-with-basename.patch | 48 -------------------
 .../eog/{eog_44.1.bb => eog_44.2.bb}          |  3 +-
 2 files changed, 1 insertion(+), 50 deletions(-)
 delete mode 100644 meta-gnome/recipes-gnome/eog/eog/0001-Replace-filename-with-basename.patch
 rename meta-gnome/recipes-gnome/eog/{eog_44.1.bb => eog_44.2.bb} (82%)

diff --git a/meta-gnome/recipes-gnome/eog/eog/0001-Replace-filename-with-basename.patch b/meta-gnome/recipes-gnome/eog/eog/0001-Replace-filename-with-basename.patch
deleted file mode 100644
index 26d75780b..000000000
--- a/meta-gnome/recipes-gnome/eog/eog/0001-Replace-filename-with-basename.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-From d00edda1f57f904e1590828bea3cedb53d789c48 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Wed, 24 May 2023 20:33:59 -0700
-Subject: [PATCH] Replace filename with basename
-
-This avoids emitting absolute paths into generated sourcecode, it
-improves reproducibility. See [1]
-
-[1] https://developer-old.gnome.org/gobject/stable/glib-mkenums.html
-
-Upstream-Status: Submitted [https://gitlab.gnome.org/GNOME/eog/-/merge_requests/154]
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- src/eog-enum-types.c.template | 4 ++--
- src/eog-enum-types.h.template | 2 +-
- 2 files changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/src/eog-enum-types.c.template b/src/eog-enum-types.c.template
-index 0249baf..1013dcf 100644
---- a/src/eog-enum-types.c.template
-+++ b/src/eog-enum-types.c.template
-@@ -4,8 +4,8 @@
- /*** END file-header ***/
- 
- /*** BEGIN file-production ***/
--/* enumerations from "@filename@" */
--#include "@filename@"
-+/* enumerations from "@basename@" */
-+#include "@basename@"
- 
- /*** END file-production ***/
- 
-diff --git a/src/eog-enum-types.h.template b/src/eog-enum-types.h.template
-index bc3c195..8f4e916 100644
---- a/src/eog-enum-types.h.template
-+++ b/src/eog-enum-types.h.template
-@@ -8,7 +8,7 @@ G_BEGIN_DECLS
- /*** END file-header ***/
- 
- /*** BEGIN file-production ***/
--/* Enumerations from "@filename@" */
-+/* Enumerations from "@basename@" */
- 
- /*** END file-production ***/
- 
--- 
-2.40.1
-
diff --git a/meta-gnome/recipes-gnome/eog/eog_44.1.bb b/meta-gnome/recipes-gnome/eog/eog_44.2.bb
similarity index 82%
rename from meta-gnome/recipes-gnome/eog/eog_44.1.bb
rename to meta-gnome/recipes-gnome/eog/eog_44.2.bb
index 0b7cfca49..110e73fd4 100644
--- a/meta-gnome/recipes-gnome/eog/eog_44.1.bb
+++ b/meta-gnome/recipes-gnome/eog/eog_44.2.bb
@@ -22,8 +22,7 @@ inherit gnomebase pkgconfig gsettings gobject-introspection gettext mime-xdg fea
 # FIXME: whilst eog uses libpeas <2, g-i is needed. This can be removed when libpeas2 is used.
 REQUIRED_DISTRO_FEATURES = "opengl gobject-introspection-data"
 
-SRC_URI += "file://0001-Replace-filename-with-basename.patch"
-SRC_URI[archive.sha256sum] = "e2c963f232fe5a1091dcc18bec25a730e91b02af6e466601efa55e500cd74cab"
+SRC_URI[archive.sha256sum] = "468f539f6b67ee46188170f244480cc311dd1efe4786fe1554bffe26a65c72c4"
 
 GTKDOC_MESON_OPTION = "gtk_doc"
 
-- 
2.34.1



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

* [oe] [meta-gnome] [PATCH] nautilus: upgrade 44.1 -> 44.2
  2023-05-31  7:39 [oe] [meta-oe] [PATCH] ctags: upgrade 6.0.20230521.0 -> 6.0.20230528.0 wangmy
  2023-05-31  7:40 ` [oe] [meta-gnome] [PATCH] eog: upgrade 44.1 -> 44.2 wangmy
@ 2023-05-31  7:40 ` wangmy
  2023-05-31  7:40 ` [oe] [meta-gnome] [PATCH] evolution-data-server: upgrade 3.48.1 -> 3.48.2 wangmy
                   ` (18 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: wangmy @ 2023-05-31  7:40 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
===========
* Fix crashes with expandable folders and on Other Locations
* Avoid inconsistent search states
* Prevent lingering tracker cursors
* Fix rubberband range behavior on list view
* Translation updates 

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../nautilus/{nautilus_44.1.bb => nautilus_44.2.bb}             | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-gnome/recipes-gnome/nautilus/{nautilus_44.1.bb => nautilus_44.2.bb} (93%)

diff --git a/meta-gnome/recipes-gnome/nautilus/nautilus_44.1.bb b/meta-gnome/recipes-gnome/nautilus/nautilus_44.2.bb
similarity index 93%
rename from meta-gnome/recipes-gnome/nautilus/nautilus_44.1.bb
rename to meta-gnome/recipes-gnome/nautilus/nautilus_44.2.bb
index 65bef45da..43fe7cc0e 100644
--- a/meta-gnome/recipes-gnome/nautilus/nautilus_44.1.bb
+++ b/meta-gnome/recipes-gnome/nautilus/nautilus_44.2.bb
@@ -27,7 +27,7 @@ def gnome_verdir(v):
     return oe.utils.trim_version(v, 1)
 
 SRC_URI += "file://0001-Replace-filename-with-basename.patch"
-SRC_URI[archive.sha256sum] = "360802a595e3edbad962c8cea353b62baa8be407513b5162c89c933ca5387aa9"
+SRC_URI[archive.sha256sum] = "274a065927596d8a8f09537adc91bae98297201dd47ec6ccd878111e0781d3e5"
 
 REQUIRED_DISTRO_FEATURES = "x11 opengl gobject-introspection-data"
 
-- 
2.34.1



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

* [oe] [meta-gnome] [PATCH] evolution-data-server: upgrade 3.48.1 -> 3.48.2
  2023-05-31  7:39 [oe] [meta-oe] [PATCH] ctags: upgrade 6.0.20230521.0 -> 6.0.20230528.0 wangmy
  2023-05-31  7:40 ` [oe] [meta-gnome] [PATCH] eog: upgrade 44.1 -> 44.2 wangmy
  2023-05-31  7:40 ` [oe] [meta-gnome] [PATCH] nautilus: " wangmy
@ 2023-05-31  7:40 ` wangmy
  2023-05-31  7:40 ` [oe] [meta-oe] [PATCH] flatbuffers: upgrade 23.1.4 -> 23.3.56 wangmy
                   ` (17 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: wangmy @ 2023-05-31  7:40 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
===========
Bug Fixes:
  I#474 - Camel: Set proper S/MIME signature verification status
  I#478 - IMAP: Cannot remove labels added in Thunderbird
  I#479 - WebDAV: Fails to discover iCloud address book
  evo-I#2345 - Wrong S/MIME certificate selection for encrypted email

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../evolution-data-server/evolution-data-server.inc           | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server.inc b/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server.inc
index 59d3b5a294..9f113df403 100644
--- a/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server.inc
+++ b/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server.inc
@@ -9,5 +9,5 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=6a6e689d19255cf0557f3fe7d7068212 \
 
 inherit gnomebase upstream-version-is-even
 
-SRC_URI[archive.sha256sum] = "5ce62c1e67f2789342a7f4a035b102f74e62ed85f60e81a5b7f3e04165404dff"
-PV = "3.48.1"
+SRC_URI[archive.sha256sum] = "1f3243df12b4f1d3298c9977d6221a6565fd279efc984e1ccf255245d04cffd5"
+PV = "3.48.2"
-- 
2.34.1



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

* [oe] [meta-oe] [PATCH] flatbuffers: upgrade 23.1.4 -> 23.3.56
  2023-05-31  7:39 [oe] [meta-oe] [PATCH] ctags: upgrade 6.0.20230521.0 -> 6.0.20230528.0 wangmy
                   ` (2 preceding siblings ...)
  2023-05-31  7:40 ` [oe] [meta-gnome] [PATCH] evolution-data-server: upgrade 3.48.1 -> 3.48.2 wangmy
@ 2023-05-31  7:40 ` wangmy
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-asgiref: upgrade 3.7.1 -> 3.7.2 wangmy
                   ` (16 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: wangmy @ 2023-05-31  7:40 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

License_update: Rename LICENSE.txt to LICENSE

Changelog:
==========
    Mostly bug fixing for 64-bit support
    Adds support for specifying underling type of unions in C++ and TS/JS (#7954)
    64-bit support for C++ (#7935)
    add key_field to compiled tests
    Add golden language directory
    Rework cmake flatc codegeneration (#7938)
    remove defining generated files in test srcs
    Add binary schema reflection (#7932)
    Migrate from rules_nodejs to rules_js/rules_ts (take 2) (#7928)
    flat_buffers.dart: mark const variable finals for internal Dart linters
    fixed some windows warnings (#7929)
    inject no long for FBS generation to remove logs in flattests (#7926)
    Revert "Migrate from rules_nodejs to rules_js/rules_ts (#7923)" (#7927)
    Migrate from rules_nodejs to rules_js/rules_ts (#7923)
    Only generate @kotlin.ExperimentalUnsigned annotation on create*Vector methods having an unsigned array type parameter. (#7881)
    additional check for absl::string_view availability (#7897)
    Optionally generate Python type annotations (#7858)
    Replace deprecated command with environment file (#7921)
    drop glibc from runtime dependencies (#7906)
    Make JSON supporting advanced union features (#7869)
    Allow to use functions from BuildFlatBuffers.cmake from a flatbuffers installation installed with CMake. (#7912)
    TS/JS: Use TypeError instead of Error when appropriate (#7910)
    Go: make generated code more compliant to "go fmt" (#7907)
    Support file_identifier in Go (#7904)
    Optionally generate type prefixes and suffixes for python code (#7857)
    Go: add test for FinishWithFileIdentifier (#7905)
    Fix go_sample.sh (#7903)
    [TS/JS] Upgrade dependencies (#7889)
    Add a FileWriter interface (#7821)
    TS/JS: Use minvalue from enum if not found (#7888)
    [CS] Verifier (#7850)
    README.md: PyPI case typo (#7880)
    Update go documentation link to point to root module (#7879)
    use Bool for flatbuffers bool instead of Byte (#7876)
    fix using null string in vector (#7872)
    Add flatbuffers-64 branch to CI for pushes
    made changes to the rust docs so they would compile. new_with_capacity is deprecated should use with_capacity, get_root_as_monster should be root_as_monster (#7871)
    Adding comment for code clarification (#7856)
    ToCamelCase() when kLowerCamel now converts first char to lower. (#7838)
    Fix help output for --java-checkerframework (#7854)
    Update filename to README.md and improve formatting (#7855)
    Update stale.yml
    Updated remaining usages of LICENSE.txt
    Refactoring of flatc generators to use an interface (#7797).
    Removed legacy cmake support and set min to 3.8 (#7801).
    Reworked entry points for Typescript/Javascript and compatibility for single file build (#7510)
    Removed go.mod files after some versioning issues were being report (#7780).

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 meta-oe/recipes-devtools/flatbuffers/flatbuffers.bb         | 2 +-
 meta-oe/recipes-devtools/flatbuffers/flatbuffers.inc        | 4 ++--
 meta-oe/recipes-devtools/flatbuffers/python3-flatbuffers.bb | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/meta-oe/recipes-devtools/flatbuffers/flatbuffers.bb b/meta-oe/recipes-devtools/flatbuffers/flatbuffers.bb
index f4a8b020a8..6573916362 100644
--- a/meta-oe/recipes-devtools/flatbuffers/flatbuffers.bb
+++ b/meta-oe/recipes-devtools/flatbuffers/flatbuffers.bb
@@ -2,7 +2,7 @@ SUMMARY = "Memory Efficient Serialization Library"
 HOMEPAGE = "https://github.com/google/flatbuffers"
 SECTION = "console/tools"
 LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
 
 require flatbuffers.inc
 
diff --git a/meta-oe/recipes-devtools/flatbuffers/flatbuffers.inc b/meta-oe/recipes-devtools/flatbuffers/flatbuffers.inc
index a85c74c128..7533f7c758 100644
--- a/meta-oe/recipes-devtools/flatbuffers/flatbuffers.inc
+++ b/meta-oe/recipes-devtools/flatbuffers/flatbuffers.inc
@@ -1,3 +1,3 @@
-PV = "23.1.4"
-SRCREV = "af9ceabeef1a10c1004e2741f8c0c090ca59e5af"
+PV = "23.5.26"
+SRCREV = "0100f6a5779831fa7a651e4b67ef389a8752bd9b"
 SRC_URI = "git://github.com/google/flatbuffers.git;branch=master;protocol=https"
diff --git a/meta-oe/recipes-devtools/flatbuffers/python3-flatbuffers.bb b/meta-oe/recipes-devtools/flatbuffers/python3-flatbuffers.bb
index fb5b86ddea..5d3c73fd9a 100644
--- a/meta-oe/recipes-devtools/flatbuffers/python3-flatbuffers.bb
+++ b/meta-oe/recipes-devtools/flatbuffers/python3-flatbuffers.bb
@@ -2,7 +2,7 @@ SUMMARY = "Memory Efficient Serialization Library - Python3 Modules"
 HOMEPAGE = "https://github.com/google/flatbuffers"
 SECTION = "console/tools"
 LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = "file://../LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57"
+LIC_FILES_CHKSUM = "file://../LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
 
 require flatbuffers.inc
 
-- 
2.34.1



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

* [oe] [meta-python] [PATCH] python3-asgiref: upgrade 3.7.1 -> 3.7.2
  2023-05-31  7:39 [oe] [meta-oe] [PATCH] ctags: upgrade 6.0.20230521.0 -> 6.0.20230528.0 wangmy
                   ` (3 preceding siblings ...)
  2023-05-31  7:40 ` [oe] [meta-oe] [PATCH] flatbuffers: upgrade 23.1.4 -> 23.3.56 wangmy
@ 2023-05-31  7:40 ` wangmy
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-bitarray: upgrade 2.7.3 -> 2.7.4 wangmy
                   ` (15 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: wangmy @ 2023-05-31  7:40 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
==========
* The type annotations for SyncToAsync and AsyncToSync have been changed to
  more accurately reflect the kind of callables they return.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../{python3-asgiref_3.7.1.bb => python3-asgiref_3.7.2.bb}      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-asgiref_3.7.1.bb => python3-asgiref_3.7.2.bb} (89%)

diff --git a/meta-python/recipes-devtools/python/python3-asgiref_3.7.1.bb b/meta-python/recipes-devtools/python/python3-asgiref_3.7.2.bb
similarity index 89%
rename from meta-python/recipes-devtools/python/python3-asgiref_3.7.1.bb
rename to meta-python/recipes-devtools/python/python3-asgiref_3.7.2.bb
index 8eecd2d26..c9081c8cb 100644
--- a/meta-python/recipes-devtools/python/python3-asgiref_3.7.1.bb
+++ b/meta-python/recipes-devtools/python/python3-asgiref_3.7.2.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=f09eb47206614a4954c51db8a94840fa"
 SRC_URI += "file://run-ptest \
 	    "
 
-SRC_URI[sha256sum] = "8de379fcc383bcfe4507e229fc31209ea23d4831c850f74063b2c11639474dd2"
+SRC_URI[sha256sum] = "9e0ce3aa93a819ba5b45120216b23878cf6e8525eb3848653452b4192b92afed"
 
 export BUILD_SYS
 export HOST_SYS
-- 
2.34.1



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

* [oe] [meta-python] [PATCH] python3-bitarray: upgrade 2.7.3 -> 2.7.4
  2023-05-31  7:39 [oe] [meta-oe] [PATCH] ctags: upgrade 6.0.20230521.0 -> 6.0.20230528.0 wangmy
                   ` (4 preceding siblings ...)
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-asgiref: upgrade 3.7.1 -> 3.7.2 wangmy
@ 2023-05-31  7:40 ` wangmy
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-cachetools: upgrade 5.3.0 -> 5.3.1 wangmy
                   ` (14 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: wangmy @ 2023-05-31  7:40 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
=========
  * register 'bitarray' as 'abc.MutableSequence', see #196
  * cibuildwheel: update macOS version to 11 from unsupported 10.15, see
    https://github.com/actions/runner-images/issues/5583
  * improve documentation regarding type when indexing single
    bitarray items, #192

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../{python3-bitarray_2.7.3.bb => python3-bitarray_2.7.4.bb}    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-bitarray_2.7.3.bb => python3-bitarray_2.7.4.bb} (77%)

diff --git a/meta-python/recipes-devtools/python/python3-bitarray_2.7.3.bb b/meta-python/recipes-devtools/python/python3-bitarray_2.7.4.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python3-bitarray_2.7.3.bb
rename to meta-python/recipes-devtools/python/python3-bitarray_2.7.4.bb
index f766692a0..1cfaf3e9e 100644
--- a/meta-python/recipes-devtools/python/python3-bitarray_2.7.3.bb
+++ b/meta-python/recipes-devtools/python/python3-bitarray_2.7.4.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/ilanschnell/bitarray"
 LICENSE = "PSF-2.0"
 LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=2ad702cdcd49e8d2ac01d7e7d0810d2d"
 
-SRC_URI[sha256sum] = "f71256a32609b036adad932e1228b66a6b4e2cae6be397e588ddc0babd9a78b9"
+SRC_URI[sha256sum] = "143d4f65e1f45a533e13521be1dc557a782317ecf76520eabd5a903b26ecb187"
 
 inherit setuptools3 pypi
 
-- 
2.34.1



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

* [oe] [meta-python] [PATCH] python3-cachetools: upgrade 5.3.0 -> 5.3.1
  2023-05-31  7:39 [oe] [meta-oe] [PATCH] ctags: upgrade 6.0.20230521.0 -> 6.0.20230528.0 wangmy
                   ` (5 preceding siblings ...)
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-bitarray: upgrade 2.7.3 -> 2.7.4 wangmy
@ 2023-05-31  7:40 ` wangmy
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-coverage: upgrade 7.2.6 -> 7.2.7 wangmy
                   ` (13 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: wangmy @ 2023-05-31  7:40 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
Depend on Python >= 3.7.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...{python3-cachetools_5.3.0.bb => python3-cachetools_5.3.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-cachetools_5.3.0.bb => python3-cachetools_5.3.1.bb} (89%)

diff --git a/meta-python/recipes-devtools/python/python3-cachetools_5.3.0.bb b/meta-python/recipes-devtools/python/python3-cachetools_5.3.1.bb
similarity index 89%
rename from meta-python/recipes-devtools/python/python3-cachetools_5.3.0.bb
rename to meta-python/recipes-devtools/python/python3-cachetools_5.3.1.bb
index 21bb51871..739e5a826 100644
--- a/meta-python/recipes-devtools/python/python3-cachetools_5.3.0.bb
+++ b/meta-python/recipes-devtools/python/python3-cachetools_5.3.1.bb
@@ -27,6 +27,6 @@ do_install_ptest() {
 	cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
 }
 
-SRC_URI[sha256sum] = "13dfddc7b8df938c21a940dfa6557ce6e94a2f1cdfa58eb90c805721d58f2c14"
+SRC_URI[sha256sum] = "dce83f2d9b4e1f732a8cd44af8e8fab2dbe46201467fc98b3ef8f269092bf62b"
 
 BBCLASSEXTEND = "native nativesdk"
-- 
2.34.1



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

* [oe] [meta-python] [PATCH] python3-coverage: upgrade 7.2.6 -> 7.2.7
  2023-05-31  7:39 [oe] [meta-oe] [PATCH] ctags: upgrade 6.0.20230521.0 -> 6.0.20230528.0 wangmy
                   ` (6 preceding siblings ...)
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-cachetools: upgrade 5.3.0 -> 5.3.1 wangmy
@ 2023-05-31  7:40 ` wangmy
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-croniter: upgrade 1.3.14 -> 1.3.15 wangmy
                   ` (12 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: wangmy @ 2023-05-31  7:40 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
=========
- Fix: reverted a change from 6.4.3 that helped Cython, but also increased the
  size of data files when using dynamic contexts, as described in the now-fixed
  issue 1586. The problem is now avoided due to a recent change (issue 1538).
- Wheels are now provided for CPython 3.12.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../{python3-coverage_7.2.6.bb => python3-coverage_7.2.7.bb}    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-coverage_7.2.6.bb => python3-coverage_7.2.7.bb} (84%)

diff --git a/meta-python/recipes-devtools/python/python3-coverage_7.2.6.bb b/meta-python/recipes-devtools/python/python3-coverage_7.2.7.bb
similarity index 84%
rename from meta-python/recipes-devtools/python/python3-coverage_7.2.6.bb
rename to meta-python/recipes-devtools/python/python3-coverage_7.2.7.bb
index b13384cd2..f625996ba 100644
--- a/meta-python/recipes-devtools/python/python3-coverage_7.2.6.bb
+++ b/meta-python/recipes-devtools/python/python3-coverage_7.2.7.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://coverage.readthedocs.io"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2ee41112a44fe7014dce33e26468ba93"
 
-SRC_URI[sha256sum] = "2025f913f2edb0272ef15d00b1f335ff8908c921c8eb2013536fcaf61f5a683d"
+SRC_URI[sha256sum] = "924d94291ca674905fe9481f12294eb11f2d3d3fd1adb20314ba89e94f44ed59"
 
 inherit pypi setuptools3
 
-- 
2.34.1



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

* [oe] [meta-python] [PATCH] python3-croniter: upgrade 1.3.14 -> 1.3.15
  2023-05-31  7:39 [oe] [meta-oe] [PATCH] ctags: upgrade 6.0.20230521.0 -> 6.0.20230528.0 wangmy
                   ` (7 preceding siblings ...)
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-coverage: upgrade 7.2.6 -> 7.2.7 wangmy
@ 2023-05-31  7:40 ` wangmy
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-deprecated: upgrade 1.2.13 -> 1.2.14 wangmy
                   ` (11 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: wangmy @ 2023-05-31  7:40 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
==========
Fix hashed expressions omitting some entries
Enhance .match() precision for 6 position expressions

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../{python3-croniter_1.3.14.bb => python3-croniter_1.3.15.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-croniter_1.3.14.bb => python3-croniter_1.3.15.bb} (77%)

diff --git a/meta-python/recipes-devtools/python/python3-croniter_1.3.14.bb b/meta-python/recipes-devtools/python/python3-croniter_1.3.15.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python3-croniter_1.3.14.bb
rename to meta-python/recipes-devtools/python/python3-croniter_1.3.15.bb
index af8892eb7..b00ab2615 100644
--- a/meta-python/recipes-devtools/python/python3-croniter_1.3.14.bb
+++ b/meta-python/recipes-devtools/python/python3-croniter_1.3.15.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=b8ee59850b882cbf623188489ea748e2"
 
 PYPI_PACKAGE = "croniter"
 
-SRC_URI[sha256sum] = "d067b1f95b553c6e82d95a983c465695913dcd12f47a8b9aa938a0450d94dd5e"
+SRC_URI[sha256sum] = "924a38fda88f675ec6835667e1d32ac37ff0d65509c2152729d16ff205e32a65"
 
 inherit pypi setuptools3
 
-- 
2.34.1



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

* [oe] [meta-python] [PATCH] python3-deprecated: upgrade 1.2.13 -> 1.2.14
  2023-05-31  7:39 [oe] [meta-oe] [PATCH] ctags: upgrade 6.0.20230521.0 -> 6.0.20230528.0 wangmy
                   ` (8 preceding siblings ...)
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-croniter: upgrade 1.3.14 -> 1.3.15 wangmy
@ 2023-05-31  7:40 ` wangmy
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-google-api-python-client: upgrade 2.86.0 -> 2.87.0 wangmy
                   ` (10 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: wangmy @ 2023-05-31  7:40 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
===========
Fix
-------
    Fix #60: return a correctly dedented docstring when long docstring are using the D212 or D213 format.

Other
--------
    Add support for Python 3.11.
    Drop support for Python older than 3.7 in build systems like pytest and tox, while ensuring the library remains production-compatible.
    Update GitHub workflow to run in recent Python versions.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...ython3-deprecated_1.2.13.bb => python3-deprecated_1.2.14.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-deprecated_1.2.13.bb => python3-deprecated_1.2.14.bb} (79%)

diff --git a/meta-python/recipes-devtools/python/python3-deprecated_1.2.13.bb b/meta-python/recipes-devtools/python/python3-deprecated_1.2.14.bb
similarity index 79%
rename from meta-python/recipes-devtools/python/python3-deprecated_1.2.13.bb
rename to meta-python/recipes-devtools/python/python3-deprecated_1.2.14.bb
index 6ea47f429..4b5c78fb0 100644
--- a/meta-python/recipes-devtools/python/python3-deprecated_1.2.13.bb
+++ b/meta-python/recipes-devtools/python/python3-deprecated_1.2.14.bb
@@ -4,7 +4,7 @@ LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=44288e26f4896bdab14072d4fa35ff01"
 
 PYPI_PACKAGE = "Deprecated"
-SRC_URI[sha256sum] = "43ac5335da90c31c24ba028af536a91d41d53f9e6901ddb021bcc572ce44e38d"
+SRC_URI[sha256sum] = "e5323eb936458dccc2582dc6f9c322c852a775a27065ff2b0c4970b9d53d01b3"
 
 inherit pypi setuptools3
 
-- 
2.34.1



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

* [oe] [meta-python] [PATCH] python3-google-api-python-client: upgrade 2.86.0 -> 2.87.0
  2023-05-31  7:39 [oe] [meta-oe] [PATCH] ctags: upgrade 6.0.20230521.0 -> 6.0.20230528.0 wangmy
                   ` (9 preceding siblings ...)
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-deprecated: upgrade 1.2.13 -> 1.2.14 wangmy
@ 2023-05-31  7:40 ` wangmy
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-google-auth: upgrade 2.18.1 -> 2.19.0 wangmy
                   ` (9 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: wangmy @ 2023-05-31  7:40 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

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

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...ent_2.86.0.bb => python3-google-api-python-client_2.87.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-google-api-python-client_2.86.0.bb => python3-google-api-python-client_2.87.0.bb} (86%)

diff --git a/meta-python/recipes-devtools/python/python3-google-api-python-client_2.86.0.bb b/meta-python/recipes-devtools/python/python3-google-api-python-client_2.87.0.bb
similarity index 86%
rename from meta-python/recipes-devtools/python/python3-google-api-python-client_2.86.0.bb
rename to meta-python/recipes-devtools/python/python3-google-api-python-client_2.87.0.bb
index 119ed0fd2..c6a766343 100644
--- a/meta-python/recipes-devtools/python/python3-google-api-python-client_2.86.0.bb
+++ b/meta-python/recipes-devtools/python/python3-google-api-python-client_2.87.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] = "3ca4e93821f4e9ac29b91ab0d9df168b42c8ad0fb8bff65b8c2ccb2d462b0464"
+SRC_URI[sha256sum] = "bbea5869877c822d12d318943833d988497b3a18b9ca2386967118074db676f3"
 
 inherit pypi setuptools3
 
-- 
2.34.1



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

* [oe] [meta-python] [PATCH] python3-google-auth: upgrade 2.18.1 -> 2.19.0
  2023-05-31  7:39 [oe] [meta-oe] [PATCH] ctags: upgrade 6.0.20230521.0 -> 6.0.20230528.0 wangmy
                   ` (10 preceding siblings ...)
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-google-api-python-client: upgrade 2.86.0 -> 2.87.0 wangmy
@ 2023-05-31  7:40 ` wangmy
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-imageio: upgrade 2.29.0 -> 2.30.0 wangmy
                   ` (8 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: wangmy @ 2023-05-31  7:40 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
=========
    Add metrics (part 1) (#1298) (246dd07)
    Add metrics (part 2) (#1303) (ebd5af7)
    Add metrics (part 3) (#1305) (c7011b6)
    Expose universe_domain for external account creds (#1296) (ee07053)
    Remove python 2.7 from setup.py and nox tests (#1301) (8437490)

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...hon3-google-auth_2.18.1.bb => python3-google-auth_2.19.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-google-auth_2.18.1.bb => python3-google-auth_2.19.0.bb} (87%)

diff --git a/meta-python/recipes-devtools/python/python3-google-auth_2.18.1.bb b/meta-python/recipes-devtools/python/python3-google-auth_2.19.0.bb
similarity index 87%
rename from meta-python/recipes-devtools/python/python3-google-auth_2.18.1.bb
rename to meta-python/recipes-devtools/python/python3-google-auth_2.19.0.bb
index 70a5dfbb1..52d93abac 100644
--- a/meta-python/recipes-devtools/python/python3-google-auth_2.18.1.bb
+++ b/meta-python/recipes-devtools/python/python3-google-auth_2.19.0.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "d7a3249027e7f464fbbfd7ee8319a08ad09d2eea51578575c4bd360ffa049ccb"
+SRC_URI[sha256sum] = "f39d528077ac540793dd3c22a8706178f157642a67d874db25c640b7fead277e"
 
 RDEPENDS:${PN} += "\
     ${PYTHON_PN}-asyncio \
-- 
2.34.1



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

* [oe] [meta-python] [PATCH] python3-imageio: upgrade 2.29.0 -> 2.30.0
  2023-05-31  7:39 [oe] [meta-oe] [PATCH] ctags: upgrade 6.0.20230521.0 -> 6.0.20230528.0 wangmy
                   ` (11 preceding siblings ...)
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-google-auth: upgrade 2.18.1 -> 2.19.0 wangmy
@ 2023-05-31  7:40 ` wangmy
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-license-expression: upgrade 30.1.0 -> 30.1.1 wangmy
                   ` (7 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: wangmy @ 2023-05-31  7:40 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
==========
    SPE plugin: Support new SDT-control metadata (#989) (c93536c)
    Remove standard images from built package (#988) (6288f19)

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../{python3-imageio_2.29.0.bb => python3-imageio_2.30.0.bb}    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-imageio_2.29.0.bb => python3-imageio_2.30.0.bb} (81%)

diff --git a/meta-python/recipes-devtools/python/python3-imageio_2.29.0.bb b/meta-python/recipes-devtools/python/python3-imageio_2.30.0.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python3-imageio_2.29.0.bb
rename to meta-python/recipes-devtools/python/python3-imageio_2.30.0.bb
index 3ca9e3c1e..6bcba2ca7 100644
--- a/meta-python/recipes-devtools/python/python3-imageio_2.29.0.bb
+++ b/meta-python/recipes-devtools/python/python3-imageio_2.30.0.bb
@@ -5,7 +5,7 @@ SECTION = "devel/python"
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=24cb9a367a9e641b459a01c4d15256ba"
 
-SRC_URI[sha256sum] = "5aa207ab61aca233a7a312951ac603d618b78418eac749e3dc5035010531e25b"
+SRC_URI[sha256sum] = "7fc6ad5b5677cb1e58077875a72512aa8c392b6d40885eca0a6ab250efb4b8f4"
 
 inherit pypi setuptools3
 
-- 
2.34.1



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

* [oe] [meta-python] [PATCH] python3-license-expression: upgrade 30.1.0 -> 30.1.1
  2023-05-31  7:39 [oe] [meta-oe] [PATCH] ctags: upgrade 6.0.20230521.0 -> 6.0.20230528.0 wangmy
                   ` (12 preceding siblings ...)
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-imageio: upgrade 2.29.0 -> 2.30.0 wangmy
@ 2023-05-31  7:40 ` wangmy
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-lru-dict: upgrade 1.1.8 -> 1.2.0 wangmy
                   ` (6 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: wangmy @ 2023-05-31  7:40 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
=============
    Use latest skeleton
    Update license list to latest ScanCode and SPDX 3.20

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...xpression_30.1.0.bb => python3-license-expression_30.1.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-license-expression_30.1.0.bb => python3-license-expression_30.1.1.bb} (90%)

diff --git a/meta-python/recipes-devtools/python/python3-license-expression_30.1.0.bb b/meta-python/recipes-devtools/python/python3-license-expression_30.1.1.bb
similarity index 90%
rename from meta-python/recipes-devtools/python/python3-license-expression_30.1.0.bb
rename to meta-python/recipes-devtools/python/python3-license-expression_30.1.1.bb
index 5dfd02be4..31fb88d6e 100644
--- a/meta-python/recipes-devtools/python/python3-license-expression_30.1.0.bb
+++ b/meta-python/recipes-devtools/python/python3-license-expression_30.1.1.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "https://github.com/nexB/license-expression"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://apache-2.0.LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
 
-SRC_URI[sha256sum] = "943b1d2cde251bd30a166b509f78990fdd060be9750f3f1a324571e804857a53"
+SRC_URI[sha256sum] = "42375df653ad85e6f5b4b0385138b2dbea1f5d66360783d8625c3e4f97f11f0c"
 
 inherit pypi ptest python_setuptools_build_meta
 
-- 
2.34.1



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

* [oe] [meta-python] [PATCH] python3-lru-dict: upgrade 1.1.8 -> 1.2.0
  2023-05-31  7:39 [oe] [meta-oe] [PATCH] ctags: upgrade 6.0.20230521.0 -> 6.0.20230528.0 wangmy
                   ` (13 preceding siblings ...)
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-license-expression: upgrade 30.1.0 -> 30.1.1 wangmy
@ 2023-05-31  7:40 ` wangmy
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-paramiko: upgrade 3.1.0 -> 3.2.0 wangmy
                   ` (5 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: wangmy @ 2023-05-31  7:40 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

0001-lru-Use-PyCFunction-instead-of-PyCFunctionWithKeywor.patch
removed since it's included in 1.2.0

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...ion-instead-of-PyCFunctionWithKeywor.patch | 37 -------------------
 ...ict_1.1.8.bb => python3-lru-dict_1.2.0.bb} |  4 +-
 2 files changed, 2 insertions(+), 39 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python3-lru-dict/0001-lru-Use-PyCFunction-instead-of-PyCFunctionWithKeywor.patch
 rename meta-python/recipes-devtools/python/{python3-lru-dict_1.1.8.bb => python3-lru-dict_1.2.0.bb} (64%)

diff --git a/meta-python/recipes-devtools/python/python3-lru-dict/0001-lru-Use-PyCFunction-instead-of-PyCFunctionWithKeywor.patch b/meta-python/recipes-devtools/python/python3-lru-dict/0001-lru-Use-PyCFunction-instead-of-PyCFunctionWithKeywor.patch
deleted file mode 100644
index b93d1594d..000000000
--- a/meta-python/recipes-devtools/python/python3-lru-dict/0001-lru-Use-PyCFunction-instead-of-PyCFunctionWithKeywor.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From 5013406c409a0a143a315146df388281bfb2172d Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Wed, 1 Mar 2023 19:53:36 -0800
-Subject: [PATCH] lru: Use PyCFunction instead of PyCFunctionWithKeywords
-
-PyMethodDef uses PyMethodDef and not PyCFunctionWithKeywords and when
-callback is specified as PyCFunctionWithKeywords, clang 16+ is able to
-detect function signature mismatch in function pointers now.
-
-Fixes
-lru.c:629:17: error: incompatible function pointer types initializing 'PyCFunction' (aka 'struct _object *(*)(struct _object *, struct _object *)') with an expression of type 'PyCFunctionWithKeywords' (aka 'struct _object *(*)(struct _object *, struct _object *, struct _object *)') [-Wincompatible-function-pointer-types]
-    {"popitem", (PyCFunctionWithKeywords)LRU_popitem, METH_VARARGS | METH_KEYWORDS,
-                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-1 error generated.
-
-Upstream-Status: Submitted [https://github.com/amitdev/lru-dict/pull/45]
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- lru.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/lru.c b/lru.c
-index 8adcb4b..33c18ab 100644
---- a/lru.c
-+++ b/lru.c
-@@ -626,7 +626,7 @@ static PyMethodDef LRU_methods[] = {
-                     PyDoc_STR("L.setdefault(key, default=None) -> If L has key return its value, otherwise insert key with a value of default and return default")},
-     {"pop", (PyCFunction)LRU_pop, METH_VARARGS,
-                     PyDoc_STR("L.pop(key[, default]) -> If L has key return its value and remove it from L, otherwise return default. If default is not given and key is not in L, a KeyError is raised.")},
--    {"popitem", (PyCFunctionWithKeywords)LRU_popitem, METH_VARARGS | METH_KEYWORDS,
-+    {"popitem", (PyCFunction)LRU_popitem, METH_VARARGS | METH_KEYWORDS,
-                     PyDoc_STR("L.popitem([least_recent=True]) -> Returns and removes a (key, value) pair. The pair returned is the least-recently used if least_recent is true, or the most-recently used if false.")},
-     {"set_size", (PyCFunction)LRU_set_size, METH_VARARGS,
-                     PyDoc_STR("L.set_size() -> set size of LRU")},
--- 
-2.39.2
-
diff --git a/meta-python/recipes-devtools/python/python3-lru-dict_1.1.8.bb b/meta-python/recipes-devtools/python/python3-lru-dict_1.2.0.bb
similarity index 64%
rename from meta-python/recipes-devtools/python/python3-lru-dict_1.1.8.bb
rename to meta-python/recipes-devtools/python/python3-lru-dict_1.2.0.bb
index e825e43df..7a3a17274 100644
--- a/meta-python/recipes-devtools/python/python3-lru-dict_1.1.8.bb
+++ b/meta-python/recipes-devtools/python/python3-lru-dict_1.2.0.bb
@@ -4,8 +4,8 @@ SECTION = "devel/python"
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=9d10a486ee04034fdef5162fd791f153"
 
-SRC_URI[sha256sum] = "878bc8ef4073e5cfb953dfc1cf4585db41e8b814c0106abde34d00ee0d0b3115"
+SRC_URI[sha256sum] = "13c56782f19d68ddf4d8db0170041192859616514c706b126d0df2ec72a11bd7"
 
 inherit pypi setuptools3
 
-SRC_URI += "file://0001-lru-Use-PyCFunction-instead-of-PyCFunctionWithKeywor.patch"
+SRC_URI += "${PYPI_SRC_URI}"
-- 
2.34.1



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

* [oe] [meta-python] [PATCH] python3-paramiko: upgrade 3.1.0 -> 3.2.0
  2023-05-31  7:39 [oe] [meta-oe] [PATCH] ctags: upgrade 6.0.20230521.0 -> 6.0.20230528.0 wangmy
                   ` (14 preceding siblings ...)
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-lru-dict: upgrade 1.1.8 -> 1.2.0 wangmy
@ 2023-05-31  7:40 ` wangmy
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-pint: upgrade 0.21 -> 0.22 wangmy
                   ` (4 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: wangmy @ 2023-05-31  7:40 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

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

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../{python3-paramiko_3.1.0.bb => python3-paramiko_3.2.0.bb}    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-paramiko_3.1.0.bb => python3-paramiko_3.2.0.bb} (82%)

diff --git a/meta-python/recipes-devtools/python/python3-paramiko_3.1.0.bb b/meta-python/recipes-devtools/python/python3-paramiko_3.2.0.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-paramiko_3.1.0.bb
rename to meta-python/recipes-devtools/python/python3-paramiko_3.2.0.bb
index 70cee849a..f2d8bfe44 100644
--- a/meta-python/recipes-devtools/python/python3-paramiko_3.1.0.bb
+++ b/meta-python/recipes-devtools/python/python3-paramiko_3.2.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/paramiko/paramiko/"
 LICENSE = "LGPL-2.1-only"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=fd0120fc2e9f841c73ac707a30389af5"
 
-SRC_URI[sha256sum] = "6950faca6819acd3219d4ae694a23c7a87ee38d084f70c1724b0c0dbb8b75769"
+SRC_URI[sha256sum] = "93cdce625a8a1dc12204439d45033f3261bdb2c201648cfcdc06f9fd0f94ec29"
 
 PYPI_PACKAGE = "paramiko"
 
-- 
2.34.1



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

* [oe] [meta-python] [PATCH] python3-pint: upgrade 0.21 -> 0.22
  2023-05-31  7:39 [oe] [meta-oe] [PATCH] ctags: upgrade 6.0.20230521.0 -> 6.0.20230528.0 wangmy
                   ` (15 preceding siblings ...)
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-paramiko: upgrade 3.1.0 -> 3.2.0 wangmy
@ 2023-05-31  7:40 ` wangmy
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-protobuf: upgrade 4.23.1 -> 4.23.2 wangmy
                   ` (3 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: wangmy @ 2023-05-31  7:40 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
==========
- Drop Python 3.8 compatability following NEP-29.
- Drop NumPy < 1.21 following NEP-29.
- Improved typing experience.
- Migrated fully to pyproject.toml.
- Migrated to ruff.
- In order to make static typing possible as required by mypy
  and similar tools, the way to subclass the registry has been
  changed.
- Allow non-quantity atol parameters for isclose and allclose.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../python/{python3-pint_0.21.bb => python3-pint_0.22.bb}       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pint_0.21.bb => python3-pint_0.22.bb} (88%)

diff --git a/meta-python/recipes-devtools/python/python3-pint_0.21.bb b/meta-python/recipes-devtools/python/python3-pint_0.22.bb
similarity index 88%
rename from meta-python/recipes-devtools/python/python3-pint_0.21.bb
rename to meta-python/recipes-devtools/python/python3-pint_0.22.bb
index 13944ec78..0eed33f79 100644
--- a/meta-python/recipes-devtools/python/python3-pint_0.21.bb
+++ b/meta-python/recipes-devtools/python/python3-pint_0.22.bb
@@ -10,7 +10,7 @@ PYPI_PACKAGE := "Pint"
 
 inherit pypi ptest python_setuptools_build_meta
 
-SRC_URI[sha256sum] = "3e98bdf01f4dcf840cc0207c0b6f7510d4e0c6288efc1bf470626e875c831172"
+SRC_URI[sha256sum] = "2d139f6abbcf3016cad7d3cec05707fe908ac4f99cf59aedfd6ee667b7a64433"
 
 DEPENDS += "python3-setuptools-scm-native"
 
-- 
2.34.1



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

* [oe] [meta-python] [PATCH] python3-protobuf: upgrade 4.23.1 -> 4.23.2
  2023-05-31  7:39 [oe] [meta-oe] [PATCH] ctags: upgrade 6.0.20230521.0 -> 6.0.20230528.0 wangmy
                   ` (16 preceding siblings ...)
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-pint: upgrade 0.21 -> 0.22 wangmy
@ 2023-05-31  7:40 ` wangmy
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-xlsxwriter: upgrade 3.1.1 -> 3.1.2 wangmy
                   ` (2 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: wangmy @ 2023-05-31  7:40 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../{python3-protobuf_4.23.1.bb => python3-protobuf_4.23.2.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-protobuf_4.23.1.bb => python3-protobuf_4.23.2.bb} (92%)

diff --git a/meta-python/recipes-devtools/python/python3-protobuf_4.23.1.bb b/meta-python/recipes-devtools/python/python3-protobuf_4.23.2.bb
similarity index 92%
rename from meta-python/recipes-devtools/python/python3-protobuf_4.23.1.bb
rename to meta-python/recipes-devtools/python/python3-protobuf_4.23.2.bb
index e0c9ef967..6aa4f636e 100644
--- a/meta-python/recipes-devtools/python/python3-protobuf_4.23.1.bb
+++ b/meta-python/recipes-devtools/python/python3-protobuf_4.23.2.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=53dbfa56f61b90215a
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "95789b569418a3e32a53f43d7763be3d490a831e9c08042539462b6d972c2d7e"
+SRC_URI[sha256sum] = "20874e7ca4436f683b64ebdbee2129a5a2c301579a67d1a7dda2cdf62fb7f5f7"
 
 # http://errors.yoctoproject.org/Errors/Details/184715/
 # Can't find required file: ../src/google/protobuf/descriptor.proto
-- 
2.34.1



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

* [oe] [meta-python] [PATCH] python3-xlsxwriter: upgrade 3.1.1 -> 3.1.2
  2023-05-31  7:39 [oe] [meta-oe] [PATCH] ctags: upgrade 6.0.20230521.0 -> 6.0.20230528.0 wangmy
                   ` (17 preceding siblings ...)
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-protobuf: upgrade 4.23.1 -> 4.23.2 wangmy
@ 2023-05-31  7:40 ` wangmy
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-zeroconf: upgrade 0.62.0 -> 0.63.0 wangmy
  2023-05-31  7:40 ` [oe] [meta-oe] [PATCH] xterm: upgrade 380 -> 381 wangmy
  20 siblings, 0 replies; 22+ messages in thread
From: wangmy @ 2023-05-31  7:40 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
===========
 Added worksheet page break preview mode via "worksheet.set_pagebreak_view()".

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...{python3-xlsxwriter_3.1.1.bb => python3-xlsxwriter_3.1.2.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-xlsxwriter_3.1.1.bb => python3-xlsxwriter_3.1.2.bb} (82%)

diff --git a/meta-python/recipes-devtools/python/python3-xlsxwriter_3.1.1.bb b/meta-python/recipes-devtools/python/python3-xlsxwriter_3.1.2.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-xlsxwriter_3.1.1.bb
rename to meta-python/recipes-devtools/python/python3-xlsxwriter_3.1.2.bb
index ff3a62281..805a3b7dd 100644
--- a/meta-python/recipes-devtools/python/python3-xlsxwriter_3.1.1.bb
+++ b/meta-python/recipes-devtools/python/python3-xlsxwriter_3.1.2.bb
@@ -16,6 +16,6 @@ RDEPENDS:${PN} += " \
 	python3-io \
 "
 
-SRC_URI[sha256sum] = "03459ee76f664470c4c63a8977cab624fb259d0fc1faac64dc9cc6f3cc08f945"
+SRC_URI[sha256sum] = "78751099a770273f1c98b8d6643351f68f98ae8e6acf9d09d37dc6798f8cd3de"
 
 BBCLASSEXTEND = "native nativesdk"
-- 
2.34.1



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

* [oe] [meta-python] [PATCH] python3-zeroconf: upgrade 0.62.0 -> 0.63.0
  2023-05-31  7:39 [oe] [meta-oe] [PATCH] ctags: upgrade 6.0.20230521.0 -> 6.0.20230528.0 wangmy
                   ` (18 preceding siblings ...)
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-xlsxwriter: upgrade 3.1.1 -> 3.1.2 wangmy
@ 2023-05-31  7:40 ` wangmy
  2023-05-31  7:40 ` [oe] [meta-oe] [PATCH] xterm: upgrade 380 -> 381 wangmy
  20 siblings, 0 replies; 22+ messages in thread
From: wangmy @ 2023-05-31  7:40 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
===========
    Small speed up to fetch dns addresses from ServiceInfo (#1176) (4deaa6e)
    Speed up the service registry (#1174) (360ceb2)
    Improve dns cache performance (#1172) (bb496a1)

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../{python3-zeroconf_0.62.0.bb => python3-zeroconf_0.63.0.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-zeroconf_0.62.0.bb => python3-zeroconf_0.63.0.bb} (82%)

diff --git a/meta-python/recipes-devtools/python/python3-zeroconf_0.62.0.bb b/meta-python/recipes-devtools/python/python3-zeroconf_0.63.0.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-zeroconf_0.62.0.bb
rename to meta-python/recipes-devtools/python/python3-zeroconf_0.63.0.bb
index 6e82c6831..6f3dbd522 100644
--- a/meta-python/recipes-devtools/python/python3-zeroconf_0.62.0.bb
+++ b/meta-python/recipes-devtools/python/python3-zeroconf_0.63.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/jstasiak/python-zeroconf"
 LICENSE = "LGPL-2.1-only"
 LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=6;endline=6;md5=6517bdc8f2416f27ab725d4702f7aac3"
 
-SRC_URI[sha256sum] = "c51340a8a7f13d7265dcc582c4a97907c11e4f3d23d5234d3c2c0e44fb446717"
+SRC_URI[sha256sum] = "2643b1c9c6ffdfaa1313cf3d12ea0099482fcb3da77929a08be87fc8354d0b3d"
 
 inherit pypi setuptools3
 
-- 
2.34.1



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

* [oe] [meta-oe] [PATCH] xterm: upgrade 380 -> 381
  2023-05-31  7:39 [oe] [meta-oe] [PATCH] ctags: upgrade 6.0.20230521.0 -> 6.0.20230528.0 wangmy
                   ` (19 preceding siblings ...)
  2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-zeroconf: upgrade 0.62.0 -> 0.63.0 wangmy
@ 2023-05-31  7:40 ` wangmy
  20 siblings, 0 replies; 22+ messages in thread
From: wangmy @ 2023-05-31  7:40 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../recipes-graphics/xorg-app/{xterm_380.bb => xterm_381.bb}    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-graphics/xorg-app/{xterm_380.bb => xterm_381.bb} (94%)

diff --git a/meta-oe/recipes-graphics/xorg-app/xterm_380.bb b/meta-oe/recipes-graphics/xorg-app/xterm_381.bb
similarity index 94%
rename from meta-oe/recipes-graphics/xorg-app/xterm_380.bb
rename to meta-oe/recipes-graphics/xorg-app/xterm_381.bb
index 377c2758b..f3a034884 100644
--- a/meta-oe/recipes-graphics/xorg-app/xterm_380.bb
+++ b/meta-oe/recipes-graphics/xorg-app/xterm_381.bb
@@ -8,7 +8,7 @@ SRC_URI = "http://invisible-mirror.net/archives/${BPN}/${BP}.tgz \
            file://0001-Add-configure-time-check-for-setsid.patch \
           "
 
-SRC_URI[sha256sum] = "0c1dc1fa800fa64b5c58d16ddb905e700b27ca538a65be8c03b2ba5761106c38"
+SRC_URI[sha256sum] = "924dd6ab1471d486d219aba4edb881a03dd4129fd55ee556390f7a1648f523bd"
 
 PACKAGECONFIG ?= ""
 PACKAGECONFIG[xft] = "--enable-freetype,--disable-freetype,libxft fontconfig freetype-native"
-- 
2.34.1



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

end of thread, other threads:[~2023-05-31  7:41 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-31  7:39 [oe] [meta-oe] [PATCH] ctags: upgrade 6.0.20230521.0 -> 6.0.20230528.0 wangmy
2023-05-31  7:40 ` [oe] [meta-gnome] [PATCH] eog: upgrade 44.1 -> 44.2 wangmy
2023-05-31  7:40 ` [oe] [meta-gnome] [PATCH] nautilus: " wangmy
2023-05-31  7:40 ` [oe] [meta-gnome] [PATCH] evolution-data-server: upgrade 3.48.1 -> 3.48.2 wangmy
2023-05-31  7:40 ` [oe] [meta-oe] [PATCH] flatbuffers: upgrade 23.1.4 -> 23.3.56 wangmy
2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-asgiref: upgrade 3.7.1 -> 3.7.2 wangmy
2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-bitarray: upgrade 2.7.3 -> 2.7.4 wangmy
2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-cachetools: upgrade 5.3.0 -> 5.3.1 wangmy
2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-coverage: upgrade 7.2.6 -> 7.2.7 wangmy
2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-croniter: upgrade 1.3.14 -> 1.3.15 wangmy
2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-deprecated: upgrade 1.2.13 -> 1.2.14 wangmy
2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-google-api-python-client: upgrade 2.86.0 -> 2.87.0 wangmy
2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-google-auth: upgrade 2.18.1 -> 2.19.0 wangmy
2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-imageio: upgrade 2.29.0 -> 2.30.0 wangmy
2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-license-expression: upgrade 30.1.0 -> 30.1.1 wangmy
2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-lru-dict: upgrade 1.1.8 -> 1.2.0 wangmy
2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-paramiko: upgrade 3.1.0 -> 3.2.0 wangmy
2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-pint: upgrade 0.21 -> 0.22 wangmy
2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-protobuf: upgrade 4.23.1 -> 4.23.2 wangmy
2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-xlsxwriter: upgrade 3.1.1 -> 3.1.2 wangmy
2023-05-31  7:40 ` [oe] [meta-python] [PATCH] python3-zeroconf: upgrade 0.62.0 -> 0.63.0 wangmy
2023-05-31  7:40 ` [oe] [meta-oe] [PATCH] xterm: upgrade 380 -> 381 wangmy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).