Change URLs from http to https in curl and openssl. (#46962)

This commit is contained in:
Jon Rood 2024-10-14 21:25:11 -06:00 committed by GitHub
parent 65d61e12c9
commit 2186ff720e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 4 deletions

View File

@ -22,8 +22,7 @@ class Curl(NMakePackage, AutotoolsPackage):
transferring data with URL syntax"""
homepage = "https://curl.se/"
# URL must remain http:// so Spack can bootstrap curl
url = "http://curl.haxx.se/download/curl-7.78.0.tar.bz2"
url = "https://curl.haxx.se/download/curl-7.78.0.tar.bz2"
executables = ["^curl$"]
tags = ["build-tools", "windows"]

View File

@ -18,8 +18,7 @@ class Openssl(Package): # Uses Fake Autotools, should subclass Package
homepage = "https://www.openssl.org"
# URL must remain http:// so Spack can bootstrap curl
url = "http://www.openssl.org/source/openssl-1.1.1d.tar.gz"
url = "https://www.openssl.org/source/openssl-1.1.1d.tar.gz"
list_url = "https://www.openssl.org/source/old/"
list_depth = 1