guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: emacs-pdf-tools: Use new style.


From: guix-commits
Subject: branch master updated: gnu: emacs-pdf-tools: Use new style.
Date: Tue, 14 Dec 2021 13:29:51 -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 ae1ec6b  gnu: emacs-pdf-tools: Use new style.
ae1ec6b is described below

commit ae1ec6b0e4ecb09ab5cb02822b9516d5c9aaac6a
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Tue Dec 14 19:28:20 2021 +0100

    gnu: emacs-pdf-tools: Use new style.
    
    * gnu/packages/emacs-xyz.scm (emacs-pdf-tools)[arguments]<#:phases>: Remove
    trailing #T.
    [native-inputs, propagated-inputs]: Remove labels.
    [inputs]: Reorder alphabetically.
---
 gnu/packages/emacs-xyz.scm | 13 +++++--------
 1 file changed, 5 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 7f509ce..deb95d2 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -3364,14 +3364,14 @@ during idle time, while Emacs is doing nothing else.")
          (modify-phases %standard-phases
            ;; Build server side using 'gnu-build-system'.
            (add-after 'unpack 'enter-server-dir
-             (lambda _ (chdir "server") #t))
+             (lambda _ (chdir "server")))
            (add-after 'enter-server-dir 'autogen
              (lambda _
                (invoke "bash" "autogen.sh")))
 
            ;; Build emacs side using 'emacs-build-system'.
            (add-after 'compress-documentation 'enter-lisp-dir
-             (lambda _ (chdir "../lisp") #t))
+             (lambda _ (chdir "../lisp")))
            (add-after 'enter-lisp-dir 'emacs-patch-variables
              (lambda* (#:key outputs #:allow-other-keys)
                (for-each make-file-writable (find-files "."))
@@ -3394,14 +3394,11 @@ during idle time, while Emacs is doing nothing else.")
            (add-after 'emacs-install 'emacs-make-autoloads
              (assoc-ref emacs:%standard-phases 'make-autoloads)))))
       (native-inputs
-       `(("autoconf" ,autoconf)
-         ("automake" ,automake)
-         ("pkg-config" ,pkg-config)
-         ("emacs" ,emacs-minimal)))
+       (list autoconf automake emacs-minimal pkg-config))
       (inputs
-       (list poppler cairo glib libpng zlib))
+       (list cairo glib libpng poppler zlib))
       (propagated-inputs
-       `(("tablist" ,emacs-tablist)))
+       (list emacs-tablist))
       (home-page "https://github.com/politza/pdf-tools";)
       (synopsis "Emacs support library for PDF files")
       (description



reply via email to

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