guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: emacs-selectrum: Update to 3.0.0-a2ba633.


From: guix-commits
Subject: branch master updated: gnu: emacs-selectrum: Update to 3.0.0-a2ba633.
Date: Fri, 12 Feb 2021 18:46:03 -0500

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new e69f2e9  gnu: emacs-selectrum: Update to 3.0.0-a2ba633.
e69f2e9 is described below

commit e69f2e9add408156b6b6e20cda0307037c51b674
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sat Feb 13 00:45:01 2021 +0100

    gnu: emacs-selectrum: Update to 3.0.0-a2ba633.
    
    * gnu/packages/emacs-xyz.scm (emacs-selectrum): Update to 3.0.0-a2ba633.
---
 gnu/packages/emacs-xyz.scm | 38 +++++++++++++++++++++-----------------
 1 file changed, 21 insertions(+), 17 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index a89568f..32df03b 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -7120,22 +7120,26 @@ for Ivy and Company that make use of the library.")
     (license license:expat)))
 
 (define-public emacs-selectrum
-  (package
-    (name "emacs-selectrum")
-    (version "3.0")
-    (source
-     (origin
-       (method git-fetch)
-       (uri (git-reference
-             (url "https://github.com/raxod502/selectrum";)
-             (commit (string-append "v" version))))
-       (file-name (git-file-name name version))
-       (sha256
-        (base32 "0j10yxlikyg7qxcmp4fnddyd5nc3hlz080d1zcbijq020a08k86g"))))
-    (build-system emacs-build-system)
-    (home-page "https://github.com/raxod502/selectrum/";)
-    (synopsis "Incremental narrowing in Emacs")
-    (description "Selectrum is a solution for incremental narrowing in
+  ;; Release 3.0 has compatibility issues with recent versions of Emacs
+  ;; Consult.
+  (let ((commit "a2ba6333e59ddc853318ece229f34016400ca033")
+        (revision "0"))
+    (package
+      (name "emacs-selectrum")
+      (version (git-version "3.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/raxod502/selectrum";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1agpcazga6gxl6k28bdski1sx046699cici8a9hz0nj7s8rkx1zm"))))
+      (build-system emacs-build-system)
+      (home-page "https://github.com/raxod502/selectrum/";)
+      (synopsis "Incremental narrowing in Emacs")
+      (description "Selectrum is a solution for incremental narrowing in
 Emacs, replacing Helm, Ivy, and IDO.  Its design philosophy is based
 on choosing the right abstractions and prioritizing consistency and
 predictability over special-cased improvements for particular cases.
@@ -7143,7 +7147,7 @@ As such, Selectrum follows existing Emacs conventions 
where they exist
 and are reasonable, and it declines to implement features which have
 marginal benefit compared to the additional complexity of a new
 interface.")
-    (license license:expat)))
+      (license license:expat))))
 
 (define-public emacs-orderless
   (package



reply via email to

[Prev in Thread] Current Thread [Next in Thread]