diff options
author | Ian Hixson <mujo@sdf.org> | 2021-08-06 18:44:33 -0700 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2021-08-23 08:41:40 +0300 |
commit | a56555b9235c33a7a3475fdf070b3261c756ad4b (patch) | |
tree | 3596bc564b34628ebfe53d888e51d2607114a918 /app-editors | |
parent | app-editors/kakoune: Bump to 2020.09.01 (diff) | |
download | gentoo-a56555b9235c33a7a3475fdf070b3261c756ad4b.tar.gz gentoo-a56555b9235c33a7a3475fdf070b3261c756ad4b.tar.bz2 gentoo-a56555b9235c33a7a3475fdf070b3261c756ad4b.zip |
app-editors/kakoune: Drop old version
Signed-off-by: Ian Hixson <mujo@sdf.org>
Closes: https://github.com/gentoo/gentoo/pull/21902
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'app-editors')
4 files changed, 0 insertions, 76 deletions
diff --git a/app-editors/kakoune/Manifest b/app-editors/kakoune/Manifest index d0b4c27c83d1..fae8bafcada7 100644 --- a/app-editors/kakoune/Manifest +++ b/app-editors/kakoune/Manifest @@ -1,2 +1 @@ -DIST kakoune-2020.01.16_p20200601.tar.gz 597946 BLAKE2B c3d831132e29ea46c4c92a942eae1b9eeaa30c68e17e7178b00277f45fdf76784386801627125c653b50507ebebcad282512446c0cff94f7234013aa8a17efd1 SHA512 b137fa71a151e80da50bfd980a264d1d0aa98d48e585794eb1429196a6c81ef51277cc15d5db015ce8550c1cf0d6fa29f5cdeefd3930e90e2a0480dd7bbe5bf8 DIST kakoune-2020.09.01.tar.gz 612970 BLAKE2B 64084c2a4ff1ccf348caad8db04df9425828378bda28d163ffa6d198b3bd80d6d078ac0095dfc5adbae505e4d4259cd86185718a8012740417056db531ea72ec SHA512 acd9edd6b2a68219a4b5f68aaf4d785aa8c430abfdf5ccc994764f5ece8acb655adf64334027525115d3cbe819591de8496c3e54e2d806ce40c494443789e126 diff --git a/app-editors/kakoune/files/kakoune-2020.01.16-enable-ebuild-syntax-highlight.patch b/app-editors/kakoune/files/kakoune-2020.01.16-enable-ebuild-syntax-highlight.patch deleted file mode 100644 index 726968e0e8c6..000000000000 --- a/app-editors/kakoune/files/kakoune-2020.01.16-enable-ebuild-syntax-highlight.patch +++ /dev/null @@ -1,15 +0,0 @@ -diff -Naur a/rc/filetype/sh.kak b/rc/filetype/sh.kak ---- a/rc/filetype/sh.kak 2020-01-16 11:52:20.000000000 +0200 -+++ b/rc/filetype/sh.kak 2020-05-25 15:50:20.417809942 +0300 -@@ -2,6 +2,11 @@ - set-option buffer filetype sh - } - -+hook global BufCreate .*\.ebuild %{ -+ set-option buffer filetype sh -+} -+ -+ - hook global WinSetOption filetype=sh %{ - require-module sh - set-option window static_words %opt{sh_static_words} diff --git a/app-editors/kakoune/files/kakoune-2020.01.16-gcc-11.patch b/app-editors/kakoune/files/kakoune-2020.01.16-gcc-11.patch deleted file mode 100644 index d558c49347c1..000000000000 --- a/app-editors/kakoune/files/kakoune-2020.01.16-gcc-11.patch +++ /dev/null @@ -1,11 +0,0 @@ -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 - { diff --git a/app-editors/kakoune/kakoune-2020.01.16_p20200601-r1.ebuild b/app-editors/kakoune/kakoune-2020.01.16_p20200601-r1.ebuild deleted file mode 100644 index 21dafc2dd2c7..000000000000 --- a/app-editors/kakoune/kakoune-2020.01.16_p20200601-r1.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 2020-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -MY_COMMIT="6fa26b8dd2ac0931fe688370728c47086277d883" -DESCRIPTION="Modal editor inspired by vim" -HOMEPAGE="http://kakoune.org/ https://github.com/mawww/kakoune" -SRC_URI="https://github.com/mawww/kakoune/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/kakoune-${MY_COMMIT}" - -LICENSE="Unlicense" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" - -DEPEND="sys-libs/ncurses:=[unicode(+)]" -RDEPEND="${DEPEND}" -BDEPEND="virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}"/${PN}-2020.01.16-enable-ebuild-syntax-highlight.patch - "${FILESDIR}"/${PN}-2020.01.16-gcc-11.patch -) - -src_prepare() { - sed -i '/CXXFLAGS += -O3/d' src/Makefile || die - default -} - -src_configure() { - tc-export CXX -} - -src_compile() { - emake -C src all -} - -src_test() { - emake -C src test -} - -src_install() { - emake PREFIX="${D}"/usr docdir="${ED}/usr/share/doc/${PF}" install - - rm "${ED}/usr/share/man/man1/kak.1.gz" || die - doman doc/kak.1 -} |