From owner-svn-ports-all@freebsd.org Mon May 16 16:29:46 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1F153B3D050; Mon, 16 May 2016 16:29:46 +0000 (UTC) (envelope-from adamw@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 mx1.freebsd.org (Postfix) with ESMTPS id D4C0612D5; Mon, 16 May 2016 16:29:45 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4GGTjUh048225; Mon, 16 May 2016 16:29:45 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4GGTitU048219; Mon, 16 May 2016 16:29:44 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201605161629.u4GGTitU048219@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Mon, 16 May 2016 16:29:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415339 - in head/shells: . zsh-navigation-tools zsh-navigation-tools/files X-SVN-Group: ports-head 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.22 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: Mon, 16 May 2016 16:29:46 -0000 Author: adamw Date: Mon May 16 16:29:44 2016 New Revision: 415339 URL: https://svnweb.freebsd.org/changeset/ports/415339 Log: Add shell/zsh-navigation-tools. Set of Zsh tools with features like incremental multi-word searching, approximate matching, ANSI coloring, themes, unique mode, horizontal scroll and advanced history management. Selected tools provided: - n-history - full-screen history searcher and manager - n-kill - browses process list, allows quick searching and sending signal to selected process - n-panelize - loads output of given command for browsing and multi-word searching - n-cd - browses dirstack and bookmarked directories, allows to enter selected directory - n-functions - browses functions, relegates editing to vared Written in pure Zsh, with use of curses module. Can be configured from zshrc. Binds n-history to Ctrl-R. Provides widgets for n-cd and n-kill. WWW: https://github.com/psprint/zsh-navigation-tools PR: 209263 Submitted by: Sebastian Gniazdowski Added: head/shells/zsh-navigation-tools/ head/shells/zsh-navigation-tools/Makefile (contents, props changed) head/shells/zsh-navigation-tools/distinfo (contents, props changed) head/shells/zsh-navigation-tools/files/ head/shells/zsh-navigation-tools/files/pkg-message.in (contents, props changed) head/shells/zsh-navigation-tools/pkg-descr (contents, props changed) head/shells/zsh-navigation-tools/pkg-plist (contents, props changed) Modified: head/shells/Makefile Modified: head/shells/Makefile ============================================================================== --- head/shells/Makefile Mon May 16 16:10:36 2016 (r415338) +++ head/shells/Makefile Mon May 16 16:29:44 2016 (r415339) @@ -45,5 +45,6 @@ SUBDIR += vshnu SUBDIR += wcd SUBDIR += zsh + SUBDIR += zsh-navigation-tools .include Added: head/shells/zsh-navigation-tools/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/zsh-navigation-tools/Makefile Mon May 16 16:29:44 2016 (r415339) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= zsh-navigation-tools +PORTVERSION= 2.1.15 +DISTVERSIONPREFIX= v +CATEGORIES= shells + +MAINTAINER= sgniazdowski@gmail.com +COMMENT= Curses-based tools for Zshell, e.g. multi-word history searcher + +LICENSE= GPLv3 MIT +LICENSE_COMB= dual +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= zsh:shells/zsh + +NO_ARCH= yes +OPTIONS_DEFINE= DOCS +SUB_FILES= pkg-message + +USE_GITHUB= yes +GH_ACCOUNT= psprint + +.include Added: head/shells/zsh-navigation-tools/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/zsh-navigation-tools/distinfo Mon May 16 16:29:44 2016 (r415339) @@ -0,0 +1,3 @@ +TIMESTAMP = 1463415985 +SHA256 (psprint-zsh-navigation-tools-v2.1.15_GH0.tar.gz) = 9f4794984f7ea206b227d385dc9d84238f75854df808500ac61640dea8a140b8 +SIZE (psprint-zsh-navigation-tools-v2.1.15_GH0.tar.gz) = 138334 Added: head/shells/zsh-navigation-tools/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/zsh-navigation-tools/files/pkg-message.in Mon May 16 16:29:44 2016 (r415339) @@ -0,0 +1,2 @@ +To enable zsh-navigation-tools, add the following to your zshrc: +source %%DATADIR%%/zsh-navigation-tools.plugin.zsh Added: head/shells/zsh-navigation-tools/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/zsh-navigation-tools/pkg-descr Mon May 16 16:29:44 2016 (r415339) @@ -0,0 +1,16 @@ +Set of Zsh tools with features like incremental multi-word searching, +approximate matching, ANSI coloring, themes, unique mode, horizontal +scroll and advanced history management. Selected tools provided: + - n-history - full-screen history searcher and manager + - n-kill - browses process list, allows quick searching and + sending signal to selected process + - n-panelize - loads output of given command for browsing and + multi-word searching + - n-cd - browses dirstack and bookmarked directories, allows to + enter selected directory + - n-functions - browses functions, relegates editing to vared + +Written in pure Zsh, with use of curses module. Can be configured from +zshrc. Binds n-history to Ctrl-R. Provides widgets for n-cd and n-kill. + +WWW: https://github.com/psprint/zsh-navigation-tools Added: head/shells/zsh-navigation-tools/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/zsh-navigation-tools/pkg-plist Mon May 16 16:29:44 2016 (r415339) @@ -0,0 +1,31 @@ +%%PORTDOCS%%%%DOCSDIR%%/LICENSE +%%PORTDOCS%%%%DOCSDIR%%/README.md +%%PORTDOCS%%%%DOCSDIR%%/n-history2.png +%%DATADIR%%/.config/znt/n-aliases.conf +%%DATADIR%%/.config/znt/n-cd.conf +%%DATADIR%%/.config/znt/n-env.conf +%%DATADIR%%/.config/znt/n-functions.conf +%%DATADIR%%/.config/znt/n-history.conf +%%DATADIR%%/.config/znt/n-kill.conf +%%DATADIR%%/.config/znt/n-list.conf +%%DATADIR%%/.config/znt/n-options.conf +%%DATADIR%%/.config/znt/n-panelize.conf +%%DATADIR%%/.revision-hash +%%DATADIR%%/_n-kill +%%DATADIR%%/n-aliases +%%DATADIR%%/n-cd +%%DATADIR%%/n-env +%%DATADIR%%/n-functions +%%DATADIR%%/n-help +%%DATADIR%%/n-history +%%DATADIR%%/n-kill +%%DATADIR%%/n-list +%%DATADIR%%/n-list-draw +%%DATADIR%%/n-list-input +%%DATADIR%%/n-options +%%DATADIR%%/n-panelize +%%DATADIR%%/znt-cd-widget +%%DATADIR%%/znt-history-widget +%%DATADIR%%/znt-kill-widget +%%DATADIR%%/znt-usetty-wrapper +%%DATADIR%%/zsh-navigation-tools.plugin.zsh