diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-07-21 16:24:46 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-07-21 16:39:38 +0200 |
commit | 2ec3505a03af085aa1264e505b2d8169df7d02b4 (patch) | |
tree | 472519745c20af16a41b20f3ef8a7d4bd5c0a841 | |
parent | a0deadace0ce1479310e11f8fd556250cb014938 (diff) | |
download | guix-2ec3505a03af085aa1264e505b2d8169df7d02b4.tar guix-2ec3505a03af085aa1264e505b2d8169df7d02b4.tar.gz |
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
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 21 |
1 files 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 |