Re: [oe] [meta-oe][PATCH 1/3] protobuf: 3.19.4 -> 3.21.5 upgrade

2022-08-25 Thread Khem Raj
its fails to build

https://errors.yoctoproject.org/Errors/Build/152159/

On Thu, Aug 25, 2022 at 4:47 AM Vyacheslav Yurkov  wrote:
>
> From: Vyacheslav Yurkov 
>
> Drop the patch that was accepted upstream
>
> Signed-off-by: Vyacheslav Yurkov 
> ---
>  .../0001-Fix-linking-error-with-ld-gold.patch |  6 +-
>  ...r-init-prio-for-extension-attributes.patch | 79 ---
>  ...ude-descriptor.cc-when-building-libp.patch |  8 +-
>  ...e-respect-CXX-LDFLAGS-variables-fix-.patch | 10 +--
>  .../0001-protobuf-fix-configure-error.patch   | 10 +--
>  ...{protobuf_3.19.4.bb => protobuf_3.21.5.bb} |  5 +-
>  6 files changed, 16 insertions(+), 102 deletions(-)
>  delete mode 100644 
> meta-oe/recipes-devtools/protobuf/protobuf/0001-Lower-init-prio-for-extension-attributes.patch
>  rename meta-oe/recipes-devtools/protobuf/{protobuf_3.19.4.bb => 
> protobuf_3.21.5.bb} (95%)
>
> diff --git 
> a/meta-oe/recipes-devtools/protobuf/protobuf/0001-Fix-linking-error-with-ld-gold.patch
>  
> b/meta-oe/recipes-devtools/protobuf/protobuf/0001-Fix-linking-error-with-ld-gold.patch
> index 488c1f6ff..2bcb13873 100644
> --- 
> a/meta-oe/recipes-devtools/protobuf/protobuf/0001-Fix-linking-error-with-ld-gold.patch
> +++ 
> b/meta-oe/recipes-devtools/protobuf/protobuf/0001-Fix-linking-error-with-ld-gold.patch
> @@ -1,4 +1,4 @@
> -From ddb9c5147883f8b27b4205450139e4a115d9961f Mon Sep 17 00:00:00 2001
> +From a91130bb95528743a3f7253f8fe945b7505047d5 Mon Sep 17 00:00:00 2001
>  From: Kyungjik Min 
>  Date: Mon, 28 Dec 2020 15:56:09 +0900
>  Subject: [PATCH] Fix linking error with ld-gold
> @@ -19,6 +19,7 @@ N/A
>  :Issues Addressed:
>  [PLAT-130467] Fix build error for libgoogleassistant with latest
>protobuf-3.11.4
> +
>  ---
>   src/libprotobuf-lite.map | 2 ++
>   src/libprotobuf.map  | 2 ++
> @@ -64,6 +65,3 @@ index 391554669..a1853ca6c 100644
>
> local:
>   *;
> ---
> -2.17.1
> -
> diff --git 
> a/meta-oe/recipes-devtools/protobuf/protobuf/0001-Lower-init-prio-for-extension-attributes.patch
>  
> b/meta-oe/recipes-devtools/protobuf/protobuf/0001-Lower-init-prio-for-extension-attributes.patch
> deleted file mode 100644
> index a1200e01c..0
> --- 
> a/meta-oe/recipes-devtools/protobuf/protobuf/0001-Lower-init-prio-for-extension-attributes.patch
> +++ /dev/null
> @@ -1,79 +0,0 @@
> -From 8ff34dbff1eac612326b492d0b2cb93901ad7e2b Mon Sep 17 00:00:00 2001
> -From: Jani Nurminen 
> -Date: Fri, 24 Sep 2021 09:56:11 +0200
> -Subject: [PATCH] Lower init prio for extension attributes
> -MIME-Version: 1.0
> -Content-Type: text/plain; charset=UTF-8
> -Content-Transfer-Encoding: 8bit
> -
> -Added PROTOBUF_EXTENSION_ATTRIBUTE_INIT_PRIORITY in
> -code generation for extension attributes.
> -It has lower prio than PROTOBUF_ATTRIBUTE_INIT_PRIORITY to
> -ensure that extension attributes are initialized after
> -other attribute.
> -This is needed in some applications to avoid segmentation fault.
> -
> -Reported by Karl-Herman Näslund.
> -
> -Signed-off-by: Jani Nurminen 
> -
> -Rebase on master
> -
> -Signed-off-by: He Zhe 
> 
> - src/google/protobuf/compiler/cpp/cpp_extension.cc |  2 +-
> - src/google/protobuf/port_def.inc  | 12 
> - src/google/protobuf/port_undef.inc|  1 +
> - 3 files changed, 14 insertions(+), 1 deletion(-)
> -
> -diff --git a/src/google/protobuf/compiler/cpp/cpp_extension.cc 
> b/src/google/protobuf/compiler/cpp/cpp_extension.cc
> -index 8604da5f2..984345ebe 100644
>  a/src/google/protobuf/compiler/cpp/cpp_extension.cc
> -+++ b/src/google/protobuf/compiler/cpp/cpp_extension.cc
> -@@ -164,7 +164,7 @@ void ExtensionGenerator::GenerateDefinition(io::Printer* 
> printer) {
> -   }
> -
> -   format(
> --  "PROTOBUF_ATTRIBUTE_INIT_PRIORITY "
> -+  "PROTOBUF_EXTENSION_ATTRIBUTE_INIT_PRIORITY "
> -   "::$proto_ns$::internal::ExtensionIdentifier< $extendee$,\n"
> -   "::$proto_ns$::internal::$type_traits$, $field_type$, $packed$ 
> >\n"
> -   "  $scoped_name$($constant_name$, $1$);\n",
> -diff --git a/src/google/protobuf/port_def.inc 
> b/src/google/protobuf/port_def.inc
> -index 7e9119112..a5117090d 100644
>  a/src/google/protobuf/port_def.inc
> -+++ b/src/google/protobuf/port_def.inc
> -@@ -614,6 +614,18 @@
> - #define PROTOBUF_ATTRIBUTE_INIT_PRIORITY
> - #endif
> -
> -+// Some embedded systems get a segmentation fault if extension attributes 
> are
> -+// initialized with higher or equal priority as other attributes. This gives
> -+// extension attributes high priority, but lower than other attributes.
> -+#ifdef PROTOBUF_EXTENSION_ATTRIBUTE_INIT_PRIORITY
> -+#error PROTOBUF_EXTENSION_ATTRIBUTE_INIT_PRIORITY was previously defined
> -+#endif
> -+#if PROTOBUF_GNUC_MIN(3, 0) && (!defined(__APPLE__) || defined(__clang__)) 
> && !((defined(sun) || defined(__sun)) && (defined(__SVR4) || 
> defined(__svr4__)))
> -+#define PROTOBUF_EXTENSION_ATTRIBUTE_INIT_PRIORITY 
> __attribute__((init_priority((103
> -+#else
> 

[oe] [meta-python] [PATCH] python3-pythonping: upgrade 1.1.2 -> 1.1.3

2022-08-25 Thread wangmy
Signed-off-by: Wang Mingyu 
---
 ...{python3-pythonping_1.1.2.bb => python3-pythonping_1.1.3.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pythonping_1.1.2.bb => 
python3-pythonping_1.1.3.bb} (77%)

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


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



[oe] [meta-python] [PATCH] python3-hexbytes: upgrade 0.2.3 -> 0.3.0

2022-08-25 Thread wangmy
Signed-off-by: Wang Mingyu 
---
 .../{python3-hexbytes_0.2.3.bb => python3-hexbytes_0.3.0.bb}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-hexbytes_0.2.3.bb => 
python3-hexbytes_0.3.0.bb} (75%)

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


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



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

2022-08-25 Thread wangmy
Add dependence python3-typing-extensions

Changelog:
==
Use importlib.resources instead of pkg_resources.

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

diff --git a/meta-python/recipes-devtools/python/python3-jsonrpcserver_5.0.7.bb 
b/meta-python/recipes-devtools/python/python3-jsonrpcserver_5.0.8.bb
similarity index 80%
rename from meta-python/recipes-devtools/python/python3-jsonrpcserver_5.0.7.bb
rename to meta-python/recipes-devtools/python/python3-jsonrpcserver_5.0.8.bb
index 12e9003798..88b1d6856e 100644
--- a/meta-python/recipes-devtools/python/python3-jsonrpcserver_5.0.7.bb
+++ b/meta-python/recipes-devtools/python/python3-jsonrpcserver_5.0.8.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/explodinglabs/jsonrpcserver;
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=61b63ea9d36f6fb63ddc8265304f"
 
-SRC_URI[sha256sum] = 
"b15d3fd043ad0c40b2ff17f7df2ddaec2e880bb923b40d133939a107c97fde5c"
+SRC_URI[sha256sum] = 
"5150071e4abc9a93f086aa0fd0004dfe0410de66adfaaf513613baa2c2fc00d7"
 
 inherit pypi setuptools3
 
@@ -17,6 +17,7 @@ RDEPENDS:${PN} += "\
 python3-netclient \
 python3-pkgutil \
 python3-oslash \
+python3-typing-extensions \
 "
 
 BBCLASSEXTEND = "native nativesdk"
-- 
2.25.1


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



[oe] [meta-python] [PATCH] python3-grpcio: upgrade 1.47.0 -> 1.48.0

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

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

abseil-ppc-fixes.patch
refreshed for new version

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

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

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

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

[oe] [meta-python] [PATCH] python3-google-auth: upgrade 2.10.0 -> 2.11.0

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

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

Bug Fixes

Async certificate retrieving (#1101) (05f125d)

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

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


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



[oe] [meta-python] [PATCH] python3-grpcio-tools: upgrade 1.47.0 -> 1.48.0

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

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

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


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



[oe] [meta-python] [PATCH] python3-google-api-python-client: upgrade 2.56.0 -> 2.57.0

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

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

diff --git 
a/meta-python/recipes-devtools/python/python3-google-api-python-client_2.56.0.bb
 
b/meta-python/recipes-devtools/python/python3-google-api-python-client_2.57.0.bb
similarity index 86%
rename from 
meta-python/recipes-devtools/python/python3-google-api-python-client_2.56.0.bb
rename to 
meta-python/recipes-devtools/python/python3-google-api-python-client_2.57.0.bb
index b8f7ff97b2..fdbad826bd 100644
--- 
a/meta-python/recipes-devtools/python/python3-google-api-python-client_2.56.0.bb
+++ 
b/meta-python/recipes-devtools/python/python3-google-api-python-client_2.57.0.bb
@@ -4,7 +4,7 @@ HOMEPAGE = 
"https://github.com/googleapis/google-api-python-client;
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
 
-SRC_URI[sha256sum] = 
"70d33203a4752bf4144b33fc689e997a2b5ed42c696d57149e4b3f5082682436"
+SRC_URI[sha256sum] = 
"ec4412545b0c5978a833bb03993a46121ad2c700f32af0cba23f8439b3f5fb02"
 
 inherit pypi setuptools3
 
-- 
2.25.1


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



[oe] [meta-python] [PATCH] python3-fastjsonschema: upgrade 2.16.1 -> 2.16.2

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

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

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

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


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



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

2022-08-25 Thread zhengruoqin
Signed-off-by: Zheng Ruoqin 
---
 .../{python3-cantools_37.1.0.bb => python3-cantools_37.1.2.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-cantools_37.1.0.bb => 
python3-cantools_37.1.2.bb} (84%)

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


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

2022-08-25 Thread zhengruoqin
Signed-off-by: Zheng Ruoqin 
---
 ...ython3-eth-account_0.6.1.bb => python3-eth-account_0.7.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-eth-account_0.6.1.bb => 
python3-eth-account_0.7.0.bb} (83%)

diff --git a/meta-python/recipes-devtools/python/python3-eth-account_0.6.1.bb 
b/meta-python/recipes-devtools/python/python3-eth-account_0.7.0.bb
similarity index 83%
rename from meta-python/recipes-devtools/python/python3-eth-account_0.6.1.bb
rename to meta-python/recipes-devtools/python/python3-eth-account_0.7.0.bb
index 9c87d3f5d1..5b8c34ec8d 100644
--- a/meta-python/recipes-devtools/python/python3-eth-account_0.6.1.bb
+++ b/meta-python/recipes-devtools/python/python3-eth-account_0.7.0.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=287820ad3553117aa2f92bf84c219324"
 
-SRC_URI[sha256sum] = 
"54b0b7d661e73f4cd12d508c9baa5c9a6e8c194aa7bafc39277cd673683ae50e"
+SRC_URI[sha256sum] = 
"61360e9e514e09e49929ed365ca0e1656758ecbd11248c629ad85b4335c2661a"
 
 inherit pypi setuptools3
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98453): 
https://lists.openembedded.org/g/openembedded-devel/message/98453
Mute This Topic: https://lists.openembedded.org/mt/93262979/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-awesomeversion: Upgrade 22.6.0 -> 22.8.0

2022-08-25 Thread zhengruoqin
Changelog:
=
⚠️ Deprecate positional arguments
Change devcontainer
Do not allow find_first_match without ensure_strategy
Warn instead of raise for missing ensure_strategy
Correct spelling mistakes
Handle KeyError
_compare_versions takes AwesomeVersion not str

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

diff --git 
a/meta-python/recipes-devtools/python/python3-awesomeversion_22.6.0.bb 
b/meta-python/recipes-devtools/python/python3-awesomeversion_22.8.0.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-awesomeversion_22.6.0.bb
rename to meta-python/recipes-devtools/python/python3-awesomeversion_22.8.0.bb
index cadb6f502d..550a8c439b 100644
--- a/meta-python/recipes-devtools/python/python3-awesomeversion_22.6.0.bb
+++ b/meta-python/recipes-devtools/python/python3-awesomeversion_22.8.0.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENCE.md;md5=92622b5a8e216099be741d78328bae5d"

-SRC_URI[sha256sum] = 
"38f580bfacf1c06b674bcd0f68e0c445ebb03fcd3700c6a2c588fb9313308e0f"
+SRC_URI[sha256sum] = 
"0469a801faafb3a7a13c529edc977ea04c3bce825af9ebb602f58012bc487db5"

 RDEPENDS:${PN} += "python3-profile python3-logging"

--
2.25.1


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



[oe] [meta-python] [PATCH] python3-charset-normalizer: upgrade 2.1.0 -> 2.1.1

2022-08-25 Thread zhengruoqin
Changelog:

Deprecated

Function normalize scheduled for removal in 3.0

Changed
--
Removed useless call to decode in fn is_unprintable (#206)

Fixed
-
Third-party library (i18n xgettext) crashing not recognizing utf_8 (PEP 
263) with underscore

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

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


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

2022-08-25 Thread zhengruoqin
Changelog:
  Fix mypy explicit re-export issues

Signed-off-by: Zheng Ruoqin 
---
 .../{python3-asttokens_2.0.7.bb => python3-asttokens_2.0.8.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-asttokens_2.0.7.bb => 
python3-asttokens_2.0.8.bb} (82%)

diff --git a/meta-python/recipes-devtools/python/python3-asttokens_2.0.7.bb 
b/meta-python/recipes-devtools/python/python3-asttokens_2.0.8.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-asttokens_2.0.7.bb
rename to meta-python/recipes-devtools/python/python3-asttokens_2.0.8.bb
index 5e3ca9e30f..973c57661b 100644
--- a/meta-python/recipes-devtools/python/python3-asttokens_2.0.7.bb
+++ b/meta-python/recipes-devtools/python/python3-asttokens_2.0.8.bb
@@ -7,7 +7,7 @@ PYPI_PACKAGE = "asttokens"
 
 inherit pypi python_setuptools_build_meta
 
-SRC_URI[sha256sum] = 
"8444353e4e2a99661c8dfb85ec9c02eedded08f0006234bff7db44a06840acc2"
+SRC_URI[sha256sum] = 
"c61e16246ecfb2cde2958406b4c8ebc043c9e6d73aaa83c941673b35e5d3a76b"
 
 DEPENDS += "python3-setuptools-scm-native"
 
-- 
2.25.1


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



[oe] [meta-networking][RESEND PATCH v4 1/1] mdio-tools: add recipes

2022-08-25 Thread Potin Lai
From: Enguerrand de Ribaucourt 

Self-description from the README: mdio-tools is a low-level debug tool
for communicating with devices attached to an MDIO bus.

Signed-off-by: Enguerrand de Ribaucourt 

Signed-off-by: Potin Lai 
---
LINK: [v3] 
https://lore.kernel.org/all/20220608163628.5745-1-potin.lai...@gmail.com/
LINK: [v2] 
https://lore.kernel.org/all/20220201142608.186135-1-enguerrand.de-ribauco...@savoirfairelinux.com/
LINK: [v1] 
https://lore.kernel.org/all/20220107150722.2221609-1-enguerrand.de-ribauco...@savoirfairelinux.com/

change v3 --> v4:
* update license to follow SPDX format
* mdio configs update and merged in yocto-kernel-cache
  LINK: 
https://git.yoctoproject.org/yocto-kernel-cache/commit/?h=yocto-5.15=0d58e2d6a7824df62129af91bbe9fadfdb5f9dce
  tested on yocto-kernel-cache commit: f7f709bf874f85baff9f2fb0ac0341c08399b144

change v1 --> v2:
change v2 --> v3:
* update version to 1.1.1

change v1 --> v2:
* moved in recipes-support
* removed version in mdio-tools_1.0.1.inc filename
---
 .../recipes-support/mdio-tools/mdio-netlink_git.bb  | 13 +
 .../recipes-support/mdio-tools/mdio-tools.inc   |  9 +
 .../recipes-support/mdio-tools/mdio-tools_git.bb|  9 +
 3 files changed, 31 insertions(+)
 create mode 100644 
meta-networking/recipes-support/mdio-tools/mdio-netlink_git.bb
 create mode 100644 meta-networking/recipes-support/mdio-tools/mdio-tools.inc
 create mode 100644 meta-networking/recipes-support/mdio-tools/mdio-tools_git.bb

diff --git a/meta-networking/recipes-support/mdio-tools/mdio-netlink_git.bb 
b/meta-networking/recipes-support/mdio-tools/mdio-netlink_git.bb
new file mode 100644
index 0..b50d33f90
--- /dev/null
+++ b/meta-networking/recipes-support/mdio-tools/mdio-netlink_git.bb
@@ -0,0 +1,13 @@
+require mdio-tools.inc
+
+DEPENDS += "virtual/kernel libmnl"
+# This module requires Linux 5.6 higher
+
+S = "${WORKDIR}/git/kernel"
+
+inherit module
+
+EXTRA_OEMAKE = "KDIR=${STAGING_KERNEL_DIR}"
+MODULES_INSTALL_TARGET = "install"
+
+RPROVIDES:${PN} += "kernel-module-mdio-netlink"
diff --git a/meta-networking/recipes-support/mdio-tools/mdio-tools.inc 
b/meta-networking/recipes-support/mdio-tools/mdio-tools.inc
new file mode 100644
index 0..a8a435fad
--- /dev/null
+++ b/meta-networking/recipes-support/mdio-tools/mdio-tools.inc
@@ -0,0 +1,9 @@
+DESCRIPTION = "A low-level debug tool for communicating with devices attached 
to an MDIO bus"
+SECTION = "networking"
+HOMEPAGE = "https://github.com/wkz/mdio-tools;
+LICENSE = "GPL-2.0-or-later"
+LIC_FILES_CHKSUM = 
"file://${WORKDIR}/git/COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
+
+SRC_URI = "git://github.com/wkz/mdio-tools.git;protocol=https;branch=master"
+SRCREV = "07cbff2d5e2de05037e5e7edd5044d678394c8d1"
+PV = "1.1.1"
diff --git a/meta-networking/recipes-support/mdio-tools/mdio-tools_git.bb 
b/meta-networking/recipes-support/mdio-tools/mdio-tools_git.bb
new file mode 100644
index 0..cd4df3da0
--- /dev/null
+++ b/meta-networking/recipes-support/mdio-tools/mdio-tools_git.bb
@@ -0,0 +1,9 @@
+require mdio-tools.inc
+
+DEPENDS += "libmnl"
+
+S = "${WORKDIR}/git"
+
+inherit pkgconfig autotools
+
+RDEPENDS:${PN} = "kernel-module-mdio-netlink"
-- 
2.31.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98449): 
https://lists.openembedded.org/g/openembedded-devel/message/98449
Mute This Topic: https://lists.openembedded.org/mt/93262641/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 7/7] idevicerestore: SRCREV bump 280575b..7d622d9

2022-08-25 Thread Potin Lai
Changelogs:
==
7d622d9 restore: Don't print 'Attempting to continue after critical error' 
warning when no error was detected
6bc672c Make sure to exactly match the passed variant when using --variant
e667b49 Add --variant command line switch to specify build identity to use
fbbd4b6 Ignore 'Research*' variant in build identity selection
20ad978 ipsw: Add workaround for missing RestoreBehavior entries for ipsw info
efd00b4 Don't print an error message when RestoreBehavior is missing
170a17e ipsw: Improve error message when fwrite fails
eff9fab Support iOS 16.0 Beta 2 (#506)
aa25a29 Remove more serial number checks, and get ECID early on in all modes
f6c3d53 Add support for FirmwareUpdaterPreflight message
3525150 Use more elegant way to match file name to component name
5831f78 restore: Fix memory corruption in restore_get_timer_firmware_data
6d3f4cf Add support for iOS 16
f80a876 ipsw: Update to reflect color macro name change in libimobiledevice-glue
ddc0c16 Fix restore for devices that don't have eUICC
51b33f4 Increase recovery mode disconnect and re-connect timeout from 10 to 60 
seconds
0b269e6 configure: Only check for pthread if really required
6a16d60 configure: Make sure the plist_from_json works
9052c7f Print version string upon execution
86c53b4 autoconf: Automatically derive version number from latest git tag
8f7afa0 More code improvements using _plist_dict_copy_* helper
71561a4 Use proper detection for macOS restore path (instead of version number 
comparison)
2eb8865 Fix build identity selection for beta (developer) firmware
190473b restore: Fixed a problem that nobody even knew existed
e833a30 normal: Skip fetching FirmwarePreflightInfo for non-baseband devices
ca44e4d tss: Fix img4 tag for TSS request
03f2bae tss/restore: Improve code readability with plist helpers and removal of 
unneeded comments
7eaa1fa Add support for Timer,* components and TSS found in iPad Air 5th gen 
firmware
e28d96d ipsw: Use libplist's new plist_from_json API
d0a61eb Updated README with pkg-config requirement

Signed-off-by: Potin Lai 
---
 meta-oe/recipes-support/idevicerestore/idevicerestore_git.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-oe/recipes-support/idevicerestore/idevicerestore_git.bb 
b/meta-oe/recipes-support/idevicerestore/idevicerestore_git.bb
index fc07c6e69..d7c76a597 100644
--- a/meta-oe/recipes-support/idevicerestore/idevicerestore_git.bb
+++ b/meta-oe/recipes-support/idevicerestore/idevicerestore_git.bb
@@ -6,11 +6,11 @@ LIC_FILES_CHKSUM = "\
 
 HOMEPAGE = "http://www.libimobiledevice.org/;
 
-DEPENDS = "libirecovery libimobiledevice libzip curl"
+DEPENDS = "libirecovery libimobiledevice libzip curl libimobiledevice-glue 
openssl"
 
 PV = "1.0.1+git${SRCPV}"
 
-SRCREV = "280575bb95977241e240ed081a2602d68746443e"
+SRCREV = "7d622d916be16f2df5a72bf53a42f3a326bbfaa4"
 SRC_URI = 
"git://github.com/libimobiledevice/idevicerestore;protocol=https;branch=master"
 
 S = "${WORKDIR}/git"
-- 
2.31.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98448): 
https://lists.openembedded.org/g/openembedded-devel/message/98448
Mute This Topic: https://lists.openembedded.org/mt/93262482/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 6/7] usbmuxd: add usbmuxd_git.bb

2022-08-25 Thread Potin Lai
Add usbmuxd_git.bb to point to latest commit on github

Signed-off-by: Potin Lai 
---
 .../usbmuxd/usbmuxd_git.bb| 23 +++
 1 file changed, 23 insertions(+)
 create mode 100644 meta-oe/recipes-connectivity/usbmuxd/usbmuxd_git.bb

diff --git a/meta-oe/recipes-connectivity/usbmuxd/usbmuxd_git.bb 
b/meta-oe/recipes-connectivity/usbmuxd/usbmuxd_git.bb
new file mode 100644
index 0..e9afaf571
--- /dev/null
+++ b/meta-oe/recipes-connectivity/usbmuxd/usbmuxd_git.bb
@@ -0,0 +1,23 @@
+DESCRIPTION = "This daemon is in charge of multiplexing connections over USB 
to an iPhone or iPod touch."
+HOMEPAGE = "https://github.com/libimobiledevice/usbmuxd;
+LICENSE = "GPL-3.0-only & GPL-2.0-only & LGPL-2.1-only"
+LIC_FILES_CHKSUM = "file://COPYING.GPLv2;md5=ebb5c50ab7cab4baeffba14977030c07 \
+file://COPYING.GPLv3;md5=d32239bcb673463ab874e80d47fae504"
+
+DEPENDS = "udev libusb1 libplist libimobiledevice-glue"
+
+inherit autotools pkgconfig gitpkgv systemd
+
+PKGV = "${GITPKGVTAG}"
+PV = "1.1.2+git${SRCPV}"
+
+SRCREV = "f50e52f3393a9149ac65fdda8f0d425109efc7fe"
+SRC_URI = 
"git://github.com/libimobiledevice/usbmuxd;protocol=https;branch=master"
+
+S = "${WORKDIR}/git"
+
+EXTRA_OECONF += "--without-preflight"
+
+FILES:${PN} += "${base_libdir}/udev/rules.d/"
+
+SYSTEMD_SERVICE:${PN} = "usbmuxd.service"
-- 
2.31.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98447): 
https://lists.openembedded.org/g/openembedded-devel/message/98447
Mute This Topic: https://lists.openembedded.org/mt/93262480/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 5/7] libusbmuxd: add libusbmuxd_git.bb

2022-08-25 Thread Potin Lai
Add libusbmuxd_git.bb to point to latest commit on github

Signed-off-by: Potin Lai 
---
 .../libimobiledevice/libusbmuxd_git.bb  | 17 +
 1 file changed, 17 insertions(+)
 create mode 100644 meta-oe/recipes-extended/libimobiledevice/libusbmuxd_git.bb

diff --git a/meta-oe/recipes-extended/libimobiledevice/libusbmuxd_git.bb 
b/meta-oe/recipes-extended/libimobiledevice/libusbmuxd_git.bb
new file mode 100644
index 0..91a9b4af2
--- /dev/null
+++ b/meta-oe/recipes-extended/libimobiledevice/libusbmuxd_git.bb
@@ -0,0 +1,17 @@
+DESCRIPTION = "This daemon is in charge of multiplexing connections over USB 
to an iPhone or iPod touch."
+LICENSE = "LGPL-2.1-only"
+LIC_FILES_CHKSUM = "file://COPYING;md5=6ab17b41640564434dda85c06b7124f7"
+
+DEPENDS = "udev libusb1 libplist libimobiledevice-glue"
+
+inherit autotools pkgconfig gitpkgv
+
+PKGV = "${GITPKGVTAG}"
+PV = "2.0.2+git${SRCPV}"
+
+SRCREV = "36ffb7ab6e2a7e33bd1b56398a88895b7b8c615a"
+SRC_URI = 
"git://github.com/libimobiledevice/libusbmuxd;protocol=https;branch=master"
+
+S = "${WORKDIR}/git"
+
+FILES:${PN} += "${base_libdir}/udev/rules.d/"
-- 
2.31.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98446): 
https://lists.openembedded.org/g/openembedded-devel/message/98446
Mute This Topic: https://lists.openembedded.org/mt/93262479/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 4/7] libirecovery: SRCREV bump e190945..ab5b4d8

2022-08-25 Thread Potin Lai
Changelogs:
==
ab5b4d8 Introduce non-persistent setenvnp command
17c02be Updated .gitignore
6e68ca7 Add device ID for macOS 12 Apple Silicon VMs
82d2357 Updated README with pkg-config requirement
c42442a Add Studio Display (device lookup)
ae49507 Use MACH_PORT_NULL to deal with kIOMasterPortDefault/kIOMainPortDefault 
rename

Signed-off-by: Potin Lai 
---
 meta-oe/recipes-connectivity/libirecovery/libirecovery_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-connectivity/libirecovery/libirecovery_git.bb 
b/meta-oe/recipes-connectivity/libirecovery/libirecovery_git.bb
index c36837aca..e3da1819b 100644
--- a/meta-oe/recipes-connectivity/libirecovery/libirecovery_git.bb
+++ b/meta-oe/recipes-connectivity/libirecovery/libirecovery_git.bb
@@ -10,7 +10,7 @@ DEPENDS = "libimobiledevice-glue libusb1"
 
 PV = "1.0.1+git${SRCPV}"
 
-SRCREV = "e19094594552b7bed60418ffe6f46f455e6bb78f"
+SRCREV = "ab5b4d8d4c0e90c05d80f80c7e99a6516de9b5c6"
 SRC_URI = 
"git://github.com/libimobiledevice/libirecovery;protocol=https;branch=master"
 
 S = "${WORKDIR}/git"
-- 
2.31.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98445): 
https://lists.openembedded.org/g/openembedded-devel/message/98445
Mute This Topic: https://lists.openembedded.org/mt/93262478/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 3/7] libimobiledevice: add libimobiledevice_git.bb

