Hermes: add v0.7.0-beta, remove older versions (#31544)

This commit is contained in:
H. Joe Lee 2022-07-13 02:25:45 -05:00 committed by GitHub
parent 1f7ee4957b
commit 9c5ef2aafe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,6 @@
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack.package import *
@ -14,16 +13,18 @@ class Hermes(CMakePackage):
homepage = "http://www.cs.iit.edu/~scs/assets/projects/Hermes/Hermes.html"
git = "https://github.com/HDFGroup/hermes.git"
maintainers = ['hyoklee']
version('master', branch='master')
version('0.4.0-beta', url="https://github.com/HDFGroup/hermes/archive/v0.4.0-beta.tar.gz", sha256='e8bd0b701149844f7f113a55a107e40b3579945d70ca2cb8ce9db5b5a131efdb')
version('0.7.0-beta', url="https://github.com/HDFGroup/hermes/archive/v0.7.0-beta.tar.gz", sha256='1046f537558e479c8a828fe8e289da410a0f82bdba199a40ea7ff0eb842d9382')
variant('vfd', default=False, description='Enable HDF5 VFD')
depends_on('mochi-thallium~cereal@0.8:')
depends_on('catch2@2.13:')
depends_on('or-tools')
depends_on('catch2')
depends_on('glpk')
depends_on('glog@0.4.0:')
depends_on('mpi')
depends_on('hdf5@1.13.0:', when='+vfd')