summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/conditional-constrained-dependencies/package.py
blob: fe87ae39c40dcb7b3def6fd53e3219c4578939dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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 ConditionalConstrainedDependencies(Package):
    """Package that has a variant which adds a dependency forced to
    use non default values.
    """

    homepage = "https://dev.null"

    version("1.0")

    # This variant is on by default and attaches a dependency
    # with a lot of variants set at their non-default values
    variant("dep", default=True, description="nope")
    depends_on("dep-with-variants+foo+bar+baz", when="+dep")