summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-grpcio_1.60.0.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-grpcio_1.60.0.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-grpcio_1.60.0.bb48
1 files changed, 0 insertions, 48 deletions
diff --git a/meta-python/recipes-devtools/python/python3-grpcio_1.60.0.bb b/meta-python/recipes-devtools/python/python3-grpcio_1.60.0.bb
deleted file mode 100644
index 77b4198e31..0000000000
--- a/meta-python/recipes-devtools/python/python3-grpcio_1.60.0.bb
+++ /dev/null
@@ -1,48 +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-Include-missing-cstdint-header.patch \
10 file://abseil-ppc-fixes.patch \
11 file://0001-zlib-Include-unistd.h-for-open-close-C-APIs.patch \
12 "
13SRC_URI[sha256sum] = "2199165a1affb666aa24adf0c97436686d0a61bc5fc113c037701fb7c7fceb96"
14
15RDEPENDS:${PN} = "${PYTHON_PN}-protobuf \
16 ${PYTHON_PN}-setuptools \
17 ${PYTHON_PN}-six \
18"
19
20inherit setuptools3
21inherit pypi
22
23CFLAGS:append:libc-musl = " -D_LARGEFILE64_SOURCE"
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:aarch64 = "linux-aarch64"
30BORING_SSL_PLATFORM ?= "unsupported"
31export GRPC_BORING_SSL_PLATFORM = "${BORING_SSL_PLATFORM}"
32export GRPC_BUILD_OVERRIDE_BORING_SSL_ASM_PLATFORM = "${BORING_SSL_PLATFORM}"
33
34BORING_SSL:arm = "1"
35BORING_SSL:x86-64 = "1"
36BORING_SSL:aarch64 = "1"
37BORING_SSL ?= "0"
38export GRPC_BUILD_WITH_BORING_SSL_ASM = "${BORING_SSL}"
39
40GRPC_CFLAGS ?= ""
41GRPC_CFLAGS:append:toolchain-clang = " -fvisibility=hidden -fno-wrapv -fno-exceptions"
42export GRPC_PYTHON_CFLAGS = "${GRPC_CFLAGS}"
43
44CLEANBROKEN = "1"
45
46BBCLASSEXTEND = "native nativesdk"
47
48CCACHE_DISABLE = "1"