summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/variant-on-dependency-condition-root/package.py
blob: 8ba874292f6464444ce633a83f50b701b828c277 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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 VariantOnDependencyConditionRoot(Package):
    """Test that dependencies that are conditional on the state of
    other dependencies are added correctly, for instance:

    depends_on('A')
    depends_on('B', when='^A+x')
    """

    homepage = "https://www.example.org"
    url = "https://example.org/files/v3.4/cmake-3.4.3.tar.gz"

    version("1.0", md5="4cb3ff35b2472aae70f542116d616e63")

    depends_on("variant-on-dependency-condition-a")
    depends_on("variant-on-dependency-condition-b", when="^variant-on-dependency-condition-a+x")