summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/simple-inheritance/package.py
blob: 67042671bab85e7b86ea436884499bba75f3fa87 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# 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 BaseWithDirectives(Package):
    depends_on("cmake", type="build")
    depends_on("mpi")
    variant("openblas", description="Activates openblas", default=True)
    provides("service1")

    def use_module_variable(self):
        """Must be called in build environment. Allows us to test parent class
        using module variables set up by build_environment."""
        env["TEST_MODULE_VAR"] = "test_module_variable"
        return env["TEST_MODULE_VAR"]


class SimpleInheritance(BaseWithDirectives):
    """Simple package which acts as a build dependency"""

    homepage = "http://www.example.com"
    url = "http://www.example.com/simple-1.0.tar.gz"

    version("1.0", md5="0123456789abcdef0123456789abcdef")

    depends_on("openblas", when="+openblas")
    provides("lapack", when="+openblas")