summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-grpcio_1.35.0.bb
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2021-03-03 12:26:36 -0800
committerKhem Raj <raj.khem@gmail.com>2021-03-08 07:29:18 -0800
commit204beecb958d0f8cfec29afaac5e2afbbf91df0d (patch)
tree51836c94664301553fd09d11d05dccf51c450812 /meta-python/recipes-devtools/python/python3-grpcio_1.35.0.bb
parentac673c3bd9f7ea0356d20d10f63f7b755798582e (diff)
downloadmeta-openembedded-204beecb958d0f8cfec29afaac5e2afbbf91df0d.tar.gz
python3-grpcio: Upgrade to 1.36.1
Release notes are here [1] See the differences after 1.35.0 upwards [1] https://github.com/grpc/grpc/releases Signed-off-by: Khem Raj <raj.khem@gmail.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-grpcio_1.35.0.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-grpcio_1.35.0.bb43
1 files changed, 0 insertions, 43 deletions
diff --git a/meta-python/recipes-devtools/python/python3-grpcio_1.35.0.bb b/meta-python/recipes-devtools/python/python3-grpcio_1.35.0.bb
deleted file mode 100644
index 2c137f6ce7..0000000000
--- a/meta-python/recipes-devtools/python/python3-grpcio_1.35.0.bb
+++ /dev/null
@@ -1,43 +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://riscv64_support.patch \
12 file://boring_ssl.patch \
13"
14SRC_URI[sha256sum] = "7bd0ebbb14dde78bf66a1162efd29d3393e4e943952e2f339757aa48a184645c"
15
16RDEPENDS_${PN} = "${PYTHON_PN}-protobuf \
17 ${PYTHON_PN}-setuptools \
18 ${PYTHON_PN}-six \
19"
20
21inherit setuptools3
22inherit pypi
23
24export GRPC_PYTHON_DISABLE_LIBC_COMPATIBILITY = "1"
25
26BORING_SSL_PLATFORM_arm = "linux-arm"
27BORING_SSL_PLATFORM_x86-64 = "linux-x86_64"
28BORING_SSL_PLATFORM ?= "unsupported"
29export GRPC_BORING_SSL_PLATFORM = "${BORING_SSL_PLATFORM}"
30
31BORING_SSL_x86-64 = "1"
32BORING_SSL_arm = "1"
33BORING_SSL ?= "0"
34export GRPC_BUILD_WITH_BORING_SSL_ASM = "${BORING_SSL}"
35
36GRPC_CFLAGS_append_toolchain-clang = " -fvisibility=hidden -fno-wrapv -fno-exceptions"
37export GRPC_PYTHON_CFLAGS = "${GRPC_CFLAGS}"
38
39CLEANBROKEN = "1"
40
41BBCLASSEXTEND = "native nativesdk"
42
43CCACHE_DISABLE = "1"