summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorChris White <white238@llnl.gov>2022-01-14 21:32:12 -0800
committerGitHub <noreply@github.com>2022-01-14 22:32:12 -0700
commited105fcc769634679e8b04f169e0cc1175ab8d8d (patch)
tree344af37159db9934a09cf64561583bf9e107a7fd /var
parent39f19bcc1687b78d4458daba62d29df4ed7be831 (diff)
downloadspack-ed105fcc769634679e8b04f169e0cc1175ab8d8d.tar.gz
spack-ed105fcc769634679e8b04f169e0cc1175ab8d8d.tar.bz2
spack-ed105fcc769634679e8b04f169e0cc1175ab8d8d.tar.xz
spack-ed105fcc769634679e8b04f169e0cc1175ab8d8d.zip
New Package: ATS (#28013)
* add py-ats package * add new 7.0.10 tag * add myself as a maintainer * add dependencies for python and setuptools * style * added todo for flux * words * update versions users should use
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-ats/package.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-ats/package.py b/var/spack/repos/builtin/packages/py-ats/package.py
new file mode 100644
index 0000000000..ed9dc8ebe5
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-ats/package.py
@@ -0,0 +1,27 @@
+# Copyright 2013-2021 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 import *
+
+
+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"
+
+ maintainers = ['white238']
+
+ version('main', branch='main')
+ version('7.0.100', tag='7.0.100')
+ version('7.0.5', tag='7.0.5')
+
+ # 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')