Hermes: new package (#29863)
This commit is contained in:
parent
6162ea95b0
commit
dea5fe87f7
37
var/spack/repos/builtin/packages/hermes/package.py
Normal file
37
var/spack/repos/builtin/packages/hermes/package.py
Normal file
@ -0,0 +1,37 @@
|
||||
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
|
||||
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
||||
#
|
||||
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
||||
|
||||
from spack import *
|
||||
|
||||
|
||||
class Hermes(CMakePackage):
|
||||
"""
|
||||
Hermes is a heterogeneous-aware, multi-tiered, dynamic, and distributed
|
||||
I/O buffering system that aims to significantly accelerate I/O performance.
|
||||
"""
|
||||
|
||||
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')
|
||||
|
||||
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('mpi')
|
||||
depends_on('hdf5@1.13.0:', when='+vfd')
|
||||
|
||||
def cmake_args(self):
|
||||
args = [
|
||||
self.define('HERMES_RPC_THALLIUM', True),
|
||||
self.define('HERMES_INSTALL_TESTS', True),
|
||||
self.define('BUILD_TESTING', True),
|
||||
self.define_from_variant('HERMES_ENABLE_VFD', 'vfd'),
|
||||
]
|
||||
return args
|
Loading…
Reference in New Issue
Block a user