summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTamara Dahlgren <35777542+tldahlgren@users.noreply.github.com>2021-07-14 11:35:27 -0700
committerGitHub <noreply@github.com>2021-07-14 14:35:27 -0400
commita9e7f3a4e717b6e0385d6a987326b171c6bfc15a (patch)
tree5549cffffc02fbbcc60195882325c4c044bc0fe6
parent56c8f533cde590caca8afaec79a071336cb80f17 (diff)
downloadspack-a9e7f3a4e717b6e0385d6a987326b171c6bfc15a.tar.gz
spack-a9e7f3a4e717b6e0385d6a987326b171c6bfc15a.tar.bz2
spack-a9e7f3a4e717b6e0385d6a987326b171c6bfc15a.tar.xz
spack-a9e7f3a4e717b6e0385d6a987326b171c6bfc15a.zip
scotch: use https (#24891)
-rw-r--r--var/spack/repos/builtin/packages/scotch/package.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/scotch/package.py b/var/spack/repos/builtin/packages/scotch/package.py
index 73dcdcb03a..7aa55290c9 100644
--- a/var/spack/repos/builtin/packages/scotch/package.py
+++ b/var/spack/repos/builtin/packages/scotch/package.py
@@ -12,8 +12,8 @@ class Scotch(Package):
homepage = "https://gitlab.inria.fr/scotch/scotch"
git = "https://gitlab.inria.fr/scotch/scotch.git"
- url = "http://gforge.inria.fr/frs/download.php/latestfile/298/scotch_6.0.4.tar.gz"
- list_url = "http://gforge.inria.fr/frs/?group_id=248"
+ url = "https://gforge.inria.fr/frs/download.php/latestfile/298/scotch_6.0.4.tar.gz"
+ list_url = "https://gforge.inria.fr/frs/?group_id=248"
version('6.1.1', sha256='39052f59ff474a4a69cefc25cf3caf8429400889deba010ee6403ca188f8b311')
version('6.1.0', sha256='a3bc3fa3b243fcb52f8d68de4272562a0328afb18a96f535724d284e36730485')
@@ -70,7 +70,7 @@ class Scotch(Package):
# always grab these versions for older Scotch versions for simplicity.
@when('@:6.0.0')
def url_for_version(self, version):
- url = "http://gforge.inria.fr/frs/download.php/latestfile/298/scotch_{0}_esmumps.tar.gz"
+ url = "https://gforge.inria.fr/frs/download.php/latestfile/298/scotch_{0}_esmumps.tar.gz"
return url.format(version)
@property