diff options
author | Joscha Legewie <joscha.legewie@gmail.com> | 2023-09-15 22:36:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-15 21:36:46 -0500 |
commit | 088e4c6b647c56f26639e5f17584e647ab0f9ccb (patch) | |
tree | 214f03a08ef2d3b62f76a6c7b75e3dcdb697fca1 /var | |
parent | 76816d722a8a4599ded449c69427ce041a958240 (diff) | |
download | spack-088e4c6b647c56f26639e5f17584e647ab0f9ccb.tar.gz spack-088e4c6b647c56f26639e5f17584e647ab0f9ccb.tar.bz2 spack-088e4c6b647c56f26639e5f17584e647ab0f9ccb.tar.xz spack-088e4c6b647c56f26639e5f17584e647ab0f9ccb.zip |
grass: Update spec for gdal dependency (#38396)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/grass/package.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/grass/package.py b/var/spack/repos/builtin/packages/grass/package.py index 5a229cea0f..8b4065d814 100644 --- a/var/spack/repos/builtin/packages/grass/package.py +++ b/var/spack/repos/builtin/packages/grass/package.py @@ -87,7 +87,8 @@ class Grass(AutotoolsPackage): depends_on("opencl", when="+opencl") depends_on("bzip2", when="+bzlib") depends_on("zstd", when="+zstd") - depends_on("gdal@:3.2", when="+gdal") + depends_on("gdal", when="+gdal") + conflicts("^gdal@3.3:", when="@7.8") depends_on("liblas", when="+liblas") depends_on("wxwidgets", when="+wxwidgets") depends_on("py-wxpython@2.8.10.1:", when="+wxwidgets", type=("build", "run")) |