summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authormlawsonca <mlawsonca@users.noreply.github.com>2021-01-19 14:58:38 -0800
committerGitHub <noreply@github.com>2021-01-19 16:58:38 -0600
commit881ca8406cfddfae1f1cabb7e9ceca3d0af6e86c (patch)
tree8406f32a465c6eb505492058e603af8de68db716 /var
parent8a92ebd5049c9f05628295b68cad2ca8b5b45e10 (diff)
downloadspack-881ca8406cfddfae1f1cabb7e9ceca3d0af6e86c.tar.gz
spack-881ca8406cfddfae1f1cabb7e9ceca3d0af6e86c.tar.bz2
spack-881ca8406cfddfae1f1cabb7e9ceca3d0af6e86c.tar.xz
spack-881ca8406cfddfae1f1cabb7e9ceca3d0af6e86c.zip
fixing outdated metis link (#21003)
* fixing outdated metis link * updated url to the official website since the previous url was a GitHub repo that is an unofficial mirror that only contains the latest version
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/metis/package.py15
1 files changed, 4 insertions, 11 deletions
diff --git a/var/spack/repos/builtin/packages/metis/package.py b/var/spack/repos/builtin/packages/metis/package.py
index 89ac12688d..9a44823f9f 100644
--- a/var/spack/repos/builtin/packages/metis/package.py
+++ b/var/spack/repos/builtin/packages/metis/package.py
@@ -16,19 +16,12 @@ class Metis(Package):
multilevel recursive-bisection, multilevel k-way, and multi-constraint
partitioning schemes."""
- #
- # The original metis website: http://glaros.dtc.umn.edu/gkhome/metis/metis/overview
- # is down sometimes. This is a github mirror that provides metis 5.1.0
- #
-
- homepage = "https://github.com/scivision/METIS/"
- url = "https://github.com/scivision/METIS/raw/master/metis-5.1.0.tar.gz"
+ homepage = "http://glaros.dtc.umn.edu/gkhome/metis/metis/overview"
+ url = "http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/metis-5.1.0.tar.gz"
+ list_url = "http://glaros.dtc.umn.edu/gkhome/fsroot/sw/metis/OLD"
version('5.1.0', sha256='76faebe03f6c963127dbb73c13eab58c9a3faeae48779f049066a21c087c5db2')
- # For v4.0.3, use the original metis website since this version is not
- # mirrored at the above github location.
- version('4.0.3', url='http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/metis-4.0.3.tar.gz',
- sha256='5efa35de80703c1b2c4d0de080fafbcf4e0d363a21149a1ad2f96e0144841a55')
+ version('4.0.3', sha256='5efa35de80703c1b2c4d0de080fafbcf4e0d363a21149a1ad2f96e0144841a55')
variant('shared', default=True, description='Enables the build of shared libraries.')
variant('gdb', default=False, description='Enables gdb support (version 5+).')