diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2015-09-29 18:21:37 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2015-09-29 18:21:37 -0700 |
commit | cc6252cdfac15533efa0aadc185e5654060d8ca8 (patch) | |
tree | 5294604d70c06697cc3db208e7609709d58b1c1f | |
parent | dd21a01dc41c648b3e6b289256f2043bd3b867f4 (diff) | |
parent | 5563c666758f593b311a2de3e47cf617966a4c25 (diff) | |
download | spack-cc6252cdfac15533efa0aadc185e5654060d8ca8.tar.gz spack-cc6252cdfac15533efa0aadc185e5654060d8ca8.tar.bz2 spack-cc6252cdfac15533efa0aadc185e5654060d8ca8.tar.xz spack-cc6252cdfac15533efa0aadc185e5654060d8ca8.zip |
Merge pull request #118 from scalability-llnl/features/scr
update scr to 1.1.8
-rw-r--r-- | var/spack/packages/scr/package.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/var/spack/packages/scr/package.py b/var/spack/packages/scr/package.py index 74b75a8742..9fb758f072 100644 --- a/var/spack/packages/scr/package.py +++ b/var/spack/packages/scr/package.py @@ -28,12 +28,14 @@ class Scr(Package): """SCR caches checkpoint data in storage on the compute nodes of a Linux cluster to provide a fast, scalable checkpoint/restart capability for MPI codes""" + homepage = "https://computation.llnl.gov/project/scr/" - url = "http://downloads.sourceforge.net/project/scalablecr/releases/scr-1.1-7.tar.gz" depends_on("mpi") +# depends_on("dtcmp") - version('1.1-7', 'a5930e9ab27d1b7049447c2fd7734ebd') + version('1.1-7', 'a5930e9ab27d1b7049447c2fd7734ebd', url='http://downloads.sourceforge.net/project/scalablecr/releases/scr-1.1-7.tar.gz') + version('1.1.8', '6a0f11ad18e27fcfc00a271ff587b06e', url='https://github.com/hpc/scr/releases/download/v1.1.8/scr-1.1.8.tar.gz') def install(self, spec, prefix): configure("--prefix=" + prefix, |