ngz pushed a commit to branch master
in repository guix.

commit 3cc9bc10dccfb4251783b01e865fc91e8189dfb1
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Tue Dec 24 15:26:41 2024 +0100

    gnu: emacs-logos: Update to 1.2.0.
    
    * gnu/packages/emacs-xyz.scm (emacs-logos): Update to 1.2.0.
    
    Change-Id: I1c0c9aab0d1c75bdf256a57bebc2904c93f3da05
---
 gnu/packages/emacs-xyz.scm | 63 +++++++++++++++++++++++-----------------------
 1 file changed, 31 insertions(+), 32 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index f1820ea596..55661dd2aa 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -18880,41 +18880,40 @@ view your Denote directory.")
     (license license:gpl3+)))
 
 (define-public emacs-logos
-  (let ((commit "eeedd3ef289faa4fa2b726013255747a41a6ba9c")) ;version bump
-    (package
-      (name "emacs-logos")
-      (version "1.1.1")
-      (source (origin
-                (method git-fetch)
-                (uri (git-reference
-                      (url "https://git.sr.ht/~protesilaos/logos";)
-                      (commit commit)))
-                (file-name (git-file-name name version))
-                (sha256
-                 (base32
-                  "1p4akwpbc6x2k47g99wg4yvdz1wlnb2fqwgk06bfi3s4sv6lngbk"))))
-      (native-inputs (list texinfo))
-      (build-system emacs-build-system)
-      (arguments
-       (list
-        #:phases
-        #~(modify-phases %standard-phases
-            (add-after 'install 'makeinfo
-              (lambda* (#:key outputs #:allow-other-keys)
-                (invoke "emacs"
-                        "--batch"
-                        "--eval=(require 'ox-texinfo)"
-                        "--eval=(find-file \"README.org\")"
-                        "--eval=(org-texinfo-export-to-info)")
-                (install-file "logos.info" (string-append #$output 
"/share/info")))))))
-      (home-page "https://protesilaos.com/emacs/logos";)
-      (synopsis "Simple focus mode for Emacs")
-      (description "This package provides a simple focus mode which can be
+  (package
+    (name "emacs-logos")
+    (version "1.2.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/protesilaos/logos";)
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0yjhvmzdzyi9hy46420i2zp00m0p89lca3bjs749i8izpllv8kxr"))))
+    (native-inputs (list texinfo))
+    (build-system emacs-build-system)
+    (arguments
+     (list
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'install 'makeinfo
+            (lambda* (#:key outputs #:allow-other-keys)
+              (invoke "emacs"
+                      "--batch"
+                      "--eval=(require 'ox-texinfo)"
+                      "--eval=(find-file \"README.org\")"
+                      "--eval=(org-texinfo-export-to-info)")
+              (install-file "logos.info" (string-append #$output 
"/share/info")))))))
+    (home-page "https://protesilaos.com/emacs/logos";)
+    (synopsis "Simple focus mode for Emacs")
+    (description "This package provides a simple focus mode which can be
 applied to any buffer for reading, writing, or even doing a presentation.  The
 buffer can be divided in pages using the @code{page-delimiter}, outline
 structure, or any other pattern.")
-      (license (list license:gpl3+
-                     license:fdl1.3+))))) ; GFDLv1.3+ for the manual
+    (license (list license:gpl3+
+                   license:fdl1.3+)))) ; GFDLv1.3+ for the manual
 
 (define-public emacs-tmr
   (package

Reply via email to