summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/conditional-virtual-dependency/package.py
blob: c975acf8a30bb5adc66b5b1d6a8929fce786a7da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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 ConditionalVirtualDependency(Package):
    """Brings in a virtual dependency if certain conditions are met."""

    homepage = "https://dev.null"

    version("1.0")

    variant("stuff", default=True, description="nope")
    variant("mpi", default=False, description="nope")

    depends_on("stuff", when="+stuff")
    depends_on("mpi", when="+mpi")