From owner-svn-ports-all@freebsd.org Fri Apr 13 10:55:09 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 27D21FA3F41; Fri, 13 Apr 2018 10:55:09 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D22C37BC10; Fri, 13 Apr 2018 10:55:08 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CD14A18D0D; Fri, 13 Apr 2018 10:55:08 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3DAt8vE065161; Fri, 13 Apr 2018 10:55:08 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3DAt8LY065156; Fri, 13 Apr 2018 10:55:08 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201804131055.w3DAt8LY065156@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Fri, 13 Apr 2018 10:55:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r467232 - in head/editors: . kakoune X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/editors: . kakoune X-SVN-Commit-Revision: 467232 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Apr 2018 10:55:09 -0000 Author: tobik Date: Fri Apr 13 10:55:08 2018 New Revision: 467232 URL: https://svnweb.freebsd.org/changeset/ports/467232 Log: New port: editors/kakoune Kakoune is a code editor that implements Vi's "keystrokes as a text editing language" model. As it's also a modal editor, it is somewhat similar to the Vim editor (after which Kakoune was originally inspired). Kakoune can operate in two modes, normal and insertion. In insertion mode, keys are directly inserted into the current buffer. In normal mode, keys are used to manipulate the current selection and to enter insertion mode. Kakoune has a strong focus on interactivity, most commands provide immediate and incremental results, while still being competitive (as in keystroke count) with Vim. Kakoune works on selections, which are oriented, inclusive range of characters, selections have an anchor and a cursor character. Most commands move both of them, except when extending selection where the anchor character stays fixed and the cursor one moves around. See https://vimeo.com/82711574 for a short demo video. WWW: https://github.com/mawww/kakoune Added: head/editors/kakoune/ head/editors/kakoune/Makefile (contents, props changed) head/editors/kakoune/distinfo (contents, props changed) head/editors/kakoune/pkg-descr (contents, props changed) head/editors/kakoune/pkg-plist (contents, props changed) Modified: head/editors/Makefile Modified: head/editors/Makefile ============================================================================== --- head/editors/Makefile Fri Apr 13 09:57:43 2018 (r467231) +++ head/editors/Makefile Fri Apr 13 10:55:08 2018 (r467232) @@ -66,6 +66,7 @@ SUBDIR += jove SUBDIR += jucipp SUBDIR += jupp + SUBDIR += kakoune SUBDIR += kate SUBDIR += kate-kde4 SUBDIR += kate-plugin-pate-kde4 Added: head/editors/kakoune/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/kakoune/Makefile Fri Apr 13 10:55:08 2018 (r467232) @@ -0,0 +1,33 @@ +# $FreeBSD$ + +PORTNAME= kakoune +DISTVERSION= 2018.04.13 +CATEGORIES= editors +MASTER_SITES= https://github.com/mawww/kakoune/releases/download/v${DISTVERSION}/ + +MAINTAINER= tobik@FreeBSD.org +COMMENT= Modal code editor with a focus on interactivity + +LICENSE= UNLICENSE +LICENSE_FILE= ${WRKSRC}/../UNLICENSE + +BUILD_DEPENDS= a2x:textproc/asciidoc + +USES= compiler:c++14-lang gmake ncurses tar:bzip2 + +DATADIR= ${PREFIX}/share/kak +DOCSDIR= ${PREFIX}/share/doc/kak +WRKSRC_SUBDIR= src + +OPTIONS_DEFINE= DOCS + +post-patch: + @${REINPLACE_CMD} 's,/share/man/,/man/,' ${WRKSRC}/Makefile + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/kak + +do-test: + @cd ${WRKSRC}/../test && ${SETENV} LC_ALL=en_US.UTF-8 ./run + +.include Added: head/editors/kakoune/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/kakoune/distinfo Fri Apr 13 10:55:08 2018 (r467232) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523616383 +SHA256 (kakoune-2018.04.13.tar.bz2) = cd8ccf8d833a7de8014b6d64f0c34105bc5996c3671275b00ced77996dd17fce +SIZE (kakoune-2018.04.13.tar.bz2) = 404823 Added: head/editors/kakoune/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/kakoune/pkg-descr Fri Apr 13 10:55:08 2018 (r467232) @@ -0,0 +1,22 @@ +Kakoune is a code editor that implements Vi's "keystrokes as a text +editing language" model. As it's also a modal editor, it is somewhat +similar to the Vim editor (after which Kakoune was originally +inspired). + +Kakoune can operate in two modes, normal and insertion. In insertion +mode, keys are directly inserted into the current buffer. In normal +mode, keys are used to manipulate the current selection and to enter +insertion mode. + +Kakoune has a strong focus on interactivity, most commands provide +immediate and incremental results, while still being competitive (as +in keystroke count) with Vim. + +Kakoune works on selections, which are oriented, inclusive range of +characters, selections have an anchor and a cursor character. Most +commands move both of them, except when extending selection where the +anchor character stays fixed and the cursor one moves around. + +See https://vimeo.com/82711574 for a short demo video. + +WWW: https://github.com/mawww/kakoune Added: head/editors/kakoune/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/kakoune/pkg-plist Fri Apr 13 10:55:08 2018 (r467232) @@ -0,0 +1,116 @@ +bin/kak +man/man1/kak.1.gz +%%PORTDOCS%%%%DOCSDIR%%/README.asciidoc +%%DATADIR%%/autoload +%%DATADIR%%/colors/base16.kak +%%DATADIR%%/colors/default.kak +%%DATADIR%%/colors/desertex.kak +%%DATADIR%%/colors/github.kak +%%DATADIR%%/colors/gruvbox.kak +%%DATADIR%%/colors/lucius.kak +%%DATADIR%%/colors/reeder.kak +%%DATADIR%%/colors/solarized-dark.kak +%%DATADIR%%/colors/solarized-light.kak +%%DATADIR%%/colors/tomorrow-night.kak +%%DATADIR%%/colors/zenburn.kak +%%DATADIR%%/doc/buffers.asciidoc +%%DATADIR%%/doc/commands.asciidoc +%%DATADIR%%/doc/execeval.asciidoc +%%DATADIR%%/doc/expansions.asciidoc +%%DATADIR%%/doc/faces.asciidoc +%%DATADIR%%/doc/faq.asciidoc +%%DATADIR%%/doc/highlighters.asciidoc +%%DATADIR%%/doc/hooks.asciidoc +%%DATADIR%%/doc/keys.asciidoc +%%DATADIR%%/doc/mapping.asciidoc +%%DATADIR%%/doc/modes.asciidoc +%%DATADIR%%/doc/options.asciidoc +%%DATADIR%%/doc/regex.asciidoc +%%DATADIR%%/doc/registers.asciidoc +%%DATADIR%%/doc/scopes.asciidoc +%%DATADIR%%/kakrc +%%DATADIR%%/rc/base/autowrap.kak +%%DATADIR%%/rc/base/clojure.kak +%%DATADIR%%/rc/base/css.kak +%%DATADIR%%/rc/base/ctags.kak +%%DATADIR%%/rc/base/d.kak +%%DATADIR%%/rc/base/etc.kak +%%DATADIR%%/rc/base/file.kak +%%DATADIR%%/rc/base/fish.kak +%%DATADIR%%/rc/base/gas.kak +%%DATADIR%%/rc/base/git.kak +%%DATADIR%%/rc/base/go.kak +%%DATADIR%%/rc/base/haskell.kak +%%DATADIR%%/rc/base/html.kak +%%DATADIR%%/rc/base/ini.kak +%%DATADIR%%/rc/base/java.kak +%%DATADIR%%/rc/base/javascript.kak +%%DATADIR%%/rc/base/json.kak +%%DATADIR%%/rc/base/julia.kak +%%DATADIR%%/rc/base/lint.kak +%%DATADIR%%/rc/base/lisp.kak +%%DATADIR%%/rc/base/lua.kak +%%DATADIR%%/rc/base/mail.kak +%%DATADIR%%/rc/base/markdown.kak +%%DATADIR%%/rc/base/mercurial.kak +%%DATADIR%%/rc/base/ocaml.kak +%%DATADIR%%/rc/base/perl.kak +%%DATADIR%%/rc/base/restructuredtext.kak +%%DATADIR%%/rc/base/ruby.kak +%%DATADIR%%/rc/base/rust.kak +%%DATADIR%%/rc/base/scala.kak +%%DATADIR%%/rc/base/screen.kak +%%DATADIR%%/rc/base/spell.kak +%%DATADIR%%/rc/base/sql.kak +%%DATADIR%%/rc/base/swift.kak +%%DATADIR%%/rc/base/tmux.kak +%%DATADIR%%/rc/base/x11.kak +%%DATADIR%%/rc/base/yaml.kak +%%DATADIR%%/rc/core/asciidoc.kak +%%DATADIR%%/rc/core/c-family.kak +%%DATADIR%%/rc/core/comment.kak +%%DATADIR%%/rc/core/diff.kak +%%DATADIR%%/rc/core/doc.kak +%%DATADIR%%/rc/core/formatter.kak +%%DATADIR%%/rc/core/grep.kak +%%DATADIR%%/rc/core/kakrc.kak +%%DATADIR%%/rc/core/make.kak +%%DATADIR%%/rc/core/makefile.kak +%%DATADIR%%/rc/core/man.kak +%%DATADIR%%/rc/core/python.kak +%%DATADIR%%/rc/core/sh.kak +%%DATADIR%%/rc/extra/arch-linux.kak +%%DATADIR%%/rc/extra/autorestore.kak +%%DATADIR%%/rc/extra/cabal.kak +%%DATADIR%%/rc/extra/clang.kak +%%DATADIR%%/rc/extra/coffee.kak +%%DATADIR%%/rc/extra/cucumber.kak +%%DATADIR%%/rc/extra/dockerfile.kak +%%DATADIR%%/rc/extra/editorconfig.kak +%%DATADIR%%/rc/extra/elixir.kak +%%DATADIR%%/rc/extra/elm.kak +%%DATADIR%%/rc/extra/exherbo.kak +%%DATADIR%%/rc/extra/git-tools.kak +%%DATADIR%%/rc/extra/go-tools.kak +%%DATADIR%%/rc/extra/haml.kak +%%DATADIR%%/rc/extra/hbs.kak +%%DATADIR%%/rc/extra/iterm.kak +%%DATADIR%%/rc/extra/jedi.kak +%%DATADIR%%/rc/extra/just.kak +%%DATADIR%%/rc/extra/kickstart.kak +%%DATADIR%%/rc/extra/latex.kak +%%DATADIR%%/rc/extra/modeline.kak +%%DATADIR%%/rc/extra/moon.kak +%%DATADIR%%/rc/extra/nim.kak +%%DATADIR%%/rc/extra/php.kak +%%DATADIR%%/rc/extra/pony.kak +%%DATADIR%%/rc/extra/pug.kak +%%DATADIR%%/rc/extra/racer.kak +%%DATADIR%%/rc/extra/ragel.kak +%%DATADIR%%/rc/extra/ranger.kak +%%DATADIR%%/rc/extra/sass.kak +%%DATADIR%%/rc/extra/scss.kak +%%DATADIR%%/rc/extra/taskpaper.kak +%%DATADIR%%/rc/extra/tmux-repl.kak +%%DATADIR%%/rc/extra/tupfile.kak +%%DATADIR%%/rc/extra/x11-repl.kak