guix-commits
[Top][All Lists]
Advanced

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

branch staging updated: gnu: emacs-minimal: Reduce to minimal inputs.


From: guix-commits
Subject: branch staging updated: gnu: emacs-minimal: Reduce to minimal inputs.
Date: Sun, 02 Oct 2022 12:32:16 -0400

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

lilyp pushed a commit to branch staging
in repository guix.

The following commit(s) were added to refs/heads/staging by this push:
     new 407f017663 gnu: emacs-minimal: Reduce to minimal inputs.
407f017663 is described below

commit 407f017663c97ebfe48e3cb304bf97bf2557f83f
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Sun Oct 2 18:21:21 2022 +0200

    gnu: emacs-minimal: Reduce to minimal inputs.
    
    This partly reverts dbcba75c0e96d8eb2b0bf9dbb3a49d15b38f80d2.  In that 
commit,
    emacs-minimal gained a few inputs that weren't actually used as native
    compilation is disabled.
    Discovered by djeis in IRC, see also
    <http://logs.guix.gnu.org/guix/2022-10-02.log#170047>.
    
    * gnu/packages/emacs.scm (emacs-minimal)[inputs]: Remove ld-wrapper, 
binutils,
    glibc, libgccjit, and zlib.
    [arguments]<#:phases>: Delete ‘set-libgccjit-path’.
---
 gnu/packages/emacs.scm | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index a560481dd9..ae6de00844 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -443,11 +443,10 @@ GTK and also enables xwidgets.")))
        ((#:modules _) (%emacs-modules build-system))
        ((#:phases phases)
         #~(modify-phases #$phases
+            (delete 'set-libgccjit-path)
             (delete 'restore-emacs-pdmp)
             (delete 'strip-double-wrap)))))
-    (inputs (list ncurses coreutils gzip
-                  (make-ld-wrapper "ld-wrapper" #:binutils binutils)
-                  binutils glibc libgccjit zlib))
+    (inputs (list ncurses coreutils gzip))
     (native-inputs (list autoconf pkg-config))))
 
 (define-public emacs-xwidgets



reply via email to

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