summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/qt/package.py
diff options
context:
space:
mode:
authorChuck Atkins <chuck.atkins@kitware.com>2022-05-06 09:36:56 -0400
committerGitHub <noreply@github.com>2022-05-06 09:36:56 -0400
commitd8e010a9f5dff9d9555bfc38e158153f1e7c5989 (patch)
tree383822eae5588409531e1c1d94b77d416dac46bc /var/spack/repos/builtin/packages/qt/package.py
parent5a55e78073672632aeaf6efe3982ea31a19ddff9 (diff)
downloadspack-d8e010a9f5dff9d9555bfc38e158153f1e7c5989.tar.gz
spack-d8e010a9f5dff9d9555bfc38e158153f1e7c5989.tar.bz2
spack-d8e010a9f5dff9d9555bfc38e158153f1e7c5989.tar.xz
spack-d8e010a9f5dff9d9555bfc38e158153f1e7c5989.zip
ci: Enable the ParaView GUI in the DAVSDK pipeline (#30473)
* ci: Enable the ParaView GUI in the DAVSDK pipeline * qt: Patch for long paths in ci
Diffstat (limited to 'var/spack/repos/builtin/packages/qt/package.py')
-rw-r--r--var/spack/repos/builtin/packages/qt/package.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/qt/package.py b/var/spack/repos/builtin/packages/qt/package.py
index a4b09ae4de..98eba38962 100644
--- a/var/spack/repos/builtin/packages/qt/package.py
+++ b/var/spack/repos/builtin/packages/qt/package.py
@@ -153,6 +153,11 @@ class Qt(Package):
working_dir='qtbase',
when='@5.14: %apple-clang@13:')
+ # Spack path substitution uses excessively long paths that exceed the hard-coded
+ # limit of 256 used by teh generated code with the prefix path as string literals
+ # causing qt to fail in ci. This increases that limit to 1024.
+ patch('qt59-qtbase-qtconfig256.patch', working_dir='qtbase', when='@5.9:5')
+
conflicts('%gcc@10:', when='@5.9:5.12.6 +opengl')
conflicts('%gcc@11:', when='@5.8')
conflicts('%apple-clang@13:', when='@:5.13')