summaryrefslogtreecommitdiff
path: root/dev-python/grpcio/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-01-29 18:03:51 +0000
committerV3n3RiX <venerix@redcorelinux.org>2021-01-29 18:03:51 +0000
commitd7ed2b01311f15ba54fe8ea872aab7d59ab2b193 (patch)
tree1814dd2b5bbf2e7639fdafbeef48d228cfaf5e9b /dev-python/grpcio/files
parentabaa75b10f899ada8dd05b23cc03205064394bc6 (diff)
gentoo resync : 29.01.2021
Diffstat (limited to 'dev-python/grpcio/files')
-rw-r--r--dev-python/grpcio/files/setup.py-respect-cc.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/dev-python/grpcio/files/setup.py-respect-cc.patch b/dev-python/grpcio/files/setup.py-respect-cc.patch
deleted file mode 100644
index 545346e8152e..000000000000
--- a/dev-python/grpcio/files/setup.py-respect-cc.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 0a6c58fc0161e697bbf64b4f3d4ef14b03ac186b Mon Sep 17 00:00:00 2001
-From: Georgy Yakovlev <gyakovlev@gentoo.org>
-Date: Sun, 7 Jun 2020 23:35:31 -0700
-Subject: [PATCH] setup.py: respect CC variable in latomic test
-
-some configurations do not provide generic cc binary.
-while rest of the build calls CHOST prefixed binaries,
-this check fails. fix it.
-
-Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
----
- setup.py | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/setup.py b/setup.py
-index 2379703eb7..0f92270607 100644
---- a/setup.py
-+++ b/setup.py
-@@ -144,9 +144,10 @@ ENABLE_DOCUMENTATION_BUILD = os.environ.get(
-
- def check_linker_need_libatomic():
- """Test if linker on system needs libatomic."""
-+ cc = os.environ.get('CC', 'cc')
- code_test = (b'#include <atomic>\n' +
- b'int main() { return std::atomic<int64_t>{}; }')
-- cc_test = subprocess.Popen(['cc', '-x', 'c++', '-std=c++11', '-'],
-+ cc_test = subprocess.Popen([cc, '-x', 'c++', '-std=c++11', '-'],
- stdin=PIPE,
- stdout=PIPE,
- stderr=PIPE)
---
-2.27.0
-