summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Hixson <mujo@sdf.org>2021-10-27 22:18:44 -0700
committerSam James <sam@gentoo.org>2021-11-12 01:24:48 +0000
commit18a70a0ee653b4426dcbbae9d789660572b1e25f (patch)
treed85bf802fa5b2e725fd39bab467ededea8c72965 /app-editors
parentapp-editors/kakoune: Bump to 2021.10.28 (diff)
downloadgentoo-18a70a0ee653b4426dcbbae9d789660572b1e25f.tar.gz
gentoo-18a70a0ee653b4426dcbbae9d789660572b1e25f.tar.bz2
gentoo-18a70a0ee653b4426dcbbae9d789660572b1e25f.zip
app-editors/kakoune: Drop old version
Signed-off-by: Ian Hixson <mujo@sdf.org> Closes: https://github.com/gentoo/gentoo/pull/22736 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-editors')
-rw-r--r--app-editors/kakoune/Manifest1
-rw-r--r--app-editors/kakoune/files/kakoune-2021.08.28-php-filetype-fix.patch13
-rw-r--r--app-editors/kakoune/kakoune-2021.08.28-r1.ebuild44
3 files changed, 0 insertions, 58 deletions
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 [^/] <ret> k <a-x> s ^\h*\K(?://|[*][^/])\h* <ret> y gh j P
-+ try %{ execute-keys -draft s [^/] <ret> k <a-x> s ^\h*\K(?://|[*][^/])\h* <ret> y gh j P }
- # append " * " on lines starting a multiline /** or /* comment
- try %{ execute-keys -draft k <a-x> s ^\h*/[*][* ]? <ret> j gi i <space>*<space> }
- >
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
-}