2022-08-25 Thread Potin Lai
Add libimobiledevice_git.bb to point to latest commit on github

Signed-off-by: Potin Lai 
---
 .../libimobiledevice/libimobiledevice_git.bb  | 19 +++
 1 file changed, 19 insertions(+)
 create mode 100644 
meta-oe/recipes-connectivity/libimobiledevice/libimobiledevice_git.bb

diff --git 
a/meta-oe/recipes-connectivity/libimobiledevice/libimobiledevice_git.bb 
b/meta-oe/recipes-connectivity/libimobiledevice/libimobiledevice_git.bb
new file mode 100644
index 0..3dfd4e90f
--- /dev/null
+++ b/meta-oe/recipes-connectivity/libimobiledevice/libimobiledevice_git.bb
@@ -0,0 +1,19 @@
+SUMMARY = "A protocol library to access an iPhone or iPod Touch in Linux"
+LICENSE = "GPL-2.0-only & LGPL-2.1-only"
+LIC_FILES_CHKSUM = "\
+file://COPYING;md5=ebb5c50ab7cab4baeffba14977030c07 \
+file://COPYING.LESSER;md5=6ab17b41640564434dda85c06b7124f7 \
+"
+HOMEPAGE = "http://www.libimobiledevice.org/;
+
+DEPENDS = "libplist usbmuxd libusbmuxd libtasn1 gnutls libgcrypt 
libimobiledevice-glue openssl"
+
+PV = "1.3.0+git${SRCPV}"
+
+SRCREV = "2eec1b9a172354c8521123a767d998b17bd2ac18"
+SRC_URI = 
"git://github.com/libimobiledevice/libimobiledevice;protocol=https;branch=master"
+
+S = "${WORKDIR}/git"
+inherit autotools pkgconfig
+
+EXTRA_OECONF = " --without-cython "
-- 
2.31.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98444): 
https://lists.openembedded.org/g/openembedded-devel/message/98444
Mute This Topic: https://lists.openembedded.org/mt/93262476/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 2/7] libimobiledevice-glue: SRCREV bump bc6c44b..d2ff796

