From 98c08d277d0a2176aaa8acb3d2b6314ef680b2be Mon Sep 17 00:00:00 2001 From: FrederickDeny Date: Fri, 19 Apr 2024 14:54:23 -0700 Subject: [PATCH] e4s-alc: add new package (#43750) * Added e4s-cl@1.0.3 * add e4s-alc package * removed trailing whitespace --- .../repos/builtin/packages/e4s-alc/package.py | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 var/spack/repos/builtin/packages/e4s-alc/package.py diff --git a/var/spack/repos/builtin/packages/e4s-alc/package.py b/var/spack/repos/builtin/packages/e4s-alc/package.py new file mode 100644 index 0000000000..4a17632e48 --- /dev/null +++ b/var/spack/repos/builtin/packages/e4s-alc/package.py @@ -0,0 +1,28 @@ +# 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 E4sAlc(PythonPackage): + """Container file creator, facilitating the generation of + Dockerfiles and Singularity definition files infused with OS packages, + spack packages and custom commands""" + + maintainers("FrederickDeny", "PlatinumCD") + homepage = "https://github.com/E4S-Project/e4s-alc" + git = "https://github.com/E4S-Project/e4s-alc" + + tags = ["e4s"] + + license("MIT") + + version("main", branch="main") + version("1.0.1", commit="262298128a4991ffc773b1bd835687fb6493311e") + + depends_on("python@3.7:", type=("build", "run")) + depends_on("py-setuptools", type="build") + + depends_on("py-pyyaml@6.0:", type=("build", "run"))