summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Hixson <mujo@sdf.org>2021-08-06 18:37:53 -0700
committerJoonas Niilola <juippis@gentoo.org>2021-08-23 08:41:40 +0300
commit7ccf31f2495eef82d25225a2bfa7fd25a6e8dce1 (patch)
tree550a3989621067cb2aadf376034d9bc726c8b7a2 /app-editors/kakoune/files
parentapp-editors/kakoune: Add myself as proxy maintainer. (diff)
downloadgentoo-7ccf31f2495eef82d25225a2bfa7fd25a6e8dce1.tar.gz
gentoo-7ccf31f2495eef82d25225a2bfa7fd25a6e8dce1.tar.bz2
gentoo-7ccf31f2495eef82d25225a2bfa7fd25a6e8dce1.zip
app-editors/kakoune: Bump to 2020.09.01
Closes: https://bugs.gentoo.org/804912 Signed-off-by: Ian Hixson <mujo@sdf.org> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'app-editors/kakoune/files')
-rw-r--r--app-editors/kakoune/files/kakoune-2020.09.01-enable-ebuild-syntax-highlight.patch10
-rw-r--r--app-editors/kakoune/files/kakoune-2020.09.01-gcc-11.patch11
2 files changed, 21 insertions, 0 deletions
diff --git a/app-editors/kakoune/files/kakoune-2020.09.01-enable-ebuild-syntax-highlight.patch b/app-editors/kakoune/files/kakoune-2020.09.01-enable-ebuild-syntax-highlight.patch
new file mode 100644
index 000000000000..d7b9083a4281
--- /dev/null
+++ b/app-editors/kakoune/files/kakoune-2020.09.01-enable-ebuild-syntax-highlight.patch
@@ -0,0 +1,10 @@
+diff --git a/rc/filetype/gentoo-linux.kak b/rc/filetype/gentoo-linux.kak
+new file mode 100644
+index 00000000..251dad16
+--- /dev/null
++++ b/rc/filetype/gentoo-linux.kak
+@@ -0,0 +1,4 @@
++# portage ebuild file
++hook global BufCreate .*\.ebuild %{
++ set-option buffer filetype sh
++}
diff --git a/app-editors/kakoune/files/kakoune-2020.09.01-gcc-11.patch b/app-editors/kakoune/files/kakoune-2020.09.01-gcc-11.patch
new file mode 100644
index 000000000000..d558c49347c1
--- /dev/null
+++ b/app-editors/kakoune/files/kakoune-2020.09.01-gcc-11.patch
@@ -0,0 +1,11 @@
+https://bugs.gentoo.org/787029
+--- a/src/regex_impl.cc
++++ b/src/regex_impl.cc
+@@ -12,6 +12,7 @@
+
+ #include <cstdio>
+ #include <cstring>
++#include <limits>
+
+ namespace Kakoune
+ {