2022-08-25 Thread Potin Lai
Changelogs:
==
d2ff796 termcolors: Rename COLOR_* macros to FG_* due to conflict with ncurses
c2e237a [clang-tidy] Do not use else after return/break/continue
1c7619d [clang-tidy] utils: Fix too small loop variable
c6ae88f [clang-tidy] use uppercase numeric literals
00131b5 termcolors: Add missing stdio.h include

Signed-off-by: Potin Lai 
---
 .../libimobiledevice-glue/libimobiledevice-glue_git.bb  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/meta-oe/recipes-connectivity/libimobiledevice-glue/libimobiledevice-glue_git.bb
 
b/meta-oe/recipes-connectivity/libimobiledevice-glue/libimobiledevice-glue_git.bb
index 6d872b9f8..7e9299c9f 100644
--- 
a/meta-oe/recipes-connectivity/libimobiledevice-glue/libimobiledevice-glue_git.bb
+++ 
b/meta-oe/recipes-connectivity/libimobiledevice-glue/libimobiledevice-glue_git.bb
@@ -10,7 +10,7 @@ DEPENDS = "libplist"
 
 PV = "1.0.0+git${SRCPV}"
 
-SRCREV = "bc6c44b92091c9587a9bed0ed3f2c3248bfd13b3"
+SRCREV = "d2ff7969dcd0a12e4f18f63dab03e6cd03054fcb"
 SRC_URI = 
