http-ping: Fix checksum error (#21457)
This commit is contained in:
parent
0a0e0b9b67
commit
6f4b7870f2
@ -11,15 +11,15 @@ class HttpPing(MakefilePackage):
|
|||||||
"""http_ping is like the regular ping command, except that it sends
|
"""http_ping is like the regular ping command, except that it sends
|
||||||
HTTP requests instead of ICMP echo requests."""
|
HTTP requests instead of ICMP echo requests."""
|
||||||
|
|
||||||
homepage = "http://www.acme.com/software/http_ping/"
|
homepage = "https://www.acme.com/software/http_ping/"
|
||||||
url = "http://www.acme.com/software/http_ping/http_ping_09Mar2016.tar.gz"
|
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):
|
def url_for_version(self, version):
|
||||||
ver = datetime.datetime.strptime(str(version), '%Y-%m-%d').date()
|
ver = datetime.datetime.strptime(str(version), '%Y-%m-%d').date()
|
||||||
verstr = datetime.datetime.strftime(ver, '%d%b%Y')
|
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):
|
def edit(self, spec, prefix):
|
||||||
makefile = FileFilter("Makefile")
|
makefile = FileFilter("Makefile")
|
||||||
|
Loading…
Reference in New Issue
Block a user