summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhu Zihao <all_but_last@163.com>2022-05-28 10:10:31 +0800
committerLiliana Marie Prikler <liliana.prikler@gmail.com>2022-05-28 08:34:25 +0200
commit9368341092815a142f123b4df2254ddd61879668 (patch)
tree578194fa052c76b8c95375673f5373b44728e9e0
parent0bb6504ba6072dfca342a1410b34fd50814f629f (diff)
downloadguix-patches-9368341092815a142f123b4df2254ddd61879668.tar
guix-patches-9368341092815a142f123b4df2254ddd61879668.tar.gz
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>
-rw-r--r--gnu/packages/emacs-xyz.scm6
1 files 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