summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/ufs-utils/package.py
blob: 1333ef3f4c19f00e2cb9cc07d80fd6f7c2f2249c (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
# 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 UfsUtils(CMakePackage):
    """The UFS Utilities package contains programs set up the model grid and
    create coldstart initial conditions.

    This is related to NOAA's NCEPLIBS project."""

    homepage = "https://noaa-emcufs-utils.readthedocs.io/en/latest/"
    url = "https://github.com/NOAA-EMC/UFS_UTILS/archive/refs/tags/ufs_utils_1_7_0.tar.gz"
    git = "https://github.com/ufs-community/UFS_UTILS"

    maintainers("t-brown", "edwardhartnett", "AlexanderRichert-NOAA", "Hang-Lei-NOAA")

    version(
        "1.11.0",
        tag="ufs_utils_1_11_0",
        commit="72701ab45165ae67a1c4b4d855e763bf5674dbd2",
        submodules=True,
    )
    version(
        "1.10.0",
        tag="ufs_utils_1_10_0",
        commit="d1e928bca221361a62d747964826bf80775db6af",
        submodules=True,
    )
    version(
        "1.9.0",
        tag="ufs_utils_1_9_0",
        commit="7b1f169b54c6697f1a1b105dae217b4da5fab199",
        submodules=True,
    )
    version(
        "1.8.0",
        tag="ufs_utils_1_8_0",
        commit="735e2bad1f11cb9c5924bda82150494548a97164",
        submodules=True,
    )
    version(
        "1.7.0",
        tag="ufs_utils_1_7_0",
        commit="1730d3718603ae83a2c77cb335464507d6dd7f59",
        submodules=True,
    )

    depends_on("mpi")
    depends_on("cmake@3.23:")
    depends_on("bacio")
    depends_on("esmf")
    depends_on("g2")
    depends_on("hdf5")
    depends_on("ip")
    depends_on("jasper")
    depends_on("libpng")
    depends_on("nemsio")
    depends_on("netcdf-c")
    depends_on("netcdf-fortran")
    depends_on("sfcio")
    depends_on("sigio")
    depends_on("sp")
    depends_on("w3emc")
    depends_on("zlib-api")

    def cmake_args(self):
        return [
            "-DMPI_C_COMPILER=%s" % self.spec["mpi"].mpicc,
            "-DMPI_Fortran_COMPILER=%s" % self.spec["mpi"].mpifc,
        ]

    def setup_build_environment(self, env):
        env.set("ESMFMKFILE", join_path(self.spec["esmf"].prefix.lib, "esmf.mk"))