summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-grpcio_1.56.2.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-grpcio_1.56.2.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-grpcio_1.56.2.bb52
1 files changed, 0 insertions, 52 deletions
diff --git a/meta-python/recipes-devtools/python/python3-grpcio_1.56.2.bb b/meta-python/recipes-devtools/python/python3-grpcio_1.56.2.bb
deleted file mode 100644
index c34391dd67..0000000000
--- a/meta-python/recipes-devtools/python/python3-grpcio_1.56.2.bb
+++ /dev/null
@@ -1,52 +0,0 @@
1DESCRIPTION = "Google gRPC"
2HOMEPAGE = "http://www.grpc.io/"
3SECTION = "devel/python"
4LICENSE = "Apache-2.0 & BSD-3-Clause"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=731e401b36f8077ae0c134b59be5c906"
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://mips_bigendian.patch \
12 file://0001-Include-missing-cstdint-header.patch \
13 file://abseil-ppc-fixes.patch;patchdir=third_party/abseil-cpp \
14 file://0001-direct_mmap-Use-off_t-on-linux.patch;patchdir=third_party/abseil-cpp \
15 file://0001-zlib-Include-unistd.h-for-open-close-C-APIs.patch \
16"
17SRC_URI[sha256sum] = "0ff789ae7d8ddd76d2ac02e7d13bfef6fc4928ac01e1dcaa182be51b6bcc0aaa"
18
19RDEPENDS:${PN} = "${PYTHON_PN}-protobuf \
20 ${PYTHON_PN}-setuptools \
21 ${PYTHON_PN}-six \
22"
23
24inherit setuptools3
25inherit pypi
26
27CFLAGS:append:libc-musl = " -D_LARGEFILE64_SOURCE"
28
29export GRPC_PYTHON_DISABLE_LIBC_COMPATIBILITY = "1"
30
31BORING_SSL_PLATFORM:arm = "linux-arm"
32BORING_SSL_PLATFORM:x86-64 = "linux-x86_64"
33BORING_SSL_PLATFORM:aarch64 = "linux-aarch64"
34BORING_SSL_PLATFORM ?= "unsupported"
35export GRPC_BORING_SSL_PLATFORM = "${BORING_SSL_PLATFORM}"
36export GRPC_BUILD_OVERRIDE_BORING_SSL_ASM_PLATFORM = "${BORING_SSL_PLATFORM}"
37
38BORING_SSL:arm = "1"
39BORING_SSL:x86-64 = "1"
40BORING_SSL:aarch64 = "1"
41BORING_SSL ?= "0"
42export GRPC_BUILD_WITH_BORING_SSL_ASM = "${BORING_SSL}"
43
44GRPC_CFLAGS ?= ""
45GRPC_CFLAGS:append:toolchain-clang = " -fvisibility=hidden -fno-wrapv -fno-exceptions"
46export GRPC_PYTHON_CFLAGS = "${GRPC_CFLAGS}"
47
48CLEANBROKEN = "1"
49
50BBCLASSEXTEND = "native nativesdk"
51
52CCACHE_DISABLE = "1"