diff options
author | Kapil Arya <kapil@ccs.neu.edu> | 2023-06-24 02:00:20 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-24 11:00:20 +0200 |
commit | 4907315079a40b2a28205fecf213dbc37a598afc (patch) | |
tree | 87263a6f7347706575996c0d48a87eaba7acb383 | |
parent | 48168de1cc255307656a15f26186182c590be261 (diff) | |
download | spack-4907315079a40b2a28205fecf213dbc37a598afc.tar.gz spack-4907315079a40b2a28205fecf213dbc37a598afc.tar.bz2 spack-4907315079a40b2a28205fecf213dbc37a598afc.tar.xz spack-4907315079a40b2a28205fecf213dbc37a598afc.zip |
DMTCP: add v3.0.0. (#38307)
-rw-r--r-- | var/spack/repos/builtin/packages/dmtcp/package.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/dmtcp/package.py b/var/spack/repos/builtin/packages/dmtcp/package.py index 1480482b82..1eff1e4c16 100644 --- a/var/spack/repos/builtin/packages/dmtcp/package.py +++ b/var/spack/repos/builtin/packages/dmtcp/package.py @@ -12,10 +12,12 @@ class Dmtcp(AutotoolsPackage): with no modifications to user code or to the O/S.""" homepage = "http://dmtcp.sourceforge.net/" - url = "https://sourceforge.net/projects/dmtcp/files/2.6.0/dmtcp-2.6.0.tar.gz/download" + url = "https://github.com/dmtcp/dmtcp/archive/refs/tags/3.0.0.tar.gz" git = "https://github.com/dmtcp/dmtcp.git" + maintainers("karya0") version("master", branch="master") + version("3.0.0", sha256="2c7e95e1dbc55db33433bfee48a65f274298e98f246a36ab6dad1e0694750d37") version("2.6.0", sha256="3ed62a86dd0cb9c828b93ee8c7c852d6f9c96a0efa48bcfe867521adf7bced68") version("2.5.2", sha256="0e3e5e15bd401b7b6937f2b678cd7d6a252eab0a143d5740b89cc3bebb4282be") patch("for_aarch64.patch", when="@2.6.0 target=aarch64:") |