summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/fortrilinos/package.py
blob: 203931114568d644fdf802a7046c15c28a26b6d0 (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
# Copyright 2013-2020 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 Fortrilinos(CMakePackage):
    """ForTrilinos provides a set of Fortran-2003 wrappers to the Trilinos
    solver library.

    Note that most properties are *transitive* from the underlying Trilinos
    configuration. For example, MPI is enabled if and only if the linked
    Trilinos version has it, so this package does not provide an indepdent
    variant. Instead, use ``fortrilinos ^trilinos~mpi`` to disable MPI support.

    Since Trilinos enables a bunch of upstream dependencies by default, it
    might be worthwhile to disable them::

        spack install fortrilinos \
            ^trilinos@12.18.1+nox+stratimikos \
            ~boost~exodus~glm~gtest~hdf5~hypre~matio~metis~mumps~netcdf~suite-sparse
    """

    homepage = "https://trilinos.github.io/ForTrilinos/"
    url      = "https://github.com/trilinos/ForTrilinos/archive/v2.0.0-dev1.tar.gz"
    git      = "https://github.com/trilinos/ForTrilinos.git"

    maintainers = ['sethrj', 'aprokop']

    version('2.0.0-dev2', sha256='2a55c668b3fe986583658d272eab2dc076b291a5f2eb582a02602db86a32030b')
    version('2.0.0-dev1', sha256='ab664ce2d7fe75c524d7ff6b1efffa3e459ab5739a916e6ea810ae40f39ca4f4')
    version('master', branch='master')

    variant('hl', default=True, description='Build high-level Trilinos wrappers')
    variant('shared', default=True, description='Build shared libraries')

    # Trilinos version dependencies
    depends_on('trilinos@12.18.1', when='@2.0.0-dev2')
    depends_on('trilinos@12.17.1', when='@2.0.0-dev1')

    # Baseline trilinos dependencies
    depends_on('trilinos+teuchos gotype=long_long')
    # Full trilinos dependencies
    depends_on('trilinos+amesos2+anasazi+belos+kokkos+ifpack2+muelu+nox+tpetra'
               '+stratimikos', when='+hl')

    @run_before('cmake')
    def die_without_fortran(self):
        # Until we can pass variants such as +fortran through virtual
        # dependencies, require Fortran compiler to
        # avoid delayed build errors in dependents.
        if (self.compiler.f77 is None) or (self.compiler.fc is None):
            raise InstallError('ForTrilinos requires a Fortran compiler')

    def cmake_args(self):
        return [
            self.define_from_variant('BUILD_SHARED_LIBS', 'shared'),
            self.define('ForTrilinos_EXAMPLES', self.run_tests),
            self.define('ForTrilinos_TESTING', self.run_tests),
        ]