
* unmaintained packages: add new versions * Fix parallel and numactl * Revert numactl changes * rollback lua-sol2 version * Update alluxio version format
25 lines
1.0 KiB
Python
25 lines
1.0 KiB
Python
# 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 Hydra(AutotoolsPackage):
|
|
"""Hydra is a process management system for starting parallel jobs.
|
|
Hydra is designed to natively work with existing launcher daemons
|
|
(such as ssh, rsh, fork), as well as natively integrate with resource
|
|
management systems (such as slurm, pbs, sge)."""
|
|
|
|
homepage = "https://www.mpich.org"
|
|
url = "https://www.mpich.org/static/downloads/3.2/hydra-3.2.tar.gz"
|
|
list_url = "https://www.mpich.org/static/downloads/"
|
|
list_depth = 1
|
|
|
|
license("AGPL-3.0-or-later")
|
|
|
|
version("4.2.0", sha256="d7159353d9d0576effba632668a3e6defde2067530ac5db4bae0a85a23dfda5a")
|
|
version("4.1.1", sha256="d4b915ccab426cd8368bbb2ee9d933fe07bea01493901fb56880b338a7f0b97e")
|
|
version("3.2", sha256="f7a67ec91a773d95cbbd479a80e926d44bee1ff9fc70a8d1df075ea53ea33889")
|