guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: emacs-magit: Remove obsolete make flags.


From: guix-commits
Subject: branch master updated: gnu: emacs-magit: Remove obsolete make flags.
Date: Thu, 19 Mar 2020 13:09:17 -0400

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

apteryx pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new cc96c95  gnu: emacs-magit: Remove obsolete make flags.
cc96c95 is described below

commit cc96c9504d22c0a0a4a146436a74c24d348241ae
Author: Maxim Cournoyer <address@hidden>
AuthorDate: Fri Feb 28 23:42:59 2020 -0500

    gnu: emacs-magit: Remove obsolete make flags.
    
    * gnu/packages/emacs-xyz.scm (emacs-magit): Remove make flags that were 
jadis
    required to reference external Elisp libraries.  These are now made 
available
    through EMACSLOADPATH.
---
 gnu/packages/emacs-xyz.scm | 18 ++----------------
 1 file changed, 2 insertions(+), 16 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 0e7131f..62d1adc 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -295,7 +295,7 @@ on stdout instead of using a socket as the Emacsclient 
does.")
   (let ((commit "c761d28d49e5238037512b898db0ec9b40d85770"))
     (package
       (name "emacs-magit")
-      (version (git-version "2.90.1" "2" commit))
+      (version (git-version "2.90.1" "3" commit))
       (source (origin
                 (method git-fetch)
                 (uri (git-reference
@@ -335,24 +335,10 @@ on stdout instead of using a socket as the Emacsclient 
does.")
                              (guix build emacs-utils))
          #:test-target "test"
          #:tests? #f                   ; tests are not included in the release
-
          #:make-flags
          (list (string-append "PREFIX=" %output)
                ;; Don't put .el files in a sub-directory.
-               (string-append "lispdir=" %output "/share/emacs/site-lisp")
-               (string-append "DASH_DIR="
-                              (assoc-ref %build-inputs "dash")
-                              "/share/emacs/site-lisp/guix.d/dash-"
-                              ,(package-version emacs-dash))
-               (string-append "WITH_EDITOR_DIR="
-                              (assoc-ref %build-inputs "with-editor")
-                              "/share/emacs/site-lisp/guix.d/with-editor-"
-                              ,(package-version emacs-with-editor))
-               (string-append "TRANSIENT_DIR="
-                              (assoc-ref %build-inputs "transient")
-                              "/share/emacs/site-lisp/guix.d/transient-"
-                              ,(package-version emacs-transient)))
-
+               (string-append "lispdir=" %output "/share/emacs/site-lisp"))
          #:phases
          (modify-phases %standard-phases
            (add-after 'unpack 'patch



reply via email to

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