diff options
author | Liam Hupfer <[email protected]> | 2025-02-22 15:57:41 -0600 |
---|---|---|
committer | Ian Eure <[email protected]> | 2025-03-01 09:40:12 -0800 |
commit | 256bee7d0b72df2d471e1db071500e7635462ad7 (patch) | |
tree | ff97cc962878c5541b1c50c2aee8ff8040835217 | |
parent | 12c41b30bda25e453284a5fb5fe4cb218a6b3ba5 (diff) |
gnu: emacs-popper: Update to 0.4.8.
The previous Guix version, 0.45, was propagated from an upstream typo
for 0.4.5. This likely prevented ‘guix refresh’ from updating the
package.
* gnu/packages/emacs-xyz.scm (emacs-popper): Update to 0.4.8.
Change-Id: I7ec81b81c90bb6e05cf764d01caf948427e922b7
Signed-off-by: Ian Eure <[email protected]>
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 39 |
1 files changed, 18 insertions, 21 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 4cd2e0a0e8..c36cb09367 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -11607,28 +11607,25 @@ autocomplete style popup menu.") (license license:gpl3+)))) (define-public emacs-popper - ;; No tagged release upstream for version 0.45. The commit below matches - ;; version bump. - (let ((commit "851d83882192ac9599ac5b053614a42d683b3fab")) - (package - (name "emacs-popper") - (version "0.45") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/karthink/popper") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0pk5wzqlz7n6v8rb1957i3ql0wjx578l68a3rp2m9pxr7a8a03h4")))) - (build-system emacs-build-system) - (home-page "https://github.com/karthink/popper") - (synopsis "Emacs minor-mode to summon and dismiss buffers easily") - (description - "Popper is a minor-mode to tame the flood of ephemeral + (package + (name "emacs-popper") + (version "0.4.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/karthink/popper") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x1nnc0li8jd609lnmmax2hl69wmbq84c6b2mdg0wb7zf0k29lba")))) + (build-system emacs-build-system) + (home-page "https://github.com/karthink/popper") + (synopsis "Emacs minor-mode to summon and dismiss buffers easily") + (description + "Popper is a minor-mode to tame the flood of ephemeral windows Emacs produces, while still keeping them within arm’s reach.") - (license license:gpl3+)))) + (license license:gpl3+))) (define-public emacs-pydoc ;; https://github.com/statmobile/pydoc/issues/31 |