commit:     848c5ad9bf8bcf4ce018de539e3c509e214a1e2b
Author:     Ian Hixson <mujo <AT> sdf <DOT> org>
AuthorDate: Thu Oct 28 05:17:12 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 12 01:24:47 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=848c5ad9

app-editors/kakoune: Bump to 2021.10.28

Signed-off-by: Ian Hixson <mujo <AT> sdf.org>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-editors/kakoune/Manifest                  |  1 +
 app-editors/kakoune/kakoune-2021.10.28.ebuild | 40 +++++++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/app-editors/kakoune/Manifest b/app-editors/kakoune/Manifest
index 290b402984c..4af90d57da9 100644
--- a/app-editors/kakoune/Manifest
+++ b/app-editors/kakoune/Manifest
@@ -1 +1,2 @@
 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/kakoune-2021.10.28.ebuild 
b/app-editors/kakoune/kakoune-2021.10.28.ebuild
new file mode 100644
index 00000000000..67d9bb16296
--- /dev/null
+++ b/app-editors/kakoune/kakoune-2021.10.28.ebuild
@@ -0,0 +1,40 @@
+# 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"
+
+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
+}

Reply via email to