
* Added e4s-cl package * Version order change * Added e4s-cl dependencies * Added python-sotools dependency * [@spackbot] updating style on behalf of spoutn1k * Add missing versions to py- packages * Fix style * [@spackbot] updating style on behalf of spoutn1k * Update var/spack/repos/builtin/packages/e4s-cl/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * Update var/spack/repos/builtin/packages/e4s-cl/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * Update var/spack/repos/builtin/packages/py-python-sotools/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * Add docker removing patch for e4s-cl Co-authored-by: spoutn1k <spoutn1k@users.noreply.github.com> Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
37 lines
1.4 KiB
Python
37 lines
1.4 KiB
Python
# Copyright 2013-2022 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 E4sCl(PythonPackage):
|
|
"""Container Launcher for E4S containers, facilitating MPI library
|
|
translations"""
|
|
|
|
maintainers = ["spoutn1k", "FrederickDeny"]
|
|
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")
|
|
|
|
version("master", branch="master")
|
|
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"))
|