"git://github.com/libimobiledevice/libimobiledevice-glue;protocol=https;branch=master"
 
 S = "${WORKDIR}/git"
-- 
2.31.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98443): 
https://lists.openembedded.org/g/openembedded-devel/message/98443
Mute This Topic: https://lists.openembedded.org/mt/93262474/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 0/7] Update idevicerestore and dependent libraries

2022-08-25 Thread Potin Lai
This patch series update idevicerestore and dependent libraries to point
to latest commit on github to support newer iOS device restore.

Potin Lai (7):
  libplist: add libplist_git.bb
  libimobiledevice-glue: SRCREV bump bc6c44b..d2ff796
  libimobiledevice: add libimobiledevice_git.bb
  libirecovery: SRCREV bump e190945..ab5b4d8
  libusbmuxd: add libusbmuxd_git.bb
  usbmuxd: add usbmuxd_git.bb
  idevicerestore: SRCREV bump 280575b..7d622d9

 .../libimobiledevice-glue_git.bb  |  2 +-
 .../libimobiledevice/libimobiledevice_git.bb  | 19 ++
 .../libirecovery/libirecovery_git.bb  |  2 +-
 .../usbmuxd/usbmuxd_git.bb| 23 
 .../libimobiledevice/libplist_git.bb  | 37 +++
 .../libimobiledevice/libusbmuxd_git.bb| 17 +
 .../idevicerestore/idevicerestore_git.bb  |  4 +-
 7 files changed, 100 insertions(+), 4 deletions(-)
 create mode 100644 
meta-oe/recipes-connectivity/libimobiledevice/libimobiledevice_git.bb
 create mode 100644 meta-oe/recipes-connectivity/usbmuxd/usbmuxd_git.bb
 create mode 100644 meta-oe/recipes-extended/libimobiledevice/libplist_git.bb
 create mode 100644 meta-oe/recipes-extended/libimobiledevice/libusbmuxd_git.bb

-- 
2.31.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98441): 
https://lists.openembedded.org/g/openembedded-devel/message/98441
Mute This Topic: https://lists.openembedded.org/mt/93262472/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 1/7] libplist: add libplist_git.bb

2022-08-25 Thread Potin Lai
Add libplist_git.bb to point to latest commit on github

Signed-off-by: Potin Lai 
---
 .../libimobiledevice/libplist_git.bb  | 37 +++
 1 file changed, 37 insertions(+)
 create mode 100644 meta-oe/recipes-extended/libimobiledevice/libplist_git.bb

diff --git a/meta-oe/recipes-extended/libimobiledevice/libplist_git.bb 
b/meta-oe/recipes-extended/libimobiledevice/libplist_git.bb
new file mode 100644
index 0..82f3e4d0c
--- /dev/null
+++ b/meta-oe/recipes-extended/libimobiledevice/libplist_git.bb
@@ -0,0 +1,37 @@
+SUMMARY = "A library to handle Apple Property List format whereas it's binary 
or XML"
+HOMEPAGE = "https://github.com/libimobiledevice/libplist;
+LICENSE = "GPL-2.0-only & LGPL-2.1-only"
+LIC_FILES_CHKSUM = "file://COPYING;md5=ebb5c50ab7cab4baeffba14977030c07 \
+file://COPYING.LESSER;md5=6ab17b41640564434dda85c06b7124f7"
+
+DEPENDS = "libxml2 glib-2.0 swig python3"
+
+inherit autotools pkgconfig python3native python3targetconfig
+
+PV = "2.2.0+git${SRCPV}"
+
+SRCREV = "db93bae96d64140230ad050061632531644c46ad"
+SRC_URI = 
"git://github.com/libimobiledevice/libplist;protocol=https;branch=master"
+
+S = "${WORKDIR}/git"
+
+CVE_CHECK_IGNORE += "\
+CVE-2017-5834 \
+CVE-2017-5835 \
+CVE-2017-5836 \
+"
+
+do_install:append () {
+if [ -e ${D}${libdir}/python*/site-packages/plist/_plist.so ]; then
+chrpath -d ${D}${libdir}/python*/site-packages/plist/_plist.so
+fi
+}
+
+PACKAGES =+ "${PN}-utils \
+ ${PN}++ \
+ ${PN}-python"
+
+FILES:${PN} = "${libdir}/libplist-2.0${SOLIBS}"
+FILES:${PN}++ = "${libdir}/libplist++-2.0${SOLIBS}"
+FILES:${PN}-utils = "${bindir}/*"
+FILES:${PN}-python = "${libdir}/python*/site-packages/*"
-- 
2.31.1


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

2022-08-25 Thread Yi Zhao
Drop local patch which has been merged upstream.

Signed-off-by: Yi Zhao 
---
 0.7.bb => python3-jsonrpcserver_5.0.8.bb} |  2 +-
 ...b.resources-instead-of-pkg_resources.patch | 44 ---
 .../python/python3-jsonrpcserver_%.bbappend   |  5 ---
 3 files changed, 1 insertion(+), 50 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-jsonrpcserver_5.0.7.bb => 
python3-jsonrpcserver_5.0.8.bb} (84%)
 delete mode 100644 
recipes-devtools/python/python3-jsonrpcserver/0001-Use-importlib.resources-instead-of-pkg_resources.patch
 delete mode 100644 recipes-devtools/python/python3-jsonrpcserver_%.bbappend

diff --git a/meta-python/recipes-devtools/python/python3-jsonrpcserver_5.0.7.bb 
b/meta-python/recipes-devtools/python/python3-jsonrpcserver_5.0.8.bb
similarity index 84%
rename from meta-python/recipes-devtools/python/python3-jsonrpcserver_5.0.7.bb
rename to meta-python/recipes-devtools/python/python3-jsonrpcserver_5.0.8.bb
index 12e900379..6dff9b85b 100644
--- a/meta-python/recipes-devtools/python/python3-jsonrpcserver_5.0.7.bb
+++ b/meta-python/recipes-devtools/python/python3-jsonrpcserver_5.0.8.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/explodinglabs/jsonrpcserver;
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=61b63ea9d36f6fb63ddc8265304f"
 
-SRC_URI[sha256sum] = 
"b15d3fd043ad0c40b2ff17f7df2ddaec2e880bb923b40d133939a107c97fde5c"
+SRC_URI[sha256sum] = 
"5150071e4abc9a93f086aa0fd0004dfe0410de66adfaaf513613baa2c2fc00d7"
 
 inherit pypi setuptools3
 
