summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2024-02-18 14:58:54 +0100
committerMaciej Barć <xgqt@gentoo.org>2024-02-23 02:04:40 +0100
commit23ff9d7adddeb5ecb4219845ebaf2d1405d85b00 (patch)
tree73b4d6b5c69959f8c1fa7c37e64b1f1ecaa2ca68 /app-emacs
parentapp-emacs/emacs-bazel-mode: remove unused patch (diff)
downloadgentoo-23ff9d7adddeb5ecb4219845ebaf2d1405d85b00.tar.gz
gentoo-23ff9d7adddeb5ecb4219845ebaf2d1405d85b00.tar.bz2
gentoo-23ff9d7adddeb5ecb4219845ebaf2d1405d85b00.zip
app-emacs/magit: remove unused patches
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs')
-rw-r--r--app-emacs/magit/files/magit-3.3.0-inhibit-libgit.patch22
-rw-r--r--app-emacs/magit/files/magit-3.3.0-libgit-unavail.patch15
2 files changed, 0 insertions, 37 deletions
diff --git a/app-emacs/magit/files/magit-3.3.0-inhibit-libgit.patch b/app-emacs/magit/files/magit-3.3.0-inhibit-libgit.patch
deleted file mode 100644
index 20fb2381b6c5..000000000000
--- a/app-emacs/magit/files/magit-3.3.0-inhibit-libgit.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-commit 451cbe5c24f2af7ed505f1422af6ad4e8f05205b
-Author: Jonas Bernoulli <jonas@bernoul.li>
-Date: Sun Feb 19 13:37:28 2023 +0100
-
- Inhibit use of libgit by default
-
---- lisp/magit-git.el
-+++ lisp/magit-git.el
-@@ -66,8 +66,11 @@
-
- ;;; Git implementations
-
--(defvar magit-inhibit-libgit nil
-- "Whether to inhibit the use of libgit.")
-+(defvar magit-inhibit-libgit t
-+ "Whether to inhibit the use of libgit.
-+Use of libgit is inhibited by default because support for libgit
-+in magit is only a stub for now. There is no benefit in using
-+it.")
-
- (defvar magit--libgit-available-p 'unknown
- "Whether libgit is available.
diff --git a/app-emacs/magit/files/magit-3.3.0-libgit-unavail.patch b/app-emacs/magit/files/magit-3.3.0-libgit-unavail.patch
deleted file mode 100644
index 6373e720dffc..000000000000
--- a/app-emacs/magit/files/magit-3.3.0-libgit-unavail.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Suppress warning message about missing magit-libgit
-https://bugs.gentoo.org/910593
-
---- lisp/magit-core.el
-+++ lisp/magit-core.el
-@@ -41,7 +41,8 @@
- (require 'magit-transient)
- (require 'magit-autorevert)
-
--(when (magit--libgit-available-p)
-+(when (and (not magit-inhibit-libgit)
-+ (magit--libgit-available-p))
- (condition-case err
- (require 'magit-libgit)
- (error