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

    homepage = "https://dev.null"

    version("1.0")

    variant("disable-v1", default=False, description="nope")

    provides("v2")
    provides("v1", when="~disable-v1")

    depends_on("v1", when="+disable-v1")