diff --git 
a/recipes-devtools/python/python3-jsonrpcserver/0001-Use-importlib.resources-instead-of-pkg_resources.patch
 
b/recipes-devtools/python/python3-jsonrpcserver/0001-Use-importlib.resources-instead-of-pkg_resources.patch
deleted file mode 100644
index 2d1a8c97c..0
--- 
a/recipes-devtools/python/python3-jsonrpcserver/0001-Use-importlib.resources-instead-of-pkg_resources.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-From 4220c6a02bc03ff8c6cc4b3bee168a1351a3ce39 Mon Sep 17 00:00:00 2001
-From: Sam Van Den Berge 
-Date: Fri, 29 Jul 2022 15:53:37 +0200
-Subject: [PATCH] Use importlib.resources instead of pkg_resources
-
-From the setuptools website [1]:
-
-Use of pkg_resources is discouraged in favor of importlib.resources,
-importlib.metadata, and their backports (importlib_resources,
-importlib_metadata). Please consider using those libraries instead of
-pkg_resources.
-
-[1]: https://setuptools.pypa.io/en/latest/pkg_resources.html
-
-Signed-off-by: Sam Van Den Berge 

- jsonrpcserver/main.py | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/jsonrpcserver/main.py b/jsonrpcserver/main.py
-index 0397a58..ac1855f 100644
 a/jsonrpcserver/main.py
-+++ b/jsonrpcserver/main.py
-@@ -13,7 +13,7 @@ from typing import Any, Callable, Dict, List, Optional, 
Union, cast
- import json
- 
- from jsonschema.validators import validator_for  # type: ignore
--from pkg_resources import resource_string
-+import importlib.resources
- 
- from .dispatcher import dispatch_to_response_pure, Deserialized
- from .methods import Methods, global_methods
-@@ -26,7 +26,7 @@ default_deserializer = json.loads
- 
- # Prepare the jsonschema validator. This is global so it loads only once, not 
every
- # time dispatch is called.
--schema = json.loads(resource_string(__name__, "request-schema.json"))
-+schema = json.loads(importlib.resources.read_text(__package__, 
"request-schema.json"))
- klass = validator_for(schema)
- klass.check_schema(schema)
- default_validator = klass(schema).validate
--- 
-2.34.1
-
diff --git a/recipes-devtools/python/python3-jsonrpcserver_%.bbappend 
b/recipes-devtools/python/python3-jsonrpcserver_%.bbappend
deleted file mode 100644
index 23cdf070b..0
--- a/recipes-devtools/python/python3-jsonrpcserver_%.bbappend
+++ /dev/null
@@ -1,5 +0,0 @@
-FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
-
-SRC_URI = "\
-file://0001-Use-importlib.resources-instead-of-pkg_resources.patch \
-"
-- 
2.25.1


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



[oe] [meta-networking][PATCH 3/3] samba: fix buildpaths issue

2022-08-25 Thread 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. And also disable
rpath build.

Signed-off-by: Yi Zhao 
---
 ...orture-skip-test-case-tfork_cmd_send.patch | 38 +++
 .../samba/samba_4.14.14.bb|  2 +
 2 files changed, 40 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 0..90ee31786
--- /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 cb3678d7b..8877b8e1a 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 = " \
@@ -114,6 +115,7 @@ EXTRA_OECONF += "--enable-fhs \
  --with-modulesdir=${libdir}/samba \
  --with-lockdir=${localstatedir}/lib/samba \
  --with-cachedir=${localstatedir}/lib/samba \
+ --disable-rpath \
  --disable-rpath-install \
  --with-shared-modules=${SAMBA4_MODULES} \
  --bundled-libraries=${SAMBA4_LIBS} \
-- 
2.25.1


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



[oe] [meta-networking][PATCH 1/3] libldb: upgrade 2.3.3 -> 2.3.4

2022-08-25 Thread Yi Zhao
Required by samba 4.14.14.

