[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: emacs-undo-tree: Update to 0.7.4.
From: |
guix-commits |
Subject: |
branch master updated: gnu: emacs-undo-tree: Update to 0.7.4. |
Date: |
Sat, 06 Jun 2020 06:24:16 -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 8f21dda gnu: emacs-undo-tree: Update to 0.7.4.
8f21dda is described below
commit 8f21ddad41dcdc5356b5b4af0928e3f51fb6ec36
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sat Jun 6 12:23:00 2020 +0200
gnu: emacs-undo-tree: Update to 0.7.4.
* gnu/packages/emacs-xyz.scm (emacs-undo-tree): Update to 0.7.4.
[source]: Use GNU ELPA repository.
---
gnu/packages/emacs-xyz.scm | 21 ++++++++++-----------
1 file changed, 10 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index be7044d..34e4bab 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -2675,20 +2675,19 @@ in the center.")
(define-public emacs-undo-tree
(package
(name "emacs-undo-tree")
- (version "0.7.1")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "http://dr-qubit.org/git/undo-tree.git")
- (commit (string-append "release/" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1nr0149y2nvrxj56gc12jqnfl01g6z9ypfsgl6pfg85cw73hnggk"))))
+ (version "0.7.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://elpa.gnu.org/packages/"
+ "undo-tree-" version ".el"))
+ (sha256
+ (base32 "018ixl802f076sfyf4gkacpgrdpybin88jd8vq9zgyvc6x2dalfa"))))
(build-system emacs-build-system)
(home-page "http://www.dr-qubit.org/emacs.php")
(synopsis "Treat undo history as a tree")
- (description "Tree-like interface to Emacs undo system, providing
+ (description
+ "Tree-like interface to Emacs undo system, providing
graphical tree presentation of all previous states of buffer that
allows easily move between them.")
(license license:gpl3+)))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: emacs-undo-tree: Update to 0.7.4.,
guix-commits <=