summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/mvapich2/package.py
blob: c9a1189377e230d5e6956dd0b98ceb857b1b2527 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2013-2024 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 Mvapich2(Package):
    homepage = "http://www.homepage.org"
    url = "http://www.someurl"

    version("1.5", md5="9c5d5d4fe1e17dd12153f40bc5b6dbc0")

    variant(
        "file_systems",
        description="List of the ROMIO file systems to activate",
        values=auto_or_any_combination_of("lustre", "gpfs", "nfs", "ufs"),
    )