guix-commits
[Top][All Lists]
Advanced

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

02/03: gnu: emacs-magit: Drop the libgit backend.


From: guix-commits
Subject: 02/03: gnu: emacs-magit: Drop the libgit backend.
Date: Sat, 28 May 2022 02:55:59 -0400 (EDT)

lilyp pushed a commit to branch master
in repository guix.

commit 9368341092815a142f123b4df2254ddd61879668
Author: Zhu Zihao <all_but_last@163.com>
AuthorDate: Sat May 28 10:10:31 2022 +0800

    gnu: emacs-magit: Drop the libgit backend.
    
    The libgit backend currently provides next to no features, but
    demands extra maintenance overhead.  It is in fact not a usable
    backend; thus let's not use it.
    
    * gnu/packages/emacs-xyz.scm (emacs-magit)[arguments]
    <#:emacs>: Drop argument.
    <#:exclude>: Add sources related to emacs-libgit.
    [inputs]: Remove emacs-libgit.
    
    Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
---
 gnu/packages/emacs-xyz.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 30f1f9bcae..665c69a20c 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -892,9 +892,11 @@ libgit2 bindings for Emacs, intended to boost the 
performance of Magit.")
     (build-system emacs-build-system)
     (arguments
      (list
-      #:emacs emacs-no-x             ;module support is required
       #:tests? #t
       #:test-command #~(list "make" "test")
+      #:exclude #~(cons* "magit-libgit.el"
+                         "magit-libgit-pkg.el"
+                         %default-exclude)
       #:phases
       #~(modify-phases %standard-phases
           (add-after 'unpack 'build-info-manual
@@ -942,7 +944,7 @@ libgit2 bindings for Emacs, intended to boost the 
performance of Magit.")
     (inputs
      (list git perl))
     (propagated-inputs
-     (list emacs-dash emacs-libgit emacs-transient emacs-with-editor))
+     (list emacs-dash emacs-transient emacs-with-editor))
     (home-page "https://magit.vc/";)
     (synopsis "Emacs interface for the Git version control system")
     (description



reply via email to

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