diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2023-12-15 08:52:35 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-12-18 22:17:21 -0800 |
commit | d595b18e4691967fb5b699e9272f916d769a28d7 (patch) | |
tree | b3f3d2fafb6f8cfb6e8166129dc4161c7c6e95a5 /meta-python/recipes-devtools/python/python3-grpcio/ppc-boringssl-support.patch | |
parent | a293a7128af89a7cace861333b13387bccbf5de2 (diff) | |
download | meta-openembedded-d595b18e4691967fb5b699e9272f916d769a28d7.tar.gz |
python3-grpcio: update 1.56.2 -> 1.59.3
This is needed for python 3.12 compatibility.
Drop 0001-direct_mmap-Use-off_t-on-linux.patch as
issue resolved upstream.
Other dropped patches are all due to the code being significantly refactored upstream;
if the issues persist, please write updated patches.
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-grpcio/ppc-boringssl-support.patch')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-grpcio/ppc-boringssl-support.patch | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/meta-python/recipes-devtools/python/python3-grpcio/ppc-boringssl-support.patch b/meta-python/recipes-devtools/python/python3-grpcio/ppc-boringssl-support.patch deleted file mode 100644 index 5dacc689f..000000000 --- a/meta-python/recipes-devtools/python/python3-grpcio/ppc-boringssl-support.patch +++ /dev/null | |||
@@ -1,17 +0,0 @@ | |||
1 | Let boringSSL compile on ppc32 bit | ||
2 | |||
3 | Upstream-Status: Pending | ||
4 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
5 | |||
6 | --- a/third_party/boringssl-with-bazel/src/include/openssl/base.h | ||
7 | +++ b/third_party/boringssl-with-bazel/src/include/openssl/base.h | ||
8 | @@ -96,6 +96,9 @@ extern "C" { | ||
9 | #elif defined(__ARMEL__) || defined(_M_ARM) | ||
10 | #define OPENSSL_32_BIT | ||
11 | #define OPENSSL_ARM | ||
12 | +#elif (defined(__PPC__) || defined(__powerpc__)) | ||
13 | +#define OPENSSL_32_BIT | ||
14 | +#define OPENSSL_PPC | ||
15 | #elif defined(__MIPSEL__) && !defined(__LP64__) | ||
16 | #define OPENSSL_32_BIT | ||
17 | #define OPENSSL_MIPS | ||