summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/v1-consumer/package.py
blob: fa4bbb8556debedece5ff2b598c90d95e6416a24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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 V1Consumer(Package):
    """Mimic the real netlib-lapack, that may be built on top of an
    optimized blas.
    """

    homepage = "https://dev.null"

    version("1.0")

    depends_on("v2")
    depends_on("v1")

    provides("somelang")