diff options
author | Mark C. Miller <miller86@llnl.gov> | 2018-02-19 22:13:13 -0800 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2018-02-19 22:13:13 -0800 |
commit | 2bab19d1213e0aef1a1e2a94af8f563e9d443467 (patch) | |
tree | e83ce81e48fbea6061395a600834a861b4a96477 | |
parent | 95fe8f7e07011739b8d46e994dd383233835e1b4 (diff) | |
download | spack-2bab19d1213e0aef1a1e2a94af8f563e9d443467.tar.gz spack-2bab19d1213e0aef1a1e2a94af8f563e9d443467.tar.bz2 spack-2bab19d1213e0aef1a1e2a94af8f563e9d443467.tar.xz spack-2bab19d1213e0aef1a1e2a94af8f563e9d443467.zip |
hdf5: fixing ~/+ fortran builds; updated to version 0.8.0 (#7260)
-rw-r--r-- | var/spack/repos/builtin/packages/h5z-zfp/package.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/h5z-zfp/package.py b/var/spack/repos/builtin/packages/h5z-zfp/package.py index dff0126f01..34eb81109c 100644 --- a/var/spack/repos/builtin/packages/h5z-zfp/package.py +++ b/var/spack/repos/builtin/packages/h5z-zfp/package.py @@ -34,10 +34,12 @@ class H5zZfp(MakefilePackage): version('develop', git='https://github.com/LLNL/H5Z-ZFP.git', tag='master') version('0.7.0', git='https://github.com/LLNL/H5Z-ZFP.git', commit='58ac811') + version('0.8.0', git='https://github.com/LLNL/H5Z-ZFP.git', commit='af165c4') variant('fortran', default=True, description='Enable Fortran support') - depends_on('hdf5') + depends_on('hdf5+fortran', when='+fortran') + depends_on('hdf5', when='~fortran') depends_on('zfp bsws=8') @property |