openembedded-devel.lists.openembedded.org archive mirror
 help / color / mirror / Atom feed
* [oe] [meta-gnome] [PATCH] evolution-data-server: upgrade 3.48.2 -> 3.48.3
@ 2023-06-05  7:52 wangmy
  2023-06-05  7:52 ` [oe] [meta-networking] [PATCH] ntp: upgrade 4.2.8p15 -> 4.2.8p16 wangmy
                   ` (16 more replies)
  0 siblings, 17 replies; 18+ messages in thread
From: wangmy @ 2023-06-05  7:52 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Bug Fixes:
        I#475 - EWebDAVSession: Claim also error nodes from propstat response

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 9f113df403..5452a2e793 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] = "1f3243df12b4f1d3298c9977d6221a6565fd279efc984e1ccf255245d04cffd5"
-PV = "3.48.2"
+SRC_URI[archive.sha256sum] = "b71e412e52f567c83394b5926df92b4f4f6d2cddebad384a517c720671fad996"
+PV = "3.48.3"
-- 
2.34.1



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

* [oe] [meta-networking] [PATCH] ntp: upgrade 4.2.8p15 -> 4.2.8p16
  2023-06-05  7:52 [oe] [meta-gnome] [PATCH] evolution-data-server: upgrade 3.48.2 -> 3.48.3 wangmy
@ 2023-06-05  7:52 ` wangmy
  2023-06-05  7:52 ` [oe] [meta-networking] [PATCH] samba: upgrade 4.18.2 -> 4.18.3 wangmy
                   ` (15 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: wangmy @ 2023-06-05  7:52 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

0001-libntp-Do-not-use-PTHREAD_STACK_MIN-on-glibc.patch
0001-test-Fix-build-with-new-compiler-defaults-to-fno-com.patch
refreshed for new version.

Changelog
=========
- fixes 4 vulnerabilities (3 LOW and 1 None severity),
- fixes 46 bugs
- includes 15 general improvements
- adds support for OpenSSL-3.0

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...o-not-use-PTHREAD_STACK_MIN-on-glibc.patch | 23 ++++++++++---------
 ...ith-new-compiler-defaults-to-fno-com.patch | 16 +++----------
 ...ducibility-fixed-path-to-posix-shell.patch | 17 +++++++++++---
 .../ntp/{ntp_4.2.8p15.bb => ntp_4.2.8p16.bb}  |  4 ++--
 4 files changed, 31 insertions(+), 29 deletions(-)
 rename meta-networking/recipes-support/ntp/{ntp_4.2.8p15.bb => ntp_4.2.8p16.bb} (97%)

diff --git a/meta-networking/recipes-support/ntp/ntp/0001-libntp-Do-not-use-PTHREAD_STACK_MIN-on-glibc.patch b/meta-networking/recipes-support/ntp/ntp/0001-libntp-Do-not-use-PTHREAD_STACK_MIN-on-glibc.patch
index 372938c6d6..d61a6e70b8 100644
--- a/meta-networking/recipes-support/ntp/ntp/0001-libntp-Do-not-use-PTHREAD_STACK_MIN-on-glibc.patch
+++ b/meta-networking/recipes-support/ntp/ntp/0001-libntp-Do-not-use-PTHREAD_STACK_MIN-on-glibc.patch
@@ -10,23 +10,24 @@ or 64Kb set by ntp should be good in glibc these days.
 
 Upstream-Status: Pending
 Signed-off-by: Khem Raj <raj.khem@gmail.com>
+Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
 ---
  libntp/work_thread.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/libntp/work_thread.c b/libntp/work_thread.c
-index 03a5647..3ddd751 100644
+index c1fe5c2..21db4a0 100644
 --- a/libntp/work_thread.c
 +++ b/libntp/work_thread.c
-@@ -41,7 +41,7 @@
- #ifndef THREAD_MINSTACKSIZE
- # define THREAD_MINSTACKSIZE	(64U * 1024)
- #endif
--#ifndef __sun
-+#if !defined(__sun) && !defined(__GLIBC__)
- #if defined(PTHREAD_STACK_MIN) && THREAD_MINSTACKSIZE < PTHREAD_STACK_MIN
- # undef THREAD_MINSTACKSIZE
- # define THREAD_MINSTACKSIZE PTHREAD_STACK_MIN
+@@ -598,7 +598,7 @@ start_blocking_thread_internal(
+ 		/* now clamp on lower stack limit. */
+ 		if (nstacksize < THREAD_MINSTACKSIZE)
+ 			nstacksize = THREAD_MINSTACKSIZE;
+-#            ifdef PTHREAD_STACK_MIN
++#            ifdef PTHREAD_STACK_MIN && !defined(__GLIBC__)
+ 		if (nstacksize < PTHREAD_STACK_MIN)
+ 			nstacksize = PTHREAD_STACK_MIN;
+ #            endif
 -- 
-2.32.0
+2.34.1
 
diff --git a/meta-networking/recipes-support/ntp/ntp/0001-test-Fix-build-with-new-compiler-defaults-to-fno-com.patch b/meta-networking/recipes-support/ntp/ntp/0001-test-Fix-build-with-new-compiler-defaults-to-fno-com.patch
index 42e1efd8be..24019e974b 100644
--- a/meta-networking/recipes-support/ntp/ntp/0001-test-Fix-build-with-new-compiler-defaults-to-fno-com.patch
+++ b/meta-networking/recipes-support/ntp/ntp/0001-test-Fix-build-with-new-compiler-defaults-to-fno-com.patch
@@ -5,12 +5,12 @@ Subject: [PATCH] test: Fix build with new compiler defaults to -fno-common
 
 Upstream-Status: Pending
 Signed-off-by: Khem Raj <raj.khem@gmail.com>
+Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
 ---
  sntp/tests/run-packetHandling.c | 2 +-
  sntp/tests/run-t-log.c          | 2 +-
  sntp/tests/run-utilities.c      | 2 +-
- tests/libntp/test-libntp.h      | 2 +-
- 4 files changed, 4 insertions(+), 4 deletions(-)
+ 3 files changed, 3 insertions(+), 3 deletions(-)
 
 diff --git a/sntp/tests/run-packetHandling.c b/sntp/tests/run-packetHandling.c
 index 7790b20..c58380c 100644
@@ -51,16 +51,6 @@ index f717882..98d9bf1 100644
  
  
  //=======MAIN=====
-diff --git a/tests/libntp/test-libntp.h b/tests/libntp/test-libntp.h
-index 93050b3..60461d8 100644
---- a/tests/libntp/test-libntp.h
-+++ b/tests/libntp/test-libntp.h
-@@ -5,4 +5,4 @@
- 
- time_t timefunc(time_t *ptr);
- void settime(int y, int m, int d, int H, int M, int S);
--time_t nowtime;
-+extern time_t nowtime;
 -- 
-2.32.0
+2.34.1
 
diff --git a/meta-networking/recipes-support/ntp/ntp/reproducibility-fixed-path-to-posix-shell.patch b/meta-networking/recipes-support/ntp/ntp/reproducibility-fixed-path-to-posix-shell.patch
index 571db75f7c..1961ada9b6 100644
--- a/meta-networking/recipes-support/ntp/ntp/reproducibility-fixed-path-to-posix-shell.patch
+++ b/meta-networking/recipes-support/ntp/ntp/reproducibility-fixed-path-to-posix-shell.patch
@@ -1,9 +1,17 @@
---- ntp-4.2.8p12.original/sntp/libopts/m4/libopts.m4	2018-11-12 17:54:57.747220846 +1300
-+++ ntp-4.2.8p12/sntp/libopts/m4/libopts.m4	2018-11-12 18:00:50.626211641 +1300
-@@ -114,12 +114,6 @@
+reproducibility fixed path to posixshell
+---
+ sntp/libopts/m4/libopts.m4 | 7 -------
+ 1 file changed, 7 deletions(-)
+
+diff --git a/sntp/libopts/m4/libopts.m4 b/sntp/libopts/m4/libopts.m4
+index 23738ca..4e18187 100644
+--- a/sntp/libopts/m4/libopts.m4
++++ b/sntp/libopts/m4/libopts.m4
+@@ -107,13 +107,6 @@ AC_DEFUN([INVOKE_LIBOPTS_MACROS_FIRST],[
    AC_PROG_SED
    [while :
    do
+-      test -x "$POSIX_SHELL" && break
 -      POSIX_SHELL=`which bash`
 -      test -x "$POSIX_SHELL" && break
 -      POSIX_SHELL=`which dash`
@@ -13,3 +21,6 @@
        POSIX_SHELL=`/bin/sh -c '
            exec 2>/dev/null
            if ! true ; then exit 1 ; fi
