diff options
author | Zhu Zihao <all_but_last@163.com> | 2022-05-28 10:10:31 +0800 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2022-05-28 08:34:25 +0200 |
commit | 9368341092815a142f123b4df2254ddd61879668 (patch) | |
tree | 578194fa052c76b8c95375673f5373b44728e9e0 /gnu | |
parent | 0bb6504ba6072dfca342a1410b34fd50814f629f (diff) |
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>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 6 |
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 |