diff options
author | Michael Kuhn <suraia@ikkoku.de> | 2017-11-02 20:41:25 +0100 |
---|---|---|
committer | Christoph Junghans <christoph.junghans@gmail.com> | 2017-11-02 13:41:25 -0600 |
commit | d1db161aeb2701d2c10f67536e62d0ad19139739 (patch) | |
tree | 1e98d6bc6d8b5b3b4b865067fdf603e1ce68a0f8 | |
parent | 3a1b013291bb6fae77f6e1c3fb9154049697c057 (diff) | |
download | spack-d1db161aeb2701d2c10f67536e62d0ad19139739.tar.gz spack-d1db161aeb2701d2c10f67536e62d0ad19139739.tar.bz2 spack-d1db161aeb2701d2c10f67536e62d0ad19139739.tar.xz spack-d1db161aeb2701d2c10f67536e62d0ad19139739.zip |
adios: Fix hdf5 and sz dependencies (#6016)
- hdf5's +hl variant is required because the build uses libhdf5_hl.
- sz is only compatible up to version 1.4.10 because the library has
been renamed to libSZ in 1.4.11.
-rw-r--r-- | var/spack/repos/builtin/packages/adios/package.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/adios/package.py b/var/spack/repos/builtin/packages/adios/package.py index b7b5f58e93..90f0f57b72 100644 --- a/var/spack/repos/builtin/packages/adios/package.py +++ b/var/spack/repos/builtin/packages/adios/package.py @@ -90,10 +90,10 @@ class Adios(AutotoolsPackage): depends_on('zlib', when='+zlib') depends_on('bzip2', when='+bzip2') depends_on('szip', when='+szip') - depends_on('sz', when='+sz') + depends_on('sz@:1.4.10', when='+sz') depends_on('zfp@:0.5.0', when='+zfp') # optional transports & file converters - depends_on('hdf5@1.8:+mpi', when='+hdf5') + depends_on('hdf5@1.8:+hl+mpi', when='+hdf5') depends_on('netcdf', when='+netcdf') depends_on('libevpath', when='staging=flexpath') depends_on('dataspaces+mpi', when='staging=dataspaces') |