2023-01-19 06:30:17 +08:00
|
|
|
# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
|
2022-01-15 13:32:12 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2022-05-29 00:55:44 +08:00
|
|
|
from spack.package import *
|
2022-01-15 13:32:12 +08:00
|
|
|
|
|
|
|
|
|
|
|
class PyAts(PythonPackage):
|
|
|
|
"""ATS - Automated Testing System - is an open-source, Python-based tool
|
|
|
|
for automating the running of tests of an application across a broad range
|
|
|
|
of high performance computers."""
|
|
|
|
|
|
|
|
homepage = "https://github.com/LLNL/ATS"
|
|
|
|
git = "https://github.com/LLNL/ATS.git"
|
|
|
|
|
2023-02-02 13:07:25 +08:00
|
|
|
maintainers("white238")
|
2022-01-15 13:32:12 +08:00
|
|
|
|
2023-12-23 03:29:11 +08:00
|
|
|
license("MIT")
|
|
|
|
|
2022-01-15 13:32:12 +08:00
|
|
|
version("main", branch="main")
|
2023-08-29 22:33:03 +08:00
|
|
|
version("7.0.105", tag="7.0.105", commit="3a3461061d4493a002018f5bb3715db702212f72")
|
|
|
|
version("7.0.100", tag="7.0.100", commit="202c18d11b8f1c14f1a3361a6e45c9e4f83a3fa1")
|
|
|
|
version("7.0.5", tag="7.0.5", commit="86b0b18b96b179f97008393170f5e5bc95118867")
|
2022-01-15 13:32:12 +08:00
|
|
|
|
|
|
|
# TODO: Add flux variant when Flux functionality works in ATS
|
|
|
|
|
|
|
|
depends_on("python@3.8:", type=("build", "run"))
|
|
|
|
depends_on("py-numpy", type=("build", "run"))
|
|
|
|
depends_on("py-setuptools", type="build")
|