http-ping: Fix checksum error (#21457)

This commit is contained in:
Tomoyasu Nojiri 2021-02-04 02:02:42 +09:00 committed by GitHub
parent 0a0e0b9b67
commit 6f4b7870f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,15 +11,15 @@ class HttpPing(MakefilePackage):
"""http_ping is like the regular ping command, except that it sends
HTTP requests instead of ICMP echo requests."""
homepage = "http://www.acme.com/software/http_ping/"
url = "http://www.acme.com/software/http_ping/http_ping_09Mar2016.tar.gz"
homepage = "https://www.acme.com/software/http_ping/"
url = "https://www.acme.com/software/http_ping/http_ping_09Mar2016.tar.gz"
version('2016-03-09', sha256='6bdc570c776a760d2c08f7d18e00b0edd74cf603400929c66c512801b6bb5871')
version('2016-03-09', sha256='f8b95773aaed09839a44a1927f979a62752d57aace79da3846bfb73e6c9805e9')
def url_for_version(self, version):
ver = datetime.datetime.strptime(str(version), '%Y-%m-%d').date()
verstr = datetime.datetime.strftime(ver, '%d%b%Y')
return "http://www.acme.com/software/http_ping/http_ping_{0}.tar.gz".format(verstr)
return "https://www.acme.com/software/http_ping/http_ping_{0}.tar.gz".format(verstr)
def edit(self, spec, prefix):
makefile = FileFilter("Makefile")