summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/v1-consumer/package.py
blob: cdf23e0ee54b55fb5d8c799c6c12d7d34145a7fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2013-2023 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")