Release brahma 0.0.1 (#39345)

* release brahma 0.0.1
This commit is contained in:
Hariharan Devarajan 2023-08-09 12:18:52 -06:00 committed by GitHub
parent b1e33ae37b
commit c24471834b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,28 @@
# Copyright 2013-2023 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.package import *
class Brahma(CMakePackage):
"""Interceptor library for I/O calls using Gotcha"""
homepage = "https://github.com/hariharan-devarajan/brahma"
git = "https://github.com/hariharan-devarajan/brahma.git"
maintainers("hariharan-devarajan")
version("develop", branch="dev")
version("master", branch="master")
version("0.0.1", tag="v0.0.1")
variant("mpi", default=False, description="Enable MPI support")
depends_on("cpp-logger@0.0.1")
depends_on("gotcha@develop")
depends_on("catch2@3.0.1")
depends_on("mpi", when="+mpi")
def cmake_args(self):
return [self.define_from_variant("BUILD_WITH_MPI", "mpi")]