Signed-off-by: Yi Zhao 
---
 .../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 6dd3ec3a9..af5f0427d 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 (#98437): 
https://lists.openembedded.org/g/openembedded-devel/message/98437
Mute This Topic: https://lists.openembedded.org/mt/93261517/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[oe] [meta-networking][PATCH 2/3] samba: upgrade 4.14.13 -> 4.14.14

2022-08-25 Thread 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 
---
 .../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 49e93fc53..cb3678d7b 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 (#98438): 
https://lists.openembedded.org/g/openembedded-devel/message/98438
Mute This Topic: https://lists.openembedded.org/mt/93261518/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] lmdb: only set SONAME on the shared library

2022-08-25 Thread Justin Bronder
Setting soname in LDFLAGS means that the extra mdb tools also
incorrectly get soname set.  This then triggers package.bbclass to add a
duplicate shlib_provider in /usr/bin for liblmdb.so.0.9.29.  Then any
other recipe depending on liblmdb is going to get a 'Multiple shlib
provider' error.

shlibs2/lmdb.list before:
liblmdb.so.0.9.29:/usr/bin:0.9.29
liblmdb.so.0.9.29:/usr/lib:0.9.29

shlibs2/lmdb.list after:
liblmdb.so.0.9.29:/usr/lib:0.9.29

Signed-off-by: Justin Bronder 
---
 .../0001-make-set-soname-on-liblmdb.patch | 22 +++
 meta-oe/recipes-dbs/lmdb/lmdb_0.9.29.bb   |  3 +--
 2 files changed, 23 insertions(+), 2 deletions(-)
 create mode 100644 
meta-oe/recipes-dbs/lmdb/files/0001-make-set-soname-on-liblmdb.patch

diff --git 
a/meta-oe/recipes-dbs/lmdb/files/0001-make-set-soname-on-liblmdb.patch 
b/meta-oe/recipes-dbs/lmdb/files/0001-make-set-soname-on-liblmdb.patch
new file mode 100644
index 00..312809d1d2
--- /dev/null
+++ b/meta-oe/recipes-dbs/lmdb/files/0001-make-set-soname-on-liblmdb.patch
@@ -0,0 +1,22 @@
+From b4d418bf3f78748d84e3cfb110833443eef34284 Mon Sep 17 00:00:00 2001
+From: Justin Bronder 
+Date: Thu, 25 Aug 2022 17:22:20 -0400
+Subject: [PATCH] make: set soname on liblmdb
+
+---
+ libraries/liblmdb/Makefile | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/libraries/liblmdb/Makefile b/libraries/liblmdb/Makefile
+index 1ec74e6..ea08cd6 100644
+--- a/libraries/liblmdb/Makefile
 b/libraries/liblmdb/Makefile
+@@ -66,7 +66,7 @@ liblmdb.a:   mdb.o midl.o
+ 
+ liblmdb$(SOEXT):  mdb.lo midl.lo
+ # $(CC) $(LDFLAGS) -pthread -shared -Wl,-Bsymbolic -o $@ mdb.o midl.o 
$(SOLIBS)
+-  $(CC) $(LDFLAGS) -pthread -shared -o $@ mdb.lo midl.lo $(SOLIBS)
++  $(CC) $(LDFLAGS) -pthread -shared -Wl,-soname,$@ -o $@ mdb.lo midl.lo 
$(SOLIBS)
+ 
+ mdb_stat: mdb_stat.o liblmdb.a
+ mdb_copy: mdb_copy.o liblmdb.a
diff --git a/meta-oe/recipes-dbs/lmdb/lmdb_0.9.29.bb 
b/meta-oe/recipes-dbs/lmdb/lmdb_0.9.29.bb
index 0590ce008c..a76d388d70 100644
--- a/meta-oe/recipes-dbs/lmdb/lmdb_0.9.29.bb
+++ b/meta-oe/recipes-dbs/lmdb/lmdb_0.9.29.bb
@@ -11,6 +11,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=153d07ef052c4a37a8fac23bc6031972"
 SRC_URI = "git://github.com/LMDB/lmdb.git;nobranch=1;protocol=https \
file://run-ptest \
file://0001-Makefile-use-libprefix-instead-of-libdir.patch \
+   file://0001-make-set-soname-on-liblmdb.patch;patchdir=../.. \
"
 
 SRCREV = "8ad7be2510414b9506ec9f9e24f24d04d9b04a1a"
@@ -19,8 +20,6 @@ inherit ptest
 
 S = "${WORKDIR}/git/libraries/liblmdb"
 
-LDFLAGS += "-Wl,-soname,lib${PN}.so.${PV}"
-
 do_compile() {
 oe_runmake CC="${CC}" SOEXT=".so.${PV}" LDFLAGS="${LDFLAGS}"
 }
-- 
2.37.1


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



[oe] [meta-python][PATCH v2] python3-twitter: Upgrade 4.8.0 -> 4.10.1

2022-08-25 Thread Atanas Bunchev
Upgrading python3-twitter to 4.10.1 and adding
missing RDEPEND requests-oauthlib

The license line in PKG-INFO was moved from row 8 to row 9.

Changelog:  (https://github.com/tweepy/tweepy/releases)

New Features / Improvements:
 - Add support for Direct Message typing indicator
   and read receipts
   - Add API.indicate_direct_message_typing and
 API.mark_direct_message_read
 - Fallback to "detail" response value for HTTPException message
 - Handle "error" key of response being a string in HTTPException
 - Add asynchronous interfaces for Twitter API v2
   - Add asynchronous.AsyncClient
 - Add async_lru as requirement for async extra
   - Add asynchronous.AsyncStreamingClient
 - Add support for reverse chronological home timeline
   with Twitter API v2
   - Add Client.get_home_timeline and AsyncClient.get_home_timeline
 - Update the User-Agent header based on AsyncStream.user_agent
   even if AsyncStream.session is already initialized/set

Bug Fixes
 - Fix AsyncBaseClient rate limit handling
 - Fix handling of StreamRule when passed in list to
   StreamingClient.delete_rules or AsyncStreamingClient.delete_rules
 - Add support for media_fields, place_fields, and poll_fields
   parameters for Client.get_list_tweets and
   AsyncClient.get_list_tweets
 - Ignore AsyncClient method parameters explicitly passed as None

Twitter API Deprecations:
 - Deprecate Stream.sample and note deprecation of compliance
   messages for Stream.filter
 - Deprecate AsyncStream.sample and note deprecation of compliance
   messages for AsyncStream.filter

Misc:
 - Use setup.cfg for coverage.py configuration
   - Explicitly specify coverage >= 4.4.2 requirement for dev extra
 - Use setup.cfg for tox configuration
   - Update lower bound for dev extra tox requirement to >= 3.21.0
 - Remove tests_require from setup.py
 - Stop creating universal wheels
 - Update and improve various documentation and tests
 - Log text of HTTP response when handling request error in BaseStream
 - Update Requests documentation URL for Intersphinx linking
 - Correct typo in documentation for StreamingClient and
   AsyncStreamingClient add_rules and delete_rules methods

Signed-off-by: Atanas Bunchev 
---
 .../{python3-twitter_4.8.0.bb => python3-twitter_4.10.1.bb}  | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-twitter_4.8.0.bb => 
python3-twitter_4.10.1.bb} (62%)

diff --git a/meta-python/recipes-devtools/python/python3-twitter_4.8.0.bb 
b/meta-python/recipes-devtools/python/python3-twitter_4.10.1.bb
similarity index 62%
rename from meta-python/recipes-devtools/python/python3-twitter_4.8.0.bb
rename to meta-python/recipes-devtools/python/python3-twitter_4.10.1.bb
index 247b4e584..b283aef56 100644
--- a/meta-python/recipes-devtools/python/python3-twitter_4.8.0.bb
+++ b/meta-python/recipes-devtools/python/python3-twitter_4.10.1.bb
@@ -2,9 +2,9 @@ SUMMARY = "Twitter for Python"
 DESCRIPTION = "Python module to support twitter API"
 
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = 
"file://PKG-INFO;beginline=8;endline=8;md5=8227180126797a0148f94f483f3e1489"
+LIC_FILES_CHKSUM = 
"file://PKG-INFO;beginline=9;endline=9;md5=8227180126797a0148f94f483f3e1489"
 
-SRC_URI[sha256sum] = 
"8ba5774ac1663b09e5fce1b030daf076f2c9b3ddbf2e7e7ea0bae762e3b1fe3e"
+SRC_URI[sha256sum] = 
"310193775d7fc381abd6f37021a9af27f7e9edfcce5ec51bd73ea5f30c21fa61"
 
 PYPI_PACKAGE = "tweepy"
 
@@ -14,5 +14,6 @@ RDEPENDS:${PN} += "\
 ${PYTHON_PN}-pip \
 ${PYTHON_PN}-pysocks \
 ${PYTHON_PN}-requests \
+${PYTHON_PN}-requests-oauthlib \
 ${PYTHON_PN}-six \
 "
-- 
2.35.1


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



Re: [oe] [meta-python][PATCH] python3-twitter: Upgrade 4.8.0 -> 4.10.1

2022-08-25 Thread Khem Raj
On Thu, Aug 25, 2022 at 3:41 AM Atanas Bunchev  wrote:
>
> Upgrading python3-twitter to 4.10.1 and adding
> missing dependency ${PYTHON_PN}-requests-oauthlib
>
> Changelog:  (https://github.com/tweepy/tweepy/releases)
>
> New Features / Improvements:
>  - Add support for Direct Message typing indicator
>and read receipts
>- Add API.indicate_direct_message_typing and
>  API.mark_direct_message_read
>  - Fallback to "detail" response value for HTTPException message
>  - Handle "error" key of response being a string in HTTPException
>  - Add asynchronous interfaces for Twitter API v2
>- Add asynchronous.AsyncClient
>  - Add async_lru as requirement for async extra
>- Add asynchronous.AsyncStreamingClient
>  - Add support for reverse chronological home timeline
>with Twitter API v2
>- Add Client.get_home_timeline and AsyncClient.get_home_timeline
>  - Update the User-Agent header based on AsyncStream.user_agent
>even if AsyncStream.session is already initialized/set
>
> Bug Fixes
>  - Fix AsyncBaseClient rate limit handling
>  - Fix handling of StreamRule when passed in list to
>StreamingClient.delete_rules or AsyncStreamingClient.delete_rules
>  - Add support for media_fields, place_fields, and poll_fields
>parameters for Client.get_list_tweets and
>AsyncClient.get_list_tweets
>  - Ignore AsyncClient method parameters explicitly passed as None
>
> Twitter API Deprecations:
>  - Deprecate Stream.sample and note deprecation of compliance
>messages for Stream.filter
>  - Deprecate AsyncStream.sample and note deprecation of compliance
>messages for AsyncStream.filter
>
> Misc:
>  - Use setup.cfg for coverage.py configuration
>- Explicitly specify coverage >= 4.4.2 requirement for dev extra
>  - Use setup.cfg for tox configuration
>- Update lower bound for dev extra tox requirement to >= 3.21.0
>  - Remove tests_require from setup.py
>  - Stop creating universal wheels
>  - Update and improve various documentation and tests
>  - Log text of HTTP response when handling request error in BaseStream
>  - Update Requests documentation URL for Intersphinx linking
>  - Correct typo in documentation for StreamingClient and
>AsyncStreamingClient add_rules and delete_rules methods
>
> Signed-off-by: Atanas Bunchev 
> ---
>  .../{python3-twitter_4.8.0.bb => python3-twitter_4.10.1.bb}  | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
>  rename meta-python/recipes-devtools/python/{python3-twitter_4.8.0.bb => 
> python3-twitter_4.10.1.bb} (62%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-twitter_4.8.0.bb 
> b/meta-python/recipes-devtools/python/python3-twitter_4.10.1.bb
> similarity index 62%
> rename from meta-python/recipes-devtools/python/python3-twitter_4.8.0.bb
> rename to meta-python/recipes-devtools/python/python3-twitter_4.10.1.bb
> index 247b4e584..b283aef56 100644
> --- a/meta-python/recipes-devtools/python/python3-twitter_4.8.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-twitter_4.10.1.bb
> @@ -2,9 +2,9 @@ SUMMARY = "Twitter for Python"
>  DESCRIPTION = "Python module to support twitter API"
>
>  LICENSE = "MIT"
> -LIC_FILES_CHKSUM = 
> "file://PKG-INFO;beginline=8;endline=8;md5=8227180126797a0148f94f483f3e1489"
> +LIC_FILES_CHKSUM = 
> "file://PKG-INFO;beginline=9;endline=9;md5=8227180126797a0148f94f483f3e1489"
>

What changed in the license text ?

> -SRC_URI[sha256sum] = 
> "8ba5774ac1663b09e5fce1b030daf076f2c9b3ddbf2e7e7ea0bae762e3b1fe3e"
> +SRC_URI[sha256sum] = 
> "310193775d7fc381abd6f37021a9af27f7e9edfcce5ec51bd73ea5f30c21fa61"
>
>  PYPI_PACKAGE = "tweepy"
>
> @@ -14,5 +14,6 @@ RDEPENDS:${PN} += "\
>  ${PYTHON_PN}-pip \
>  ${PYTHON_PN}-pysocks \
>  ${PYTHON_PN}-requests \
> +${PYTHON_PN}-requests-oauthlib \
>  ${PYTHON_PN}-six \
>  "
> --
> 2.35.1
>
>
> 
>

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

2022-08-25 Thread Jan Luebbe
Version 2.5.2 contains an include sys/unistd.h, which is not available
with musl, so fix the include path.

Signed-off-by: Jan Luebbe 
---
 ...01-tools-gensiot-Fix-build-with-musl.patch | 29 +++
 .../{gensio_2.3.1.bb => gensio_2.5.2.bb}  |  6 ++--
 2 files changed, 33 insertions(+), 2 deletions(-)
 create mode 100644 
meta-oe/recipes-connectivity/gensio/files/0001-tools-gensiot-Fix-build-with-musl.patch
 rename meta-oe/recipes-connectivity/gensio/{gensio_2.3.1.bb => 
gensio_2.5.2.bb} (85%)

diff --git 
a/meta-oe/recipes-connectivity/gensio/files/0001-tools-gensiot-Fix-build-with-musl.patch
 
b/meta-oe/recipes-connectivity/gensio/files/0001-tools-gensiot-Fix-build-with-musl.patch
new file mode 100644
index ..93831c380f72
--- /dev/null
+++ 
b/meta-oe/recipes-connectivity/gensio/files/0001-tools-gensiot-Fix-build-with-musl.patch
@@ -0,0 +1,29 @@
+From 823b6754a4d7655480b6e8576a9d0037f842d653 Mon Sep 17 00:00:00 2001
+From: Jan Luebbe 
+Date: Thu, 25 Aug 2022 12:19:16 +0200
+Subject: [PATCH] tools:gensiot: Fix build with musl
+
+According to POSIX getpid() is available in unistd.h, not sys/unistd.h.
+
+Upstream-Status: Submitted [https://github.com/cminyard/gensio/pull/47]
+Signed-off-by: Jan Luebbe 
+---
+ tools/gensiotool.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/tools/gensiotool.c b/tools/gensiotool.c
+index cac531bb4b74..ab0bb9583f9f 100644
+--- a/tools/gensiotool.c
 b/tools/gensiotool.c
+@@ -44,7 +44,7 @@
+ #include 
+ #include 
+ #include 
+-#include 
++#include 
+ #include 
+ #endif
+ 
+-- 
+2.30.2
+
diff --git a/meta-oe/recipes-connectivity/gensio/gensio_2.3.1.bb 
b/meta-oe/recipes-connectivity/gensio/gensio_2.5.2.bb
similarity index 85%
rename from meta-oe/recipes-connectivity/gensio/gensio_2.3.1.bb
rename to meta-oe/recipes-connectivity/gensio/gensio_2.5.2.bb
index a6e0075538c3..9de21209caf5 100644
--- a/meta-oe/recipes-connectivity/gensio/gensio_2.3.1.bb
+++ b/meta-oe/recipes-connectivity/gensio/gensio_2.5.2.bb
@@ -5,9 +5,11 @@ LIC_FILES_CHKSUM = 
"file://COPYING.LIB;md5=a0fd36908af843bcee10cb6dfc47fa67 \
 file://COPYING;md5=bae3019b4c6dc4138c217864bd04331f \
 "
 
-SRCREV = "c500d8705c517f96e591c060105a789f053d2b7a"
+SRCREV = "b6cd354afe6d5f63bc859c94fd3a455a3cdf0449"
 
-SRC_URI = "git://github.com/cminyard/gensio;protocol=https;branch=master"
+SRC_URI = "git://github.com/cminyard/gensio;protocol=https;branch=master \
+   file://0001-tools-gensiot-Fix-build-with-musl.patch \
+"
 
 S = "${WORKDIR}/git"
 
-- 
2.30.2


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98433): 
https://lists.openembedded.org/g/openembedded-devel/message/98433
Mute This Topic: https://lists.openembedded.org/mt/93249119/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 3/3] protobuf: correct ptest dependency

2022-08-25 Thread Vyacheslav Yurkov
From: Vyacheslav Yurkov 

Signed-off-by: Vyacheslav Yurkov 
---
 meta-oe/recipes-devtools/protobuf/protobuf_3.21.5.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-devtools/protobuf/protobuf_3.21.5.bb 
b/meta-oe/recipes-devtools/protobuf/protobuf_3.21.5.bb
index 6af02de0e..572a461bc 100644
--- a/meta-oe/recipes-devtools/protobuf/protobuf_3.21.5.bb
+++ b/meta-oe/recipes-devtools/protobuf/protobuf_3.21.5.bb
@@ -93,7 +93,7 @@ FILES:${PN}-lite = "${libdir}/libprotobuf-lite${SOLIBS}"
 
 RDEPENDS:${PN}-compiler = "${PN}"
 RDEPENDS:${PN}-dev += "${PN}-compiler"
-RDEPENDS:${PN}-ptest = "bash ${@bb.utils.contains('PACKAGECONFIG', 'python', 
'python-protobuf', '', d)}"
+RDEPENDS:${PN}-ptest = "bash ${@bb.utils.contains('PACKAGECONFIG', 'python', 
'python3-protobuf', '', d)}"
 
 MIPS_INSTRUCTION_SET = "mips"
 
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98432): 
https://lists.openembedded.org/g/openembedded-devel/message/98432
Mute This Topic: https://lists.openembedded.org/mt/93246135/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 2/3] protobuf: change build system to cmake

