2024-01-02 16:21:30 +08:00
|
|
|
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
|
2023-01-28 02:02:39 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
|
|
from spack.package import *
|
|
|
|
|
|
|
|
|
|
|
|
class E4sCl(PythonPackage):
|
|
|
|
"""Container Launcher for E4S containers, facilitating MPI library
|
|
|
|
translations"""
|
|
|
|
|
2023-02-02 13:07:25 +08:00
|
|
|
maintainers("spoutn1k", "FrederickDeny")
|
2023-01-28 02:02:39 +08:00
|
|
|
homepage = "https://e4s-cl.readthedocs.io"
|
|
|
|
url = "https://oaciss.uoregon.edu/e4s/e4s-cl/releases"
|
|
|
|
git = "https://github.com/E4S-Project/e4s-cl"
|
|
|
|
|
|
|
|
tags = ["e4s"]
|
|
|
|
|
|
|
|
patch("drop-docker.patch", when="@:1.0.1")
|
|
|
|
|
2023-12-23 03:29:11 +08:00
|
|
|
license("MIT")
|
|
|
|
|
2023-01-28 02:02:39 +08:00
|
|
|
version("master", branch="master")
|
2024-08-27 13:26:12 +08:00
|
|
|
version("1.0.4", commit="9781a62af20f951e3c2c19a522f4fc16d20a256e")
|
2024-04-18 03:45:36 +08:00
|
|
|
version("1.0.3", commit="1b34fa7964273675ce18b9cd3006b4b87dda1ef2")
|
2023-01-28 02:02:39 +08:00
|
|
|
version("1.0.1", commit="b2c92993e0c7cb42de07f0f7cc02da3a06816192")
|
|
|
|
version("1.0.0", commit="410bb2e6601d9b90243a487ad7f7d2dabd8ba04c")
|
|
|
|
|
|
|
|
depends_on("python@3.7:", type=("build", "run"))
|
|
|
|
depends_on("py-setuptools", type="build")
|
|
|
|
|
|
|
|
depends_on("py-termcolor@1.1.0:", type=("build", "run"))
|
|
|
|
depends_on("py-pyyaml@6.0:", type=("build", "run"))
|
|
|
|
depends_on("py-texttable@1.6.2:", type=("build", "run"))
|
|
|
|
depends_on("py-python-ptrace@0.9.7:", type=("build", "run"))
|
|
|
|
depends_on("py-pyelftools@0.27", type=("build", "run"))
|
|
|
|
depends_on("py-requests@2.26.0:", type=("build", "run"))
|
|
|
|
depends_on("py-tinydb@4.5.2", type=("build", "run"))
|
|
|
|
depends_on("py-python-sotools@0.1.0", type=("build", "run"))
|