summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/slurm-drmaa/package.py
blob: c240de83291d9c4b92970e53d75411260ba701fb (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
# 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 SlurmDrmaa(AutotoolsPackage):
    """
    DRMAA for Slurm is an implementation of Open Grid Forum DRMAA 1.0 (Distributed
    Resource Management Application API) specification for submission and control of
    jobs to Slurm.  Using DRMAA, grid applications builders, portal developers and
    ISVs can use the same high-level API to link their software with different
    cluster/resource management systems.
    """

    homepage = "https://github.com/natefoo/slurm-drmaa"
    url = "https://github.com/natefoo/slurm-drmaa/releases/download/1.1.2/slurm-drmaa-1.1.2.tar.gz"
    git = "https://github.com/natefoo/slurm-drmaa.git"

    maintainers("pwablito")

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

    version("main", branch="main", submodules=True)
    version("1.1.2", sha256="5bfe25d501de83729df3c8c8f28535b9da3e99aea7738e259903abd6f1f5c836")

    # Remove this patch when it is merged into main:
    patch(
        "https://github.com/natefoo/slurm-drmaa/pull/62.patch?full_index=1",
        sha256="ec8d2963c731f7054f7d3c130232e731bc92366280100e108d93a3685fddfca7",
        when="@main",
    )

    depends_on("autoconf", type="build", when="@main")
    depends_on("automake", type="build", when="@main")
    depends_on("libtool", type="build", when="@main")
    depends_on("bison", type="build", when="@main")

    depends_on("slurm")
    depends_on("slurm@:20-11-8-1", when="@1.1.2")
    depends_on("gperf")
    depends_on("ragel")

    def check(self):
        pass