2022-08-25 Thread Vyacheslav Yurkov
From: Vyacheslav Yurkov 

Autotools support has been removed and replaced completely by CMake.

See related issues for details:
https://github.com/protocolbuffers/protobuf/issues/7911
https://github.com/protocolbuffers/protobuf/pull/10132

Drop autotools patches too.

Signed-off-by: Vyacheslav Yurkov 
---
 ...ude-descriptor.cc-when-building-libp.patch | 30 --
 .../0001-protobuf-fix-configure-error.patch   | 31 ---
 .../protobuf/protobuf_3.21.5.bb   | 25 ++-
 3 files changed, 18 insertions(+), 68 deletions(-)
 delete mode 100644 
meta-oe/recipes-devtools/protobuf/protobuf/0001-Makefile.am-include-descriptor.cc-when-building-libp.patch
 delete mode 100644 
meta-oe/recipes-devtools/protobuf/protobuf/0001-protobuf-fix-configure-error.patch

diff --git 
a/meta-oe/recipes-devtools/protobuf/protobuf/0001-Makefile.am-include-descriptor.cc-when-building-libp.patch
 
b/meta-oe/recipes-devtools/protobuf/protobuf/0001-Makefile.am-include-descriptor.cc-when-building-libp.patch
deleted file mode 100644
index 59d43072c..0
--- 
a/meta-oe/recipes-devtools/protobuf/protobuf/0001-Makefile.am-include-descriptor.cc-when-building-libp.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 76980e1c84374e8bfa4dffcca78c5050783e83b9 Mon Sep 17 00:00:00 2001
-From: Martin Jansa 
-Date: Thu, 27 Jun 2019 13:27:18 +
-Subject: [PATCH] Makefile.am: include descriptor.pb.cc when building
- libprotoc.so
-
-* otherwise plugin.pb.o has undefined symbol 
scc_info_FileDescriptorProto_google_2fprotobuf_2fdescriptor_2eproto
-  and build with gold fails with:
-  
core2-32-oe-linux/protobuf/3.8.0-r0/recipe-sysroot-native/usr/bin/i686-oe-linux/../../libexec/i686-oe-linux/gcc/i686-oe-linux/9.1.0/ld.bfd:
 ./.libs/libprotoc.so: undefined reference to 
`descriptor_table_google_2fprotobuf_2fdescriptor_2eproto'
-  
core2-32-oe-linux/protobuf/3.8.0-r0/recipe-sysroot-native/usr/bin/i686-oe-linux/../../libexec/i686-oe-linux/gcc/i686-oe-linux/9.1.0/ld.bfd:
 ./.libs/libprotoc.so: undefined reference to 
`scc_info_FileDescriptorProto_google_2fprotobuf_2fdescriptor_2eproto'
-
-Upstream-Status: Pending
-Signed-off-by: Martin Jansa 
-

- src/Makefile.am | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/src/Makefile.am b/src/Makefile.am
-index e6a7dc7fd..6b0fe6686 100644
 a/src/Makefile.am
-+++ b/src/Makefile.am
-@@ -326,6 +326,7 @@ libprotoc_la_LDFLAGS += 
-Wl,--version-script=$(srcdir)/libprotoc.map
- EXTRA_libprotoc_la_DEPENDENCIES = libprotoc.map
- endif
- libprotoc_la_SOURCES = \
-+  google/protobuf/descriptor.pb.cc \
-   google/protobuf/compiler/code_generator.cc   \
-   google/protobuf/compiler/command_line_interface.cc   \
-   google/protobuf/compiler/cpp/enum.cc \
diff --git 
a/meta-oe/recipes-devtools/protobuf/protobuf/0001-protobuf-fix-configure-error.patch
 
b/meta-oe/recipes-devtools/protobuf/protobuf/0001-protobuf-fix-configure-error.patch
deleted file mode 100644
index 7c87dbe26..0
--- 
a/meta-oe/recipes-devtools/protobuf/protobuf/0001-protobuf-fix-configure-error.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 2649fe191ad3f086274a9bf1520212a4c715c944 Mon Sep 17 00:00:00 2001
-From: Changqing Li 
-Date: Wed, 18 Jul 2018 17:52:34 +0800
-Subject: [PATCH] protobuf: fix configure error
-
-fix below error:
-gnu-configize: 'configure.ac' or 'configure.in' is required
-
-third_party/googletest is git submodule of protobuf. Above error
-caused by missing submodule googletest.
-
-Upstream-Status: Inappropriate [oe-specific]
-
-Signed-off-by: Changqing Li 
-

- configure.ac | 1 -
- 1 file changed, 1 deletion(-)
-
-diff --git a/configure.ac b/configure.ac
-index 375a79d93..1d73cd73f 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -241,7 +241,6 @@ AC_SUBST([LIBLOG_LIBS])
- #   too.
- export CFLAGS
- export CXXFLAGS
--AC_CONFIG_SUBDIRS([third_party/googletest])
- 
- AC_CONFIG_FILES([Makefile src/Makefile benchmarks/Makefile 
conformance/Makefile protobuf.pc protobuf-lite.pc])
- AC_OUTPUT
diff --git a/meta-oe/recipes-devtools/protobuf/protobuf_3.21.5.bb 
b/meta-oe/recipes-devtools/protobuf/protobuf_3.21.5.bb
index a8828ec40..6af02de0e 100644
--- a/meta-oe/recipes-devtools/protobuf/protobuf_3.21.5.bb
+++ b/meta-oe/recipes-devtools/protobuf/protobuf_3.21.5.bb
@@ -14,8 +14,6 @@ SRCREV = "ab840345966d0fa8e7100d771c92a73bfbadd25c"
 
 SRC_URI = 
"git://github.com/protocolbuffers/protobuf.git;branch=21.x;protocol=https \
file://run-ptest \
-   file://0001-protobuf-fix-configure-error.patch \
-   
file://0001-Makefile.am-include-descriptor.cc-when-building-libp.patch \

file://0001-examples-Makefile-respect-CXX-LDFLAGS-variables-fix-.patch \
file://0001-Fix-linking-error-with-ld-gold.patch \
"
@@ -24,12 +22,19 @@ SRC_URI:append:mipsel:toolchain-clang = " 
file://0001-Fix-build-on-mips-clang.pa
 
 S = 

[oe] [meta-oe][PATCH 1/3] protobuf: 3.19.4 -> 3.21.5 upgrade

2022-08-25 Thread Vyacheslav Yurkov
From: Vyacheslav Yurkov 

Drop the patch that was accepted upstream

Signed-off-by: Vyacheslav Yurkov 
---
 .../0001-Fix-linking-error-with-ld-gold.patch |  6 +-
 ...r-init-prio-for-extension-attributes.patch | 79 ---
 ...ude-descriptor.cc-when-building-libp.patch |  8 +-
 ...e-respect-CXX-LDFLAGS-variables-fix-.patch | 10 +--
 .../0001-protobuf-fix-configure-error.patch   | 10 +--
 ...{protobuf_3.19.4.bb => protobuf_3.21.5.bb} |  5 +-
 6 files changed, 16 insertions(+), 102 deletions(-)
 delete mode 100644 
meta-oe/recipes-devtools/protobuf/protobuf/0001-Lower-init-prio-for-extension-attributes.patch
 rename meta-oe/recipes-devtools/protobuf/{protobuf_3.19.4.bb => 
protobuf_3.21.5.bb} (95%)

