http-post: Fix checksum error (#21460)
This commit is contained in:
parent
4d194dc5e4
commit
1a6fe52486
1 changed files with 4 additions and 4 deletions
|
@ -12,15 +12,15 @@ class HttpPost(MakefilePackage):
|
||||||
to stdout. It does not do gopher, ftp, file, news, or any other type of
|
to stdout. It does not do gopher, ftp, file, news, or any other type of
|
||||||
URL, only HTTP. It can be configured to do HTTPS POSTs as well."""
|
URL, only HTTP. It can be configured to do HTTPS POSTs as well."""
|
||||||
|
|
||||||
homepage = "http://www.acme.com/software/http_post/"
|
homepage = "https://www.acme.com/software/http_post/"
|
||||||
url = "http://www.acme.com/software/http_post/http_post_18May2018.tar.gz"
|
url = "https://www.acme.com/software/http_post/http_post_18May2018.tar.gz"
|
||||||
|
|
||||||
version('2018-05-18', sha256='981c62bcc5cd12b8531f887b3e3779a63a7b7f370062575cded412865a20ea2c')
|
version('2018-05-18', sha256='6607faa91aea410efb9b86ae0b1b64541b55318831cf6bb3fdee5d68f8adab31')
|
||||||
|
|
||||||
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_post/http_post_{0}.tar.gz".format(verstr)
|
return "https://www.acme.com/software/http_post/http_post_{0}.tar.gz".format(verstr)
|
||||||
|
|
||||||
def edit(self, spec, prefix):
|
def edit(self, spec, prefix):
|
||||||
makefile = FileFilter("Makefile")
|
makefile = FileFilter("Makefile")
|
||||||
|
|
Loading…
Reference in a new issue