summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/many-virtual-consumer/package.py
blob: 40da0f40e019db5137f075ca4c9110e0c85c4c38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2013-2021 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)
class ManyVirtualConsumer(Package):
    """PAckage that depends on many virtual packages"""
    url = "http://www.example.com/"
    url = "http://www.example.com/2.0.tar.gz"

    version('1.0', 'abcdef1234567890abcdef1234567890')

    depends_on('mpi')
    depends_on('lapack')

    # This directive is an example of imposing a constraint on a
    # dependency is that dependency is in the DAG. This pattern
    # is mainly used with virtual providers.
    depends_on('low-priority-provider@1.0', when='^low-priority-provider')