diff --git 
a/meta-oe/recipes-devtools/protobuf/protobuf/0001-Fix-linking-error-with-ld-gold.patch
 
b/meta-oe/recipes-devtools/protobuf/protobuf/0001-Fix-linking-error-with-ld-gold.patch
index 488c1f6ff..2bcb13873 100644
--- 
a/meta-oe/recipes-devtools/protobuf/protobuf/0001-Fix-linking-error-with-ld-gold.patch
+++ 
b/meta-oe/recipes-devtools/protobuf/protobuf/0001-Fix-linking-error-with-ld-gold.patch
@@ -1,4 +1,4 @@
-From ddb9c5147883f8b27b4205450139e4a115d9961f Mon Sep 17 00:00:00 2001
+From a91130bb95528743a3f7253f8fe945b7505047d5 Mon Sep 17 00:00:00 2001
 From: Kyungjik Min 
 Date: Mon, 28 Dec 2020 15:56:09 +0900
 Subject: [PATCH] Fix linking error with ld-gold
@@ -19,6 +19,7 @@ N/A
 :Issues Addressed:
 [PLAT-130467] Fix build error for libgoogleassistant with latest
   protobuf-3.11.4
+
 ---
  src/libprotobuf-lite.map | 2 ++
  src/libprotobuf.map  | 2 ++
@@ -64,6 +65,3 @@ index 391554669..a1853ca6c 100644
  
local:
  *;
--- 
-2.17.1
-
diff --git 
a/meta-oe/recipes-devtools/protobuf/protobuf/0001-Lower-init-prio-for-extension-attributes.patch
 
b/meta-oe/recipes-devtools/protobuf/protobuf/0001-Lower-init-prio-for-extension-attributes.patch
deleted file mode 100644
index a1200e01c..0
--- 
a/meta-oe/recipes-devtools/protobuf/protobuf/0001-Lower-init-prio-for-extension-attributes.patch
+++ /dev/null
@@ -1,79 +0,0 @@
-From 8ff34dbff1eac612326b492d0b2cb93901ad7e2b Mon Sep 17 00:00:00 2001
-From: Jani Nurminen 
-Date: Fri, 24 Sep 2021 09:56:11 +0200
-Subject: [PATCH] Lower init prio for extension attributes
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Added PROTOBUF_EXTENSION_ATTRIBUTE_INIT_PRIORITY in
-code generation for extension attributes.
-It has lower prio than PROTOBUF_ATTRIBUTE_INIT_PRIORITY to
-ensure that extension attributes are initialized after
-other attribute.
-This is needed in some applications to avoid segmentation fault.
-
-Reported by Karl-Herman Näslund.
-
-Signed-off-by: Jani Nurminen 
-
-Rebase on master
-
-Signed-off-by: He Zhe 

- src/google/protobuf/compiler/cpp/cpp_extension.cc |  2 +-
- src/google/protobuf/port_def.inc  | 12 
- src/google/protobuf/port_undef.inc|  1 +
- 3 files changed, 14 insertions(+), 1 deletion(-)
-
-diff --git a/src/google/protobuf/compiler/cpp/cpp_extension.cc 
b/src/google/protobuf/compiler/cpp/cpp_extension.cc
-index 8604da5f2..984345ebe 100644
 a/src/google/protobuf/compiler/cpp/cpp_extension.cc
-+++ b/src/google/protobuf/compiler/cpp/cpp_extension.cc
-@@ -164,7 +164,7 @@ void ExtensionGenerator::GenerateDefinition(io::Printer* 
printer) {
-   }
- 
-   format(
--  "PROTOBUF_ATTRIBUTE_INIT_PRIORITY "
-+  "PROTOBUF_EXTENSION_ATTRIBUTE_INIT_PRIORITY "
-   "::$proto_ns$::internal::ExtensionIdentifier< $extendee$,\n"
-   "::$proto_ns$::internal::$type_traits$, $field_type$, $packed$ >\n"
-   "  $scoped_name$($constant_name$, $1$);\n",
-diff --git a/src/google/protobuf/port_def.inc 
b/src/google/protobuf/port_def.inc
-index 7e9119112..a5117090d 100644
 a/src/google/protobuf/port_def.inc
-+++ b/src/google/protobuf/port_def.inc
-@@ -614,6 +614,18 @@
- #define PROTOBUF_ATTRIBUTE_INIT_PRIORITY
- #endif
- 
-+// Some embedded systems get a segmentation fault if extension attributes are
-+// initialized with higher or equal priority as other attributes. This gives
-+// extension attributes high priority, but lower than other attributes.
-+#ifdef PROTOBUF_EXTENSION_ATTRIBUTE_INIT_PRIORITY
-+#error PROTOBUF_EXTENSION_ATTRIBUTE_INIT_PRIORITY was previously defined
-+#endif
-+#if PROTOBUF_GNUC_MIN(3, 0) && (!defined(__APPLE__) || defined(__clang__)) && 
!((defined(sun) || defined(__sun)) && (defined(__SVR4) || defined(__svr4__)))
-+#define PROTOBUF_EXTENSION_ATTRIBUTE_INIT_PRIORITY 
__attribute__((init_priority((103
-+#else
-+#define PROTOBUF_EXTENSION_ATTRIBUTE_INIT_PRIORITY
-+#endif
-+
- #ifdef PROTOBUF_PRAGMA_INIT_SEG
- #error PROTOBUF_PRAGMA_INIT_SEG was previously defined
- #endif
-diff --git a/src/google/protobuf/port_undef.inc 
b/src/google/protobuf/port_undef.inc
-index ccc5daf56..2b28f3a31 100644
 a/src/google/protobuf/port_undef.inc
-+++ b/src/google/protobuf/port_undef.inc
-@@ -83,6 

[oe] [meta-python][PATCH] python3-twitter: Upgrade 4.8.0 -> 4.10.1

2022-08-25 Thread Atanas Bunchev
Upgrading python3-twitter to 4.10.1 and adding
missing dependency ${PYTHON_PN}-requests-oauthlib

Changelog:  (https://github.com/tweepy/tweepy/releases)

New Features / Improvements:
 - Add support for Direct Message typing indicator
   and read receipts
   - Add API.indicate_direct_message_typing and
 API.mark_direct_message_read
 - Fallback to "detail" response value for HTTPException message
 - Handle "error" key of response being a string in HTTPException
 - Add asynchronous interfaces for Twitter API v2
   - Add asynchronous.AsyncClient
 - Add async_lru as requirement for async extra
   - Add asynchronous.AsyncStreamingClient
 - Add support for reverse chronological home timeline
   with Twitter API v2
   - Add Client.get_home_timeline and AsyncClient.get_home_timeline
 - Update the User-Agent header based on AsyncStream.user_agent
   even if AsyncStream.session is already initialized/set

Bug Fixes
 - Fix AsyncBaseClient rate limit handling
 - Fix handling of StreamRule when passed in list to
   StreamingClient.delete_rules or AsyncStreamingClient.delete_rules
 - Add support for media_fields, place_fields, and poll_fields
   parameters for Client.get_list_tweets and
   AsyncClient.get_list_tweets
 - Ignore AsyncClient method parameters explicitly passed as None

Twitter API Deprecations:
 - Deprecate Stream.sample and note deprecation of compliance
   messages for Stream.filter
 - Deprecate AsyncStream.sample and note deprecation of compliance
   messages for AsyncStream.filter

Misc:
 - Use setup.cfg for coverage.py configuration
   - Explicitly specify coverage >= 4.4.2 requirement for dev extra
 - Use setup.cfg for tox configuration
   - Update lower bound for dev extra tox requirement to >= 3.21.0
 - Remove tests_require from setup.py
 - Stop creating universal wheels
 - Update and improve various documentation and tests
 - Log text of HTTP response when handling request error in BaseStream
 - Update Requests documentation URL for Intersphinx linking
 - Correct typo in documentation for StreamingClient and
   AsyncStreamingClient add_rules and delete_rules methods

Signed-off-by: Atanas Bunchev 
---
 .../{python3-twitter_4.8.0.bb => python3-twitter_4.10.1.bb}  | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-twitter_4.8.0.bb => 
python3-twitter_4.10.1.bb} (62%)

diff --git a/meta-python/recipes-devtools/python/python3-twitter_4.8.0.bb 
b/meta-python/recipes-devtools/python/python3-twitter_4.10.1.bb
similarity index 62%
rename from meta-python/recipes-devtools/python/python3-twitter_4.8.0.bb
rename to meta-python/recipes-devtools/python/python3-twitter_4.10.1.bb
index 247b4e584..b283aef56 100644
--- a/meta-python/recipes-devtools/python/python3-twitter_4.8.0.bb
+++ b/meta-python/recipes-devtools/python/python3-twitter_4.10.1.bb
@@ -2,9 +2,9 @@ SUMMARY = "Twitter for Python"
 DESCRIPTION = "Python module to support twitter API"
 
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = 
"file://PKG-INFO;beginline=8;endline=8;md5=8227180126797a0148f94f483f3e1489"
+LIC_FILES_CHKSUM = 
"file://PKG-INFO;beginline=9;endline=9;md5=8227180126797a0148f94f483f3e1489"
 
-SRC_URI[sha256sum] = 
"8ba5774ac1663b09e5fce1b030daf076f2c9b3ddbf2e7e7ea0bae762e3b1fe3e"
+SRC_URI[sha256sum] = 
"310193775d7fc381abd6f37021a9af27f7e9edfcce5ec51bd73ea5f30c21fa61"
 
 PYPI_PACKAGE = "tweepy"
 
@@ -14,5 +14,6 @@ RDEPENDS:${PN} += "\
 ${PYTHON_PN}-pip \
 ${PYTHON_PN}-pysocks \
 ${PYTHON_PN}-requests \
+${PYTHON_PN}-requests-oauthlib \
 ${PYTHON_PN}-six \
 "
-- 
2.35.1


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