summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-grpcio_1.41.1.bb
diff options
context:
space:
mode:
authorXu Huan <xuhuan.fnst@fujitsu.com>2021-12-21 11:22:31 +0800
committerKhem Raj <raj.khem@gmail.com>2021-12-21 18:47:47 -0800
commit490bd9ec5ec4a40d66bec5c0db0f33ad8f60b8f9 (patch)
tree67d068ff031d9b4dd939d7f9ff55b853bcd6dd3b /meta-python/recipes-devtools/python/python3-grpcio_1.41.1.bb
parent615051c75c1156bc2b527c9ef304918b6567d68a (diff)
downloadmeta-openembedded-490bd9ec5ec4a40d66bec5c0db0f33ad8f60b8f9.tar.gz
python3-grpcio: upgrade 1.41.1 -> 1.43.0
License-Update:Add BSD-3-Clause License changlog: ================================================================ Core: This release contains refinements, improvements, and bug fixes, with highlights listed below. Remove redundant work serializer usage in c-ares windows code. (#28016) Support RDS updates on the server. (#27851) Use WorkSerializer in XdsClient to propagate updates in a synchronized manner. (#27975) Support Custom Post-handshake Verification in TlsCredentials. (#25631) Reintroduce the EventEngine default factory. (#27920) Assert Android API >= v21. (#27943) Add support for abstract unix domain sockets. (#27906) Python: [Aio] Validate the input type for set_trailing_metadata and abort. (#27958) Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-grpcio_1.41.1.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-grpcio_1.41.1.bb48
1 files changed, 0 insertions, 48 deletions
diff --git a/meta-python/recipes-devtools/python/python3-grpcio_1.41.1.bb b/meta-python/recipes-devtools/python/python3-grpcio_1.41.1.bb
deleted file mode 100644
index a882f6e031..0000000000
--- a/meta-python/recipes-devtools/python/python3-grpcio_1.41.1.bb
+++ /dev/null
@@ -1,48 +0,0 @@
1DESCRIPTION = "Google gRPC"
2HOMEPAGE = "http://www.grpc.io/"
3SECTION = "devel/python"
4LICENSE = "Apache-2.0"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
6
7DEPENDS += "${PYTHON_PN}-protobuf"
8
9SRC_URI += "file://0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch"
10SRC_URI:append:class-target = " file://ppc-boringssl-support.patch \
11 file://boring_ssl.patch \
12 file://mips_bigendian.patch \
13 file://0001-absl-always-use-asm-sgidefs.h.patch \
14"
15SRC_URI[sha256sum] = "9b751271b029432a526a4970dc9b70d93eb6f0963b6a841b574f780b72651969"
16
17RDEPENDS:${PN} = "${PYTHON_PN}-protobuf \
18 ${PYTHON_PN}-setuptools \
19 ${PYTHON_PN}-six \
20"
21
22inherit setuptools3
23inherit pypi
24
25export GRPC_PYTHON_DISABLE_LIBC_COMPATIBILITY = "1"
26
27BORING_SSL_PLATFORM:arm = "linux-arm"
28BORING_SSL_PLATFORM:x86-64 = "linux-x86_64"
29BORING_SSL_PLATFORM ?= "unsupported"
30export GRPC_BORING_SSL_PLATFORM = "${BORING_SSL_PLATFORM}"
31
32BORING_SSL:x86-64 = "1"
33BORING_SSL:arm = "1"
34BORING_SSL ?= "0"
35export GRPC_BUILD_WITH_BORING_SSL_ASM = "${BORING_SSL}"
36
37GRPC_CFLAGS ?= ""
38GRPC_CFLAGS:append:toolchain-clang = " -fvisibility=hidden -fno-wrapv -fno-exceptions"
39export GRPC_PYTHON_CFLAGS = "${GRPC_CFLAGS}"
40
41CLEANBROKEN = "1"
42
43BBCLASSEXTEND = "native nativesdk"
44
45CCACHE_DISABLE = "1"
46
47# needs vdso support
48COMPATIBLE_HOST:libc-musl:powerpc64le = "null"