diff options
author | FrederickDeny <denyfrederick@gmail.com> | 2024-04-19 14:54:23 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-19 15:54:23 -0600 |
commit | 98c08d277d0a2176aaa8acb3d2b6314ef680b2be (patch) | |
tree | 911934d149bc84fb699f7140124c9528e1125ac4 /var | |
parent | facca4e2c8780de62b7244aaf7b5bcacc7252905 (diff) | |
download | spack-98c08d277d0a2176aaa8acb3d2b6314ef680b2be.tar.gz spack-98c08d277d0a2176aaa8acb3d2b6314ef680b2be.tar.bz2 spack-98c08d277d0a2176aaa8acb3d2b6314ef680b2be.tar.xz spack-98c08d277d0a2176aaa8acb3d2b6314ef680b2be.zip |
e4s-alc: add new package (#43750)
* Added e4s-cl@1.0.3
* add e4s-alc package
* removed trailing whitespace
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/e4s-alc/package.py | 28 |
1 files changed, 28 insertions, 0 deletions
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")) |