All of lore.kernel.org
 help / color / mirror / Atom feed
* [oe] [meta-python] [PATCH] python3-grpcio-tools: upgrade 1.46.3 -> 1.47.0
@ 2022-07-07  8:01 XU Huan
  2022-07-07  8:01 ` [oe] [meta-python] [PATCH] python3-grpcio: upgrade 1.45.0 " XU Huan
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: XU Huan @ 2022-07-07  8:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Xu Huan

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

0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch
refreshed for new version.

Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
---
 ...tup.py-Do-not-mix-C-and-C-compiler-options.patch | 13 +++++++++----
 ...ols_1.46.3.bb => python3-grpcio-tools_1.47.0.bb} |  2 +-
 2 files changed, 10 insertions(+), 5 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-grpcio-tools_1.46.3.bb => python3-grpcio-tools_1.47.0.bb} (82%)

diff --git a/meta-python/recipes-devtools/python/python3-grpcio-tools/0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch b/meta-python/recipes-devtools/python/python3-grpcio-tools/0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch
index 4713da174..4aa11bd57 100644
--- a/meta-python/recipes-devtools/python/python3-grpcio-tools/0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch
+++ b/meta-python/recipes-devtools/python/python3-grpcio-tools/0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch
@@ -26,6 +26,8 @@ Signed-off-by: Khem Raj <raj.khem@gmail.com>
  setup.py | 9 ++++++---
  1 file changed, 6 insertions(+), 3 deletions(-)
 
+diff --git a/setup.py b/setup.py
+index cc53e79..be3bc78 100644
 --- a/setup.py
 +++ b/setup.py
 @@ -87,8 +87,11 @@ def check_linker_need_libatomic():
@@ -33,12 +35,12 @@ Signed-off-by: Khem Raj <raj.khem@gmail.com>
      code_test = (b'#include <atomic>\n' +
                   b'int main() { return std::atomic<int64_t>{}; }')
 -    cxx = os.environ.get('CXX', 'c++')
--    cpp_test = subprocess.Popen([cxx, '-x', 'c++', '-std=c++11', '-'],
+-    cpp_test = subprocess.Popen([cxx, '-x', 'c++', '-std=c++14', '-'],
 +    cxx, cxx_args = os.environ.get('CXX').split(' ', 1) or 'c++'
 +    if not cxx_args:
 +      cxx_args = "-g"
 +
-+    cpp_test = subprocess.Popen([cxx, cxx_args, '-x', 'c++', '-std=c++11', '-'],
++    cpp_test = subprocess.Popen([cxx, cxx_args, '-x', 'c++', '-std=c++14', '-'],
                                  stdin=PIPE,
                                  stdout=PIPE,
                                  stderr=PIPE)
@@ -46,8 +48,11 @@ Signed-off-by: Khem Raj <raj.khem@gmail.com>
      # Double-check to see if -latomic actually can solve the problem.
      # https://github.com/grpc/grpc/issues/22491
      cpp_test = subprocess.Popen(
--        [cxx, '-x', 'c++', '-std=c++11', '-', '-latomic'],
-+        [cxx, cxx_args, '-x', 'c++', '-std=c++11', '-', '-latomic'],
+-        [cxx, '-x', 'c++', '-std=c++14', '-', '-latomic'],
++        [cxx, cxx_args, '-x', 'c++', '-std=c++14', '-', '-latomic'],
          stdin=PIPE,
          stdout=PIPE,
          stderr=PIPE)
+-- 
+2.25.1
+
diff --git a/meta-python/recipes-devtools/python/python3-grpcio-tools_1.46.3.bb b/meta-python/recipes-devtools/python/python3-grpcio-tools_1.47.0.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-grpcio-tools_1.46.3.bb
rename to meta-python/recipes-devtools/python/python3-grpcio-tools_1.47.0.bb
index 221a05ef1..90c8efeec 100644
--- a/meta-python/recipes-devtools/python/python3-grpcio-tools_1.46.3.bb
+++ b/meta-python/recipes-devtools/python/python3-grpcio-tools_1.47.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] = "31fee436ace5b3bd950cc3a8e68d6b84de1d6dc755959db7badc3470cdf22f70"
+SRC_URI[sha256sum] = "f64b5378484be1d6ce59311f86174be29c8ff98d8d90f589e1c56d5acae67d3c"
 
 RDEPENDS:${PN} = "${PYTHON_PN}-grpcio"
 
-- 
2.25.1



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

* [oe] [meta-python] [PATCH] python3-grpcio: upgrade 1.45.0 -> 1.47.0
  2022-07-07  8:01 [oe] [meta-python] [PATCH] python3-grpcio-tools: upgrade 1.46.3 -> 1.47.0 XU Huan
@ 2022-07-07  8:01 ` XU Huan
  2022-07-07  8:01 ` [oe] [meta-python] [PATCH] python3-lxml: upgrade 4.9.0 -> 4.9.1 XU Huan
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: XU Huan @ 2022-07-07  8:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Xu Huan

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

0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch
refreshed for new version.

Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
---
 ...-Do-not-mix-C-and-C-compiler-options.patch | 25 ++++++++++++-------
 ...cio_1.45.0.bb => python3-grpcio_1.47.0.bb} |  2 +-
 2 files changed, 17 insertions(+), 10 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-grpcio_1.45.0.bb => python3-grpcio_1.47.0.bb} (94%)

diff --git a/meta-python/recipes-devtools/python/python3-grpcio/0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch b/meta-python/recipes-devtools/python/python3-grpcio/0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch
index febe6c4c8..f416ca272 100644
--- a/meta-python/recipes-devtools/python/python3-grpcio/0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch
+++ b/meta-python/recipes-devtools/python/python3-grpcio/0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch
@@ -28,42 +28,49 @@ Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
  src/python/grpcio/commands.py | 5 ++++-
  2 files changed, 10 insertions(+), 4 deletions(-)
 
+diff --git a/setup.py b/setup.py
+index ec27fe4..b2d2d1a 100644
 --- a/setup.py
 +++ b/setup.py
-@@ -199,8 +199,11 @@ def check_linker_need_libatomic():
+@@ -206,8 +206,11 @@ def check_linker_need_libatomic():
      """Test if linker on system needs libatomic."""
      code_test = (b'#include <atomic>\n' +
                   b'int main() { return std::atomic<int64_t>{}; }')
--    cxx = os.environ.get('CXX', 'c++')
--    cpp_test = subprocess.Popen([cxx, '-x', 'c++', '-std=c++11', '-'],
+-    cxx = shlex.split(os.environ.get('CXX', 'c++'))
+-    cpp_test = subprocess.Popen(cxx + ['-x', 'c++', '-std=c++14', '-'],
 +    cxx, cxx_args = os.environ.get('CXX').split(' ', 1) or 'c++'
 +    if not cxx_args:
 +      cxx_args = "-g"
 +
-+    cpp_test = subprocess.Popen([cxx, cxx_args, '-x', 'c++', '-std=c++11', '-'],
++    cpp_test = subprocess.Popen([cxx, cxx_args, '-x', 'c++', '-std=c++14', '-'],
                                  stdin=PIPE,
                                  stdout=PIPE,
                                  stderr=PIPE)
-@@ -210,7 +213,7 @@ def check_linker_need_libatomic():
+@@ -217,7 +220,7 @@ def check_linker_need_libatomic():
      # Double-check to see if -latomic actually can solve the problem.
      # https://github.com/grpc/grpc/issues/22491
      cpp_test = subprocess.Popen(
--        [cxx, '-x', 'c++', '-std=c++11', '-', '-latomic'],
-+        [cxx, cxx_args, '-x', 'c++', '-std=c++11', '-', '-latomic'],
+-        [cxx, '-x', 'c++', '-std=c++14', '-', '-latomic'],
++        [cxx, cxx_args, '-x', 'c++', '-std=c++14', '-', '-latomic'],
          stdin=PIPE,
          stdout=PIPE,
          stderr=PIPE)
+diff --git a/src/python/grpcio/commands.py b/src/python/grpcio/commands.py
+index d93b6c7..a8c4a51 100644
 --- a/src/python/grpcio/commands.py
 +++ b/src/python/grpcio/commands.py
 @@ -228,7 +228,10 @@ class BuildExt(build_ext.build_ext):
              """
              try:
                  # TODO(lidiz) Remove the generated a.out for success tests.
--                cc_test = subprocess.Popen(['cc', '-x', 'c', '-std=c++11', '-'],
+-                cc_test = subprocess.Popen(['cc', '-x', 'c', '-std=c++14', '-'],
 +                cc_test, cc_args = os.environ.get('CC').split(' ', 1) or 'gcc'
 +                if not cc_args:
 +                    cc_args = "-g"
-+                cc_test = subprocess.Popen([cc_test, cc_args, '-x', 'c', '-std=c++11', '-'],
++                cc_test = subprocess.Popen([cc_test, cc_args, '-x', 'c', '-std=c++14', '-'],
                                             stdin=subprocess.PIPE,
                                             stdout=subprocess.PIPE,
                                             stderr=subprocess.PIPE)
+-- 
+2.25.1
+
diff --git a/meta-python/recipes-devtools/python/python3-grpcio_1.45.0.bb b/meta-python/recipes-devtools/python/python3-grpcio_1.47.0.bb
similarity index 94%
rename from meta-python/recipes-devtools/python/python3-grpcio_1.45.0.bb
rename to meta-python/recipes-devtools/python/python3-grpcio_1.47.0.bb
index ca55a7f09..24c6e5344 100644
--- a/meta-python/recipes-devtools/python/python3-grpcio_1.45.0.bb
+++ b/meta-python/recipes-devtools/python/python3-grpcio_1.47.0.bb
@@ -13,7 +13,7 @@ SRC_URI:append:class-target = " file://ppc-boringssl-support.patch \
                                 file://0001-absl-always-use-asm-sgidefs.h.patch \
                                 file://abseil-ppc-fixes.patch;patchdir=third_party/abseil-cpp \
 "
-SRC_URI[sha256sum] = "ff2c8b965b0fc25cf281961aa46619c10900543effe3f806ef818231c40aaff3"
+SRC_URI[sha256sum] = "5dbba95fab9b35957b4977b8904fc1fa56b302f9051eff4d7716ebb0c087f801"
 
 RDEPENDS:${PN} = "${PYTHON_PN}-protobuf \
                   ${PYTHON_PN}-setuptools \
-- 
2.25.1



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

* [oe] [meta-python] [PATCH] python3-lxml: upgrade 4.9.0 -> 4.9.1
  2022-07-07  8:01 [oe] [meta-python] [PATCH] python3-grpcio-tools: upgrade 1.46.3 -> 1.47.0 XU Huan
  2022-07-07  8:01 ` [oe] [meta-python] [PATCH] python3-grpcio: upgrade 1.45.0 " XU Huan
