[oe] [kirkstone 00/11] Patch review Sept 19th

2022-09-19 Thread Armin Kuster
Please have comments back by Wednesday Sept 21st.

The following changes since commit 8f96c05f6d82fde052f2cb1652c13922814accb0:

  lmdb: only set SONAME on the shared library (2022-09-04 07:52:16 -0400)

are available in the Git repository at:

  git://git.openembedded.org/meta-openembedded-contrib stable/kirkstone-nut
  
http://cgit.openembedded.org/meta-openembedded-contrib/log/?h=stable/kirkstone-nut

Enrico Scholz (1):
  nodejs-oe-cache-native: initial checkin

Jose Quaresma (2):
  wireguard-module: 1.0.20210219 -> 1.0.20220627
  wireguard-tools: Add a new package for wg-quick

Khem Raj (3):
  ntpsec: Add -D_GNU_SOURCE and fix building with devtool
  gd: Fix build with clang-15
  safec: Remove unused variable 'len'

Mingli Yu (1):
  postgresql: make sure pam conf installed when pam enabled

Wang Mingyu (1):
  php: upgrade 8.1.8 -> 8.1.9

Yi Zhao (3):
  libldb: upgrade 2.3.3 -> 2.3.4
  samba: upgrade 4.14.13 -> 4.14.14
  samba: fix buildpaths issue

 ...orture-skip-test-case-tfork_cmd_send.patch |  38 ++
 .../{samba_4.14.13.bb => samba_4.14.14.bb}|   3 +-
 ...19.bb => wireguard-module_1.0.20220627.bb} |   4 +-
 .../wireguard/wireguard-tools_1.0.20210914.bb |  14 ++-
 .../{libldb_2.3.3.bb => libldb_2.3.4.bb}  |   4 +-
 ...01-wscript-Widen-the-search-for-tags.patch |  29 +
 .../recipes-support/ntpsec/ntpsec_1.2.1.bb|   6 +-
 ...strpbrk_s-Remove-unused-variable-len.patch |  42 +++
 meta-oe/recipes-core/safec/safec_3.7.1.bb |   3 +-
 meta-oe/recipes-dbs/postgresql/postgresql.inc |   2 +-
 .../nodejs/nodejs-oe-cache-16.14/oe-npm-cache |  77 
 .../nodejs/nodejs-oe-cache-native_16.14.bb|  21 
 .../php/{php_8.1.8.bb => php_8.1.9.bb}|   2 +-
 ...1-Fix-deprecared-function-prototypes.patch | 115 ++
 meta-oe/recipes-support/gd/gd_2.3.3.bb|   1 +
 15 files changed, 348 insertions(+), 13 deletions(-)
 create mode 100644 
meta-networking/recipes-connectivity/samba/samba/0001-smbtorture-skip-test-case-tfork_cmd_send.patch
 rename meta-networking/recipes-connectivity/samba/{samba_4.14.13.bb => 
samba_4.14.14.bb} (98%)
 rename 
meta-networking/recipes-kernel/wireguard/{wireguard-module_1.0.20210219.bb => 
wireguard-module_1.0.20220627.bb} (85%)
 rename meta-networking/recipes-support/libldb/{libldb_2.3.3.bb => 
libldb_2.3.4.bb} (95%)
 create mode 100644 
meta-networking/recipes-support/ntpsec/ntpsec/0001-wscript-Widen-the-search-for-tags.patch
 create mode 100644 
meta-oe/recipes-core/safec/safec/0001-strpbrk_s-Remove-unused-variable-len.patch
 create mode 100755 
meta-oe/recipes-devtools/nodejs/nodejs-oe-cache-16.14/oe-npm-cache
 create mode 100644 
meta-oe/recipes-devtools/nodejs/nodejs-oe-cache-native_16.14.bb
 rename meta-oe/recipes-devtools/php/{php_8.1.8.bb => php_8.1.9.bb} (99%)
 create mode 100644 
meta-oe/recipes-support/gd/gd/0001-Fix-deprecared-function-prototypes.patch

-- 
2.25.1


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



[oe] [kirkstone 01/11] nodejs-oe-cache-native: initial checkin

2022-09-19 Thread Armin Kuster
From: Enrico Scholz 

This implements an 'npm cache add' like functionality but allows to
specify the key of the data and sets metadata which are required to
find the data.

It is used to cache information as done during 'npm install'.

Keyformat and metadata are nodejs version specific.

Signed-off-by: Enrico Scholz 
Signed-off-by: Khem Raj 
---
 .../nodejs/nodejs-oe-cache-16.14/oe-npm-cache | 77 +++
 .../nodejs/nodejs-oe-cache-native_16.14.bb| 21 +
 2 files changed, 98 insertions(+)
 create mode 100755 
meta-oe/recipes-devtools/nodejs/nodejs-oe-cache-16.14/oe-npm-cache
 create mode 100644 
meta-oe/recipes-devtools/nodejs/nodejs-oe-cache-native_16.14.bb

diff --git a/meta-oe/recipes-devtools/nodejs/nodejs-oe-cache-16.14/oe-npm-cache 
b/meta-oe/recipes-devtools/nodejs/nodejs-oe-cache-16.14/oe-npm-cache
new file mode 100755
index 00..f596207648
--- /dev/null
+++ b/meta-oe/recipes-devtools/nodejs/nodejs-oe-cache-16.14/oe-npm-cache
@@ -0,0 +1,77 @@
+#!/usr/bin/env node
+
+/// Usage: oe-npm-cache
+/// ... meta - metainformation about package
+///   tgz  - tarball
+
+const process = require("node:process");
+
+module.paths.unshift("@@libdir@@/node_modules/npm/node_modules");
+
+const cacache = require('cacache')
+const fs = require('fs')
+
+// argv[0] is 'node', argv[1] is this script
+const cache_dir = process.argv[2]
+const type  = process.argv[3]
+const key   = process.argv[4]
+const file  = process.argv[5]
+
+const data = fs.readFileSync(file)
+
+// metadata content is highly nodejs dependent; when cache entries are not
+// found, place debug statements in 'make-fetch-happen/lib/cache/policy.js'
+// (CachePolicy::satisfies())
+const xlate = {
+'meta': {
+   'key_prefix': 'make-fetch-happen:request-cache:',
+   'metadata': function() {
+   return {
+   time: Date.now(),
+   url:  key,
+   reqHeaders: {
+   'accept': 'application/vnd.npm.install-v1+json; q=1.0, 
application/json; q=0.8, */*',
+   },
+   resHeaders: {
+   "content-type": "application/json",
+   "status": 200,
+   },
+   options: {
+   compress: true,
+   }
+   };
+   },
+},
+
+'tgz': {
+   'key_prefix': 'make-fetch-happen:request-cache:',
+   'metadata': function() {
+   return {
+   time: Date.now(),
+   url:  key,
+   reqHeaders: {
+   'accept': '*/*',
+   },
+   resHeaders: {
+   "content-type": "application/octet-stream",
+   "status": 200,
+   },
+   options: {
+   compress: true,
+   },
+   };
+   },
+},
+};
+
+const info = xlate[type];
+let opts = {}
+
+if (info.metadata) {
+opts['metadata'] = info.metadata();
+}
+
+cacache.put(cache_dir, info.key_prefix + key, data, opts)
+.then(integrity => {
+   console.log(`Saved content of ${key} (${file}).`);
+})
diff --git a/meta-oe/recipes-devtools/nodejs/nodejs-oe-cache-native_16.14.bb 
b/meta-oe/recipes-devtools/nodejs/nodejs-oe-cache-native_16.14.bb
new file mode 100644
index 00..a61dd5018f
--- /dev/null
+++ b/meta-oe/recipes-devtools/nodejs/nodejs-oe-cache-native_16.14.bb
@@ -0,0 +1,21 @@
+DESCRIPTION = "OE helper for manipulating npm cache"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = 
"file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
+
+SRC_URI = "\
+file://oe-npm-cache \
+"
+
+inherit native
+
+B = "${WORKDIR}/build"
+
+do_configure() {
+sed -e 's!@@libdir@@!${libdir}!g' < '${WORKDIR}/oe-npm-cache' > 
'${B}/oe-npm-cache'
+}
+
+do_install() {
+install -D -p -m 0755 ${B}/oe-npm-cache ${D}${bindir}/oe-npm-cache
+}
+
+RDEPENDS:${PN} = "nodejs-native"
-- 
2.25.1


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



[oe] [kirkstone 02/11] wireguard-module: 1.0.20210219 -> 1.0.20220627

2022-09-19 Thread Armin Kuster
From: Jose Quaresma 

Also change the git protocol to https.

Relevant changes:
- 18fbcd6 version: bump
- 3ec3e82 compat: handle backported rng and blake2s
- ba45dd6 qemu: give up on RHEL8 in CI
- c7560fd qemu: set panic_on_warn=1 from cmdline
- 33c87a1 qemu: use vports on arm
- 894152a netns: limit parallelism to $(nproc) tests at once
- f888673 netns: make routing loop test non-fatal
- f9d9b4d device: check for metadata_dst with skb_valid_dst()
- f909532 qemu: enable ACPI for SMP
- ec89ca6 socket: ignore v6 endpoints when ipv6 is disabled
- fa32671 socket: free skb in send6 when ipv6 is disabled
- ffb8cd6 qemu: simplify RNG seeding
- 4eff63d queueing: use CFI-safe ptr_ring cleanup function
- 273018b crypto: curve25519-x86_64: use in/out register constraints more 
precisely
- 4f4c019 compat: drop Ubuntu 14.04
- 743eef2 version: bump
- 3c9f3b6 crypto: curve25519-x86_64: solve register constraints with reserved 
registers
- 8e40dd6 compat: udp_tunnel: don't take reference to non-init namespace
- ea6b8e7 compat: siphash: use _unaligned version by default
- 5325bc8 ratelimiter: use kvcalloc() instead of kvzalloc()
- e44c78c receive: drop handshakes if queue lock is contended
- 5707d38 receive: use ring buffer for incoming handshakes
- 68abb1b device: reset peer src endpoint when netns exits
- ea3f5fb main: rename 'mod_init' & 'mod_exit' functions to be module-specific
- cb001d4 netns: actually test for routing loops
- 2715e64 compat: update for RHEL 8.5
- 2974725 compat: account for grsecurity backports and changes
- 50dda8c compat: account for latest c8s backports
- d378f93 version: bump
- fb4a0da qemu: increase default dmesg log size
- 8f4414d qemu: add disgusting hacks for RHEL 8
- fd7a462 allowedips: add missing __rcu annotation to satisfy sparse
- 383461d allowedips: free empty intermediate nodes when removing single node
- 03add82 allowedips: allocate nodes in kmem_cache
- b56d48c allowedips: remove nodes in O(1)
- 3c14c4b allowedips: initialize list head in selftest
- 4d8b7ed peer: allocate in kmem_cache
- 6fbc0e6 global: use synchronize_net rather than synchronize_rcu
- 405caf0 kbuild: do not use -O3
- b50ef4d netns: make sure rp_filter is disabled on vethc
- e67b722 version: bump
- 1edffe2 Revert "compat: skb_mark_not_on_list will be backported to Ubuntu 
18.04"
- 2cf9543 compat: update and improve detection of CentOS Stream 8
- 122f06b compat: icmp_ndo_send functions were backported extensively

Signed-off-by: Jose Quaresma 
Signed-off-by: Khem Raj 
(cherry picked from commit e2a2320a7953fd70e8b416f9f6741d0b6654f280)
Signed-off-by: Armin Kuster 
---
 ...odule_1.0.20210219.bb => wireguard-module_1.0.20220627.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename 
meta-networking/recipes-kernel/wireguard/{wireguard-module_1.0.20210219.bb => 
wireguard-module_1.0.20220627.bb} (85%)

diff --git 
a/meta-networking/recipes-kernel/wireguard/wireguard-module_1.0.20210219.bb 
b/meta-networking/recipes-kernel/wireguard/wireguard-module_1.0.20220627.bb
similarity index 85%
rename from 
meta-networking/recipes-kernel/wireguard/wireguard-module_1.0.20210219.bb
rename to 
meta-networking/recipes-kernel/wireguard/wireguard-module_1.0.20220627.bb
index ce2ba65526..d80bdd87ab 100644
--- a/meta-networking/recipes-kernel/wireguard/wireguard-module_1.0.20210219.bb
+++ b/meta-networking/recipes-kernel/wireguard/wireguard-module_1.0.20220627.bb
@@ -1,8 +1,8 @@
 require wireguard.inc
 
-SRCREV = "122f06bfd8fc7b06a0899fa9adc4ce8e06900d98"
+SRCREV = "18fbcd68a35a892527345dc5679d0b2d860ee004"
 
-SRC_URI = "git://git.zx2c4.com/wireguard-linux-compat;branch=master"
+SRC_URI = 
"git://git.zx2c4.com/wireguard-linux-compat;protocol=https;branch=master"
 
 inherit module kernel-module-split
 
-- 
2.25.1


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



[oe] [kirkstone 03/11] wireguard-tools: Add a new package for wg-quick

2022-09-19 Thread Armin Kuster
From: Jose Quaresma 

- This will move the dependencie of bash to wg-quick

