gnu: emacs-request: Update to latest commit.

* gnu/packages/emacs-xyz.scm (emacs-request): Update to latest commit.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
Niklas Eklund 2020-10-15 22:23:58 +02:00 committed by Nicolas Goaziou
parent b04198a147
commit 92797b3b88
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D

View File

@ -7044,29 +7044,33 @@ parallel.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public emacs-request (define-public emacs-request
(package ;; We prefer a more recent commit that has support for auth-source,
(name "emacs-request") ;; which makes authentication more convenient for users and maintainers.
(version "0.3.2") (let ((commit "d02d1347ffdf138cffd380cbeac62ac8732036ef")
(source (origin (revision "0"))
(method git-fetch) (package
(uri (git-reference (name "emacs-request")
(url "https://github.com/tkf/emacs-request") (version (git-version "0.3.2" revision commit))
(commit (string-append "v" version)))) (source (origin
(file-name (git-file-name name version)) (method git-fetch)
(sha256 (uri (git-reference
(base32 (url "https://github.com/tkf/emacs-request")
"1djywhvvb6kwdj0nd3axjvb7k2g06dzkc6hsf29w9rsk96vr8ryl")))) (commit commit)))
(build-system emacs-build-system) (file-name (git-file-name name version))
(arguments (sha256
`(#:tests? #f)) ; requires network access. (base32
(propagated-inputs "1rkpakzish2d470ca15yq3k0m1j7a2lrkvvddcyvc2rx0sncsdjs"))))
`(("emacs-deferred" ,emacs-deferred))) (build-system emacs-build-system)
(home-page "https://github.com/tkf/emacs-request") (arguments
(synopsis "Package for speaking HTTP in Emacs Lisp") `(#:tests? #f)) ; requires network access.
(description "This package provides a HTTP request library with multiple (propagated-inputs
`(("emacs-deferred" ,emacs-deferred)))
(home-page "https://github.com/tkf/emacs-request")
(synopsis "Package for speaking HTTP in Emacs Lisp")
(description "This package provides a HTTP request library with multiple
backends. It supports url.el which is shipped with Emacs and the curl command backends. It supports url.el which is shipped with Emacs and the curl command
line program.") line program.")
(license license:gpl3+))) (license license:gpl3+))))
(define-public emacs-rudel (define-public emacs-rudel
(package (package