mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: emacs-promise: Update to 1.1-1.cec51fe.
* gnu/packages/emacs-xyz.scm (emacs-promise): Update to 1.1-1.cec51fe. [description]: Reword description.
This commit is contained in:
parent
c08b62195c
commit
37fdb382da
1 changed files with 27 additions and 27 deletions
|
@ -33777,35 +33777,35 @@ provides an easy way to bind keys under a configurable prefix key.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-promise
|
(define-public emacs-promise
|
||||||
|
;; XXX: Last stable release fails to build with "(wrong-number-of-arguments
|
||||||
|
;; (3 . 4) 2)" error.
|
||||||
|
(let ((commit "cec51feb5f957e8febe6325335cf57dc2db6be30")
|
||||||
|
(revision "1"))
|
||||||
(package
|
(package
|
||||||
(name "emacs-promise")
|
(name "emacs-promise")
|
||||||
(version "1.1")
|
(version (git-version "1.1" revision commit))
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/chuntaro/emacs-promise")
|
(url "https://github.com/chuntaro/emacs-promise")
|
||||||
(commit version)))
|
(commit commit)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1xb34zdbwjvahfhycjphdkm925kgd22dr298c57hwxza4ljc2hxj"))))
|
(base32 "1kxsdgg5byw9zddf8jkc3h87mb4k5pnjdpskaagkahc0xg3w18d7"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(home-page "https://github.com/chuntaro/emacs-promise")
|
(home-page "https://github.com/chuntaro/emacs-promise")
|
||||||
(synopsis "Promises/A+ for Emacs")
|
(synopsis "Promises/A+ for Emacs")
|
||||||
(description "This is a simple implementation of Promises/A+.
|
(description "This is a simple implementation of Promises/A+.
|
||||||
|
|
||||||
This implementation ports the following Promises/A+ features
|
This implementation ports the following Promises/A+ features faithfully. See
|
||||||
faithfully. See @url{https://github.com/then/promise}.
|
@url{https://github.com/then/promise}.
|
||||||
|
|
||||||
@itemize
|
The same API as the JavaScript version of Promise can be used. It has all the
|
||||||
@item The same API as the JavaScript version of Promise can be used.
|
@code{then}, @code{catch}, @code{resolve}, @code{reject}, @code{all},
|
||||||
@item It has all the @code{then}, @code{catch}, @code{resolve}, @code{reject},
|
@code{race}, etc. It also supports @code{thenable}, inheritance of promise
|
||||||
@code{all}, @code{race}, etc.
|
and rejection tracking.")
|
||||||
@item It supports \"thenable\".
|
(license license:gpl3+))))
|
||||||
@item It supports \"Inheritance of Promise\".
|
|
||||||
@item It supports \"rejection-tracking\".
|
|
||||||
@end itemize\n")
|
|
||||||
(license license:gpl3+)))
|
|
||||||
|
|
||||||
(define-public emacs-async-await
|
(define-public emacs-async-await
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue