[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: emacs-promise: Update to 1.1-1.cec51fe.
From: |
guix-commits |
Subject: |
branch master updated: gnu: emacs-promise: Update to 1.1-1.cec51fe. |
Date: |
Sat, 28 Jan 2023 05:30:27 -0500 |
This is an automated email from the git hooks/post-receive script.
ngz pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 37fdb382da gnu: emacs-promise: Update to 1.1-1.cec51fe.
37fdb382da is described below
commit 37fdb382dad47149d8f5be41af108478800e9d30
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sat Jan 28 11:29:00 2023 +0100
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.
---
gnu/packages/emacs-xyz.scm | 54 +++++++++++++++++++++++-----------------------
1 file changed, 27 insertions(+), 27 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index a40a99bd36..59a03f5db1 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -33777,35 +33777,35 @@ provides an easy way to bind keys under a
configurable prefix key.")
(license license:gpl3+))))
(define-public emacs-promise
- (package
- (name "emacs-promise")
- (version "1.1")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/chuntaro/emacs-promise")
- (commit version)))
- (file-name (git-file-name name version))
- (sha256
- (base32 "1xb34zdbwjvahfhycjphdkm925kgd22dr298c57hwxza4ljc2hxj"))))
- (build-system emacs-build-system)
- (home-page "https://github.com/chuntaro/emacs-promise")
- (synopsis "Promises/A+ for Emacs")
- (description "This is a simple implementation of Promises/A+.
+ ;; XXX: Last stable release fails to build with "(wrong-number-of-arguments
+ ;; (3 . 4) 2)" error.
+ (let ((commit "cec51feb5f957e8febe6325335cf57dc2db6be30")
+ (revision "1"))
+ (package
+ (name "emacs-promise")
+ (version (git-version "1.1" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/chuntaro/emacs-promise")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1kxsdgg5byw9zddf8jkc3h87mb4k5pnjdpskaagkahc0xg3w18d7"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/chuntaro/emacs-promise")
+ (synopsis "Promises/A+ for Emacs")
+ (description "This is a simple implementation of Promises/A+.
-This implementation ports the following Promises/A+ features
-faithfully. See @url{https://github.com/then/promise}.
+This implementation ports the following Promises/A+ features faithfully. See
+@url{https://github.com/then/promise}.
-@itemize
-@item The same API as the JavaScript version of Promise can be used.
-@item It has all the @code{then}, @code{catch}, @code{resolve}, @code{reject},
-@code{all}, @code{race}, etc.
-@item It supports \"thenable\".
-@item It supports \"Inheritance of Promise\".
-@item It supports \"rejection-tracking\".
-@end itemize\n")
- (license license:gpl3+)))
+The same API as the JavaScript version of Promise can be used. It has all the
+@code{then}, @code{catch}, @code{resolve}, @code{reject}, @code{all},
+@code{race}, etc. It also supports @code{thenable}, inheritance of promise
+and rejection tracking.")
+ (license license:gpl3+))))
(define-public emacs-async-await
(package
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: emacs-promise: Update to 1.1-1.cec51fe.,
guix-commits <=