diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2015-11-23 15:39:08 -0800 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2015-11-23 15:39:08 -0800 |
commit | 9d4638ef4c22c338f9c2dce26ec21f438ab7b319 (patch) | |
tree | 7b8cf45fb0efa3ed97e9478b5c9f4e4ca2c58c90 | |
parent | be92d0b6a4074075e286e5d5249198afa4f22b57 (diff) | |
parent | 1330c10fc8ed4a4e9ddcb846f0b82644e34fd92d (diff) | |
download | spack-9d4638ef4c22c338f9c2dce26ec21f438ab7b319.tar.gz spack-9d4638ef4c22c338f9c2dce26ec21f438ab7b319.tar.bz2 spack-9d4638ef4c22c338f9c2dce26ec21f438ab7b319.tar.xz spack-9d4638ef4c22c338f9c2dce26ec21f438ab7b319.zip |
Merge pull request #196 from eschnett/hypre
Don't use https for downloading
-rw-r--r-- | var/spack/packages/hypre/package.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/packages/hypre/package.py b/var/spack/packages/hypre/package.py index 198b3f00dc..0f7f14dd89 100644 --- a/var/spack/packages/hypre/package.py +++ b/var/spack/packages/hypre/package.py @@ -5,8 +5,8 @@ class Hypre(Package): features parallel multigrid methods for both structured and unstructured grid problems.""" - homepage = "https://computation.llnl.gov/project/linear_solvers/software.php" - url = "https://computation.llnl.gov/project/linear_solvers/download/hypre-2.10.0b.tar.gz" + homepage = "http://computation.llnl.gov/project/linear_solvers/software.php" + url = "http://computation.llnl.gov/project/linear_solvers/download/hypre-2.10.0b.tar.gz" version('2.10.0b', '768be38793a35bb5d055905b271f5b8e') |