diff options
author | Jon Rood <jon.rood@nrel.gov> | 2018-02-22 15:14:39 -0700 |
---|---|---|
committer | scheibelp <scheibel1@llnl.gov> | 2018-02-22 14:14:39 -0800 |
commit | d7b826a0aa8e4e03fbf09896f4a38e12fa387b1f (patch) | |
tree | 7e30e43195853803f0de54a23516803082663701 /var | |
parent | c4fcc245e2db6fcd60251354417a33a91edbf271 (diff) | |
download | spack-d7b826a0aa8e4e03fbf09896f4a38e12fa387b1f.tar.gz spack-d7b826a0aa8e4e03fbf09896f4a38e12fa387b1f.tar.bz2 spack-d7b826a0aa8e4e03fbf09896f4a38e12fa387b1f.tar.xz spack-d7b826a0aa8e4e03fbf09896f4a38e12fa387b1f.zip |
nalu package: update dependency (#7245)
Yaml-cpp hasn't tagged a release in over 2 years, yet they have fixed
many things and now have the ability to use find_package in CMake.
Since we use this feature in Nalu, we require the latest yaml-cpp
until they tag a new release. I have also deprecated the now
unnecessary ENABLE_INSTALL flag.
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/nalu/package.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/nalu/package.py b/var/spack/repos/builtin/packages/nalu/package.py index b7b9ea4666..153a29f5ab 100644 --- a/var/spack/repos/builtin/packages/nalu/package.py +++ b/var/spack/repos/builtin/packages/nalu/package.py @@ -48,7 +48,7 @@ class Nalu(CMakePackage): git='https://github.com/NaluCFD/Nalu.git', branch='master') # Currently Nalu only builds with certain libraries statically - depends_on('yaml-cpp+pic~shared@0.5.3:') + depends_on('yaml-cpp+pic~shared@develop') depends_on('trilinos~shared+exodus+tpetra+muelu+belos+ifpack2+amesos2+zoltan+stk+boost~superlu-dist+superlu+hdf5+zlib+pnetcdf+shards@master,12.12.1:') depends_on('openfast+cxx', when='+openfast') depends_on('tioga', when='+tioga') @@ -60,8 +60,7 @@ class Nalu(CMakePackage): options.extend([ '-DTrilinos_DIR:PATH=%s' % spec['trilinos'].prefix, - '-DYAML_DIR:PATH=%s' % spec['yaml-cpp'].prefix, - '-DENABLE_INSTALL:BOOL=ON' + '-DYAML_DIR:PATH=%s' % spec['yaml-cpp'].prefix ]) if '+openfast' in spec: |