guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 5c8fb3d6d5b738705ae2a730da213e78e3bbc51f
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Sat Dec 6 09:33:02 2025 +0100

    gnu: emacs-hare-mode: Update to 0.2.0.
    
    * gnu/packages/emacs-xyz.scm (emacs-hare-mode): Update to 0.2.0.
    [source, home-page]: Update upstream URL.
    
    Change-Id: Ica2154f4b622f443ceab38a22c06517041bd97d9
---
 gnu/packages/emacs-xyz.scm | 40 ++++++++++++++++++----------------------
 1 file changed, 18 insertions(+), 22 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 7144c4bb98..779a1f00e4 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -46063,28 +46063,24 @@ should pop up.")
     (license license:gpl3+)))
 
 (define-public emacs-hare-mode
-  ;; XXX: Upstream did not tag any commit.  Using "Version:" keyword as base
-  ;; version.
-  (let ((commit "bb7b2faccb5939b0c8d4ffa6a6e28a0d2bc93dd6")
-        (revision "0"))
-    (package
-      (name "emacs-hare-mode")
-      (version (git-version "0.1.0" revision commit))
-      (source (origin
-                (method git-fetch)
-                (uri (git-reference
-                      (url "https://git.sr.ht/~bbuccianti/hare-mode";)
-                      (commit commit)))
-                (file-name (git-file-name name version))
-                (sha256
-                 (base32
-                  "13vjlmxfgwiljzjwkzhxzz565y34fggsbp840bxlwbwa6lsfrsa8"))))
-      (build-system emacs-build-system)
-      (home-page "https://git.sr.ht/~bbuccianti/hare-mode";)
-      (synopsis "Hare major mode for Emacs")
-      (description
-       "This package an Emacs major mode for the Hare programming language.")
-      (license license:gpl3+))))
+  (package
+    (name "emacs-hare-mode")
+    (version "0.2.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://git.sr.ht/~grafov/hare-mode";)
+                     (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0l31q53h3spw5g5fwa238dryxs563644gzgv1gcpshjda8dnmibf"))))
+    (build-system emacs-build-system)
+    (home-page "https://git.sr.ht/~grafov/hare-mode";)
+    (synopsis "Hare major mode for Emacs")
+    (description
+     "This package an Emacs major mode for the Hare programming language.")
+    (license license:gpl3+)))
 
 (define-public emacs-org-cliplink
   (let ((commit "13e0940b65d22bec34e2de4bc8cba1412a7abfbc")

Reply via email to