dealii: limit CMake to 3.9 as 3.10.0 is not supported yet (#6427)

This commit is contained in:
Denis Davydov 2017-11-23 15:16:44 +01:00 committed by Christoph Junghans
parent e2cf933ec1
commit ddf10fa322

View File

@ -129,6 +129,9 @@ class Dealii(CMakePackage, CudaPackage):
depends_on("hdf5+mpi+hl", when='+hdf5+mpi')
depends_on("cuda@8:", when='+cuda')
depends_on("cmake@3.9:", when='+cuda')
# currently deal.II does not build with Cmake 3.10, see
# https://github.com/dealii/dealii/issues/5510
depends_on("cmake@:3.9.99")
# FIXME: concretizer bug. The two lines mimic what comes from PETSc
# but we should not need it
depends_on("metis@5:+int64+real64", when='+metis+int64')