summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/jedi-cmake/package.py
blob: d3c9a8d1fddb0f7c3dc3e5a853be0192f291104f (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
# Copyright 2013-2022 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 JediCmake(CMakePackage):
    """CMake/ecbuild toolchains to facilitate portability on different systems."""

    homepage = "https://github.com/JCSDA/jedi-cmake"
    git = "https://github.com/JCSDA/jedi-cmake.git"

    maintainers("climbfuji")

    license("Apache-2.0")

    version("master", branch="master", no_cache=True)
    version("develop", branch="develop", no_cache=True)
    version(
        "1.4.0", commit="36fc99bdff5d3d8835480b37a3dcc75e5f8da256", preferred=True, submodules=True
    )
    version("1.3.0", commit="729a9b2ec97a7e93cbc58213493f28ca11f08754")

    depends_on("cmake @3.10:", type=("build"))