[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/09: gnu: emacs-undo-fu-session: Update to 0.6-0.a6c4f73.
From: |
guix-commits |
Subject: |
03/09: gnu: emacs-undo-fu-session: Update to 0.6-0.a6c4f73. |
Date: |
Tue, 11 Jul 2023 12:07:27 -0400 (EDT) |
abcdw pushed a commit to branch master
in repository guix.
commit e7d554c8ad96af14314c631c11cbfae25d91d0c1
Author: Ahmad Draidi <a.r.draidi@redscript.org>
AuthorDate: Fri Jul 7 18:13:54 2023 +0400
gnu: emacs-undo-fu-session: Update to 0.6-0.a6c4f73.
* gnu/packages/emacs-xyz.scm (emacs-undo-fu-session): Update to
0.6-0.a6c4f73.
[source]: Download from new upstream URL.
[arguments]: Update #:test-command. Fix tests by adding
'--eval (setq undo-fu-session-ignore-temp-files nil)' to #:test-command.
[home-page]: Use new home-page.
Signed-off-by: Andrew Tropin <andrew@trop.in>
---
gnu/packages/emacs-xyz.scm | 20 ++++++++++++--------
1 file changed, 12 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 262097936a..b95e964ae8 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -5511,34 +5511,38 @@ allowing you to visit all previous states of the
document if you need.")
(license license:gpl3+))))
(define-public emacs-undo-fu-session
- ;; There are no tagged releases upstream on gitlab, instead we are using the
+ ;; There are no tagged releases upstream, instead we are using the
;; most recent commit.
- (let ((commit "56cdd3538a058c6916bdf2d9010c2179f2505829")
+ (let ((commit "a6c4f73bc22401fd36e0f2fd4fe058bb28566d84")
(revision "0"))
(package
(name "emacs-undo-fu-session")
- (version (git-version "0.2" revision commit))
+ (version (git-version "0.6" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
- (url "https://gitlab.com/ideasman42/emacs-undo-fu-session")
+ (url "https://codeberg.org/ideasman42/emacs-undo-fu-session")
(commit commit)))
(file-name (git-file-name name version))
(sha256
- (base32 "04wq1alrzzlidcb4mjb5j7pg68pks1vgv7kvvmi6dzb3l602mb2a"))))
+ (base32 "03pb88bi5z4f01972jbk9z6w9iqamqflfp20mih29ghvbiyn6ahj"))))
(build-system emacs-build-system)
(arguments
(list
#:tests? #t
- #:test-command #~(list "emacs" "--batch" "-l" "undo-fu-session.el"
- "-l" "undo-fu-session-test.el")
+ ;; The tests require temp files handling which a recent change disabled
+ ;; by default. We re-enable it here to make tests work again.
+ #:test-command #~(list "emacs" "--batch" "--eval"
+ "(setq undo-fu-session-ignore-temp-files nil)"
+ "-l" "tests/undo-fu-session-test.el"
+ "-f" "undo-fu-session-test-run-all")
#:phases
#~(modify-phases %standard-phases
(add-before 'check 'set-home
(lambda _
(setenv "HOME" "/tmp"))))))
- (home-page "https://gitlab.com/ideasman42/emacs-undo-fu-session")
+ (home-page "https://codeberg.org/ideasman42/emacs-undo-fu-session")
(synopsis "Save & recover undo steps between Emacs sessions")
(description "This package writes undo/redo information upon file save
which is restored where possible when the file is loaded again.")
- branch master updated (7858b74b77 -> 0cce3ac36e), guix-commits, 2023/07/11
- 04/09: gnu: emacs-mode-line-idle: Update to 0.2-0.1dc0115., guix-commits, 2023/07/11
- 05/09: gnu: emacs-scroll-on-drag: Update to 0.1-2.179c2ac., guix-commits, 2023/07/11
- 07/09: gnu: Add emacs-starlit-theme., guix-commits, 2023/07/11
- 06/09: gnu: emacs-dumbparens: Update to 0-1.59bb5ae., guix-commits, 2023/07/11
- 03/09: gnu: emacs-undo-fu-session: Update to 0.6-0.a6c4f73.,
guix-commits <=
- 01/09: gnu: emacs-spell-fu: Update to 0.3-1.67a26b7., guix-commits, 2023/07/11
- 02/09: gnu: emacs-undo-fu: Update to 0.5-0.0e22308., guix-commits, 2023/07/11
- 08/09: gnu: Add emacs-abyss-theme., guix-commits, 2023/07/11
- 09/09: gnu: Add emacs-sakura-theme., guix-commits, 2023/07/11