+-- 
+2.34.1
+
diff --git a/meta-networking/recipes-support/ntp/ntp_4.2.8p15.bb b/meta-networking/recipes-support/ntp/ntp_4.2.8p16.bb
similarity index 97%
rename from meta-networking/recipes-support/ntp/ntp_4.2.8p15.bb
rename to meta-networking/recipes-support/ntp/ntp_4.2.8p16.bb
index 5d2f05e925..8899f1254c 100644
--- a/meta-networking/recipes-support/ntp/ntp_4.2.8p15.bb
+++ b/meta-networking/recipes-support/ntp/ntp_4.2.8p16.bb
@@ -6,7 +6,7 @@ or satellite receiver or modem."
 HOMEPAGE = "http://support.ntp.org"
 SECTION = "net"
 LICENSE = "NTP"
-LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=4190b39435611e92a4da74e682623f19"
+LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=3a8ffebbcad335abf2c39fec38671eec"
 
 DEPENDS = "libevent"
 
@@ -24,7 +24,7 @@ SRC_URI = "http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ntp-${PV}.tar.g
            file://ntpd.list \
 "
 
-SRC_URI[sha256sum] = "f65840deab68614d5d7ceb2d0bb9304ff70dcdedd09abb79754a87536b849c19"
+SRC_URI[sha256sum] = "5225858bfd843b080fb9daa5b7370519130e5e49ac3eb0371e334bdc06c52dd7"
 
 # CVE-2016-9312 is only for windows.
 # CVE-2019-11331 is inherent to RFC 5905 and cannot be fixed without breaking compatibility
-- 
2.34.1



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

