summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/damask-grid/package.py
blob: 4ee2d994f1b97846ab2efbf615bf3112e1a9e05c (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
# 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 DamaskGrid(CMakePackage):
    """Grid solver for DAMASK"""

    homepage = "https://damask.mpie.de"
    url = "https://damask.mpie.de/download/damask-3.0.0.tar.xz"

    maintainers("MarDiehl")

    license("AGPL-3.0-or-later")

    version(
        "3.0.0-alpha8", sha256="f62c38123213d1c1fe2eb8910b0ffbdc1cac56273c2520f3b64a553363190b9d"
    )
    version(
        "3.0.0-alpha7", sha256="442b06b824441293e72ff91b211a555c5d497aedf62be1c4332c426558b848a4"
    )
    version(
        "3.0.0-alpha6", sha256="de6748c285558dec8f730c4301bfa56b4078c130ff80e3095faf76202f8d2109"
    )
    version(
        "3.0.0-alpha5", sha256="2d2b10901959c26a5bb5c52327cdafc7943bc1b36b77b515b0371221703249ae"
    )
    version(
        "3.0.0-alpha4", sha256="0bb8bde43b27d852b1fb6e359a7157354544557ad83d87987b03f5d629ce5493"
    )

    depends_on("petsc@3.20.2:3.21", when="@3.0.0-alpha8")
    depends_on("petsc@3.17.1:3.18", when="@3.0.0-alpha7")
    depends_on("petsc@3.16.5:3.16", when="@3.0.0-alpha6")
    depends_on("petsc@3.14.0:3.14,3.15.1:3.16", when="@3.0.0-alpha5")
    depends_on("petsc@3.14.0:3.14,3.15.1:3.15", when="@3.0.0-alpha4")
    depends_on("pkgconfig", type="build")
    depends_on("cmake@3.10:", type="build")
    depends_on("petsc+mpi+hdf5")
    depends_on("hdf5@1.12:+mpi+fortran", when="@3.0.0-alpha7:")
    depends_on("hdf5@1.10:+mpi+fortran")
    depends_on("fftw+mpi")
    depends_on("libfyaml", when="@3.0.0-alpha7:")

    # proper initialization of temperature to avoid segmentation fault. created by @MarDiehl
    patch("T-init.patch", when="@3.0.0-alpha7")
    # relax Fortran sourc limit to 132 char to enable PETSc macro expansion. created by @MarDiehl
    patch("long-lines.patch", when="@3.0.0-alpha7")
    patch("CMakeDebugRelease.patch", when="@3.0.0-alpha4")

    variant(
        "build_type",
        default="DebugRelease",
        description="The build type to build",
        values=("Debug", "Release", "DebugRelease"),
    )

    def patch(self):
        filter_file(" -lz", " -lz ${FFTW_LIBS}", "CMakeLists.txt")

    def cmake_args(self):
        return [
            self.define("DAMASK_SOLVER", "grid"),
            self.define("FFTW_LIBS", self.spec["fftw:mpi"].libs.link_flags),
        ]

    @run_after("install")
    @on_package_attributes(run_tests=True)
    def execute(self):
        with working_dir(self.build_directory):
            damask_grid = Executable("src/DAMASK_grid")
            damask_grid("--help")