summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/sys-sage/package.py
blob: ebde78a80fbc3152ebd79042153ac226e626c6cb (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
# 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 SysSage(CMakePackage):
    """A library for capturing hadrware topology and attributes of compute systems."""

    homepage = "https://github.com/stepanvanecek/sys-sage"
    url = "https://github.com/stepanvanecek/sys-sage/archive/refs/tags/v0.1.1-alpha.2.tar.gz"
    git = "https://github.com/stepanvanecek/sys-sage.git"

    maintainers = ["stepanvanecek"]

    version("master", branch="master")
    version(
        "0.1.1-alpha.2", sha256="991a77cf37b061a911c8566fd4486f914de4f4c8cdf39112ec8a32903450c178"
    )

    depends_on("cmake@3.21:", type="build")
    depends_on("libxml2@2.9.13:")