diff options
author | Peter Brady <ptb@lanl.gov> | 2022-01-14 13:47:36 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-14 13:47:36 -0700 |
commit | 2917aad6f936434e40974e13619602fbf8891090 (patch) | |
tree | bc31a8a89588ae0670e2c9a2ef950bb863b8894a /var | |
parent | 3540f8200a536434946492d60b5e56b302112305 (diff) | |
download | spack-2917aad6f936434e40974e13619602fbf8891090.tar.gz spack-2917aad6f936434e40974e13619602fbf8891090.tar.bz2 spack-2917aad6f936434e40974e13619602fbf8891090.tar.xz spack-2917aad6f936434e40974e13619602fbf8891090.zip |
scorpio: add new package (#28375)
Co-authored-by: Massimiliano Culpo <massimiliano.culpo@gmail.com>
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/scorpio/package.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/scorpio/package.py b/var/spack/repos/builtin/packages/scorpio/package.py new file mode 100644 index 0000000000..129d496d2b --- /dev/null +++ b/var/spack/repos/builtin/packages/scorpio/package.py @@ -0,0 +1,29 @@ +# Copyright 2013-2021 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 Scorpio(CMakePackage): + """SCORPIO Scalable Parallel I/O module for Environmental Management Applications + + This library provides software that read/write data sets from/to parallel file + systems in an efficient and scalable manner + """ + + homepage = "https://gitlab.com/truchas/tpl-forks/scorpio" + git = "https://gitlab.com/truchas/tpl-forks/scorpio.git" + + maintainers = ['pbrady'] + + version('develop', branch='truchas') + + version('2021-12-10', + commit='b802f16877a6562ccdbeca8887910d3bd3e25cbb', + preferred=True) + + depends_on('cmake@3.16:', type='build') + depends_on('mpi') + depends_on('hdf5@1.10.6: +hl +mpi') |