guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: emacs-orderless: Update to 0.6.


From: guix-commits
Subject: branch master updated: gnu: emacs-orderless: Update to 0.6.
Date: Sun, 16 May 2021 15:34:36 -0400

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

jlicht pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 3c5849f  gnu: emacs-orderless: Update to 0.6.
3c5849f is described below

commit 3c5849f3ecce4e3773fa69634be8c91519e67f9b
Author: Xinglu Chen <public@yoctocell.xyz>
AuthorDate: Sun May 16 21:27:21 2021 +0200

    gnu: emacs-orderless: Update to 0.6.
    
    * gnu/packages/emacs-xyz.scm (emacs-orderless): Update to 0.6.
    [native-inputs]: Add texinfo.
    [arguments]<#:phases>: Install manual.
---
 gnu/packages/emacs-xyz.scm | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index e2d1707..7a62b6b 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -7570,7 +7570,7 @@ interface.")
 (define-public emacs-orderless
   (package
     (name "emacs-orderless")
-    (version "0.5")
+    (version "0.6")
     (source
      (origin
        (method git-fetch)
@@ -7578,9 +7578,20 @@ interface.")
              (url "https://github.com/oantolin/orderless";)
              (commit version)))
        (sha256
-        (base32 "032lfwflkpaxbcxl4jf438vapswsdagipjczcn30sc4dfdh3p42c"))
+        (base32 "1javw5n3h3iv7f433b2ack49aka1jdpp8yxnaahzg5qbvr80hnay"))
        (file-name (git-file-name name version))))
     (build-system emacs-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-after 'install 'makeinfo
+           (lambda* (#:key outputs #:allow-other-keys)
+             (invoke "makeinfo" "orderless.texi")
+             (install-file "orderless.info"
+                           (string-append (assoc-ref outputs "out")
+                                          "/share/info")))))))
+    (native-inputs
+     `(("texinfo" ,texinfo)))
     (home-page "https://github.com/oantolin/orderless";)
     (synopsis "Emacs completion style that matches multiple regexps in any 
order")
     (description "This package provides an orderless completion style that



reply via email to

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