summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/simple-inheritance/package.py
blob: e0ec2bd7047d338f3e1c817ba874e784cc97ce53 (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
32
33
34
35
# Copyright 2013-2018 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 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', '0123456789abcdef0123456789abcdef')

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

    def install(self, spec, prefix):
        pass