gnu: letsencrypt and acme: Update to 0.1.1.
These packages should be updated together. * gnu/packages/tls.scm (letsencrypt): Update to 0.1.1. [source]: Use pypi-uri. * gnu/packages/tls.scm (acme): Update to 0.1.1. [source]: Use pypi-uri.
This commit is contained in:
parent
704989660f
commit
ef9006451f
|
@ -351,14 +351,13 @@ security, and applying best practice development processes.")
|
||||||
(define-public acme
|
(define-public acme
|
||||||
(package
|
(package
|
||||||
(name "acme")
|
(name "acme")
|
||||||
(version "0.1.0")
|
(version "0.1.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://pypi.python.org/packages/source/a/acme/acme-"
|
(uri (pypi-uri "acme" version))
|
||||||
version ".tar.gz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0fj0m04zzdxx23vazl00ilqyl3jxqq9c9p4x61pfz1zps7nbzsy3"))))
|
"1yv0gy8akaqp5p2wjpfj8r5i0da04a9qdmlh06rczdkrmk6q680w"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:python ,python-2))
|
`(#:python ,python-2))
|
||||||
|
@ -384,14 +383,13 @@ security, and applying best practice development processes.")
|
||||||
(define-public letsencrypt
|
(define-public letsencrypt
|
||||||
(package
|
(package
|
||||||
(name "letsencrypt")
|
(name "letsencrypt")
|
||||||
(version "0.1.0")
|
(version "0.1.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://pypi.python.org/packages/source/l/"
|
(uri (pypi-uri "letsencrypt" version))
|
||||||
"letsencrypt/letsencrypt-" version ".tar.gz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1zb96xz32k6ai41h5m1l22qi47y71dq69dcmbz7vfm6jfrhjgxl1"))))
|
"1kia3wk66lxyi2fghp9sd7cqgr5qiwdfayz153hi4wpa3q1q8rwf"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:python ,python-2))
|
`(#:python ,python-2))
|
||||||
|
|
Loading…
Reference in New Issue