aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/shiboken2
diff options
context:
space:
mode:
authorash lea <example@thisismyactual.email>2020-07-08 15:29:35 -0700
committerash lea <example@thisismyactual.email>2020-07-09 01:28:29 -0700
commit888d7bb4dbe51f8b9c3a2942010981e699da151d (patch)
tree048aeab4cf3a9ea52a7dd992d6e237f517bb3078 /pkgs/development/python-modules/shiboken2
parent141f9ce8073ac98205acaae18ea0f550fbba2b3d (diff)
python3Packages.pyside2: 5.12.3 -> 5.12.6
fixes #91726
Diffstat (limited to 'pkgs/development/python-modules/shiboken2')
-rw-r--r--pkgs/development/python-modules/shiboken2/nix_compile_cflags.patch13
1 files changed, 8 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/shiboken2/nix_compile_cflags.patch b/pkgs/development/python-modules/shiboken2/nix_compile_cflags.patch
index 0884c020e832..c3c63dc67ba9 100644
--- a/pkgs/development/python-modules/shiboken2/nix_compile_cflags.patch
+++ b/pkgs/development/python-modules/shiboken2/nix_compile_cflags.patch
@@ -1,6 +1,6 @@
---- pyside-setup-everywhere-src-5.12.3/sources/shiboken2/ApiExtractor/clangparser/compilersupport.cpp~ 2019-06-15 10:31:04.712949189 +0200
-+++ pyside-setup-everywhere-src-5.12.3/sources/shiboken2/ApiExtractor/clangparser/compilersupport.cpp 2019-06-15 11:52:52.894987343 +0200
-@@ -317,15 +317,15 @@
+--- pyside-setup-everywhere-src-5.12.6/sources/shiboken2/ApiExtractor/clangparser/compilersupport.cpp~ 2020-07-08 14:37:13.022476435 -0700
++++ pyside-setup-everywhere-src-5.12.6/sources/shiboken2/ApiExtractor/clangparser/compilersupport.cpp 2020-07-08 14:37:18.271484269 -0700
+@@ -330,17 +330,15 @@
}
#endif // NEED_CLANG_BUILTIN_INCLUDES
@@ -9,10 +9,12 @@
- // A fix for this has been added to Clang 5.0, so, the code can be removed
- // once Clang 5.0 is the minimum version.
- if (needsGppInternalHeaders()) {
-- const HeaderPaths gppPaths = gppInternalIncludePaths(QStringLiteral("g++"));
+- const HeaderPaths gppPaths = gppInternalIncludePaths(compilerFromCMake(QStringLiteral("g++")));
- for (const HeaderPath &h : gppPaths) {
-- if (h.path.contains("c++"))
+- if (h.path.contains("c++")
+- || h.path.contains("sysroot")) { // centOS
- headerPaths.append(h);
+- }
+ const HeaderPaths gppPaths = gppInternalIncludePaths(QStringLiteral("g++"));
+ for (const HeaderPath &h : gppPaths) {
+ // PySide2 requires that Qt headers are not -isystem
@@ -25,3 +27,4 @@
}
}
#else
+