summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-grpcio_1.78.0.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-grpcio_1.78.0.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-grpcio_1.78.0.bb52
1 files changed, 52 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-grpcio_1.78.0.bb b/meta-python/recipes-devtools/python/python3-grpcio_1.78.0.bb
new file mode 100644
index 0000000000..6ac6a72d25
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-grpcio_1.78.0.bb
@@ -0,0 +1,52 @@
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] = "7382b95189546f375c174f53a5fa873cef91c4b8005faa05cc5b3beea9c4f1c5"
17
18RDEPENDS:${PN} = "python3-protobuf python3-typing-extensions"
19
20inherit python_setuptools_build_meta cython
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_configure:append() {
33 # Relax strict cython version pin so that the available cython satisfies the requirement.
34 # The C files are pre-generated so cython is not actually used during compilation.
35 sed -i 's/\"cython==/\"cython>=/' ${S}/pyproject.toml
36}
37
38do_compile:prepend() {
39 export GRPC_PYTHON_BUILD_EXT_COMPILER_JOBS="${@oe.utils.parallel_make(d, False)}"
40}
41
42GRPC_CFLAGS ?= ""
43GRPC_CFLAGS:append:toolchain-clang = " -fvisibility=hidden -fno-wrapv -fno-exceptions"
44export GRPC_PYTHON_CFLAGS = "${GRPC_CFLAGS}"
45
46CLEANBROKEN = "1"
47
48BBCLASSEXTEND = "native nativesdk"
49
50CCACHE_DISABLE = "1"
51
52CVE_PRODUCT += "grpc:grpc"