summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/many-virtual-consumer/package.py
blob: 68365f421cbf35b2b969745d6d2b7dcabb5c1ed1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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)
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')