Signed-off-by: Jose Quaresma 
Signed-off-by: Khem Raj 
(cherry picked from commit f36a158aa0b6dc5d595c08f33733f889a7202b36)
Signed-off-by: Armin Kuster 
---
 .../wireguard/wireguard-tools_1.0.20210914.bb  | 14 +++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git 
a/meta-networking/recipes-kernel/wireguard/wireguard-tools_1.0.20210914.bb 
b/meta-networking/recipes-kernel/wireguard/wireguard-tools_1.0.20210914.bb
index 0c686aae2a..20435338c3 100644
--- a/meta-networking/recipes-kernel/wireguard/wireguard-tools_1.0.20210914.bb
+++ b/meta-networking/recipes-kernel/wireguard/wireguard-tools_1.0.20210914.bb
@@ -16,11 +16,19 @@ do_install () {
 install
 }
 
+PACKAGES += "${PN}-wg-quick"
+
 FILES:${PN} = " \
+${bindir}/wg \
 ${sysconfdir} \
+"
+FILES:${PN}-wg-quick = " \
+${bindir}/wg-quick \
 ${systemd_system_unitdir} \
-${bindir} \
 "
 
-RDEPENDS:${PN} = "bash"
-RRECOMMENDS:${PN} = "kernel-module-wireguard"
+RDEPENDS:${PN}-wg-quick = "${PN} bash"
+RRECOMMENDS:${PN} = " \
+kernel-module-wireguard \
+${PN}-wg-quick \
+"
-- 
2.25.1


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



[oe] [kirkstone 04/11] ntpsec: Add -D_GNU_SOURCE and fix building with devtool

2022-09-19 Thread Armin Kuster
From: Khem Raj 

wscript detects .git directory and if its present them invokes git
describe --dirty which does not work on the devtool created git
repository, since its synthesized.

Add GNU_SOURCE define to get strptime() definition

Signed-off-by: Khem Raj 
(cherry picked from commit 375be9fd60e22fb60b53d664983cb70d26d8a288)
Signed-off-by: Armin Kuster 
---
 ...01-wscript-Widen-the-search-for-tags.patch | 29 +++
 .../recipes-support/ntpsec/ntpsec_1.2.1.bb|  6 ++--
 2 files changed, 33 insertions(+), 2 deletions(-)
 create mode 100644 
meta-networking/recipes-support/ntpsec/ntpsec/0001-wscript-Widen-the-search-for-tags.patch

diff --git 
a/meta-networking/recipes-support/ntpsec/ntpsec/0001-wscript-Widen-the-search-for-tags.patch
 
b/meta-networking/recipes-support/ntpsec/ntpsec/0001-wscript-Widen-the-search-for-tags.patch
new file mode 100644
index 00..98c62eed49
--- /dev/null
+++ 
b/meta-networking/recipes-support/ntpsec/ntpsec/0001-wscript-Widen-the-search-for-tags.patch
@@ -0,0 +1,29 @@
+From 9a7dead72f41e79979625c9bdef2fb638427d3d6 Mon Sep 17 00:00:00 2001
+From: Khem Raj 
+Date: Mon, 22 Aug 2022 20:54:17 -0700
+Subject: [PATCH] wscript: Widen the search for tags
+
+Default is to look for annotated tags, howveer when using devtool we
+create our own git tree from release tarballs which will have tags but
+they are not annotated, therefore broaden the search to include all tags
+
+Upstream-Status: Inappropriate [OE-specific]
+
+Signed-off-by: Khem Raj 
+---
+ wscript | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/wscript b/wscript
+index 879ded1..dff835d 100644
+--- a/wscript
 b/wscript
+@@ -177,7 +177,7 @@ def configure(ctx):
+ if build_desc:
+ build_desc = ' ' + build_desc
+ if ctx.env.BIN_GIT:
+-cmd = ctx.env.BIN_GIT + shlex.split("describe --dirty")
++cmd = ctx.env.BIN_GIT + shlex.split("describe --tags --dirty")
+ git_short_hash = ctx.cmd_and_log(cmd).strip()
+ git_short_hash = '-'.join(git_short_hash.split('-')[1:])
+ 
diff --git a/meta-networking/recipes-support/ntpsec/ntpsec_1.2.1.bb 
b/meta-networking/recipes-support/ntpsec/ntpsec_1.2.1.bb
index 3efac7d983..bed0e2e108 100644
--- a/meta-networking/recipes-support/ntpsec/ntpsec_1.2.1.bb
+++ b/meta-networking/recipes-support/ntpsec/ntpsec_1.2.1.bb
@@ -16,7 +16,9 @@ SRC_URI = 
"https://ftp.ntpsec.org/pub/releases/ntpsec-${PV}.tar.gz \

file://0001-ntpd-ntp_sandbox.c-allow-clone3-for-glibc-2.34-in-se.patch \

file://0001-ntpd-ntp_sandbox.c-allow-newfstatat-on-all-archs-for.patch \

file://0002-ntpd-ntp_sandbox.c-match-riscv-to-aarch-in-seccomp-f.patch \
-   file://volatiles.ntpsec"
+   file://volatiles.ntpsec \
+   file://0001-wscript-Widen-the-search-for-tags.patch \
+   "
 
 SRC_URI[sha256sum] = 
"f2684835116c80b8f21782a5959a805ba3c44e3a681dd6c17c7cb00cc242c27a"
 
@@ -54,7 +56,7 @@ export PYTAG = "cpython${@ 
d.getVar('PYTHON_BASEVERSION').replace('.', '')}"
 export pyext_PATTERN = "%s.so"
 export PYTHON_LDFLAGS = "-lpthread -ldl"
 
-CFLAGS:append = " -I${PYTHON_INCLUDE_DIR}"
+CFLAGS:append = " -I${PYTHON_INCLUDE_DIR} -D_GNU_SOURCE"
 
 EXTRA_OECONF = "--cross-compiler='${CC}' \
 --cross-cflags='${CFLAGS}' \
-- 
2.25.1


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



[oe] [kirkstone 05/11] gd: Fix build with clang-15

2022-09-19 Thread Armin Kuster
From: Khem Raj 

Signed-off-by: Khem Raj 
(cherry picked from commit e1e889bae41529770cb800aba3bfd1189e4ac39d)
Signed-off-by: Armin Kuster 
---
 ...1-Fix-deprecared-function-prototypes.patch | 115 ++
 meta-oe/recipes-support/gd/gd_2.3.3.bb|   1 +
 2 files changed, 116 insertions(+)
 create mode 100644 
meta-oe/recipes-support/gd/gd/0001-Fix-deprecared-function-prototypes.patch