* [oe] [meta-networking] [PATCH] samba: upgrade 4.18.2 -> 4.18.3
  2023-06-05  7:52 [oe] [meta-gnome] [PATCH] evolution-data-server: upgrade 3.48.2 -> 3.48.3 wangmy
  2023-06-05  7:52 ` [oe] [meta-networking] [PATCH] ntp: upgrade 4.2.8p15 -> 4.2.8p16 wangmy
@ 2023-06-05  7:52 ` wangmy
  2023-06-05  7:52 ` [oe] [meta-oe] [PATCH] ctags: upgrade 6.0.20230528.0 -> 6.0.20230604.0 wangmy
                   ` (14 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: wangmy @ 2023-06-05  7:52 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../samba/{samba_4.18.2.bb => samba_4.18.3.bb}                  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-networking/recipes-connectivity/samba/{samba_4.18.2.bb => samba_4.18.3.bb} (99%)

diff --git a/meta-networking/recipes-connectivity/samba/samba_4.18.2.bb b/meta-networking/recipes-connectivity/samba/samba_4.18.3.bb
similarity index 99%
rename from meta-networking/recipes-connectivity/samba/samba_4.18.2.bb
rename to meta-networking/recipes-connectivity/samba/samba_4.18.3.bb
index 51b0ca751f..ee3665ca15 100644
--- a/meta-networking/recipes-connectivity/samba/samba_4.18.2.bb
+++ b/meta-networking/recipes-connectivity/samba/samba_4.18.3.bb
@@ -32,7 +32,7 @@ SRC_URI:append:libc-musl = " \
            file://cmocka-uintptr_t.patch \
            "
 
-SRC_URI[sha256sum] = "5bf87e179616cd12a52d85fb8b26eec709f13709a2b67fe42b1fb0213f7e8106"
+SRC_URI[sha256sum] = "c67e1453165a3918ffffad600236ca3966b47bde4798e89ae600ae3903ccc32c"
 
 UPSTREAM_CHECK_REGEX = "samba\-(?P<pver>4\.18(\.\d+)+).tar.gz"
 
-- 
2.34.1



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

* [oe] [meta-oe] [PATCH] ctags: upgrade 6.0.20230528.0 -> 6.0.20230604.0
  2023-06-05  7:52 [oe] [meta-gnome] [PATCH] evolution-data-server: upgrade 3.48.2 -> 3.48.3 wangmy
  2023-06-05  7:52 ` [oe] [meta-networking] [PATCH] ntp: upgrade 4.2.8p15 -> 4.2.8p16 wangmy
  2023-06-05  7:52 ` [oe] [meta-networking] [PATCH] samba: upgrade 4.18.2 -> 4.18.3 wangmy
@ 2023-06-05  7:52 ` wangmy
  2023-06-05  7:52 ` [oe] [meta-oe] [PATCH] tree: upgrade 2.1.0 -> 2.1.1 wangmy
                   ` (13 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: wangmy @ 2023-06-05  7:52 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.20230528.0.bb => ctags_6.0.20230604.0.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-devtools/ctags/{ctags_6.0.20230528.0.bb => ctags_6.0.20230604.0.bb} (95%)

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



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

* [oe] [meta-oe] [PATCH] tree: upgrade 2.1.0 -> 2.1.1
  2023-06-05  7:52 [oe] [meta-gnome] [PATCH] evolution-data-server: upgrade 3.48.2 -> 3.48.3 wangmy
                   ` (2 preceding siblings ...)
  2023-06-05  7:52 ` [oe] [meta-oe] [PATCH] ctags: upgrade 6.0.20230528.0 -> 6.0.20230604.0 wangmy
@ 2023-06-05  7:52 ` wangmy
  2023-06-05  7:52 ` [oe] [meta-oe] [PATCH] xrdb: upgrade 1.2.1 -> 1.2.2 wangmy
                   ` (12 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: wangmy @ 2023-06-05  7:52 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
============
  - Various spelling corrections.
  - Fix issue where following links while doing JSON output would lead to
    incorrect JSON output.
  - Fix issue where .info patterns relative to the .info file that did not use
    a wildcard for matching the prefix were not matching files properly.
  - Added support for making trees from tab indented files (--fromtabfile)
  - Fix buffer overflow in listdir() when file names are allowed to be longer
    than 256 characters (like when using fromfile.)
  - If when attempting to open a .gitignore or .info file from a top level
    directory and failing, recursively check the parents for such a file.  This
    stops when successful at opening such a file. This behavior might in the
    future be modified to open all such files in all parents to until root is
    reached.
  - Fix issue where tree would never descend (-l) a symbolic link when a full
    tree is gathered (--du/matchdirs/prune)

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 meta-oe/recipes-support/tree/{tree_2.1.0.bb => tree_2.1.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-support/tree/{tree_2.1.0.bb => tree_2.1.1.bb} (87%)

diff --git a/meta-oe/recipes-support/tree/tree_2.1.0.bb b/meta-oe/recipes-support/tree/tree_2.1.1.bb
similarity index 87%
rename from meta-oe/recipes-support/tree/tree_2.1.0.bb
rename to meta-oe/recipes-support/tree/tree_2.1.1.bb
index c867a3a7d8..0b61149609 100644
--- a/meta-oe/recipes-support/tree/tree_2.1.0.bb
+++ b/meta-oe/recipes-support/tree/tree_2.1.1.bb
@@ -5,7 +5,7 @@ LICENSE = "GPL-2.0-only"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=393a5ca445f6965873eca0259a17f833"
 
 SRC_URI = "http://mama.indstate.edu/users/ice/tree/src/${BP}.tgz"
-SRC_URI[sha256sum] = "0160c535bff2b0dc6a830b9944e981e3427380f63e748da96ced7071faebabf6"
+SRC_URI[sha256sum] = "d3c3d55f403af7c76556546325aa1eca90b918cbaaf6d3ab60a49d8367ab90d5"
 
 # tree's default CFLAGS for Linux
 CFLAGS += "-Wall -DLINUX -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64"
-- 
2.34.1



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

* [oe] [meta-oe] [PATCH] xrdb: upgrade 1.2.1 -> 1.2.2
  2023-06-05  7:52 [oe] [meta-gnome] [PATCH] evolution-data-server: upgrade 3.48.2 -> 3.48.3 wangmy
                   ` (3 preceding siblings ...)
  2023-06-05  7:52 ` [oe] [meta-oe] [PATCH] tree: upgrade 2.1.0 -> 2.1.1 wangmy
@ 2023-06-05  7:52 ` wangmy
  2023-06-05  7:52 ` [oe] [meta-oe] [PATCH] xterm: upgrade 381 -> 382 wangmy
                   ` (11 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: wangmy @ 2023-06-05  7:52 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
=========
gitlab CI: add a basic build test
Build xz tarballs instead of bzip2
gitlab CI: stop requiring Signed-off-by in commits
Variable scope reduction as recommended by cppcheck
Use C99 struct initialization
Rename variable 'dup' to avoid shadowing dup() function
Fallback asprintf: don't truncate output that has a \0 in string
configure: raise minimum autoconf requirement to 2.70

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../recipes-graphics/xorg-app/{xrdb_1.2.1.bb => xrdb_1.2.2.bb} | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
 rename meta-oe/recipes-graphics/xorg-app/{xrdb_1.2.1.bb => xrdb_1.2.2.bb} (70%)

diff --git a/meta-oe/recipes-graphics/xorg-app/xrdb_1.2.1.bb b/meta-oe/recipes-graphics/xorg-app/xrdb_1.2.2.bb
similarity index 70%
rename from meta-oe/recipes-graphics/xorg-app/xrdb_1.2.1.bb
rename to meta-oe/recipes-graphics/xorg-app/xrdb_1.2.2.bb
index 20fdea1a54..53214c8fe8 100644
--- a/meta-oe/recipes-graphics/xorg-app/xrdb_1.2.1.bb
+++ b/meta-oe/recipes-graphics/xorg-app/xrdb_1.2.2.bb
@@ -5,6 +5,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d1167c4f586bd41f0c62166db4384a69"
 
 DEPENDS += "libxmu"
 
-SRC_URI[sha256sum] = "4f5d031c214ffb88a42ae7528492abde1178f5146351ceb3c05f3b8d5abee8b4"
+SRC_URI_EXT = "xz"
+SRC_URI[sha256sum] = "31f5fcab231b38f255b00b066cf7ea3b496df712c9eb2d0d50c670b63e5033f4"
 
 EXTRA_OECONF += "--with-cpp=${bindir}/cpp"
-- 
2.34.1



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

* [oe] [meta-oe] [PATCH] xterm: upgrade 381 -> 382
  2023-06-05  7:52 [oe] [meta-gnome] [PATCH] evolution-data-server: upgrade 3.48.2 -> 3.48.3 wangmy
                   ` (4 preceding siblings ...)
  2023-06-05  7:52 ` [oe] [meta-oe] [PATCH] xrdb: upgrade 1.2.1 -> 1.2.2 wangmy
@ 2023-06-05  7:52 ` wangmy
  2023-06-05  7:52 ` [oe] [meta-oe] [PATCH] xwd: upgrade 1.0.8 -> 1.0.9 wangmy
                   ` (10 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: wangmy @ 2023-06-05  7:52 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_381.bb => xterm_382.bb}    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-graphics/xorg-app/{xterm_381.bb => xterm_382.bb} (94%)

diff --git a/meta-oe/recipes-graphics/xorg-app/xterm_381.bb b/meta-oe/recipes-graphics/xorg-app/xterm_382.bb
similarity index 94%
rename from meta-oe/recipes-graphics/xorg-app/xterm_381.bb
rename to meta-oe/recipes-graphics/xorg-app/xterm_382.bb
index f3a034884e..3bae13658c 100644
--- a/meta-oe/recipes-graphics/xorg-app/xterm_381.bb
+++ b/meta-oe/recipes-graphics/xorg-app/xterm_382.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] = "924dd6ab1471d486d219aba4edb881a03dd4129fd55ee556390f7a1648f523bd"
+SRC_URI[sha256sum] = "0cd0bcf3d0aa746a840ea3f1366ea29a74263694d535b5c777f27eb65d7fceed"
 
 PACKAGECONFIG ?= ""
 PACKAGECONFIG[xft] = "--enable-freetype,--disable-freetype,libxft fontconfig freetype-native"
-- 
2.34.1



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

* [oe] [meta-oe] [PATCH] xwd: upgrade 1.0.8 -> 1.0.9
  2023-06-05  7:52 [oe] [meta-gnome] [PATCH] evolution-data-server: upgrade 3.48.2 -> 3.48.3 wangmy
                   ` (5 preceding siblings ...)
  2023-06-05  7:52 ` [oe] [meta-oe] [PATCH] xterm: upgrade 381 -> 382 wangmy
@ 2023-06-05  7:52 ` wangmy
  2023-06-05  7:53 ` [oe] [meta-perl] [PATCH] libnet-dns-perl: upgrade 1.38 -> 1.39 wangmy
                   ` (9 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: wangmy @ 2023-06-05  7:52 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
==========
Make -help & -version work without requiring an open display
list.c: Stop building functions that are never called
Delete commented-out local copy of list function prototypes
Variable scope reduction as recommended by cppcheck
Remove unnecessary casts from malloc() and free() calls
Handle -Wcomma warnings from clang
Remove unused macros
gitlab CI: stop requiring Signed-off-by in commits
Build xz tarballs instead of bzip2
gitlab CI: add a basic build test
Fix spelling/wording issues

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../recipes-graphics/xorg-app/{xwd_1.0.8.bb => xwd_1.0.9.bb}   | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
 rename meta-oe/recipes-graphics/xorg-app/{xwd_1.0.8.bb => xwd_1.0.9.bb} (74%)

diff --git a/meta-oe/recipes-graphics/xorg-app/xwd_1.0.8.bb b/meta-oe/recipes-graphics/xorg-app/xwd_1.0.9.bb
similarity index 74%
rename from meta-oe/recipes-graphics/xorg-app/xwd_1.0.8.bb
rename to meta-oe/recipes-graphics/xorg-app/xwd_1.0.9.bb
index 44b9c80d73..4a05a4437a 100644
--- a/meta-oe/recipes-graphics/xorg-app/xwd_1.0.8.bb
+++ b/meta-oe/recipes-graphics/xorg-app/xwd_1.0.9.bb
@@ -7,4 +7,5 @@ LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=c0cdb783e9a0198237371fdaa26a18bf"
 DEPENDS = "libxmu libxkbfile"
 
-SRC_URI[sha256sum] = "fbaa2b34163714fe7be22b60920ea4683f63b355babb1781aec2e452a033031b"
+SRC_URI_EXT = "xz"
+SRC_URI[sha256sum] = "dc121b84947eb4a3d1131bff1e9844cfa2124d95b47b35f9932340fa931fbd3f"
-- 
2.34.1



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

* [oe] [meta-perl] [PATCH] libnet-dns-perl: upgrade 1.38 -> 1.39
  2023-06-05  7:52 [oe] [meta-gnome] [PATCH] evolution-data-server: upgrade 3.48.2 -> 3.48.3 wangmy
                   ` (6 preceding siblings ...)
  2023-06-05  7:52 ` [oe] [meta-oe] [PATCH] xwd: upgrade 1.0.8 -> 1.0.9 wangmy
@ 2023-06-05  7:53 ` wangmy
  2023-06-05  7:53 ` [oe] [meta-python] [PATCH] pamela: upgrade 1.0.0 -> 1.1.0 wangmy
                   ` (8 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: wangmy @ 2023-06-05  7:53 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
 Fix rt.cpan.org #148340 udpsize uninitialized value

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../libnet/{libnet-dns-perl_1.38.bb => libnet-dns-perl_1.39.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-perl/recipes-perl/libnet/{libnet-dns-perl_1.38.bb => libnet-dns-perl_1.39.bb} (95%)

diff --git a/meta-perl/recipes-perl/libnet/libnet-dns-perl_1.38.bb b/meta-perl/recipes-perl/libnet/libnet-dns-perl_1.39.bb
similarity index 95%
rename from meta-perl/recipes-perl/libnet/libnet-dns-perl_1.38.bb
rename to meta-perl/recipes-perl/libnet/libnet-dns-perl_1.39.bb
index fcba788fbc..7e57be35cc 100644
--- a/meta-perl/recipes-perl/libnet/libnet-dns-perl_1.38.bb
+++ b/meta-perl/recipes-perl/libnet/libnet-dns-perl_1.39.bb
@@ -9,7 +9,7 @@ DEPENDS += "perl"
 
 SRC_URI = "http://search.cpan.org/CPAN/authors/id/N/NL/NLNETLABS/Net-DNS-${PV}.tar.gz"
 
-SRC_URI[sha256sum] = "d8a34341649882d6e2bdf95d046e74c83a150b5e5d818941c1e341f48fba88e0"
+SRC_URI[sha256sum] = "e99cdedf9f0d60dca16f613e488c5b7f123c2fb24b3346d580cfe7da40851ac6"
 
 UPSTREAM_CHECK_REGEX = "Net\-DNS\-(?P<pver>(\d+\.\d+))(?!_\d+).tar"
 
-- 
2.34.1



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

* [oe] [meta-python] [PATCH] pamela: upgrade 1.0.0 -> 1.1.0
  2023-06-05  7:52 [oe] [meta-gnome] [PATCH] evolution-data-server: upgrade 3.48.2 -> 3.48.3 wangmy
                   ` (7 preceding siblings ...)
  2023-06-05  7:53 ` [oe] [meta-perl] [PATCH] libnet-dns-perl: upgrade 1.38 -> 1.39 wangmy
@ 2023-06-05  7:53 ` wangmy
  2023-06-05  7:53 ` [oe] [meta-python] [PATCH] python3-cachecontrol: upgrade 0.12.12 -> 0.13.0 wangmy
                   ` (7 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: wangmy @ 2023-06-05  7:53 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../recipes-devtools/python/pamela_1.0.0.bb       | 15 ---------------
 .../recipes-devtools/python/pamela_1.1.0.bb       | 14 ++++++++++++++
 2 files changed, 14 insertions(+), 15 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/pamela_1.0.0.bb
 create mode 100644 meta-python/recipes-devtools/python/pamela_1.1.0.bb

diff --git a/meta-python/recipes-devtools/python/pamela_1.0.0.bb b/meta-python/recipes-devtools/python/pamela_1.0.0.bb
deleted file mode 100644
index 369ed78ca7..0000000000
--- a/meta-python/recipes-devtools/python/pamela_1.0.0.bb
+++ /dev/null
@@ -1,15 +0,0 @@
-DESCRIPTION = "Pamela: yet another Python wrapper for PAM"
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://PKG-INFO;md5=3f9b78307cdde4e6a4976bfd82a0e7f3"
-
-SRC_URI[md5sum] = "5fc14f5275383ed8bdd509007af0323d"
-SRC_URI[sha256sum] = "65c9389bef7d1bb0b168813b6be21964df32016923aac7515bdf05366acbab6c"
-
-PYPI_PACKAGE = "pamela"
-
-inherit pypi setuptools3
-
-RDEPENDS:${PN} = "libpam"
-
-inherit features_check
-REQUIRED_DISTRO_FEATURES = "pam"
diff --git a/meta-python/recipes-devtools/python/pamela_1.1.0.bb b/meta-python/recipes-devtools/python/pamela_1.1.0.bb
new file mode 100644
index 0000000000..3573de551d
--- /dev/null
+++ b/meta-python/recipes-devtools/python/pamela_1.1.0.bb
@@ -0,0 +1,14 @@
+DESCRIPTION = "Pamela: yet another Python wrapper for PAM"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://PKG-INFO;md5=6b706db92112b8384848de3e5c6adaa3"
+
+SRC_URI[sha256sum] = "d4b139fe600e192e176a2a368059207a6bffa0e7879879b13f4fcba0163481be"
+
+PYPI_PACKAGE = "pamela"
+
+inherit pypi setuptools3
+
+RDEPENDS:${PN} = "libpam"
+
+inherit features_check
+REQUIRED_DISTRO_FEATURES = "pam"
-- 
2.34.1



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

* [oe] [meta-python] [PATCH] python3-cachecontrol: upgrade 0.12.12 -> 0.13.0
  2023-06-05  7:52 [oe] [meta-gnome] [PATCH] evolution-data-server: upgrade 3.48.2 -> 3.48.3 wangmy
                   ` (8 preceding siblings ...)
  2023-06-05  7:53 ` [oe] [meta-python] [PATCH] pamela: upgrade 1.0.0 -> 1.1.0 wangmy
@ 2023-06-05  7:53 ` wangmy
  2023-06-05  7:53 ` [oe] [meta-python] [PATCH] python3-google-api-python-client: upgrade 2.87.0 -> 2.88.0 wangmy
                   ` (6 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: wangmy @ 2023-06-05  7:53 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
==========
    Fix #292: disuse HTTPResponse.strict
    fix: double reading error on urllib3 2.0
    Packaging the tests, or not
    Add type annotations
    Use Python's unittest mock
    feat: remove compat module
    tests: Support python 3.11
    fix: use pytest native method name
    Remove use of utcnow
    Release 0.13.0

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...cachecontrol_0.12.12.bb => python3-cachecontrol_0.13.0.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-cachecontrol_0.12.12.bb => python3-cachecontrol_0.13.0.bb} (84%)

diff --git a/meta-python/recipes-devtools/python/python3-cachecontrol_0.12.12.bb b/meta-python/recipes-devtools/python/python3-cachecontrol_0.13.0.bb
similarity index 84%
rename from meta-python/recipes-devtools/python/python3-cachecontrol_0.12.12.bb
rename to meta-python/recipes-devtools/python/python3-cachecontrol_0.13.0.bb
index 8f7185b8f5..e4e3c49988 100644
--- a/meta-python/recipes-devtools/python/python3-cachecontrol_0.12.12.bb
+++ b/meta-python/recipes-devtools/python/python3-cachecontrol_0.13.0.bb
@@ -1,13 +1,13 @@
 SUMMARY = "httplib2 caching for requests"
 HOMEPAGE = "https://pypi.org/project/CacheControl/"
 LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=12;endline=12;md5=942a721dac34d073453642ffe5fcf546"
+LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=12;endline=12;md5=e2fd6ddcf506e08972d5ba4b93c0022e"
 
 # On PyPi, this is "CacheControl", rather than "cachecontrol", so we need to
 # override PYPI_PACKAGE so fetch succeeds.
 PYPI_PACKAGE = "CacheControl"
 
-SRC_URI[sha256sum] = "9c2e5208ea76ebd9921176569743ddf6d7f3bb4188dbf61806f0f8fc48ecad38"
+SRC_URI[sha256sum] = "fd3fd2cb0ca66b9a6c1d56cc9709e7e49c63dbd19b1b1bcbd8d3f94cedfe8ce5"
 
 inherit pypi setuptools3
 
-- 
2.34.1



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

* [oe] [meta-python] [PATCH] python3-google-api-python-client: upgrade 2.87.0 -> 2.88.0
  2023-06-05  7:52 [oe] [meta-gnome] [PATCH] evolution-data-server: upgrade 3.48.2 -> 3.48.3 wangmy
                   ` (9 preceding siblings ...)
  2023-06-05  7:53 ` [oe] [meta-python] [PATCH] python3-cachecontrol: upgrade 0.12.12 -> 0.13.0 wangmy
@ 2023-06-05  7:53 ` wangmy
  2023-06-05  7:53 ` [oe] [meta-python] [PATCH] python3-google-auth: upgrade 2.19.0 -> 2.19.1 wangmy
                   ` (5 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: wangmy @ 2023-06-05  7:53 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.87.0.bb => python3-google-api-python-client_2.88.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-google-api-python-client_2.87.0.bb => python3-google-api-python-client_2.88.0.bb} (86%)

diff --git a/meta-python/recipes-devtools/python/python3-google-api-python-client_2.87.0.bb b/meta-python/recipes-devtools/python/python3-google-api-python-client_2.88.0.bb
similarity index 86%
rename from meta-python/recipes-devtools/python/python3-google-api-python-client_2.87.0.bb
rename to meta-python/recipes-devtools/python/python3-google-api-python-client_2.88.0.bb
index c6a7663436..6ea78ee812 100644
--- a/meta-python/recipes-devtools/python/python3-google-api-python-client_2.87.0.bb
+++ b/meta-python/recipes-devtools/python/python3-google-api-python-client_2.88.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] = "bbea5869877c822d12d318943833d988497b3a18b9ca2386967118074db676f3"
+SRC_URI[sha256sum] = "37068453f79ea28e5394a8fe20a4ba620594e7f8541068bea2e844dacdcc9d33"
 
 inherit pypi setuptools3
 
-- 
2.34.1



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

* [oe] [meta-python] [PATCH] python3-google-auth: upgrade 2.19.0 -> 2.19.1
  2023-06-05  7:52 [oe] [meta-gnome] [PATCH] evolution-data-server: upgrade 3.48.2 -> 3.48.3 wangmy
                   ` (10 preceding siblings ...)
  2023-06-05  7:53 ` [oe] [meta-python] [PATCH] python3-google-api-python-client: upgrade 2.87.0 -> 2.88.0 wangmy
@ 2023-06-05  7:53 ` wangmy
  2023-06-05  7:53 ` [oe] [meta-python] [PATCH] python3-nocaselist: upgrade 1.1.1 -> 2.0.0 wangmy
                   ` (4 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: wangmy @ 2023-06-05  7:53 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
===========
Bug Fixes
---------
    Check id token error response (#1315) (2a71f7b)
    Fix "AttributeError: 'str' object has no attribute 'get'" (dac7cc3)

Documentation
--------------
    Replacing abc.com with example.com (dac7cc3)

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

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



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

* [oe] [meta-python] [PATCH] python3-nocaselist: upgrade 1.1.1 -> 2.0.0
  2023-06-05  7:52 [oe] [meta-gnome] [PATCH] evolution-data-server: upgrade 3.48.2 -> 3.48.3 wangmy
                   ` (11 preceding siblings ...)
  2023-06-05  7:53 ` [oe] [meta-python] [PATCH] python3-google-auth: upgrade 2.19.0 -> 2.19.1 wangmy
@ 2023-06-05  7:53 ` wangmy
  2023-06-05  7:53 ` [oe] [meta-python] [PATCH] python3-pymodbus: upgrade 3.2.2 -> 3.3.0 wangmy
                   ` (3 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: wangmy @ 2023-06-05  7:53 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

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

diff --git a/meta-python/recipes-devtools/python/python3-nocaselist_1.1.1.bb b/meta-python/recipes-devtools/python/python3-nocaselist_2.0.0.bb
similarity index 75%
rename from meta-python/recipes-devtools/python/python3-nocaselist_1.1.1.bb
rename to meta-python/recipes-devtools/python/python3-nocaselist_2.0.0.bb
index 89a44ea53e..29a3c86067 100644
--- a/meta-python/recipes-devtools/python/python3-nocaselist_1.1.1.bb
+++ b/meta-python/recipes-devtools/python/python3-nocaselist_2.0.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://nocaselist.readthedocs.io/en/latest/"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
 
-SRC_URI[sha256sum] = "5272b232e08246696ab26fe0ebbd28b8989dac9ee5732b50264950323b513d23"
+SRC_URI[sha256sum] = "456aa000c6777c5d21b029c52e532f94328d4fb4f15ad2a4dd3dd62db30b3892"
 
 inherit pypi setuptools3
 
-- 
2.34.1



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

* [oe] [meta-python] [PATCH] python3-pymodbus: upgrade 3.2.2 -> 3.3.0
  2023-06-05  7:52 [oe] [meta-gnome] [PATCH] evolution-data-server: upgrade 3.48.2 -> 3.48.3 wangmy
                   ` (12 preceding siblings ...)
  2023-06-05  7:53 ` [oe] [meta-python] [PATCH] python3-nocaselist: upgrade 1.1.1 -> 2.0.0 wangmy
@ 2023-06-05  7:53 ` wangmy
  2023-06-05  7:53 ` [oe] [meta-python] [PATCH] python3-regex: upgrade 2023.5.5 -> 2023.6.3 wangmy
                   ` (2 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: wangmy @ 2023-06-05  7:53 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
===========

    Stabilize windows tests. (#1567)
    Bump mypy 1.3.0 (#1568)
    Transport integrated in async clients. (#1541)
    Client async corrections (due to 3.1.2) (#1565)
    Server_async[udp], solve 3.1.1 problem. (#1564)
    Remove ModbusTcpDiagClient. (#1560)
    Remove old method from Python2/3 transition (#1559)
    Switch to ruff's version of bandit (#1557)
    Allow reading/writing address 0 in the simulator (#1552)
    Remove references to "defer_start". (#1548)
    Client more robust against faulty response. (#1547)
    Fix missing package_data directives for simulator web (#1544)
    Fix installation instructions (#1543)
    Solve pytest timeout problem. (#1540)
    DiagnosticStatus encode missing tuple check. (#1533)
    test SparseDataStore. (#1532)
    BinaryPayloadBuilder.to_string to BinaryPayloadBuilder.encode (#1526)
    Adding flake8-pytest-style` to ruff (#1520)
    Simplify version management. (#1522)
    pylint and pre-commit autoupdate (#1519)
    Add type hint (#1512)
    Add action to lock issues/PR. (#1508)
    New common transport layer. (#1492)
    Solve serial close raise problem.
    Remove old config values (#1503)
    Document pymodbus.simulator. (#1502)
    Refactor REPL server to reduce complexity (#1499)
    Don't catch KeyboardInterrupt twice for REPL server (#1498)
    Refactor REPL client to reduce complexity (#1489)
    pymodbus.server: listen on ID 1 by default (#1496)
    Clean framer/__init__.py (#1494)
    Duplicate transactions in UDP. (#1486)
    clean ProcessIncommingPacket. (#1491)
    Enable pyupgrade (U) rules in ruff (#1484)
    clean_workflow.yaml solve parameter problem.
    Correct wrong import in test. (#1483)
    Implement pyflakes-simplify (#1480)
    Test case for UDP duplicate msg issue (#1470)
    Test of write_coil. (#1479)
    Test reuse of client object. (#1475)
    Comment about addressing when shared=false (#1474)
    Remove old aliases to OSError (#1473)
    pymodbus.simulator fixes (#1463)
    Fix wrong error message with pymodbus console (#1456)
    update modbusrtuframer (#1435)
    Server multidrop test.: (#1451)
    mypy problem ModbusResponse.

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

diff --git a/meta-python/recipes-devtools/python/python3-pymodbus_3.2.2.bb b/meta-python/recipes-devtools/python/python3-pymodbus_3.3.0.bb
similarity index 91%
rename from meta-python/recipes-devtools/python/python3-pymodbus_3.2.2.bb
rename to meta-python/recipes-devtools/python/python3-pymodbus_3.3.0.bb
index 783bed821..9b84c4f88 100644
--- a/meta-python/recipes-devtools/python/python3-pymodbus_3.2.2.bb
+++ b/meta-python/recipes-devtools/python/python3-pymodbus_3.3.0.bb
@@ -4,7 +4,7 @@ LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=430604f78bee72425da231d42eac9cee"
 DEPENDS += "python3-six-native"
 
-SRC_URI[sha256sum] = "6f46f55b41875e5ac41ba660f514f4bb7a732811e303f671b76f310906355089"
+SRC_URI[sha256sum] = "0816a644d0ecc74b488ba9f46f8d6662c4a7272a493f184d2c81c6717fb62355"
 S = "${WORKDIR}/pymodbus-${PV}"
 
 inherit pypi setuptools3
-- 
2.34.1



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

* [oe] [meta-python] [PATCH] python3-regex: upgrade 2023.5.5 -> 2023.6.3
  2023-06-05  7:52 [oe] [meta-gnome] [PATCH] evolution-data-server: upgrade 3.48.2 -> 3.48.3 wangmy
                   ` (13 preceding siblings ...)
  2023-06-05  7:53 ` [oe] [meta-python] [PATCH] python3-pymodbus: upgrade 3.2.2 -> 3.3.0 wangmy
@ 2023-06-05  7:53 ` wangmy
  2023-06-05  7:53 ` [oe] [meta-python] [PATCH] python3-rich: upgrade 13.3.5 -> 13.4.1 wangmy
  2023-06-05  7:53 ` [oe] [meta-python] [PATCH] python3-sentry-sdk: upgrade 1.24.0 -> 1.25.0 wangmy
  16 siblings, 0 replies; 18+ messages in thread
From: wangmy @ 2023-06-05  7:53 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
=============
  # Git issue 498: Conditional negative lookahead inside positive lookahead fails to match
    Conditional node needed an additional member that points to the true branch.

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

diff --git a/meta-python/recipes-devtools/python/python3-regex_2023.5.5.bb b/meta-python/recipes-devtools/python/python3-regex_2023.6.3.bb
similarity index 79%
rename from meta-python/recipes-devtools/python/python3-regex_2023.5.5.bb
rename to meta-python/recipes-devtools/python/python3-regex_2023.6.3.bb
index ddd8402465..f653f32fe2 100644
--- a/meta-python/recipes-devtools/python/python3-regex_2023.5.5.bb
+++ b/meta-python/recipes-devtools/python/python3-regex_2023.6.3.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=7b5751ddd6b643203c31ff873051d069"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "7d76a8a1fc9da08296462a18f16620ba73bcbf5909e42383b253ef34d9d5141e"
+SRC_URI[sha256sum] = "72d1a25bf36d2050ceb35b517afe13864865268dfb45910e2e17a84be6cbfeb0"
 
 RDEPENDS:${PN} += " \
 	python3-stringold \
-- 
2.34.1



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

* [oe] [meta-python] [PATCH] python3-rich: upgrade 13.3.5 -> 13.4.1
  2023-06-05  7:52 [oe] [meta-gnome] [PATCH] evolution-data-server: upgrade 3.48.2 -> 3.48.3 wangmy
                   ` (14 preceding siblings ...)
  2023-06-05  7:53 ` [oe] [meta-python] [PATCH] python3-regex: upgrade 2023.5.5 -> 2023.6.3 wangmy
@ 2023-06-05  7:53 ` wangmy
  2023-06-05  7:53 ` [oe] [meta-python] [PATCH] python3-sentry-sdk: upgrade 1.24.0 -> 1.25.0 wangmy
  16 siblings, 0 replies; 18+ messages in thread
From: wangmy @ 2023-06-05  7:53 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
============
  Fixed typing extensions import in markdown #2979
  Added support for tables in Markdown #2977

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../{python3-rich_13.3.5.bb => python3-rich_13.4.1.bb}          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-extended/python-rich/{python3-rich_13.3.5.bb => python3-rich_13.4.1.bb} (85%)

diff --git a/meta-python/recipes-extended/python-rich/python3-rich_13.3.5.bb b/meta-python/recipes-extended/python-rich/python3-rich_13.4.1.bb
similarity index 85%
rename from meta-python/recipes-extended/python-rich/python3-rich_13.3.5.bb
rename to meta-python/recipes-extended/python-rich/python3-rich_13.4.1.bb
index cedbed3ca8..09882e6290 100644
--- a/meta-python/recipes-extended/python-rich/python3-rich_13.3.5.bb
+++ b/meta-python/recipes-extended/python-rich/python3-rich_13.4.1.bb
@@ -8,7 +8,7 @@ LICENSE = "MIT"
 
 LIC_FILES_CHKSUM = "file://LICENSE;md5=b5f0b94fbc94f5ad9ae4efcf8a778303"
 
-SRC_URI[sha256sum] = "2d11b9b8dd03868f09b4fffadc84a6a8cda574e40dc90821bd845720ebb8e89c"
+SRC_URI[sha256sum] = "76f6b65ea7e5c5d924ba80e322231d7cb5b5981aa60bfc1e694f1bc097fe6fe1"
 
 inherit pypi python_poetry_core
 
-- 
2.34.1



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

* [oe] [meta-python] [PATCH] python3-sentry-sdk: upgrade 1.24.0 -> 1.25.0
  2023-06-05  7:52 [oe] [meta-gnome] [PATCH] evolution-data-server: upgrade 3.48.2 -> 3.48.3 wangmy
                   ` (15 preceding siblings ...)
  2023-06-05  7:53 ` [oe] [meta-python] [PATCH] python3-rich: upgrade 13.3.5 -> 13.4.1 wangmy
@ 2023-06-05  7:53 ` wangmy
  16 siblings, 0 replies; 18+ messages in thread
From: wangmy @ 2023-06-05  7:53 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
===========
    Support urllib3>=2.0.0 (#2148)
    Auto-retry tests on failure (#2134)
    Correct importlib.metadata check in test_modules (#2149)
    Fix distribution name normalization (PEP-0503) (#2144)
    Fix functions_to_trace typing (#2141)

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

diff --git a/meta-python/recipes-devtools/python/python3-sentry-sdk_1.24.0.bb b/meta-python/recipes-devtools/python/python3-sentry-sdk_1.25.0.bb
similarity index 86%
rename from meta-python/recipes-devtools/python/python3-sentry-sdk_1.24.0.bb
rename to meta-python/recipes-devtools/python/python3-sentry-sdk_1.25.0.bb
index 9e4b87da9..10e77ae60 100644
--- a/meta-python/recipes-devtools/python/python3-sentry-sdk_1.24.0.bb
+++ b/meta-python/recipes-devtools/python/python3-sentry-sdk_1.25.0.bb
@@ -15,7 +15,7 @@ RDEPENDS:${PN} += "\
 	${PYTHON_PN}-datetime \
 "
 
-SRC_URI[sha256sum] = "0bbcecda9f51936904c1030e7fef0fe693e633888f02a14d1cb68646a50e83b3"
+SRC_URI[sha256sum] = "5be3296fc574fa8a4d9b213b4dcf8c8d0246c08f8bd78315c6286f386c37555a"
 
 PYPI_PACKAGE = "sentry-sdk"
 
-- 
2.34.1



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

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

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-05  7:52 [oe] [meta-gnome] [PATCH] evolution-data-server: upgrade 3.48.2 -> 3.48.3 wangmy
2023-06-05  7:52 ` [oe] [meta-networking] [PATCH] ntp: upgrade 4.2.8p15 -> 4.2.8p16 wangmy
2023-06-05  7:52 ` [oe] [meta-networking] [PATCH] samba: upgrade 4.18.2 -> 4.18.3 wangmy
2023-06-05  7:52 ` [oe] [meta-oe] [PATCH] ctags: upgrade 6.0.20230528.0 -> 6.0.20230604.0 wangmy
2023-06-05  7:52 ` [oe] [meta-oe] [PATCH] tree: upgrade 2.1.0 -> 2.1.1 wangmy
2023-06-05  7:52 ` [oe] [meta-oe] [PATCH] xrdb: upgrade 1.2.1 -> 1.2.2 wangmy
2023-06-05  7:52 ` [oe] [meta-oe] [PATCH] xterm: upgrade 381 -> 382 wangmy
2023-06-05  7:52 ` [oe] [meta-oe] [PATCH] xwd: upgrade 1.0.8 -> 1.0.9 wangmy
2023-06-05  7:53 ` [oe] [meta-perl] [PATCH] libnet-dns-perl: upgrade 1.38 -> 1.39 wangmy
2023-06-05  7:53 ` [oe] [meta-python] [PATCH] pamela: upgrade 1.0.0 -> 1.1.0 wangmy
2023-06-05  7:53 ` [oe] [meta-python] [PATCH] python3-cachecontrol: upgrade 0.12.12 -> 0.13.0 wangmy
2023-06-05  7:53 ` [oe] [meta-python] [PATCH] python3-google-api-python-client: upgrade 2.87.0 -> 2.88.0 wangmy
2023-06-05  7:53 ` [oe] [meta-python] [PATCH] python3-google-auth: upgrade 2.19.0 -> 2.19.1 wangmy
2023-06-05  7:53 ` [oe] [meta-python] [PATCH] python3-nocaselist: upgrade 1.1.1 -> 2.0.0 wangmy
2023-06-05  7:53 ` [oe] [meta-python] [PATCH] python3-pymodbus: upgrade 3.2.2 -> 3.3.0 wangmy
2023-06-05  7:53 ` [oe] [meta-python] [PATCH] python3-regex: upgrade 2023.5.5 -> 2023.6.3 wangmy
2023-06-05  7:53 ` [oe] [meta-python] [PATCH] python3-rich: upgrade 13.3.5 -> 13.4.1 wangmy
2023-06-05  7:53 ` [oe] [meta-python] [PATCH] python3-sentry-sdk: upgrade 1.24.0 -> 1.25.0 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).