Archived
1
0
Fork 0

gnu: certbot, python-acme: Update to 1.13.0.

* gnu/packages/tls.scm (python-acme): Update to 1.13.0.
[native-inputs]: Remove python-mock.
[propagated-inputs]: Remove python-six.
(certbot): Update to 1.13.0.
[propagated-inputs]: Remove python-six.
[arguments]: Remove 'build-documentation' phase.
This commit is contained in:
Leo Famulari 2021-03-11 18:32:07 -05:00
parent 09c05fde52
commit c3a7537396
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -576,13 +576,13 @@ netcat implementation that supports TLS.")
(package (package
(name "python-acme") (name "python-acme")
;; Remember to update the hash of certbot when updating python-acme. ;; Remember to update the hash of certbot when updating python-acme.
(version "1.12.0") (version "1.13.0")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "acme" version)) (uri (pypi-uri "acme" version))
(sha256 (sha256
(base32 (base32
"1wn2jvkg18z31nd060hfcp2yqvxjxykim2ybgaidv7qfsms38dma")))) "1260a7bcgmha19drqzn6syz3cy61482b3w6lihgg1md6svgmfhkb"))))
(build-system python-build-system) (build-system python-build-system)
(arguments (arguments
`(#:phases `(#:phases
@ -599,8 +599,7 @@ netcat implementation that supports TLS.")
(install-file "docs/_build/man/acme-python.1" man) (install-file "docs/_build/man/acme-python.1" man)
#t)))))) #t))))))
(native-inputs (native-inputs
`(("python-mock" ,python-mock) `(("python-pytest" ,python-pytest)
("python-pytest" ,python-pytest)
;; For documentation ;; For documentation
("python-sphinx" ,python-sphinx) ("python-sphinx" ,python-sphinx)
("python-sphinxcontrib-programoutput" ,python-sphinxcontrib-programoutput) ("python-sphinxcontrib-programoutput" ,python-sphinxcontrib-programoutput)
@ -608,7 +607,6 @@ netcat implementation that supports TLS.")
("texinfo" ,texinfo))) ("texinfo" ,texinfo)))
(propagated-inputs (propagated-inputs
`(("python-josepy" ,python-josepy) `(("python-josepy" ,python-josepy)
("python-six" ,python-six)
("python-requests" ,python-requests) ("python-requests" ,python-requests)
("python-requests-toolbelt" ,python-requests-toolbelt) ("python-requests-toolbelt" ,python-requests-toolbelt)
("python-pytz" ,python-pytz) ("python-pytz" ,python-pytz)
@ -632,20 +630,12 @@ netcat implementation that supports TLS.")
(uri (pypi-uri "certbot" version)) (uri (pypi-uri "certbot" version))
(sha256 (sha256
(base32 (base32
"0nfzk6fzyfqy8lgs5lmxfndrdh5c2ljdvzj39rwvgg3r6ivkirsy")))) "0n7lwajmlypkqgsd2cv74j41f5ag381skjlzhjfpsrppgnsl3kv4"))))
(build-system python-build-system) (build-system python-build-system)
(arguments (arguments
`(,@(substitute-keyword-arguments (package-arguments python-acme) `(,@(substitute-keyword-arguments (package-arguments python-acme)
((#:phases phases) ((#:phases phases)
`(modify-phases ,phases `(modify-phases ,phases
(replace 'build-documentation
(lambda _
;; Fix building the manual page in 1.12.0:
;; https://github.com/certbot/certbot/issues/8633
;; TODO Remove the substitution in later releases.
(substitute* "docs/conf.py"
(("'man',") ""))
(invoke "make" "-C" "docs" "man" "info")))
(replace 'install-documentation (replace 'install-documentation
(lambda* (#:key outputs #:allow-other-keys) (lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out")) (let* ((out (assoc-ref outputs "out"))
@ -676,7 +666,6 @@ netcat implementation that supports TLS.")
("python-distro" ,python-distro) ("python-distro" ,python-distro)
("python-zope-component" ,python-zope-component) ("python-zope-component" ,python-zope-component)
("python-parsedatetime" ,python-parsedatetime) ("python-parsedatetime" ,python-parsedatetime)
("python-six" ,python-six)
("python-psutil" ,python-psutil) ("python-psutil" ,python-psutil)
("python-requests" ,python-requests) ("python-requests" ,python-requests)
("python-pytz" ,python-pytz))) ("python-pytz" ,python-pytz)))