diff --git 
a/meta-oe/recipes-support/gd/gd/0001-Fix-deprecared-function-prototypes.patch 
b/meta-oe/recipes-support/gd/gd/0001-Fix-deprecared-function-prototypes.patch
new file mode 100644
index 00..5ac5170721
--- /dev/null
+++ 
b/meta-oe/recipes-support/gd/gd/0001-Fix-deprecared-function-prototypes.patch
@@ -0,0 +1,115 @@
+From 6379331cd0647fc6f149f55e4505a9a92e4f159f Mon Sep 17 00:00:00 2001
+From: Khem Raj 
+Date: Mon, 22 Aug 2022 22:43:26 -0700
+Subject: [PATCH] Fix deprecared function prototypes
+
+Fixes following errors:
+error: a function definition without a prototype is deprecated in all versions 
of C and is not supported in C2x [-Werror,-Wdeprecated-non-prototype]
+
+Upstream-Status: Submitted [https://github.com/libgd/libgd/pull/835]
+Signed-off-by: Khem Raj 
+---
+ src/gd_nnquant.c | 32 +++-
+ src/gd_tiff.c|  4 +---
+ 2 files changed, 8 insertions(+), 28 deletions(-)
+
+diff --git a/src/gd_nnquant.c b/src/gd_nnquant.c
+index 8b9aa794..013f7160 100644
+--- a/src/gd_nnquant.c
 b/src/gd_nnquant.c
+@@ -112,12 +112,7 @@ typedef struct {
+ 
+ /* Initialise network in range (0,0,0,0) to (255,255,255,255) and set 
parameters
+--- */
+-static void initnet(nnq, thepic, len, sample, colours)
+-nn_quant *nnq;
+-unsigned char *thepic;
+-int len;
+-int sample;
+-int colours;
++static void initnet(nn_quant *nnq, unsigned char *thepic, int len, int 
sample, int colours)
+ {
+   register int i;
+   register int *p;
+@@ -163,9 +158,7 @@ static void unbiasnet(nn_quant *nnq)
+ }
+ 
+ /* Output colormap to unsigned char ptr in RGBA format */
+-static void getcolormap(nnq, map)
+-nn_quant *nnq;
+-unsigned char *map;
++static void getcolormap(nn_quant *nnq, unsigned char *map)
+ {
+   int i,j;
+   for(j=0; j < nnq->netsize; j++) {
+@@ -232,9 +225,7 @@ static void inxbuild(nn_quant *nnq)
+ 
+ /* Search for ABGR values 0..255 (after net is unbiased) and return colour 
index
+
 */
+-static unsigned int inxsearch(nnq, al,b,g,r)
+-nn_quant *nnq;
+-register int al, b, g, r;
++static unsigned int inxsearch(nn_quant *nnq, int al, int b, int g, int r)
+ {
+   register int i, j, dist, a, bestd;
+   register int *p;
+@@ -306,9 +297,7 @@ register int al, b, g, r;
+ 
+ /* Search for biased ABGR values
+ */
+-static int contest(nnq, al,b,g,r)
+-nn_quant *nnq;
+-register int al,b,g,r;
++static int contest(nn_quant *nnq, int al, int b, int g, int r)
+ {
+   /* finds closest neuron (min dist) and updates freq */
+   /* finds best neuron (min dist-bias) and returns position */
+@@ -362,9 +351,7 @@ register int al,b,g,r;
+ /* Move neuron i towards biased (a,b,g,r) by factor alpha
+ */
+ 
+-static void altersingle(nnq, alpha,i,al,b,g,r)
+-nn_quant *nnq;
+-register int alpha,i,al,b,g,r;
++static void altersingle(nn_quant *nnq, int alpha, int i,int al, int b, int g, 
int r)
+ {
+   register int *n;
+ 
+@@ -382,10 +369,7 @@ register int alpha,i,al,b,g,r;
+ /* Move adjacent neurons by precomputed alpha*(1-((i-j)^2/[r]^2)) in 
radpower[|i-j|]
+
-
 */
+ 
+-static void alterneigh(nnq, rad,i,al,b,g,r)
+-nn_quant *nnq;
+-int rad,i;
+-register int al,b,g,r;
++static void alterneigh(nn_quant *nnq, int rad, int i, int al,int b,int g, int 
r)
+ {
+   register int j,k,lo,hi,a;
+   register int *p, *q;
+@@ -429,9 +413,7 @@ register int al,b,g,r;
+ /* Main Learning Loop
+-- */
+ 
+-static void learn(nnq, verbose) /* Stu: N.B. added parameter so that main() 
could control verbosity. */
+-nn_quant *nnq;
+-int verbose;
++static void learn(nn_quant *nnq, int verbose) /* Stu: N.B. added parameter so 
that main() could control verbosity. */
+ {
+   register int i,j,al,b,g,r;
+   int radius,rad,alpha,step,delta,samplepixels;
+diff --git a/src/gd_tiff.c b/src/gd_tiff.c
+index 7f72b610..3d90e61a 100644
+--- a/src/gd_tiff.c
 b/src/gd_tiff.c
+@@ -446,9 +446,7 @@ BGD_DECLARE(void) gdImageTiffCtx(gdImagePtr image, gdIOCtx 
*out)
+ }
+ 
+ /* Check if we are really in 8bit mode */
+-static int checkColorMap(n, r, g, b)
+-int n;
+-uint16_t *r, *g, *b;
++static int checkColorMap(int n, uint16_t *r, uint16_t *g, uint16_t *b)
+ {
+   while (n-- > 0)
+   if (*r++ >= 256 || *g++ >= 256 || *b++ >= 256)
diff --gi

[oe] [kirkstone 06/11] safec: Remove unused variable 'len'

2022-09-19 Thread Armin Kuster
From: Khem Raj 

Signed-off-by: Khem Raj 
(cherry picked from commit 8cb8931757214d63c9140cdba83ee5dfc968bc28)
Signed-off-by: Armin Kuster 
---
 ...strpbrk_s-Remove-unused-variable-len.patch | 42 +++
 meta-oe/recipes-core/safec/safec_3.7.1.bb |  3 +-
 2 files changed, 44 insertions(+), 1 deletion(-)
 create mode 100644 
meta-oe/recipes-core/safec/safec/0001-strpbrk_s-Remove-unused-variable-len.patch

diff --git 
a/meta-oe/recipes-core/safec/safec/0001-strpbrk_s-Remove-unused-variable-len.patch
 
b/meta-oe/recipes-core/safec/safec/0001-strpbrk_s-Remove-unused-variable-len.patch
new file mode 100644
index 00..4fd36ab8ab
--- /dev/null
+++ 
b/meta-oe/recipes-core/safec/safec/0001-strpbrk_s-Remove-unused-variable-len.patch
@@ -0,0 +1,42 @@
+From b1d7cc6495c541cdd99399b4d1a835997376dcbf Mon Sep 17 00:00:00 2001
+From: Khem Raj 
+Date: Mon, 22 Aug 2022 23:42:33 -0700
+Subject: [PATCH] strpbrk_s: Remove unused variable len
+
+Fixes
+error: variable 'len' set but not used [-Werror,-Wunused-but-set-variable]
+
+Upstream-Status: Submitted [https://github.com/rurban/safeclib/pull/123]
+Signed-off-by: Khem Raj 
+---
+ src/extstr/strpbrk_s.c | 3 ---
+ 1 file changed, 3 deletions(-)
+
+diff --git a/src/extstr/strpbrk_s.c b/src/extstr/strpbrk_s.c
+index 5bb7a0f8..2cf8a8be 100644
+--- a/src/extstr/strpbrk_s.c
 b/src/extstr/strpbrk_s.c
+@@ -79,7 +79,6 @@ EXPORT errno_t _strpbrk_s_chk(char *dest, rsize_t dmax, char 
*src, rsize_t slen,
+ #endif
+ {
+ char *ps;
+-rsize_t len;
+ 
+ CHK_SRC_NULL("strpbrk_s", firstp)
+ *firstp = NULL;
+@@ -121,7 +120,6 @@ EXPORT errno_t _strpbrk_s_chk(char *dest, rsize_t dmax, 
char *src, rsize_t slen,
+ while (*dest && dmax) {
+ 
+ ps = src;
+-len = slen;
+ while (*ps) {
+ 
+ /* check for a match with the substring */
+@@ -130,7 +128,6 @@ EXPORT errno_t _strpbrk_s_chk(char *dest, rsize_t dmax, 
char *src, rsize_t slen,
+ return RCNEGATE(EOK);
+ }
+ ps++;
+-len--;
+ }
+ dest++;
+ dmax--;
diff --git a/meta-oe/recipes-core/safec/safec_3.7.1.bb 
b/meta-oe/recipes-core/safec/safec_3.7.1.bb
index 5ffe7d7528..9dd6f1c7cc 100644
--- a/meta-oe/recipes-core/safec/safec_3.7.1.bb
+++ b/meta-oe/recipes-core/safec/safec_3.7.1.bb
@@ -9,7 +9,8 @@ inherit autotools pkgconfig
 S = "${WORKDIR}/git"
 SRCREV = "f9add9245b97c7bda6e28cceb0ee37fb7e254fd8"
 SRC_URI = "git://github.com/rurban/safeclib.git;branch=master;protocol=https \
-"
+   file://0001-strpbrk_s-Remove-unused-variable-len.patch \
+   "
 
 COMPATIBLE_HOST = '(x86_64|i.86|powerpc|powerpc64|arm|aarch64|mips).*-linux'
 
-- 
2.25.1


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



[oe] [kirkstone 07/11] php: upgrade 8.1.8 -> 8.1.9

2022-09-19 Thread Armin Kuster
From: Wang Mingyu 

Signed-off-by: Wang Mingyu 
Signed-off-by: Khem Raj 
(cherry picked from commit 610b8fdfd45467ae1007878cc98baae2e73fb0cb)
Signed-off-by: Armin Kuster 
---
 meta-oe/recipes-devtools/php/{php_8.1.8.bb => php_8.1.9.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-devtools/php/{php_8.1.8.bb => php_8.1.9.bb} (99%)

diff --git a/meta-oe/recipes-devtools/php/php_8.1.8.bb 
b/meta-oe/recipes-devtools/php/php_8.1.9.bb
similarity index 99%
rename from meta-oe/recipes-devtools/php/php_8.1.8.bb
rename to meta-oe/recipes-devtools/php/php_8.1.9.bb
index d5cf7d8b21..a93adeefe8 100644
--- a/meta-oe/recipes-devtools/php/php_8.1.8.bb
+++ b/meta-oe/recipes-devtools/php/php_8.1.9.bb
@@ -33,7 +33,7 @@ SRC_URI:append:class-target = " \
   "
 
 S = "${WORKDIR}/php-${PV}"
-SRC_URI[sha256sum] = 
"b8815a5a02431453d4261e3598bd1f28516e4c0354f328c12890f257870e4c01"
+SRC_URI[sha256sum] = 
"9ebb0e2e571db6fd5930428dcb2d19ed3e050338ec1f1347c282cae92fc086ff"
 
 CVE_CHECK_IGNORE += "\
 CVE-2007-2728 \
-- 
2.25.1


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



[oe] [kirkstone 08/11] libldb: upgrade 2.3.3 -> 2.3.4

2022-09-19 Thread Armin Kuster
From: Yi Zhao 

Required by samba 4.14.14.

Signed-off-by: Yi Zhao 
Signed-off-by: Khem Raj 
(cherry picked from commit 1cd743f8d8053cc9d34cd1a0204d4d333722e0f5)
Signed-off-by: Armin Kuster 
---
 .../libldb/{libldb_2.3.3.bb => libldb_2.3.4.bb}   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-networking/recipes-support/libldb/{libldb_2.3.3.bb => 
libldb_2.3.4.bb} (95%)

diff --git a/meta-networking/recipes-support/libldb/libldb_2.3.3.bb 
b/meta-networking/recipes-support/libldb/libldb_2.3.4.bb
similarity index 95%
rename from meta-networking/recipes-support/libldb/libldb_2.3.3.bb
rename to meta-networking/recipes-support/libldb/libldb_2.3.4.bb
index 6dd3ec3a9a..af5f0427d4 100644
--- a/meta-networking/recipes-support/libldb/libldb_2.3.3.bb
+++ b/meta-networking/recipes-support/libldb/libldb_2.3.4.bb
@@ -32,8 +32,8 @@ LIC_FILES_CHKSUM = 
"file://pyldb.h;endline=24;md5=dfbd238cecad76957f7f860fbe9ada
 
file://man/ldb.3.xml;beginline=261;endline=262;md5=137f9fd61040c1505d1aa1019663fd08
 \
 
file://tools/ldbdump.c;endline=19;md5=a7d4fc5d1f75676b49df491575a86a42"
 
-SRC_URI[md5sum] = "6824f69ea3bb58cb8a3be4c179e7569a"
-SRC_URI[sha256sum] = 
"9ef39700ff05b3e8f5801d2a39fe1ba023218650f81c9d377caca22f49076807"
+SRC_URI[md5sum] = "b01d6913a06901c22c5bc6caedc548ac"
+SRC_URI[sha256sum] = 
"f2e88dcab7b6007d92724b62f8a16e7c6e77275885c60eb4f87097e4aa4082c1"
 
 inherit pkgconfig waf-samba
 
-- 
2.25.1


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



[oe] [kirkstone 09/11] samba: upgrade 4.14.13 -> 4.14.14

2022-09-19 Thread Armin Kuster
From: Yi Zhao 

This is a security release in order to address the following defects:

CVE-2022-2031: Samba AD users can bypass certain restrictions associated
   with changing passwords.
   https://www.samba.org/samba/security/CVE-2022-2031.html

CVE-2022-32744: Samba AD users can forge password change requests for
any user.
https://www.samba.org/samba/security/CVE-2022-32744.html

CVE-2022-32745: Samba AD users can crash the server process with an LDAP
add or modify request.
https://www.samba.org/samba/security/CVE-2022-32745.html

CVE-2022-32746: Samba AD users can induce a use-after-free in the server
process with an LDAP add or modify request.
https://www.samba.org/samba/security/CVE-2022-32746.html

CVE-2022-32742: Server memory information leak via SMB1.
https://www.samba.org/samba/security/CVE-2022-32742.html

Release Notes:
https://www.samba.org/samba/history/samba-4.14.14.html

Signed-off-by: Yi Zhao 
Signed-off-by: Khem Raj 
(cherry picked from commit 0afcb4be77acdb7af3624278ebd5869f0e88bdfe)
Signed-off-by: Armin Kuster 
---
 .../samba/{samba_4.14.13.bb => samba_4.14.14.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-networking/recipes-connectivity/samba/{samba_4.14.13.bb => 
samba_4.14.14.bb} (99%)

diff --git a/meta-networking/recipes-connectivity/samba/samba_4.14.13.bb 
b/meta-networking/recipes-connectivity/samba/samba_4.14.14.bb
similarity index 99%
rename from meta-networking/recipes-connectivity/samba/samba_4.14.13.bb
rename to meta-networking/recipes-connectivity/samba/samba_4.14.14.bb
index 49e93fc536..cb3678d7b6 100644
--- a/meta-networking/recipes-connectivity/samba/samba_4.14.13.bb
+++ b/meta-networking/recipes-connectivity/samba/samba_4.14.14.bb
@@ -31,7 +31,7 @@ SRC_URI:append:libc-musl = " \
file://samba-fix-musl-lib-without-innetgr.patch \
"
 
-SRC_URI[sha256sum] = 
"e1df792818a17d8d21faf33580d32939214694c92b84fb499464210d86a7ff75"
+SRC_URI[sha256sum] = 
"abd5e9e6aa45e55114b188ba189ebdfc8fd3d7718d43f749e477ce7f791e5519"
 
 UPSTREAM_CHECK_REGEX = "samba\-(?P4\.14(\.\d+)+).tar.gz"
 
-- 
2.25.1


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



[oe] [kirkstone 10/11] samba: fix buildpaths issue

2022-09-19 Thread Armin Kuster
From: Yi Zhao 

The test case tfork_cmd_send in smbtorture fails on target as it
requries a script located in the source directory:

$ smbtorture ncalrpc:localhost local.tfork.tfork_cmd_send
test: tfork_cmd_send
/buildarea/build/tmp/work/core2-64-poky-linux/samba/4.14.14-r0/samba-4.14.14/testprogs/blackbox/tfork.sh:
Failed to exec child - No such file or directory

This also triggers the buildpaths warning:
QA Issue: File /usr/bin/smbtorture in package samba-testsuite contains 
reference to TMPDIR [buildpaths]

Skip this test case in smbtorture to avoid the warning.

Signed-off-by: Yi Zhao 
Signed-off-by: Khem Raj 
(cherry picked from commit 2b8b5dbe03cb83df1bb6c6dc1cfbf5c2bf836cf9)
Signed-off-by: Armin Kuster 
---
 ...orture-skip-test-case-tfork_cmd_send.patch | 38 +++
 .../samba/samba_4.14.14.bb|  1 +
 2 files changed, 39 insertions(+)
 create mode 100644 
meta-networking/recipes-connectivity/samba/samba/0001-smbtorture-skip-test-case-tfork_cmd_send.patch

diff --git 
a/meta-networking/recipes-connectivity/samba/samba/0001-smbtorture-skip-test-case-tfork_cmd_send.patch
 
b/meta-networking/recipes-connectivity/samba/samba/0001-smbtorture-skip-test-case-tfork_cmd_send.patch
new file mode 100644
index 00..90ee317860
--- /dev/null
+++ 
b/meta-networking/recipes-connectivity/samba/samba/0001-smbtorture-skip-test-case-tfork_cmd_send.patch
@@ -0,0 +1,38 @@
+From 059b517f9ef6cbdc696e0983ce255b1728042827 Mon Sep 17 00:00:00 2001
+From: Yi Zhao 
+Date: Thu, 25 Aug 2022 16:46:04 +0800
+Subject: [PATCH] smbtorture: skip test case tfork_cmd_send
+
+The test case tfork_cmd_send fails on target as it requires a script
+located in the source directory:
+
+$ smbtorture ncalrpc:localhost local.tfork.tfork_cmd_send
+test: tfork_cmd_send
+/buildarea/build/tmp/work/core2-64-poky-linux/samba/4.14.14-r0/samba-4.14.14/testprogs/blackbox/tfork.sh:
+Failed to exec child - No such file or directory
+
+Upstream-Status: Inappropriate [embedded specific]
+
+Signed-off-by: Yi Zhao 
+---
+ lib/util/tests/tfork.c | 4 
+ 1 file changed, 4 deletions(-)
+
+diff --git a/lib/util/tests/tfork.c b/lib/util/tests/tfork.c
+index 70ae975..4826ce6 100644
+--- a/lib/util/tests/tfork.c
 b/lib/util/tests/tfork.c
+@@ -839,10 +839,6 @@ struct torture_suite *torture_local_tfork(TALLOC_CTX 
*mem_ctx)
+ "tfork_threads",
+ test_tfork_threads);
+ 
+-  torture_suite_add_simple_test(suite,
+-"tfork_cmd_send",
+-test_tfork_cmd_send);
+-
+   torture_suite_add_simple_test(suite,
+ "tfork_event_file_handle",
+ test_tfork_event_file_handle);
+-- 
+2.25.1
+
diff --git a/meta-networking/recipes-connectivity/samba/samba_4.14.14.bb 
b/meta-networking/recipes-connectivity/samba/samba_4.14.14.bb
index cb3678d7b6..53526a26b6 100644
--- a/meta-networking/recipes-connectivity/samba/samba_4.14.14.bb
+++ b/meta-networking/recipes-connectivity/samba/samba_4.14.14.bb
@@ -21,6 +21,7 @@ SRC_URI = "${SAMBA_MIRROR}/stable/samba-${PV}.tar.gz \
file://0004-Add-options-to-configure-the-use-of-libbsd.patch \
file://0005-samba-build-dnsserver_common-code.patch \
file://0001-Fix-pyext_PATTERN-for-cross-compilation.patch \
+   file://0001-smbtorture-skip-test-case-tfork_cmd_send.patch \
"
 
 SRC_URI:append:libc-musl = " \
-- 
2.25.1


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



[oe] [kirkstone 11/11] postgresql: make sure pam conf installed when pam enabled

2022-09-19 Thread Armin Kuster
From: Mingli Yu 

Update the pam check logic to make sure pam conf installed.

Before the patch:
root@intel-x86-64:~# rpm -ql postgresql | grep pam.d | grep postgresql
root@intel-x86-64:~#

After the patch:
root@intel-x86-64:~# rpm -ql postgresql | grep pam.d | grep postgresql
/etc/pam.d/postgresql
root@intel-x86-64:~#

Signed-off-by: Mingli Yu 
Signed-off-by: Khem Raj 
(cherry picked from commit a755af4fb5ca2e158b00214bb18e27ba69c200fd)
Signed-off-by: Armin Kuster 
---
 meta-oe/recipes-dbs/postgresql/postgresql.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-dbs/postgresql/postgresql.inc 
b/meta-oe/recipes-dbs/postgresql/postgresql.inc
index bef33e6bb4..60d44ce979 100644
--- a/meta-oe/recipes-dbs/postgresql/postgresql.inc
+++ b/meta-oe/recipes-dbs/postgresql/postgresql.inc
@@ -205,7 +205,7 @@ do_install:append() {
 # multiple server config directory
 install -d -m 700 ${D}${sysconfdir}/default/${BPN}
 
-if [ "${@d.getVar('enable_pam')}" = "pam" ]; then
+if ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'true', 'false', d)}; 
then
 install -d ${D}${sysconfdir}/pam.d
 install -m 644 ${WORKDIR}/postgresql.pam 
${D}${sysconfdir}/pam.d/postgresql
 fi
-- 
2.25.1


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



[oe] [meta-python][PATCH 1/4] python3-joblib: Upgrade 1.1.0 -> 1.2.0

2022-09-19 Thread Leon Anavi
Upgrade to release 1.2.0:

- Fix a security issue where eval(pre_dispatch) could potentially
  run arbitrary code. Now only basic numerics are supported.
- Make sure that joblib works even when multiprocessing is not
  available, for instance with Pyodide.
- Avoid unnecessary warnings when workers and main process delete
  the temporary memmap folder contents concurrently.
- Fix memory alignment bug for pickles containing numpy arrays.
  This is especially important when loading the pickle with
  mmap_mode != None as the resulting numpy.memmap object would not
  be able to correct the misalignment without performing a memory
  copy. This bug would cause invalid computation and segmentation
  faults with native code that would directly access the underlying
  data buffer of a numpy array, for instance C/C++/Cython code
  compiled with older GCC versions or some old OpenBLAS written in
  platform specific assembly.
- Vendor cloudpickle 2.2.0 which adds support for PyPy 3.8+.
- Vendor loky 3.3.0 which fixes several bugs including:
  * robustly forcibly terminating worker processes in case of a
crash
  * avoiding leaking worker processes in case of nested loky
parallel calls
  * reliability spawn the correct number of reusable workers

Signed-off-by: Leon Anavi 
---
 .../python/{python3-joblib_1.1.0.bb => python3-joblib_1.2.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-joblib_1.1.0.bb => 
python3-joblib_1.2.0.bb} (80%)

diff --git a/meta-python/recipes-devtools/python/python3-joblib_1.1.0.bb 
b/meta-python/recipes-devtools/python/python3-joblib_1.2.0.bb
similarity index 80%
rename from meta-python/recipes-devtools/python/python3-joblib_1.1.0.bb
rename to meta-python/recipes-devtools/python/python3-joblib_1.2.0.bb
index e69cfefd1..ec02265d1 100644
--- a/meta-python/recipes-devtools/python/python3-joblib_1.1.0.bb
+++ b/meta-python/recipes-devtools/python/python3-joblib_1.2.0.bb
@@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSE.txt;md5=2e481820abf0a70a18011a30153df066"
 
 inherit setuptools3 pypi
 
-SRC_URI[sha256sum] = 
"4158fcecd13733f8be669be0683b96ebdbbd38d23559f54dca7205aea1bf1e35"
+SRC_URI[sha256sum] = 
"e1cee4a79e4af22881164f218d4311f60074197fb707e082e803b61f6d137018"
 
 RDEPENDS:${PN} += " \
 python3-asyncio \
-- 
2.30.2


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



[oe] [meta-python][PATCH 2/4] python3-astroid: Upgrade 2.12.9 -> 2.12.10

2022-09-19 Thread Leon Anavi
Upgrade to release 2.12.10:

- Fixed a crash when introspecting modules compiled by `cffi`
- ``decorators.cached`` now gets its cache cleared by calling
  ``AstroidManager.clear_cache``

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

diff --git a/meta-python/recipes-devtools/python/python3-astroid_2.12.9.bb 
b/meta-python/recipes-devtools/python/python3-astroid_2.12.10.bb
similarity index 89%
rename from meta-python/recipes-devtools/python/python3-astroid_2.12.9.bb
rename to meta-python/recipes-devtools/python/python3-astroid_2.12.10.bb
index 4fb29709a..c1d746b89 100644
--- a/meta-python/recipes-devtools/python/python3-astroid_2.12.9.bb
+++ b/meta-python/recipes-devtools/python/python3-astroid_2.12.10.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "LGPL-2.1-only"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=a70cf540abf41acb644ac3b621b2fad1"
 
-SRC_URI[sha256sum] = 
"0dafbfcf4ebdecd3c8f6d742c9d9c88508229ca823d5c98ab872d964f3321e56"
+SRC_URI[sha256sum] = 
"81f870105d892e73bf535da77a8261aa5bde838fa4ed12bb2f435291a098c581"
 
 inherit pypi setuptools3
 
-- 
2.30.2


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



[oe] [meta-python][PATCH 3/4] python3-imageio: Upgrade 2.21.3 -> 2.22.0

2022-09-19 Thread Leon Anavi
Upgrade to release 2.22.0:

- Pyav API for procedural video writing

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

diff --git a/meta-python/recipes-devtools/python/python3-imageio_2.21.3.bb 
b/meta-python/recipes-devtools/python/python3-imageio_2.22.0.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python3-imageio_2.21.3.bb
rename to meta-python/recipes-devtools/python/python3-imageio_2.22.0.bb
index 74591f3c4..6bc7b60f9 100644
--- a/meta-python/recipes-devtools/python/python3-imageio_2.21.3.bb
+++ b/meta-python/recipes-devtools/python/python3-imageio_2.22.0.bb
@@ -5,7 +5,7 @@ SECTION = "devel/python"
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=24cb9a367a9e641b459a01c4d15256ba"
 
-SRC_URI[sha256sum] = 
"b10a583c831c932f4afbea9e8403082d2a76b1d30d7555b777ceb70441890b3c"
+SRC_URI[sha256sum] = 
"a332d127ec387b2d3dca967fd065a90f1c1a4ba2343570b03fe2cebb6ed064ea"
 
 inherit pypi setuptools3
 
-- 
2.30.2


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



[oe] [meta-python][PATCH 4/4] python3-email-validator: Upgrade 1.2.1 -> 1.3.0

2022-09-19 Thread Leon Anavi
Upgrade to release 1.3.0:

- Deliverability checks now check for 'v=spf1 -all' SPF records as
  a way to reject more bad domains.
- Special use domain names now raise EmailSyntaxError instead of
  EmailUndeliverableError since they are performed even if
  check_deliverability is off.
- New module-level attributes are added to override the default
  values of the keyword arguments and the special-use domains list.
- The keyword arguments of the public methods are now marked as
  keyword-only.
- pyIsEmail's test cases are added to the tests.
- Recommend that check_deliverability be set to False for
  validation on login pages.
- Added an undocumented globally_deliverable option.

Signed-off-by: Leon Anavi 
---
 ...mail-validator_1.2.1.bb => python3-email-validator_1.3.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-email-validator_1.2.1.bb 
=> python3-email-validator_1.3.0.bb} (78%)

diff --git 
a/meta-python/recipes-devtools/python/python3-email-validator_1.2.1.bb 
b/meta-python/recipes-devtools/python/python3-email-validator_1.3.0.bb
similarity index 78%
rename from meta-python/recipes-devtools/python/python3-email-validator_1.2.1.bb
rename to meta-python/recipes-devtools/python/python3-email-validator_1.3.0.bb
index a5cb09fd9..76dfdd601 100644
--- a/meta-python/recipes-devtools/python/python3-email-validator_1.2.1.bb
+++ b/meta-python/recipes-devtools/python/python3-email-validator_1.3.0.bb
@@ -3,7 +3,7 @@ SECTION = "devel/python"
 LICENSE = "CC0-1.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=65d3616852dbf7b1a6d4b53b00626032"
 
-SRC_URI[sha256sum] = 
"6757aea012d40516357c0ac2b1a4c31219ab2f899d26831334c5d069e8b6c3d8"
+SRC_URI[sha256sum] = 
"553a66f8be2ec2dea641ae1d3f29017ab89e9d603d4a25cdaac39eefa283d769"
 
 PYPI_PACKAGE = "email_validator"
 
-- 
2.30.2


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



[oe] [meta-oe] [PATCH] bats: upgrade 1.7.0 -> 1.8.0

2022-09-19 Thread wangmy
Signed-off-by: Wang Mingyu 
---
 meta-oe/recipes-test/bats/{bats_1.7.0.bb => bats_1.8.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-test/bats/{bats_1.7.0.bb => bats_1.8.0.bb} (95%)

diff --git a/meta-oe/recipes-test/bats/bats_1.7.0.bb 
b/meta-oe/recipes-test/bats/bats_1.8.0.bb
similarity index 95%
rename from meta-oe/recipes-test/bats/bats_1.7.0.bb
rename to meta-oe/recipes-test/bats/bats_1.8.0.bb
index 81235e29b0..4b90dcc579 100644
--- a/meta-oe/recipes-test/bats/bats_1.7.0.bb
+++ b/meta-oe/recipes-test/bats/bats_1.8.0.bb
@@ -11,7 +11,7 @@ SRC_URI = "\
   "
 
 # v1.7.0
-SRCREV = "410dd229a5ed005c68167cc90ed0712ad2a1c909"
+SRCREV = "e9b286bb39ad7b0cb7b7d2e819d44d1aff387522"
 
 S = "${WORKDIR}/git"
 
-- 
2.25.1


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



[oe] [meta-oe] [PATCH] ctags: upgrade 5.9.20220904.0 -> 5.9.20220911.0

2022-09-19 Thread wangmy
Signed-off-by: Wang Mingyu 
---
 .../ctags/{ctags_5.9.20220904.0.bb => ctags_5.9.20220911.0.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-devtools/ctags/{ctags_5.9.20220904.0.bb => 
ctags_5.9.20220911.0.bb} (95%)

diff --git a/meta-oe/recipes-devtools/ctags/ctags_5.9.20220904.0.bb 
b/meta-oe/recipes-devtools/ctags/ctags_5.9.20220911.0.bb
similarity index 95%
rename from meta-oe/recipes-devtools/ctags/ctags_5.9.20220904.0.bb
rename to meta-oe/recipes-devtools/ctags/ctags_5.9.20220911.0.bb
index be50b36766..890e786320 100644
--- a/meta-oe/recipes-devtools/ctags/ctags_5.9.20220904.0.bb
+++ b/meta-oe/recipes-devtools/ctags/ctags_5.9.20220911.0.bb
@@ -14,7 +14,7 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3"
 
 inherit autotools-brokensep pkgconfig manpages
 
-SRCREV = "096dc1c1337edeff41c3e6600553c3b43bdde131"
+SRCREV = "fe5a84edb2951734489be8aef29c2d0bb296649c"
 SRC_URI = "git://github.com/universal-ctags/ctags;branch=master;protocol=https"
 
 S = "${WORKDIR}/git"
-- 
2.25.1


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



[oe] [meta-oe] [PATCH] iwd: upgrade 1.29 -> 1.30

2022-09-19 Thread wangmy
Signed-off-by: Wang Mingyu 
---
 meta-oe/recipes-connectivity/iwd/{iwd_1.29.bb => iwd_1.30.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-connectivity/iwd/{iwd_1.29.bb => iwd_1.30.bb} (94%)

diff --git a/meta-oe/recipes-connectivity/iwd/iwd_1.29.bb 
b/meta-oe/recipes-connectivity/iwd/iwd_1.30.bb
similarity index 94%
rename from meta-oe/recipes-connectivity/iwd/iwd_1.29.bb
rename to meta-oe/recipes-connectivity/iwd/iwd_1.30.bb
index eada93b651..1f0bcd4f8e 100644
--- a/meta-oe/recipes-connectivity/iwd/iwd_1.29.bb
+++ b/meta-oe/recipes-connectivity/iwd/iwd_1.30.bb
@@ -8,7 +8,7 @@ DEPENDS = "ell"
 SRC_URI = "https://www.kernel.org/pub/linux/network/wireless/${BP}.tar.xz \

file://0001-build-Use-abs_top_srcdir-instead-of-abs_srcdir-for-e.patch \
"
-SRC_URI[sha256sum] = 
"71533fe3b8f6381f24832198ba11d00f04a361454770c173b3b66bc3cdf272bd"
+SRC_URI[sha256sum] = 
"9fd13512dc27d83efb8d341f7df98f5488f70131686021fcd0d93fc97af013b8"
 
 inherit autotools manpages pkgconfig python3native systemd
 
-- 
2.25.1


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



[oe] [meta-gnome] [PATCH] libadwaita: upgrade 1.1.5 -> 1.2.0

2022-09-19 Thread wangmy
Signed-off-by: Wang Mingyu 
---
 .../libadwaita/{libadwaita_1.1.5.bb => libadwaita_1.2.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-gnome/recipes-gnome/libadwaita/{libadwaita_1.1.5.bb => 
libadwaita_1.2.0.bb} (86%)

diff --git a/meta-gnome/recipes-gnome/libadwaita/libadwaita_1.1.5.bb 
b/meta-gnome/recipes-gnome/libadwaita/libadwaita_1.2.0.bb
similarity index 86%
rename from meta-gnome/recipes-gnome/libadwaita/libadwaita_1.1.5.bb
rename to meta-gnome/recipes-gnome/libadwaita/libadwaita_1.2.0.bb
index 297cd9f0b4..7a1f86a73d 100644
--- a/meta-gnome/recipes-gnome/libadwaita/libadwaita_1.1.5.bb
+++ b/meta-gnome/recipes-gnome/libadwaita/libadwaita_1.2.0.bb
@@ -11,7 +11,7 @@ DEPENDS = " \
 
 inherit gnomebase gobject-introspection gtk-doc vala features_check
 
-SRC_URI[archive.sha256sum] = 
"e170a658b5a83226912ecd90ba643015c8d2b8bbd6ea91ebe336dfebb584bb33"
+SRC_URI[archive.sha256sum] = 
"322f3e1be39ba67981d9fe7228a85818eccaa2ed0aa42bcafe263af881c6460c"
 
 ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}"
 REQUIRED_DISTRO_FEATURES = "opengl"
-- 
2.25.1


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



[oe] [meta-oe] [PATCH] libblockdev: upgrade 2.27 -> 2.28

2022-09-19 Thread wangmy
Changelog:
==
  Fix typos
  lvm: Fix bd_lvm_get_supported_pe_sizes in Python on 32bit
  tests: Create bigger devices for XFS tests
  tests: Use ext instead of xfs in MountTestCase.test_mount_ro_device
  mpath: Memory leak fix
  spec: Require the same version utils from plugins
  mdraid: Try harder to get container UUID in bd_md_detail
  Add a test case for DDF arrays/containers
  mdraid: Do not ignore errors from bd_md_canonicalize_uuid in bd_md_examine
  mdraid: Try harder to get container UUID in bd_md_examine
  mdraid: Fix copy-paste error when checking return value
  tests: Wait for raid and mirrored LVs to be synced before removing
  tests: Make smaller images for test_lvcreate_type
  dm: Fix comparing DM RAID member devices UUID
  mdraid: Fix use after free
  ci: Add .lgtm.yaml config for LGTM
  ci: Add GitHub actions for running rpmbuilds and csmock
  mpath: Fix potential NULL pointer dereference
  Fix mismatched functions return value type

Signed-off-by: Wang Mingyu 
---
 .../libblockdev/{libblockdev_2.27.bb => libblockdev_2.28.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-extended/libblockdev/{libblockdev_2.27.bb => 
libblockdev_2.28.bb} (97%)

diff --git a/meta-oe/recipes-extended/libblockdev/libblockdev_2.27.bb 
b/meta-oe/recipes-extended/libblockdev/libblockdev_2.28.bb
similarity index 97%
rename from meta-oe/recipes-extended/libblockdev/libblockdev_2.27.bb
rename to meta-oe/recipes-extended/libblockdev/libblockdev_2.28.bb
index eff775c930..44b4e7daf9 100644
--- a/meta-oe/recipes-extended/libblockdev/libblockdev_2.27.bb
+++ b/meta-oe/recipes-extended/libblockdev/libblockdev_2.28.bb
@@ -12,7 +12,7 @@ inherit autotools gobject-introspection pkgconfig
 
 SRC_URI = 
"git://github.com/storaged-project/libblockdev;branch=2.x-branch;protocol=https 
\
 "
-SRCREV = "2a651c1366bc3a56982d97ebeec03744b5f9dcd0"
+SRCREV = "1412dc51c8f76bf8d9a6008228737db4a9a26d69"
 S = "${WORKDIR}/git"
 
 FILES:${PN} += "${libdir}/python2.7/dist-packages 
${libdir}/python3.*/site-packages"
-- 
2.25.1


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



[oe] [meta-oe] [PATCH] libjcat: upgrade 0.1.11 -> 0.1.12

2022-09-19 Thread wangmy
Changelog:
==
Bugfixes:
 - Correctly export the AliasIds in all cases
 - Install installed-test firmware.bin.ed25519
 - Predate test cert activation date by 1 day

Signed-off-by: Wang Mingyu 
---
 .../libjcat/{libjcat_0.1.11.bb => libjcat_0.1.12.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-gnome/libjcat/{libjcat_0.1.11.bb => libjcat_0.1.12.bb} 
(94%)

diff --git a/meta-oe/recipes-gnome/libjcat/libjcat_0.1.11.bb 
b/meta-oe/recipes-gnome/libjcat/libjcat_0.1.12.bb
similarity index 94%
rename from meta-oe/recipes-gnome/libjcat/libjcat_0.1.11.bb
rename to meta-oe/recipes-gnome/libjcat/libjcat_0.1.12.bb
index bd17e44cd0..ff573ff7df 100644
--- a/meta-oe/recipes-gnome/libjcat/libjcat_0.1.11.bb
+++ b/meta-oe/recipes-gnome/libjcat/libjcat_0.1.12.bb
@@ -11,7 +11,7 @@ SRC_URI = "\
 git://github.com/hughsie/libjcat.git;branch=main;protocol=https \
 file://run-ptest \
 "
-SRCREV = "ffa0b5a9a49a7880e9ab3ae3b061080f15e95e15"
+SRCREV = "898b80468288bc6278b73210783ba1f7c0219c71"
 S = "${WORKDIR}/git"
 
 inherit gobject-introspection gtk-doc meson ptest-gnome vala lib_package
-- 
2.25.1


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



[oe] [meta-oe] [PATCH] libpfm4: upgrade 4.11.0 -> 4.12.0

2022-09-19 Thread wangmy
Signed-off-by: Wang Mingyu 
---
 .../libpfm/{libpfm4_4.11.0.bb => libpfm4_4.12.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-kernel/libpfm/{libpfm4_4.11.0.bb => libpfm4_4.12.0.bb} 
(93%)

diff --git a/meta-oe/recipes-kernel/libpfm/libpfm4_4.11.0.bb 
b/meta-oe/recipes-kernel/libpfm/libpfm4_4.12.0.bb
similarity index 93%
rename from meta-oe/recipes-kernel/libpfm/libpfm4_4.11.0.bb
rename to meta-oe/recipes-kernel/libpfm/libpfm4_4.12.0.bb
index d2d2512b2c..4baed62145 100644
--- a/meta-oe/recipes-kernel/libpfm/libpfm4_4.11.0.bb
+++ b/meta-oe/recipes-kernel/libpfm/libpfm4_4.12.0.bb
@@ -16,7 +16,7 @@ SRC_URI = 
"${SOURCEFORGE_MIRROR}/perfmon2/${BPN}/libpfm-${PV}.tar.gz \
file://0001-Include-poll.h-instead-of-sys-poll.h.patch \
file://0002-perf_examples-Remove-unused-sum-variable.patch \
"
-SRC_URI[sha256sum] = 
"5da5f8872bde14b3634c9688d980f68bda28b510268723cc12973eedbab9fecc"
+SRC_URI[sha256sum] = 
"4b0c1f53f39a61525b69bebf532c68040c1b984d7544a8ae0844b13cd91e1ee4"
 
 UPSTREAM_CHECK_URI = "http://sourceforge.net/projects/perfmon2/files/libpfm4/";
 
-- 
2.25.1


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



[oe] [meta-oe] [PATCH] libxmlb: upgrade 0.3.9 -> 0.3.10

2022-09-19 Thread wangmy
Bugfixes:
 - Fix dumping and exporting multiple files from the CLI
 - Watch files before loading them into the builder
 - Fix potential double free when filtering by language

Signed-off-by: Wang Mingyu 
---
 .../libxmlb/{libxmlb_0.3.9.bb => libxmlb_0.3.10.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-gnome/libxmlb/{libxmlb_0.3.9.bb => libxmlb_0.3.10.bb} 
(91%)

diff --git a/meta-oe/recipes-gnome/libxmlb/libxmlb_0.3.9.bb 
b/meta-oe/recipes-gnome/libxmlb/libxmlb_0.3.10.bb
similarity index 91%
rename from meta-oe/recipes-gnome/libxmlb/libxmlb_0.3.9.bb
rename to meta-oe/recipes-gnome/libxmlb/libxmlb_0.3.10.bb
index 4c5f0cfa39..1f5310ca16 100644
--- a/meta-oe/recipes-gnome/libxmlb/libxmlb_0.3.9.bb
+++ b/meta-oe/recipes-gnome/libxmlb/libxmlb_0.3.10.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=1803fa9c2c3ce8cb06b4861d75310742"
 SRC_URI = "git://github.com/hughsie/libxmlb.git;branch=main;protocol=https \
file://run-ptest \
"
-SRCREV = "c308e39ccad6673e216f92d08b3782a4ffcb23ad"
+SRCREV = "a6cac6a715d57c393bbddee4d0381ad943341af9"
 S = "${WORKDIR}/git"
 
 inherit gobject-introspection gtk-doc meson ptest-gnome lib_package
-- 
2.25.1


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



[oe] [meta-oe] [PATCH] neon: upgrade 0.32.2 -> 0.32.4

2022-09-19 Thread wangmy
Signed-off-by: Wang Mingyu 
---
 meta-oe/recipes-support/neon/{neon_0.32.2.bb => neon_0.32.4.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-support/neon/{neon_0.32.2.bb => neon_0.32.4.bb} (96%)

diff --git a/meta-oe/recipes-support/neon/neon_0.32.2.bb 
b/meta-oe/recipes-support/neon/neon_0.32.4.bb
similarity index 96%
rename from meta-oe/recipes-support/neon/neon_0.32.2.bb
rename to meta-oe/recipes-support/neon/neon_0.32.4.bb
index 0f4e971982..c16a2c10a7 100644
--- a/meta-oe/recipes-support/neon/neon_0.32.2.bb
+++ b/meta-oe/recipes-support/neon/neon_0.32.4.bb
@@ -11,7 +11,7 @@ SRC_URI = 
"${DEBIAN_MIRROR}/main/n/neon27/neon27_${PV}.orig.tar.gz \
file://run-ptest \
"
 
-SRC_URI[sha256sum] = 
"7a25ba2c9223676b9aaec22a585a0ca118127bad71deed0b9ed6cd960fe5c353"
+SRC_URI[sha256sum] = 
"1bcdaabb63206b5e00c9a8c4b3672168b523b49eb559c5a486e3256463af34fd"
 
 inherit autotools-brokensep binconfig-disabled lib_package pkgconfig ptest
 
-- 
2.25.1


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



[oe] [meta-oe] [PATCH] iceauth: upgrade 1.0.8 -> 1.0.9

2022-09-19 Thread wangmy
Signed-off-by: Wang Mingyu 
---
 .../xorg-app/{iceauth_1.0.8.bb => iceauth_1.0.9.bb}   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-graphics/xorg-app/{iceauth_1.0.8.bb => 
iceauth_1.0.9.bb} (70%)

diff --git a/meta-oe/recipes-graphics/xorg-app/iceauth_1.0.8.bb 
b/meta-oe/recipes-graphics/xorg-app/iceauth_1.0.9.bb
similarity index 70%
rename from meta-oe/recipes-graphics/xorg-app/iceauth_1.0.8.bb
rename to meta-oe/recipes-graphics/xorg-app/iceauth_1.0.9.bb
index 62296b5be9..ea0ef0a7e2 100644
--- a/meta-oe/recipes-graphics/xorg-app/iceauth_1.0.8.bb
+++ b/meta-oe/recipes-graphics/xorg-app/iceauth_1.0.9.bb
@@ -11,6 +11,6 @@ BBCLASSEXTEND = "native"
 
 DEPENDS += "libice"
 
-SRC_URI[md5sum] = "3b9b79fa0f9928161f4bad94273de7ae"
-SRC_URI[sha256sum] = 
"e6ee213a217265cc76050e4293ea70b98c32dce6505c6421227efbda62ab60c6"
+SRC_URI_EXT = "xz"
+SRC_URI[sha256sum] = 
"2cb9dfcb545683af77fb1029bea3fc52dcc8a0666f7b8b2d7373b6ed4c408c05"
 
-- 
2.25.1


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



[oe] [meta-oe] [PATCH] setxkbmap: upgrade 1.3.2 -> 1.3.3

2022-09-19 Thread wangmy
add dependence with xrandr

Signed-off-by: Wang Mingyu 
---
 .../xorg-app/{setxkbmap_1.3.2.bb => setxkbmap_1.3.3.bb} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-oe/recipes-graphics/xorg-app/{setxkbmap_1.3.2.bb => 
setxkbmap_1.3.3.bb} (75%)

diff --git a/meta-oe/recipes-graphics/xorg-app/setxkbmap_1.3.2.bb 
b/meta-oe/recipes-graphics/xorg-app/setxkbmap_1.3.3.bb
similarity index 75%
rename from meta-oe/recipes-graphics/xorg-app/setxkbmap_1.3.2.bb
rename to meta-oe/recipes-graphics/xorg-app/setxkbmap_1.3.3.bb
index 30fbd1b8de..18fa63ead6 100644
--- a/meta-oe/recipes-graphics/xorg-app/setxkbmap_1.3.2.bb
+++ b/meta-oe/recipes-graphics/xorg-app/setxkbmap_1.3.3.bb
@@ -11,9 +11,9 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=5feafdbe6dfe9e2bd32325be0cfc86f8"
 
 PE = "1"
 
-DEPENDS += "libxkbfile"
+DEPENDS += "libxkbfile xrandr"
 
 BBCLASSEXTEND = "native"
 
-SRC_URI[md5sum] = "93e736c98fb75856ee8227a0c49a128d"
-SRC_URI[sha256sum] = 
"8ff27486442725e50b02d7049152f51d125ecad71b7ce503cfa09d5d8ceeb9f5"
+SRC_URI_EXT = "xz"
+SRC_URI[sha256sum] = 
"b560c678da6930a0da267304fa3a41cc5df39a96a5e23d06f14984c87b6f587b"
-- 
2.25.1


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



[oe] [meta-oe] [PATCH] xclock: upgrade 1.0.9 -> 1.1.1

2022-09-19 Thread wangmy
Signed-off-by: Wang Mingyu 
---
 .../xorg-app/{xclock_1.0.9.bb => xclock_1.1.1.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-graphics/xorg-app/{xclock_1.0.9.bb => xclock_1.1.1.bb} 
(63%)

diff --git a/meta-oe/recipes-graphics/xorg-app/xclock_1.0.9.bb 
b/meta-oe/recipes-graphics/xorg-app/xclock_1.1.1.bb
similarity index 63%
rename from meta-oe/recipes-graphics/xorg-app/xclock_1.0.9.bb
rename to meta-oe/recipes-graphics/xorg-app/xclock_1.1.1.bb
index 31c553eee0..a7360b6496 100644
--- a/meta-oe/recipes-graphics/xorg-app/xclock_1.0.9.bb
+++ b/meta-oe/recipes-graphics/xorg-app/xclock_1.1.1.bb
@@ -6,5 +6,5 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=857759ade8f2ddde5c7b32ef7356ea36"
 
 DEPENDS += " libxaw libxrender libxft libxkbfile libxt"
 
-SRC_URI[md5sum] = "437522a96f424f68fc64ed34ece9b211"
-SRC_URI[sha256sum] = 
"cf461fb2c6f2ac42c54d8429ee2010fdb9a1442a370adfbfe8a7bfaf33c123bb"
+SRC_URI_EXT = "xz"
+SRC_URI[sha256sum] = 
"df7ceabf8f07044a2fde4924d794554996811640a45de40cb12c2cf1f90f742c"
-- 
2.25.1


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



[oe] [meta-oe] [PATCH] xkbutils: upgrade 1.0.4 -> 1.0.5

2022-09-19 Thread wangmy
Signed-off-by: Wang Mingyu 
---
 .../xorg-app/{xkbutils_1.0.4.bb => xkbutils_1.0.5.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-graphics/xorg-app/{xkbutils_1.0.4.bb => 
xkbutils_1.0.5.bb} (80%)

diff --git a/meta-oe/recipes-graphics/xorg-app/xkbutils_1.0.4.bb 
b/meta-oe/recipes-graphics/xorg-app/xkbutils_1.0.5.bb
similarity index 80%
rename from meta-oe/recipes-graphics/xorg-app/xkbutils_1.0.4.bb
rename to meta-oe/recipes-graphics/xorg-app/xkbutils_1.0.5.bb
index 6a05e98e32..a672ba5e5e 100644
--- a/meta-oe/recipes-graphics/xorg-app/xkbutils_1.0.4.bb
+++ b/meta-oe/recipes-graphics/xorg-app/xkbutils_1.0.5.bb
@@ -15,5 +15,5 @@ DEPENDS += "libxaw libxkbfile"
 
 BBCLASSEXTEND = "native"
 
-SRC_URI[md5sum] = "502b14843f610af977dffc6cbf2102d5"
-SRC_URI[sha256sum] = 
"d2a18ab90275e8bca028773c44264d2266dab70853db4321bdbc18da75148130"
+SRC_URI_EXT = "xz"
+SRC_URI[sha256sum] = 
"f6a4a8e9c54582beb3787b1faa8168caab125c1fee0ca9cfa5b6c9c1df25eea4"
-- 
2.25.1


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



[oe] [meta-oe] [PATCH] xlsfonts: upgrade 1.0.6 -> 1.0.7

2022-09-19 Thread wangmy
Signed-off-by: Wang Mingyu 
---
 .../xorg-app/{xlsfonts_1.0.6.bb => xlsfonts_1.0.7.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-graphics/xorg-app/{xlsfonts_1.0.6.bb => 
xlsfonts_1.0.7.bb} (65%)

diff --git a/meta-oe/recipes-graphics/xorg-app/xlsfonts_1.0.6.bb 
b/meta-oe/recipes-graphics/xorg-app/xlsfonts_1.0.7.bb
similarity index 65%
rename from meta-oe/recipes-graphics/xorg-app/xlsfonts_1.0.6.bb
rename to meta-oe/recipes-graphics/xorg-app/xlsfonts_1.0.7.bb
index 76b76e4b37..e5cd0ce6fb 100644
--- a/meta-oe/recipes-graphics/xorg-app/xlsfonts_1.0.6.bb
+++ b/meta-oe/recipes-graphics/xorg-app/xlsfonts_1.0.7.bb
@@ -6,5 +6,5 @@ SECTION = "x11/app"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=5ec74dd7ea4d10c4715a7c44f159a40b"
 
-SRC_URI[md5sum] = "5774fd4f518b3f338f2b28f270e04bfc"
-SRC_URI[sha256sum] = 
"89b80b3a030006ab6cef717be286c12f2477894b227158b1e6133274f6ebd368"
+SRC_URI_EXT = "xz"
+SRC_URI[sha256sum] = 
"7b726945a967b44c35cddee5edd74802907a239ce2e2e515730b8a32c8e50465"
-- 
2.25.1


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



[oe] [meta-oe] [PATCH] xmag: upgrade 1.0.6 -> 1.0.7

2022-09-19 Thread wangmy
Signed-off-by: Wang Mingyu 
---
 .../xorg-app/{xmag_1.0.6.bb => xmag_1.0.7.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-graphics/xorg-app/{xmag_1.0.6.bb => xmag_1.0.7.bb} (68%)

diff --git a/meta-oe/recipes-graphics/xorg-app/xmag_1.0.6.bb 
b/meta-oe/recipes-graphics/xorg-app/xmag_1.0.7.bb
similarity index 68%
rename from meta-oe/recipes-graphics/xorg-app/xmag_1.0.6.bb
rename to meta-oe/recipes-graphics/xorg-app/xmag_1.0.7.bb
index ab74f5bd67..f3dac53451 100644
--- a/meta-oe/recipes-graphics/xorg-app/xmag_1.0.6.bb
+++ b/meta-oe/recipes-graphics/xorg-app/xmag_1.0.7.bb
@@ -7,5 +7,5 @@ LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=3413fe6832380b44b69b172d2d1b2387"
 DEPENDS += " libxaw libxt"
 
-SRC_URI[md5sum] = "8aaa41374935d697ee55d7dc9de70781"
-SRC_URI[sha256sum] = 
"87a2bc23b251e2d8f8370d3283a4d6c8dac98a30cb5749a04336cdb55c14e161"
+SRC_URI_EXT = "xz"
+SRC_URI[sha256sum] = 
"009936cc5a2706084079127b26cf55c713767650a34cb69e5682d60e33ce7461"
-- 
2.25.1


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



[oe] [meta-oe] [PATCH] xwud: upgrade 1.0.5 -> 1.0.6

2022-09-19 Thread wangmy
Signed-off-by: Wang Mingyu 
---
 .../xorg-app/{xwud_1.0.5.bb => xwud_1.0.6.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-graphics/xorg-app/{xwud_1.0.5.bb => xwud_1.0.6.bb} (73%)

diff --git a/meta-oe/recipes-graphics/xorg-app/xwud_1.0.5.bb 
b/meta-oe/recipes-graphics/xorg-app/xwud_1.0.6.bb
similarity index 73%
rename from meta-oe/recipes-graphics/xorg-app/xwud_1.0.5.bb
rename to meta-oe/recipes-graphics/xorg-app/xwud_1.0.6.bb
index 7cb550d276..1be0b5cd77 100644
--- a/meta-oe/recipes-graphics/xorg-app/xwud_1.0.5.bb
+++ b/meta-oe/recipes-graphics/xorg-app/xwud_1.0.6.bb
@@ -8,5 +8,5 @@ SECTION = "x11/app"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=31e8892c80b7a0c1c5f37c8e8ae6d794"
 
-SRC_URI[md5sum] = "79972093bb0766fcd0223b2bd6d11932"
-SRC_URI[sha256sum] = 
"7051f8a892313f22edf41dab45864e86e7062ee9012d5dbb6a40fc6b10a9"
+SRC_URI_EXT = "xz"
+SRC_URI[sha256sum] = 
"64048cd15eba3cd9a3d2e3280650391259ebf6b529f2101d1a20f441038c1afe"
-- 
2.25.1


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



[oe] [meta-python] [PATCH] python3-grpcio-tools: upgrade 1.48.1 -> 1.49.0

2022-09-19 Thread wangmy
0001-protobuf-Disable-musttail-attribute-on-mips.patch
refreshed for new version.

Signed-off-by: Wang Mingyu 
---
 ...f-Disable-musttail-attribute-on-mips.patch | 19 ++-
 ...48.1.bb => python3-grpcio-tools_1.49.0.bb} |  2 +-
 2 files changed, 11 insertions(+), 10 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-grpcio-tools_1.48.1.bb => 
python3-grpcio-tools_1.49.0.bb} (85%)

diff --git 
a/meta-python/recipes-devtools/python/python3-grpcio-tools/0001-protobuf-Disable-musttail-attribute-on-mips.patch
 
b/meta-python/recipes-devtools/python/python3-grpcio-tools/0001-protobuf-Disable-musttail-attribute-on-mips.patch
index d19d1eee4c..5e8184b636 100644
--- 
a/meta-python/recipes-devtools/python/python3-grpcio-tools/0001-protobuf-Disable-musttail-attribute-on-mips.patch
+++ 
b/meta-python/recipes-devtools/python/python3-grpcio-tools/0001-protobuf-Disable-musttail-attribute-on-mips.patch
@@ -7,24 +7,25 @@ See https://github.com/llvm/llvm-project/issues/57795
 
 Upstream-Status: Pending
 Signed-off-by: Khem Raj 
+Signed-off-by: Wang Mingyu 
 ---
  third_party/protobuf/src/google/protobuf/port_def.inc | 3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)
 
 diff --git a/third_party/protobuf/src/google/protobuf/port_def.inc 
b/third_party/protobuf/src/google/protobuf/port_def.inc
-index 37632cf..3c3c1e4 100644
+index e4b0753..4f603e6 100644
 --- a/third_party/protobuf/src/google/protobuf/port_def.inc
 +++ b/third_party/protobuf/src/google/protobuf/port_def.inc
-@@ -230,7 +230,8 @@
- #error PROTOBUF_TAILCALL was previously defined
- #endif
- #if __has_cpp_attribute(clang::musttail) && \
--  !defined(__arm__) && !defined(_ARCH_PPC) && !defined(__wasm__)
-+  !defined(__arm__) && !defined(_ARCH_PPC) && !defined(__wasm__) && \
-+  !defined(__mips__)
+@@ -257,7 +257,8 @@
+ #if __has_cpp_attribute(clang::musttail) && !defined(__arm__) && \
+ !defined(_ARCH_PPC) && !defined(__wasm__) && \
+ !(defined(_MSC_VER) && defined(_M_IX86)) &&  \
+-!(defined(__NDK_MAJOR__) && __NDK_MAJOR <= 24)
++!(defined(__NDK_MAJOR__) && !defined(__mips__) && \
++ __NDK_MAJOR <= 24)
  #  ifndef PROTO2_OPENSOURCE
  // Compilation fails on ARM32: b/195943306
  // Compilation fails on powerpc64le: b/187985113
 -- 
-2.37.3
+2.25.1
 
diff --git a/meta-python/recipes-devtools/python/python3-grpcio-tools_1.48.1.bb 
b/meta-python/recipes-devtools/python/python3-grpcio-tools_1.49.0.bb
similarity index 85%
rename from meta-python/recipes-devtools/python/python3-grpcio-tools_1.48.1.bb
rename to meta-python/recipes-devtools/python/python3-grpcio-tools_1.49.0.bb
index 002211a8c1..d2b599ae7a 100644
--- a/meta-python/recipes-devtools/python/python3-grpcio-tools_1.48.1.bb
+++ b/meta-python/recipes-devtools/python/python3-grpcio-tools_1.49.0.bb
@@ -12,7 +12,7 @@ DEPENDS += "${PYTHON_PN}-grpcio"
 SRC_URI += "file://0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch \
 file://0001-protobuf-Disable-musttail-attribute-on-mips.patch \
 "
-SRC_URI[sha256sum] = 
"1178f2ea531f80cc2027ec64728df6ffc8e98cf1df61652a496eafd612127183"
+SRC_URI[sha256sum] = 
"16ac93ac515194f63febcf6f8a96a7f17390268972acc15e765d257f5008f2af"
 
 RDEPENDS:${PN} = "${PYTHON_PN}-grpcio"
 
-- 
2.25.1


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



[oe] [meta-python] [PATCH] python3-grpcio: upgrade 1.48.1 -> 1.49.0

2022-09-19 Thread wangmy
0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch
refreshed for new version.

Signed-off-by: Wang Mingyu 
---
 ...-Do-not-mix-C-and-C-compiler-options.patch | 27 ++-
 ...cio_1.48.1.bb => python3-grpcio_1.49.0.bb} |  2 +-
 2 files changed, 16 insertions(+), 13 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-grpcio_1.48.1.bb => 
python3-grpcio_1.49.0.bb} (93%)

diff --git 
a/meta-python/recipes-devtools/python/python3-grpcio/0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch
 
b/meta-python/recipes-devtools/python/python3-grpcio/0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch
index f416ca2728..1f465dbb6e 100644
--- 
a/meta-python/recipes-devtools/python/python3-grpcio/0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch
+++ 
b/meta-python/recipes-devtools/python/python3-grpcio/0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch
@@ -23,16 +23,17 @@ Upstream-Status: Inappropriate [oe specific]
 
 Signed-off-by: Khem Raj 
 Signed-off-by: Hongxu Jia 
+Signed-off-by: Wang Mingyu 
 ---
- setup.py  | 9 ++---
- src/python/grpcio/commands.py | 5 -
- 2 files changed, 10 insertions(+), 4 deletions(-)
+ setup.py  | 11 +++
+ src/python/grpcio/commands.py |  5 -
+ 2 files changed, 11 insertions(+), 5 deletions(-)
 
 diff --git a/setup.py b/setup.py
-index ec27fe4..b2d2d1a 100644
+index 3a50c97..bb2386d 100644
 --- a/setup.py
 +++ b/setup.py
-@@ -206,8 +206,11 @@ def check_linker_need_libatomic():
+@@ -205,8 +205,11 @@ def check_linker_need_libatomic():
  """Test if linker on system needs libatomic."""
  code_test = (b'#include \n' +
   b'int main() { return std::atomic{}; }')
@@ -46,15 +47,17 @@ index ec27fe4..b2d2d1a 100644
  stdin=PIPE,
  stdout=PIPE,
  stderr=PIPE)
-@@ -217,7 +220,7 @@ def check_linker_need_libatomic():
+@@ -215,8 +218,8 @@ def check_linker_need_libatomic():
+ return False
  # Double-check to see if -latomic actually can solve the problem.
  # https://github.com/grpc/grpc/issues/22491
- cpp_test = subprocess.Popen(
--[cxx, '-x', 'c++', '-std=c++14', '-', '-latomic'],
-+[cxx, cxx_args, '-x', 'c++', '-std=c++14', '-', '-latomic'],
- stdin=PIPE,
- stdout=PIPE,
- stderr=PIPE)
+-cpp_test = subprocess.Popen(cxx +
+-['-x', 'c++', '-std=c++14', '-', '-latomic'],
++cpp_test = subprocess.Popen(
++[cxx, cxx_args, '-x', 'c++', '-std=c++14', 
'-', '-latomic'],
+ stdin=PIPE,
+ stdout=PIPE,
+ stderr=PIPE)
 diff --git a/src/python/grpcio/commands.py b/src/python/grpcio/commands.py
 index d93b6c7..a8c4a51 100644
 --- a/src/python/grpcio/commands.py
diff --git a/meta-python/recipes-devtools/python/python3-grpcio_1.48.1.bb 
b/meta-python/recipes-devtools/python/python3-grpcio_1.49.0.bb
similarity index 93%
rename from meta-python/recipes-devtools/python/python3-grpcio_1.48.1.bb
rename to meta-python/recipes-devtools/python/python3-grpcio_1.49.0.bb
index b2ca35154e..c3266e5d20 100644
--- a/meta-python/recipes-devtools/python/python3-grpcio_1.48.1.bb
+++ b/meta-python/recipes-devtools/python/python3-grpcio_1.49.0.bb
@@ -12,7 +12,7 @@ SRC_URI:append:class-target = " 
file://ppc-boringssl-support.patch \
 file://mips_bigendian.patch \
 
file://abseil-ppc-fixes.patch;patchdir=third_party/abseil-cpp \
 "
-SRC_URI[sha256sum] = 
"660217eccd2943bf23ea9a36e2a292024305aec04bf747fbcff1f5032b83610e"
+SRC_URI[sha256sum] = 
"90ec337f36db26fbc70a4c032bcbabb2008f950f4194e99385118a12688fdf92"
 
 RDEPENDS:${PN} = "${PYTHON_PN}-protobuf \
   ${PYTHON_PN}-setuptools \
-- 
2.25.1


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



[oe] [meta-python] [PATCH] python3-cachecontrol: upgrade 0.12.11 -> 0.12.12

2022-09-19 Thread wangmy
Signed-off-by: Wang Mingyu 
---
 ...-cachecontrol_0.12.11.bb => python3-cachecontrol_0.12.12.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-cachecontrol_0.12.11.bb => 
python3-cachecontrol_0.12.12.bb} (88%)

diff --git 
a/meta-python/recipes-devtools/python/python3-cachecontrol_0.12.11.bb 
b/meta-python/recipes-devtools/python/python3-cachecontrol_0.12.12.bb
similarity index 88%
rename from meta-python/recipes-devtools/python/python3-cachecontrol_0.12.11.bb
rename to meta-python/recipes-devtools/python/python3-cachecontrol_0.12.12.bb
index fc2b0ae75b..8f7185b8f5 100644
--- a/meta-python/recipes-devtools/python/python3-cachecontrol_0.12.11.bb
+++ b/meta-python/recipes-devtools/python/python3-cachecontrol_0.12.12.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = 
"file://PKG-INFO;beginline=12;endline=12;md5=942a721dac34d073
 # override PYPI_PACKAGE so fetch succeeds.
 PYPI_PACKAGE = "CacheControl"
 
-SRC_URI[sha256sum] = 
"a5b9fcc986b184db101aa280b42ecdcdfc524892596f606858e0b7a8b4d9e144"
+SRC_URI[sha256sum] = 
"9c2e5208ea76ebd9921176569743ddf6d7f3bb4188dbf61806f0f8fc48ecad38"
 
 inherit pypi setuptools3
 
-- 
2.25.1


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



[oe] [meta-python] [PATCH] python3-cantools: upgrade 37.1.2 -> 37.2.0

2022-09-19 Thread wangmy
Changelog:
==
 ARXML refactoring preparations
 refactor the ARXML code
 Bugfix: BU_BO_REL causes 'index out of range' error
 Add missing Bus import in can/init.py
 PCAN trace (.trc) format to logreader

Signed-off-by: Wang Mingyu 
---
 .../{python3-cantools_37.1.2.bb => python3-cantools_37.2.0.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-cantools_37.1.2.bb => 
python3-cantools_37.2.0.bb} (84%)

diff --git a/meta-python/recipes-devtools/python/python3-cantools_37.1.2.bb 
b/meta-python/recipes-devtools/python/python3-cantools_37.2.0.bb
similarity index 84%
rename from meta-python/recipes-devtools/python/python3-cantools_37.1.2.bb
rename to meta-python/recipes-devtools/python/python3-cantools_37.2.0.bb
index ec437eeceb..7d159340c5 100644
--- a/meta-python/recipes-devtools/python/python3-cantools_37.1.2.bb
+++ b/meta-python/recipes-devtools/python/python3-cantools_37.2.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/eerimoq/cantools";
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=d9aa4ec07de78abae21c490c9ffe61bd"
 
-SRC_URI[sha256sum] = 
"0d84b879a18d869d182023cdebae9318095a8959ceee6309de59fd3c399dbfef"
+SRC_URI[sha256sum] = 
"bbb0e802af02a1dc792c32d10b61b51deaefc1c8e9c776b50d2d2e194b702fac"
 
 PYPI_PACKAGE = "cantools"
 
-- 
2.25.1


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



[oe] [meta-python] [PATCH] python3-eth-typing: upgrade 3.1.0 -> 3.2.0

2022-09-19 Thread wangmy
Signed-off-by: Wang Mingyu 
---
 ...{python3-eth-typing_3.1.0.bb => python3-eth-typing_3.2.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-eth-typing_3.1.0.bb => 
python3-eth-typing_3.2.0.bb} (74%)

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


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



[oe] [meta-python] [PATCH] python3-fasteners: upgrade 0.17.3 -> 0.18

2022-09-19 Thread wangmy
Changelog:
==
 Reshuffle the process lock code and properly document it.
 Revamp the docs and switch from sphinx to mkdocs
 Remove difficult to use tread lock features from docs
 Bring back support for eventlet spawn_n
 Remove support for python3.6. It should still work, but is no longer tested.

Signed-off-by: Wang Mingyu 
---
 .../{python3-fasteners_0.17.3.bb => python3-fasteners_0.18.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-fasteners_0.17.3.bb => 
python3-fasteners_0.18.bb} (78%)

diff --git a/meta-python/recipes-devtools/python/python3-fasteners_0.17.3.bb 
b/meta-python/recipes-devtools/python/python3-fasteners_0.18.bb
similarity index 78%
rename from meta-python/recipes-devtools/python/python3-fasteners_0.17.3.bb
rename to meta-python/recipes-devtools/python/python3-fasteners_0.18.bb
index 51691b7593..5f63891748 100644
--- a/meta-python/recipes-devtools/python/python3-fasteners_0.17.3.bb
+++ b/meta-python/recipes-devtools/python/python3-fasteners_0.18.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/harlowja/fasteners";
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=4476c4be31402271e101d9a4a3430d52"
 
-SRC_URI[sha256sum] = 
"a9a42a208573d4074c77d041447336cf4e3c1389a256fd3e113ef59cf29b7980"
+SRC_URI[sha256sum] = 
"cb7c13ef91e0c7e4fe4af38ecaf6b904ec3f5ce0dda06d34924b6b74b869d953"
 
 inherit pypi python_setuptools_build_meta
 
-- 
2.25.1


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



[oe] [meta-python] [PATCH] python3-flask-socketio: upgrade 5.3.0 -> 5.3.1

2022-09-19 Thread wangmy
Changelog:
==
Always pop allow_unsafe_werkzeug option from kwargs #1877

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

diff --git 
a/meta-python/recipes-devtools/python/python3-flask-socketio_5.3.0.bb 
b/meta-python/recipes-devtools/python/python3-flask-socketio_5.3.1.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python3-flask-socketio_5.3.0.bb
rename to meta-python/recipes-devtools/python/python3-flask-socketio_5.3.1.bb
index 1078b09eb6..50e820ba37 100644
--- a/meta-python/recipes-devtools/python/python3-flask-socketio_5.3.0.bb
+++ b/meta-python/recipes-devtools/python/python3-flask-socketio_5.3.1.bb
@@ -9,7 +9,7 @@ inherit pypi python_setuptools_build_meta
 
 PYPI_PACKAGE = "Flask-SocketIO"
 
-SRC_URI[sha256sum] = 
"fa547d0c39ccc6223aad191f3f6ef906383eab67d25ffc343b15bfe33d6478fe"
+SRC_URI[sha256sum] = 
"fd0ed0fc1341671d92d5f5b2f5503916deb7aa7e2940e6636cfa2c087c828bf9"
 
 RDEPENDS:${PN} += "\
 ${PYTHON_PN}-flask \
-- 
2.25.1


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



[oe] [meta-python] [PATCH] python3-google-api-core: upgrade 2.10.0 -> 2.10.1

2022-09-19 Thread wangmy
Changelog:
=
Improve transcoding error message (#442) (538df80)

Signed-off-by: Wang Mingyu 
---
 ...gle-api-core_2.10.0.bb => python3-google-api-core_2.10.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-google-api-core_2.10.0.bb 
=> python3-google-api-core_2.10.1.bb} (87%)

diff --git 
a/meta-python/recipes-devtools/python/python3-google-api-core_2.10.0.bb 
b/meta-python/recipes-devtools/python/python3-google-api-core_2.10.1.bb
similarity index 87%
rename from 
meta-python/recipes-devtools/python/python3-google-api-core_2.10.0.bb
rename to meta-python/recipes-devtools/python/python3-google-api-core_2.10.1.bb
index 470bc7fc50..c7ded90984 100644
--- a/meta-python/recipes-devtools/python/python3-google-api-core_2.10.0.bb
+++ b/meta-python/recipes-devtools/python/python3-google-api-core_2.10.1.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = 
"1d053734f14591939e7764e99c31253fed46bf2578da0dcd82821f17a6dd991c"
+SRC_URI[sha256sum] = 
"e16c15a11789bc5a3457afb2818a3540a03f341e6e710d7f9bbf6cde2ef4a7c8"
 
 RDEPENDS:${PN} += "\
 ${PYTHON_PN}-asyncio \
-- 
2.25.1


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



[oe] [meta-python] [PATCH] python3-google-api-python-client: upgrade 2.60.0 -> 2.61.0

2022-09-19 Thread wangmy
Signed-off-by: Wang Mingyu 
---
 ...ent_2.60.0.bb => python3-google-api-python-client_2.61.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename 
meta-python/recipes-devtools/python/{python3-google-api-python-client_2.60.0.bb 
=> python3-google-api-python-client_2.61.0.bb} (86%)

diff --git 
a/meta-python/recipes-devtools/python/python3-google-api-python-client_2.60.0.bb
 
b/meta-python/recipes-devtools/python/python3-google-api-python-client_2.61.0.bb
similarity index 86%
rename from 
meta-python/recipes-devtools/python/python3-google-api-python-client_2.60.0.bb
rename to 
meta-python/recipes-devtools/python/python3-google-api-python-client_2.61.0.bb
index 906bb86e4c..06758a7fac 100644
--- 
a/meta-python/recipes-devtools/python/python3-google-api-python-client_2.60.0.bb
+++ 
b/meta-python/recipes-devtools/python/python3-google-api-python-client_2.61.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] = 
"ca770930a1a8fce969ffdc81910844705138e8d05e040ab62d4276a4b1baddea"
+SRC_URI[sha256sum] = 
"de0a0cb7bb18ebff5cf7dc782b48a488a14bd7684b538799f31bedab7de2b83f"
 
 inherit pypi setuptools3
 
-- 
2.25.1


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



[oe] [meta-python] [PATCH] python3-jsonrpcserver: upgrade 5.0.8 -> 5.0.9

2022-09-19 Thread wangmy
Changelog:
=
  Remove unncessary package_data from setup.py (#243)
  Use a custom logger when logging exceptions, not root

Signed-off-by: Wang Mingyu 
---
 ...n3-jsonrpcserver_5.0.8.bb => python3-jsonrpcserver_5.0.9.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-jsonrpcserver_5.0.8.bb => 
python3-jsonrpcserver_5.0.9.bb} (85%)

diff --git a/meta-python/recipes-devtools/python/python3-jsonrpcserver_5.0.8.bb 
b/meta-python/recipes-devtools/python/python3-jsonrpcserver_5.0.9.bb
similarity index 85%
rename from meta-python/recipes-devtools/python/python3-jsonrpcserver_5.0.8.bb
rename to meta-python/recipes-devtools/python/python3-jsonrpcserver_5.0.9.bb
index 88b1d6856e..7e058a757b 100644
--- a/meta-python/recipes-devtools/python/python3-jsonrpcserver_5.0.8.bb
+++ b/meta-python/recipes-devtools/python/python3-jsonrpcserver_5.0.9.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/explodinglabs/jsonrpcserver";
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=61b63ea9d36f6fb63ddc8265304f"
 
-SRC_URI[sha256sum] = 
"5150071e4abc9a93f086aa0fd0004dfe0410de66adfaaf513613baa2c2fc00d7"
+SRC_URI[sha256sum] = 
"a71fb2cfa18541c80935f60987f92755d94d74141248c7438847b96eee5c4482"
 
 inherit pypi setuptools3
 
-- 
2.25.1


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



[oe] [meta-python] [PATCH] python3-pycocotools: upgrade 2.0.4 -> 2.0.5

2022-09-19 Thread zhengruoqin
Signed-off-by: Zheng Ruoqin 
---
 ...ython3-pycocotools_2.0.4.bb => python3-pycocotools_2.0.5.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pycocotools_2.0.4.bb => 
python3-pycocotools_2.0.5.bb} (84%)

diff --git a/meta-python/recipes-devtools/python/python3-pycocotools_2.0.4.bb 
b/meta-python/recipes-devtools/python/python3-pycocotools_2.0.5.bb
similarity index 84%
rename from meta-python/recipes-devtools/python/python3-pycocotools_2.0.4.bb
rename to meta-python/recipes-devtools/python/python3-pycocotools_2.0.5.bb
index ec8585e619..234942bfe0 100644
--- a/meta-python/recipes-devtools/python/python3-pycocotools_2.0.4.bb
+++ b/meta-python/recipes-devtools/python/python3-pycocotools_2.0.5.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = 
"file://pycocotools/coco.py;beginline=45;endline=45;md5=12cb5
 
 inherit setuptools3 pypi
 
-SRC_URI[sha256sum] = 
"2ab586aa389b9657b6d73c2b9a827a3681f8d00f36490c2e8ab05902e3fd9e93"
+SRC_URI[sha256sum] = 
"41d1fb062df5bab5ebc3e92971455aa089479e7cd10553278ca54628b9dc9bf5"
 
 DEPENDS = "python3-cython-native python3-numpy-native virtual/crypt"
 RDEPENDS:${PN} = "python3-matplotlib python3-pillow python3-profile"
-- 
2.25.1


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



[oe] [meta-python] [PATCH] python3-regex: upgrade 2022.8.17 -> 2022.9.13

2022-09-19 Thread zhengruoqin
Signed-off-by: Zheng Ruoqin 
---
 .../{python3-regex_2022.8.17.bb => python3-regex_2022.9.13.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-regex_2022.8.17.bb => 
python3-regex_2022.9.13.bb} (79%)

diff --git a/meta-python/recipes-devtools/python/python3-regex_2022.8.17.bb 
b/meta-python/recipes-devtools/python/python3-regex_2022.9.13.bb
similarity index 79%
rename from meta-python/recipes-devtools/python/python3-regex_2022.8.17.bb
rename to meta-python/recipes-devtools/python/python3-regex_2022.9.13.bb
index 4999fc64f4..886acd7387 100644
--- a/meta-python/recipes-devtools/python/python3-regex_2022.8.17.bb
+++ b/meta-python/recipes-devtools/python/python3-regex_2022.9.13.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSE.txt;md5=7b5751ddd6b643203c31ff873051d069"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = 
"5c77eab46f3a2b2cd8bbe06467df783543bf7396df431eb4a144cc4b89e9fb3c"
+SRC_URI[sha256sum] = 
"f07373b6e56a6f3a0df3d75b651a278ca7bd357a796078a26a958ea1ce0588fd"
 
 RDEPENDS:${PN} += " \
python3-stringold \
-- 
2.25.1


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



[oe] [meta-python] [PATCH] python3-pyproj: upgrade 3.3.1 -> 3.4.0

2022-09-19 Thread zhengruoqin
Signed-off-by: Zheng Ruoqin 
---
 .../python/{python3-pyproj_3.3.1.bb => python3-pyproj_3.4.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pyproj_3.3.1.bb => 
python3-pyproj_3.4.0.bb} (84%)

diff --git a/meta-python/recipes-devtools/python/python3-pyproj_3.3.1.bb 
b/meta-python/recipes-devtools/python/python3-pyproj_3.4.0.bb
similarity index 84%
rename from meta-python/recipes-devtools/python/python3-pyproj_3.3.1.bb
rename to meta-python/recipes-devtools/python/python3-pyproj_3.4.0.bb
index 6085e48b3a..62eceb2c09 100644
--- a/meta-python/recipes-devtools/python/python3-pyproj_3.3.1.bb
+++ b/meta-python/recipes-devtools/python/python3-pyproj_3.4.0.bb
@@ -8,7 +8,7 @@ PYPI_PACKAGE = "pyproj"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = 
"b3d8e14d91cc95fb3dbc03a9d0588ac58326803eefa5bbb0978d109de3304fbe"
+SRC_URI[sha256sum] = 
"a708445927ace9857f52c3ba67d2915da7b41a8fdcd9b8f99a4c9ed60a75eb33"
 
 RDEPENDS:${PN} = "${PYTHON_PN}-certifi proj"
 
-- 
2.25.1


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



[oe] [meta-oe] [PATCH] smarty: upgrade 4.2.0 -> 4.2.1

2022-09-19 Thread zhengruoqin
Changelog:
=
Security
-
Applied appropriate javascript and html escaping in mailto plugin to 
counter injection attacks #454

Fixed

Fixed PHP8.1 deprecation errors in modifiers (upper, explode, number_format 
and replace) #755 and #788
Fixed PHP8.1 deprecation errors in capitalize modifier #789
Fixed use of rand() without a parameter in math function #794
Fixed unselected year/month/day not working in html_select_date #395

Signed-off-by: Zheng Ruoqin 
---
 .../recipes-support/smarty/{smarty_4.2.0.bb => smarty_4.2.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-support/smarty/{smarty_4.2.0.bb => smarty_4.2.1.bb} 
(94%)

diff --git a/meta-oe/recipes-support/smarty/smarty_4.2.0.bb 
b/meta-oe/recipes-support/smarty/smarty_4.2.1.bb
similarity index 94%
rename from meta-oe/recipes-support/smarty/smarty_4.2.0.bb
rename to meta-oe/recipes-support/smarty/smarty_4.2.1.bb
index 2cd96a255d..71040d0164 100644
--- a/meta-oe/recipes-support/smarty/smarty_4.2.0.bb
+++ b/meta-oe/recipes-support/smarty/smarty_4.2.1.bb
@@ -9,7 +9,7 @@ DEPENDS += "php"
 
 SRC_URI = "git://github.com/smarty-php/smarty.git;protocol=https;branch=master"
 
-SRCREV = "97aeb14c6fc2fb733938809926e2f9d6c581a70d"
+SRCREV = "ffa2b81a8e354a49fd8a2f24742dc9dc399e8007"
 
 S = "${WORKDIR}/git"
 
-- 
2.25.1


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



[oe] [meta-python] [PATCH] python3-protobuf: upgrade 4.21.5 -> 4.21.6

2022-09-19 Thread wangmy
Signed-off-by: Wang Mingyu 
---
 .../{python3-protobuf_4.21.5.bb => python3-protobuf_4.21.6.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-protobuf_4.21.5.bb => 
python3-protobuf_4.21.6.bb} (92%)

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


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



[oe] [meta-python] [PATCH] python3-pyzmq: upgrade 23.2.1 -> 24.0.0

2022-09-19 Thread zhengruoqin
Signed-off-by: Zheng Ruoqin 
---
 .../python/{python3-pyzmq_23.2.1.bb => python3-pyzmq_24.0.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pyzmq_23.2.1.bb => 
python3-pyzmq_24.0.0.bb} (94%)

diff --git a/meta-python/recipes-devtools/python/python3-pyzmq_23.2.1.bb 
b/meta-python/recipes-devtools/python/python3-pyzmq_24.0.0.bb
similarity index 94%
rename from meta-python/recipes-devtools/python/python3-pyzmq_23.2.1.bb
rename to meta-python/recipes-devtools/python/python3-pyzmq_24.0.0.bb
index ea6391f3dd..33e3ba6602 100644
--- a/meta-python/recipes-devtools/python/python3-pyzmq_23.2.1.bb
+++ b/meta-python/recipes-devtools/python/python3-pyzmq_24.0.0.bb
@@ -13,7 +13,7 @@ SRC_URI:append = " \
 file://club-rpath-out.patch \
 file://run-ptest \
 "
-SRC_URI[sha256sum] = 
"2b381aa867ece7d0a82f30a0c7f3d4387b7cf2e0697e33efaa5bed6c5784abcd"
+SRC_URI[sha256sum] = 
"13b008bd142c9f6079ad75a30504eef2291502e9eac90e722b16fcf9ce856147"
 
 inherit pypi pkgconfig python_setuptools_build_meta ptest
 
-- 
2.25.1


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



[oe][meta-oe][PATCH] passwdqc: fix the libpasswdqc FILES setting

2022-09-19 Thread Chen Qi
The actual file name is now libpasswdqc.so.1 instead of libpasswdqc.so.0.
This fixes the following error when installing passwdqc:

  nothing provides libpasswdqc needed by passwdqc-2.0.2-r0

Signed-off-by: Chen Qi 
---
 meta-oe/recipes-security/passwdqc/passwdqc_2.0.2.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-security/passwdqc/passwdqc_2.0.2.bb 
b/meta-oe/recipes-security/passwdqc/passwdqc_2.0.2.bb
index de4bff8c7..8462701b3 100644
--- a/meta-oe/recipes-security/passwdqc/passwdqc_2.0.2.bb
+++ b/meta-oe/recipes-security/passwdqc/passwdqc_2.0.2.bb
@@ -57,7 +57,7 @@ do_install() {
 PROVIDES += "pam-${BPN}"
 PACKAGES =+ "lib${BPN} pam-${BPN}"
 
-FILES:lib${BPN} = "${base_libdir}/libpasswdqc.so.0"
+FILES:lib${BPN} = "${base_libdir}/libpasswdqc.so.1"
 FILES:pam-${BPN} = "${base_libdir}/security/pam_passwdqc.so"
 FILES:${PN}-dbg += "${base_libdir}/security/.debug"
 
-- 
2.37.1


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