From 18a70a0ee653b4426dcbbae9d789660572b1e25f Mon Sep 17 00:00:00 2001 From: Ian Hixson Date: Wed, 27 Oct 2021 22:18:44 -0700 Subject: app-editors/kakoune: Drop old version Signed-off-by: Ian Hixson Closes: https://github.com/gentoo/gentoo/pull/22736 Signed-off-by: Sam James --- app-editors/kakoune/Manifest | 1 - .../kakoune-2021.08.28-php-filetype-fix.patch | 13 ------- app-editors/kakoune/kakoune-2021.08.28-r1.ebuild | 44 ---------------------- 3 files changed, 58 deletions(-) delete mode 100644 app-editors/kakoune/files/kakoune-2021.08.28-php-filetype-fix.patch delete mode 100644 app-editors/kakoune/kakoune-2021.08.28-r1.ebuild (limited to 'app-editors') diff --git a/app-editors/kakoune/Manifest b/app-editors/kakoune/Manifest index 4af90d57da97..aeba3b8a0a57 100644 --- a/app-editors/kakoune/Manifest +++ b/app-editors/kakoune/Manifest @@ -1,2 +1 @@ -DIST kakoune-2021.08.28.tar.bz2 535791 BLAKE2B b04f23b29def72659925b104a203033cd547ec9483225e35a216276716b2d31da76e1c4a239b60a1e72f3e3f4777997bc59560f6ccd4a0e3eaf509e537ed85ad SHA512 a304f1ce3295196468784e27f019d155b5aa0305d90adf5ae65c74a9be4ee740df400ebeb819eb059bb42efee503daa988a2ea929fa6d60ec63ad408be9b575a DIST kakoune-2021.10.28.tar.bz2 537860 BLAKE2B b7a5bf27505af99e40b65eef1e6c34c2c7fb43b9e0a1b0be5f307cf658f830646f5289bb52c70456e2ba585247528df829de3825edffc40f525b218b0237396c SHA512 60adf3d56006b5fde0b0acd8990501a858df6ed850201b603e2722fc893a873f2bb74f4be9caa35b6aa088ba7cd7aef86c0ca952168de92557c03b208461e0d2 diff --git a/app-editors/kakoune/files/kakoune-2021.08.28-php-filetype-fix.patch b/app-editors/kakoune/files/kakoune-2021.08.28-php-filetype-fix.patch deleted file mode 100644 index b4a7cc439f36..000000000000 --- a/app-editors/kakoune/files/kakoune-2021.08.28-php-filetype-fix.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/rc/filetype/php.kak b/rc/filetype/php.kak -index be03de9e..97bdbfe3 100644 ---- a/rc/filetype/php.kak -+++ b/rc/filetype/php.kak -@@ -85,7 +85,7 @@ define-command -hidden php-indent-on-char %< - define-command -hidden php-insert-on-new-line %< - evaluate-commands -draft -itersel %< - # copy // comments or docblock * prefix and following white spaces -- try %{ execute-keys -draft s [^/] k s ^\h*\K(?://|[*][^/])\h* y gh j P -+ try %{ execute-keys -draft s [^/] k s ^\h*\K(?://|[*][^/])\h* y gh j P } - # append " * " on lines starting a multiline /** or /* comment - try %{ execute-keys -draft k s ^\h*/[*][* ]? j gi i * } - > diff --git a/app-editors/kakoune/kakoune-2021.08.28-r1.ebuild b/app-editors/kakoune/kakoune-2021.08.28-r1.ebuild deleted file mode 100644 index 66fdc47a76c7..000000000000 --- a/app-editors/kakoune/kakoune-2021.08.28-r1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 2020-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs - -DESCRIPTION="Modal editor inspired by vim" -HOMEPAGE="http://kakoune.org/ https://github.com/mawww/kakoune" -SRC_URI="https://github.com/mawww/kakoune/releases/download/v${PV}/${P}.tar.bz2" - -LICENSE="Unlicense" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" - -BDEPEND="virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}"/${P}-php-filetype-fix.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 -} -- cgit v1.2.3-65-gdbad