guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: emacs-crdt: Update to 0.1.3.


From: guix-commits
Subject: branch master updated: gnu: emacs-crdt: Update to 0.1.3.
Date: Wed, 01 Sep 2021 04:33:44 -0400

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 5296671  gnu: emacs-crdt: Update to 0.1.3.
5296671 is described below

commit 5296671f8f764e61b0a963aba9cd49e5407fcfbd
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Wed Sep 1 10:33:10 2021 +0200

    gnu: emacs-crdt: Update to 0.1.3.
    
    * gnu/packages/emacs-xyz.scm (emacs-crdt): Update to 0.1.3.
---
 gnu/packages/emacs-xyz.scm | 39 ++++++++++++++++++---------------------
 1 file changed, 18 insertions(+), 21 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index fd17d95..cdc388f 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -18075,31 +18075,28 @@ confused by comments or @code{foo-bar} matching 
@code{foo}.")
     (license license:gpl3+)))
 
 (define-public emacs-crdt
-  ;; XXX: Upstream has no tags but the commit below corresponds to the exact
-  ;; version of the package.
-  (let ((commit "8cbd0fd584257b484891a5062b64c63cf049e955"))
-    (package
-      (name "emacs-crdt")
-      (version "0.1.1")
-      (source
-       (origin
-         (method git-fetch)
-         (uri (git-reference
-               (url "https://code.librehq.com/qhong/crdt.el";)
-               (commit commit)))
-         (file-name (git-file-name name version))
-         (sha256
-          (base32 "0h2lmyxjrzv9253m4068b4np5vkmngmvly10xrc86mi1z9w24xc5"))))
-      (build-system emacs-build-system)
-      (home-page "https://code.librehq.com/qhong/crdt.el";)
-      (synopsis "Real-time collaborative editing environment")
-      (description
-       "@code{crdt.el} is a real-time collaborative editing environment for
+  (package
+    (name "emacs-crdt")
+    (version "0.1.3")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://code.librehq.com/qhong/crdt.el";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "18aa2pybgfamll0jb4l18nggr6whzqd8mmd3kh8if4d685pc50p5"))))
+    (build-system emacs-build-system)
+    (home-page "https://code.librehq.com/qhong/crdt.el";)
+    (synopsis "Real-time collaborative editing environment")
+    (description
+     "@code{crdt.el} is a real-time collaborative editing environment for
 Emacs using Conflict-free Replicated Data Types.  With it, you can share
 multiple buffer in one session, and see other users’ cursor and region.  It
 also synchronizes Org mode folding status.  It should work with all of Org
 mode.")
-      (license license:gpl3+))))
+    (license license:gpl3+)))
 
 (define-public emacs-crux
   (package



reply via email to

[Prev in Thread] Current Thread [Next in Thread]