@ 2022-07-07  8:01 ` XU Huan
  2022-07-07  8:01 ` [oe] [meta-python] [PATCH] python3-autobahn: upgrade 22.5.1 -> 22.6.1 XU Huan
  2022-07-07  8:01 ` [oe] [meta-python] [PATCH] python3-awesomeversion: upgrade 22.5.2 -> 22.6.0 XU Huan
  3 siblings, 0 replies; 5+ messages in thread
From: XU Huan @ 2022-07-07  8:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Xu Huan

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

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

diff --git a/meta-python/recipes-devtools/python/python3-lxml_4.9.0.bb b/meta-python/recipes-devtools/python/python3-lxml_4.9.1.bb
similarity index 95%
rename from meta-python/recipes-devtools/python/python3-lxml_4.9.0.bb
rename to meta-python/recipes-devtools/python/python3-lxml_4.9.1.bb
index 74c5e480a..92a30f790 100644
--- a/meta-python/recipes-devtools/python/python3-lxml_4.9.0.bb
+++ b/meta-python/recipes-devtools/python/python3-lxml_4.9.1.bb
@@ -18,7 +18,7 @@ LIC_FILES_CHKSUM = "file://LICENSES.txt;md5=e4c045ebad958ead4b48008f70838403 \
 
 DEPENDS += "libxml2 libxslt"
 
-SRC_URI[sha256sum] = "520461c36727268a989790aef08884347cd41f2d8ae855489ccf40b50321d8d7"
+SRC_URI[sha256sum] = "fe749b052bb7233fe5d072fcb549221a8cb1a16725c47c37e42b0b9cb3ff2c3f"
 
 SRC_URI += "${PYPI_SRC_URI}"
 inherit pkgconfig pypi setuptools3
-- 
2.25.1



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

* [oe] [meta-python] [PATCH] python3-autobahn: upgrade 22.5.1 -> 22.6.1
  2022-07-07  8:01 [oe] [meta-python] [PATCH] python3-grpcio-tools: upgrade 1.46.3 -> 1.47.0 XU Huan
  2022-07-07  8:01 ` [oe] [meta-python] [PATCH] python3-grpcio: upgrade 1.45.0 " XU Huan
  2022-07-07  8:01 ` [oe] [meta-python] [PATCH] python3-lxml: upgrade 4.9.0 -> 4.9.1 XU Huan
@ 2022-07-07  8:01 ` XU Huan
  2022-07-07  8:01 ` [oe] [meta-python] [PATCH] python3-awesomeversion: upgrade 22.5.2 -> 22.6.0 XU Huan
  3 siblings, 0 replies; 5+ messages in thread
From: XU Huan @ 2022-07-07  8:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Xu Huan

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

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

diff --git a/meta-python/recipes-devtools/python/python3-autobahn_22.5.1.bb b/meta-python/recipes-devtools/python/python3-autobahn_22.6.1.bb
similarity index 86%
rename from meta-python/recipes-devtools/python/python3-autobahn_22.5.1.bb
rename to meta-python/recipes-devtools/python/python3-autobahn_22.6.1.bb
index 956399b56..71da18f81 100644
--- a/meta-python/recipes-devtools/python/python3-autobahn_22.5.1.bb
+++ b/meta-python/recipes-devtools/python/python3-autobahn_22.6.1.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "http://crossbar.io/autobahn"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=97c0bda20ad1d845c6369c0e47a1cd98"
 
-SRC_URI[sha256sum] = "34aa5569b0b4419f8c277792c600dc2518c4930928c74e2279ef8b88d8b8a3ea"
+SRC_URI[sha256sum] = "fb63e946d5c2dd0df680851e84e65624a494ce87c999f2a4944e4f2d81bf4498"
 
 inherit pypi setuptools3
 
-- 
2.25.1



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

* [oe] [meta-python] [PATCH] python3-awesomeversion: upgrade 22.5.2 -> 22.6.0
  2022-07-07  8:01 [oe] [meta-python] [PATCH] python3-grpcio-tools: upgrade 1.46.3 -> 1.47.0 XU Huan
                   ` (2 preceding siblings ...)
  2022-07-07  8:01 ` [oe] [meta-python] [PATCH] python3-autobahn: upgrade 22.5.1 -> 22.6.1 XU Huan
@ 2022-07-07  8:01 ` XU Huan
  3 siblings, 0 replies; 5+ messages in thread
