[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: emacs-geiser: Update to 0.17.
From: |
guix-commits |
Subject: |
branch master updated: gnu: emacs-geiser: Update to 0.17. |
Date: |
Fri, 13 Aug 2021 09:31:01 -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 f16e4d8 gnu: emacs-geiser: Update to 0.17.
f16e4d8 is described below
commit f16e4d85dd044d7d8875b863c2fb8a990f1de70a
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Fri Aug 13 15:30:37 2021 +0200
gnu: emacs-geiser: Update to 0.17.
* gnu/packages/emacs-xyz.scm (emacs-geiser): Update to 0.17.
[arguments]<#:phases>: Fix a typo prior to generating the documentation.
---
gnu/packages/emacs-xyz.scm | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index d420def..59612c1 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -231,7 +231,7 @@
(define-public emacs-geiser
(package
(name "emacs-geiser")
- (version "0.16")
+ (version "0.17")
(source
(origin
(method git-fetch)
@@ -240,7 +240,7 @@
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "18gx7ak2ldpmqbimnq221dn2qg7qwm5n1mj6ajymwkgvqwcrsl2r"))))
+ (base32 "07g1zlf9kmfish2wa6m376xba0nv6n4spw8wbmr90a56xj0qpswc"))))
(build-system emacs-build-system)
(arguments
'(#:phases
@@ -252,10 +252,12 @@
(let ((el-files (find-files "./elisp" ".*\\.el$")))
(for-each (lambda (f)
(rename-file f (basename f)))
- el-files))
- #t))
+ el-files))))
(add-before 'install 'make-info
(lambda _
+ ;; XXX: Fix a typo in the ".texi" file below.
+ (substitute* "doc/install.texi"
+ (("\\}\\{NonGNU ELPA\\}") ",NonGNU ELPA}"))
(with-directory-excursion "doc"
(invoke "makeinfo" "--no-split"
"-o" "geiser.info" "geiser.texi")))))))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: emacs-geiser: Update to 0.17.,
guix-commits <=