summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorSatish Balay <balay@mcs.anl.gov>2017-11-06 15:03:06 -0600
committerTodd Gamblin <tgamblin@llnl.gov>2017-11-06 13:03:06 -0800
commitdc78e60c837dc5b02c8e873d336ec9258bef0fca (patch)
treea78f12da8e7fb1210b4c7105e78f3097726bea0c /var
parentf0d33df3a98b5ae40c6422ecb5b179df484ea94e (diff)
downloadspack-dc78e60c837dc5b02c8e873d336ec9258bef0fca.tar.gz
spack-dc78e60c837dc5b02c8e873d336ec9258bef0fca.tar.bz2
spack-dc78e60c837dc5b02c8e873d336ec9258bef0fca.tar.xz
spack-dc78e60c837dc5b02c8e873d336ec9258bef0fca.zip
trilinos: update hdf5 dependency to use 'hdf5+hl' (#6025)
* trilinos: update hdf5 dependency to use 'hdf5+hl' Without this change - I get the following error [triggered by 161dca6d5 c9810f808 changes] $ ./bin/spack install trilinos+hdf5 ==> Error: An unsatisfiable variant constraint has been detected for spec: hdf5@1.10.1%gcc@7~cxx~debug~fortran~hl+mpi+pic+shared~szip~threadsafe arch=linux-fedora27-x86_64 while trying to concretize the partial spec: netcdf+mpi ^m4 ^mpich@3.3a2%gcc@7 device=ch3 +hydra netmod=tcp +pmi+romio~verbs arch=linux-fedora27-x86_64 ^zlib@1.2.11%gcc@7+optimize+pic+shared arch=linux-fedora27-x86_64 netcdf requires hdf5 variant +hl, but spec asked for ~hl * fix flake8 warning
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/trilinos/package.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/trilinos/package.py b/var/spack/repos/builtin/packages/trilinos/package.py
index d67115c288..db0b1b3ba6 100644
--- a/var/spack/repos/builtin/packages/trilinos/package.py
+++ b/var/spack/repos/builtin/packages/trilinos/package.py
@@ -224,7 +224,8 @@ class Trilinos(CMakePackage):
depends_on('hypre~internal-superlu~int64', when='+hypre')
depends_on('hypre@xsdk-0.2.0~internal-superlu', when='@xsdk-0.2.0+hypre')
depends_on('hypre@develop~internal-superlu', when='@develop+hypre')
- depends_on('hdf5+mpi', when='+hdf5')
+ # FIXME: concretizer bug? 'hl' req by netcdf is affecting this code.
+ depends_on('hdf5+hl+mpi', when='+hdf5')
depends_on('python', when='+python')
depends_on('py-numpy', when='+python', type=('build', 'run'))
depends_on('swig', when='+python')