summaryrefslogtreecommitdiff
path: root/dev-python/cython/files/cython-0.29.37.1-no-warn-ptr-types.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-03-10 18:45:26 +0000
committerV3n3RiX <venerix@koprulu.sector>2024-03-10 18:45:26 +0000
commitf50d60b8eb707b56133e594376e993b98e726b5d (patch)
treebe9f0c658e4e0ace79af92f89becddd06c01c772 /dev-python/cython/files/cython-0.29.37.1-no-warn-ptr-types.patch
parent84e395ce722d1f39cf3ef1467b23eda9c2462017 (diff)
gentoo auto-resync : 10:03:2024 - 18:45:26
Diffstat (limited to 'dev-python/cython/files/cython-0.29.37.1-no-warn-ptr-types.patch')
-rw-r--r--dev-python/cython/files/cython-0.29.37.1-no-warn-ptr-types.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/dev-python/cython/files/cython-0.29.37.1-no-warn-ptr-types.patch b/dev-python/cython/files/cython-0.29.37.1-no-warn-ptr-types.patch
deleted file mode 100644
index b7a9d19a248d..000000000000
--- a/dev-python/cython/files/cython-0.29.37.1-no-warn-ptr-types.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff --git a/Cython/Compiler/ModuleNode.py b/Cython/Compiler/ModuleNode.py
-index e9bfa9fe9..43be47dd5 100644
---- a/Cython/Compiler/ModuleNode.py
-+++ b/Cython/Compiler/ModuleNode.py
-@@ -376,6 +376,9 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
- self.generate_includes(env, modules, code, early=False)
-
- code = globalstate['all_the_rest']
-+ # Gentoo: workaround for https://github.com/cython/cython/issues/2747
-+ # https://bugs.gentoo.org/918983
-+ code.putln('#pragma GCC diagnostic ignored "-Wincompatible-pointer-types"')
-
- self.generate_cached_builtins_decls(env, code)
- self.generate_lambda_definitions(env, code)