From: XU Huan @ 2022-07-07  8:01 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Xu Huan

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

Changelog:
===========
Handle ValueError for possible blank values when casting to int
Remove deprecated method AwesomeVersion.ensure_strategy

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

diff --git a/meta-python/recipes-devtools/python/python3-awesomeversion_22.5.2.bb b/meta-python/recipes-devtools/python/python3-awesomeversion_22.6.0.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-awesomeversion_22.5.2.bb
rename to meta-python/recipes-devtools/python/python3-awesomeversion_22.6.0.bb
index c43f9ee54..cadb6f502 100644
--- a/meta-python/recipes-devtools/python/python3-awesomeversion_22.5.2.bb
+++ b/meta-python/recipes-devtools/python/python3-awesomeversion_22.6.0.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENCE.md;md5=92622b5a8e216099be741d78328bae5d"
 
-SRC_URI[sha256sum] = "051f89efd8ba0b157fb516bda5e1dad4d63f87e8f9c0c148930023d984fce62f"
+SRC_URI[sha256sum] = "38f580bfacf1c06b674bcd0f68e0c445ebb03fcd3700c6a2c588fb9313308e0f"
 
 RDEPENDS:${PN} += "python3-profile python3-logging"
 
-- 
2.25.1



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

end of thread, other threads:[~2022-07-07  8:01 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-07  8:01 [oe] [meta-python] [PATCH] python3-grpcio-tools: upgrade 1.46.3 -> 1.47.0 XU Huan
2022-07-07  8:01 ` [oe] [meta-python] [PATCH] python3-grpcio: upgrade 1.45.0 " XU Huan
2022-07-07  8:01 ` [oe] [meta-python] [PATCH] python3-lxml: upgrade 4.9.0 -> 4.9.1 XU Huan
2022-07-07  8:01 ` [oe] [meta-python] [PATCH] python3-autobahn: upgrade 22.5.1 -> 22.6.1 XU Huan
2022-07-07  8:01 ` [oe] [meta-python] [PATCH] python3-awesomeversion: upgrade 22.5.2 -> 22.6.0 XU Huan

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