summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-grpcio_1.72.0.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-grpcio_1.72.0.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-grpcio_1.72.0.bb46
1 files changed, 46 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-grpcio_1.72.0.bb b/meta-python/recipes-devtools/python/python3-grpcio_1.72.0.bb
new file mode 100644
index 0000000000..19983c9e33
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-grpcio_1.72.0.bb
@@ -0,0 +1,46 @@
1DESCRIPTION = "Google gRPC"
2HOMEPAGE = "https://www.grpc.io/"
3SECTION = "devel/python"
4LICENSE = "Apache-2.0 & BSD-3-Clause & MPL-2.0 & MIT & BSD-2-Clause"
5LIC_FILES_CHKSUM = " \
6 file://LICENSE;md5=731e401b36f8077ae0c134b59be5c906 \
7 file://third_party/utf8_range/utf8_validity.h;beginline=1;endline=5;md5=db08ddb5817e660489678e7c3653805a \
8 file://third_party/xxhash/xxhash.h;beginline=1;endline=34;md5=d41d564db2353fc80a713956d85b1690 \
9"
10
11DEPENDS += "c-ares openssl python3-protobuf re2 zlib"
12
13SRC_URI += "file://0001-python-enable-unbundled-cross-compilation.patch \
14 file://abseil-ppc-fixes.patch \
15 "
16SRC_URI[sha256sum] = "05aee9be958a580e169e1aa8987387bcd8be6ed7fc5c2a3a048b6a2b911473cd"
17
18RDEPENDS:${PN} = "python3-protobuf"
19
20inherit setuptools3
21inherit pypi
22
23CFLAGS:append:libc-musl = " -D_LARGEFILE64_SOURCE"
24
25# unbundling abseil-cpp needs work on dynamic linker issue
26#export GRPC_PYTHON_BUILD_SYSTEM_ABSL = "1"
27export GRPC_PYTHON_BUILD_SYSTEM_CARES = "1"
28export GRPC_PYTHON_BUILD_SYSTEM_OPENSSL = "1"
29export GRPC_PYTHON_BUILD_SYSTEM_RE2 = "1"
30export GRPC_PYTHON_BUILD_SYSTEM_ZLIB = "1"
31
32do_compile:prepend() {
33 export GRPC_PYTHON_BUILD_EXT_COMPILER_JOBS="${@oe.utils.parallel_make(d, False)}"
34}
35
36GRPC_CFLAGS ?= ""
37GRPC_CFLAGS:append:toolchain-clang = " -fvisibility=hidden -fno-wrapv -fno-exceptions"
38export GRPC_PYTHON_CFLAGS = "${GRPC_CFLAGS}"
39
40CLEANBROKEN = "1"
41
42BBCLASSEXTEND = "native nativesdk"
43
44CCACHE_DISABLE = "1"
45
46CVE_PRODUCT += "grpc:grpc"