ngz pushed a commit to branch master
in repository guix.

commit 2ec3505a03af085aa1264e505b2d8169df7d02b4
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Sun Jul 21 16:24:46 2024 +0200

    gnu: emacs-which-key: Update to 3.6.1.
    
    * gnu/packages/emacs-xyz.scm (emacs-which-key): Update to 3.6.1.
    [source]: Set upstream to GNU ELPA.  Old GitHub repository is now archived
    since the package will be bundled in Emacs 30+.
    [arguments]: Do not run tests, which are not present in ELPA.
    
    Change-Id: I803a537a236621c836c8c20ceb5c341f41080efc
---
 gnu/packages/emacs-xyz.scm | 21 +++++++--------------
 1 file changed, 7 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 4b70dccd0e..834208e7f8 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -21082,24 +21082,17 @@ as a modern file manager.")
 (define-public emacs-which-key
   (package
     (name "emacs-which-key")
-    (version "3.6.0")
+    (version "3.6.1")
     (source
      (origin
-       (method git-fetch)
-       (uri (git-reference
-             (url "https://github.com/justbur/emacs-which-key";)
-             (commit (string-append "v" version))))
-       (file-name (git-file-name name version))
+       (method url-fetch)
+       (uri (string-append "https://elpa.gnu.org/packages/which-key-"; version
+                           ".tar"))
        (sha256
-        (base32 "0ph5mrzz3r7x4dmy93v6affl4jznvic97a30mrs3kvhwyr2v4mby"))))
+        (base32 "0p1vl7dnd7nsvzgsff19px9yzcw4w07qb5sb8g9r8a8slgvf3vqh"))))
     (build-system emacs-build-system)
-    (arguments
-     `(#:tests? #t
-       #:test-command '("emacs" "--batch"
-                        "-l" "which-key-tests.el"
-                        "-f" "ert-run-tests-batch-and-exit")))
-    (home-page "https://github.com/justbur/emacs-which-key";)
-    (synopsis "Display available key bindings in popup")
+    (home-page "https://elpa.gnu.org/packages/which-key.html";)
+    (synopsis "Display available keybindings in popup")
     (description
      "@code{emacs-which-key} is a minor mode for Emacs that displays the key
 bindings following your currently entered incomplete command (a prefix) in a

Reply via email to