summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/cantera/package.py
blob: a55f883560129a8502300cc102dee0aac0e4c6fa (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
##############################################################################
# Copyright (c) 2013-2016, Lawrence Livermore National Security, LLC.
# Produced at the Lawrence Livermore National Laboratory.
#
# This file is part of Spack.
# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
# LLNL-CODE-647188
#
# For details, see https://github.com/llnl/spack
# Please also see the LICENSE file for our notice and the LGPL.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License (as
# published by the Free Software Foundation) version 2.1, February 1999.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
# conditions of the GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##############################################################################
from spack import *
import spack
import os


class Cantera(Package):
    """Cantera is a suite of object-oriented software tools for problems
    involving chemical kinetics, thermodynamics, and/or transport processes."""

    homepage = "http://www.cantera.org/docs/sphinx/html/index.html"
    url      = "https://github.com/Cantera/cantera/archive/v2.2.1.tar.gz"

    version('2.2.1', '9d1919bdef39ddec54485fc8a741a3aa')

    variant('lapack',     default=True,  description='Build with external BLAS/LAPACK libraries')
    variant('threadsafe', default=True,  description='Build threadsafe, requires Boost')
    variant('sundials',   default=True,  description='Build with external Sundials')
    variant('python',     default=False, description='Build the Cantera Python module')
    variant('matlab',     default=False, description='Build the Cantera Matlab toolbox')

    # Required dependencies
    depends_on('scons')

    # Recommended dependencies
    depends_on('blas',      when='+lapack')
    depends_on('lapack',    when='+lapack')
    depends_on('boost',     when='+threadsafe')
    depends_on('sundials',  when='+sundials')  # must be compiled with -fPIC

    # Python module dependencies
    extends('python', when='+python')
    depends_on('py-numpy',  when='+python')
    depends_on('py-scipy',  when='+python')
    depends_on('py-cython', when='+python')
    depends_on('py-3to2',   when='+python')
    # TODO: these "when" specs don't actually work
    #depends_on('py-unittest2',     when='+python^python@2.6')
    #depends_on('py-unittest2py3k', when='+python^python@3.1')

    # Matlab toolbox dependencies
    # TODO: add Matlab package
    # TODO: allow packages to extend multiple other packages
    #extends('matlab',   when='+matlab')

    def install(self, spec, prefix):
        # Required options
        options = [
            'prefix={0}'.format(prefix),
            'CC={0}'.format(os.environ['CC']),
            'CXX={0}'.format(os.environ['CXX']),
            'F77={0}'.format(os.environ['F77']),
            'FORTRAN={0}'.format(os.environ['FC']),
            'cc_flags=-fPIC',
            # Allow Spack environment variables to propagate through to SCons
            'env_vars=all'
        ]

        # BLAS/LAPACK support
        if '+lapack' in spec:
            options.extend([
                'blas_lapack_libs=lapack,blas',
                'blas_lapack_dir={0}'.format(spec['lapack'].prefix.lib)
            ])

        # Threadsafe build, requires Boost
        if '+threadsafe' in spec:
            options.extend([
                'build_thread_safe=yes',
                'boost_inc_dir={0}'.format(spec['boost'].prefix.include),
                'boost_lib_dir={0}'.format(spec['boost'].prefix.lib),
                'boost_thread_lib=boost_thread-mt'
            ])
        else:
            options.append('build_thread_safe=no')

        # Sundials support
        if '+sundials' in spec:
            options.extend([
                'use_sundials=y',
                'sundials_include={0}'.format(spec['sundials'].prefix.include),
                'sundials_libdir={0}'.format(spec['sundials'].prefix.lib),
                'sundials_license={0}'.format(
                    join_path(spec['sundials'].prefix, 'LICENSE'))
            ])
        else:
            options.append('use_sundials=n')

        # Python module
        if '+python' in spec:
            options.extend([
                'python_package=full',
                'python_cmd={0}'.format(
                    join_path(spec['python'].prefix.bin, 'python')),
                'python_array_home={0}'.format(spec['py-numpy'].prefix)
            ])
            if spec['python'].satisfies('@3'):
                options.extend([
                    'python3_package=y',
                    'python3_cmd={0}'.format(
                        join_path(spec['python'].prefix.bin, 'python')),
                    'python3_array_home={0}'.format(spec['py-numpy'].prefix)
                ])
            else:
                options.append('python3_package=n')
        else:
            options.append('python_package=none')
            options.append('python3_package=n')

        # Matlab toolbox
        if '+matlab' in spec:
            options.extend([
                'matlab_toolbox=y',
                'matlab_path={0}'.format(spec['matlab'].prefix)
            ])
        else:
            options.append('matlab_toolbox=n')

        scons('build', *options)

        if '+python' in spec:
            # Tests will always fail if Python dependencies aren't built
            #scons('test')  # TODO: 3 expected failures, not sure what's wrong
            pass

        scons('install')