summaryrefslogblamecommitdiff
path: root/var/spack/repos/builtin.mock/packages/variant-on-dependency-condition-a/package.py
blob: 9d1bbd0450e0fc4cdf9cc02053b2f036eb943bd5 (plain) (tree)
1
2
3
4
5
6
7
                                                                         


                                                                         


                           













                                                                  
# Copyright 2013-2022 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 VariantOnDependencyConditionA(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', '4cb3ff35b2472aae70f542116d616e63')

    variant('x', default=True, description='?')