From owner-svn-ports-all@freebsd.org Wed Apr 6 03:23:43 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 9A2EBB03B9C; Wed, 6 Apr 2016 03:23:43 +0000 (UTC) (envelope-from wen@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 578E91602; Wed, 6 Apr 2016 03:23:43 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u363NgB7065064; Wed, 6 Apr 2016 03:23:42 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u363Nfa9065058; Wed, 6 Apr 2016 03:23:41 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201604060323.u363Nfa9065058@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Wed, 6 Apr 2016 03:23:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r412597 - in head/textproc: . zsh-syntax-highlighting zsh-syntax-highlighting/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.21 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: Wed, 06 Apr 2016 03:23:43 -0000 Author: wen Date: Wed Apr 6 03:23:41 2016 New Revision: 412597 URL: https://svnweb.freebsd.org/changeset/ports/412597 Log: Zsh-syntax-highlighting enables highlighing of commands whilst they are typed at an interactive zsh prompt. This helps in reviewing commands before running them, particularly in catching syntax errors. WWW: https://github.com/zsh-users/zsh-syntax-highlighting PR: 208369 Submitted by: jrm@ftfl.ca Added: head/textproc/zsh-syntax-highlighting/ head/textproc/zsh-syntax-highlighting/Makefile (contents, props changed) head/textproc/zsh-syntax-highlighting/distinfo (contents, props changed) head/textproc/zsh-syntax-highlighting/files/ head/textproc/zsh-syntax-highlighting/files/pkg-message.in (contents, props changed) head/textproc/zsh-syntax-highlighting/pkg-descr (contents, props changed) head/textproc/zsh-syntax-highlighting/pkg-plist (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Wed Apr 6 02:21:45 2016 (r412596) +++ head/textproc/Makefile Wed Apr 6 03:23:41 2016 (r412597) @@ -1713,6 +1713,7 @@ SUBDIR += yould SUBDIR += zenxml SUBDIR += zorba + SUBDIR += zsh-syntax-highlighting SUBDIR += zu-aspell SUBDIR += zu-hunspell Added: head/textproc/zsh-syntax-highlighting/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/zsh-syntax-highlighting/Makefile Wed Apr 6 03:23:41 2016 (r412597) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= zsh-syntax-highlighting +PORTVERSION= 20160338 +CATEGORIES= textproc + +MAINTAINER= jrm@ftfl.ca +COMMENT= Fish shell like syntax highlighting for Zsh + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYING.md + +RUN_DEPENDS= ${LOCALBASE}/bin/zsh:shells/zsh + +USE_GITHUB= yes +GH_ACCOUNT= zsh-users +GH_TAGNAME= bc7f8ea + +SUB_FILES= pkg-message + +.include Added: head/textproc/zsh-syntax-highlighting/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/zsh-syntax-highlighting/distinfo Wed Apr 6 03:23:41 2016 (r412597) @@ -0,0 +1,2 @@ +SHA256 (zsh-users-zsh-syntax-highlighting-20160338-bc7f8ea_GH0.tar.gz) = 5d5540d67e98c1167005736849cbd0cf45330a67f8979c23f78fafc53f8e2996 +SIZE (zsh-users-zsh-syntax-highlighting-20160338-bc7f8ea_GH0.tar.gz) = 54361 Added: head/textproc/zsh-syntax-highlighting/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/zsh-syntax-highlighting/files/pkg-message.in Wed Apr 6 03:23:41 2016 (r412597) @@ -0,0 +1,9 @@ +================================================================================ +Zsh-syntax-highlighting requires zsh 4.3.17+. + +Add the line below to *the end of* your .zshrc to enable hightlighting. + +source %%DATADIR%%/zsh-syntax-highlighting.zsh + +DATADIR is usually %%PREFIX%%/share/zsh-syntax-highlighting. +================================================================================ Added: head/textproc/zsh-syntax-highlighting/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/zsh-syntax-highlighting/pkg-descr Wed Apr 6 03:23:41 2016 (r412597) @@ -0,0 +1,5 @@ +Zsh-syntax-highlighting enables highlighing of commands whilst they +are typed at an interactive zsh prompt. This helps in reviewing +commands before running them, particularly in catching syntax errors. + +WWW: https://github.com/zsh-users/zsh-syntax-highlighting Added: head/textproc/zsh-syntax-highlighting/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/zsh-syntax-highlighting/pkg-plist Wed Apr 6 03:23:41 2016 (r412597) @@ -0,0 +1,20 @@ +%%PORTDOCS%%%%DOCSDIR%%/COPYING.md +%%PORTDOCS%%%%DOCSDIR%%/README.md +%%PORTDOCS%%%%DOCSDIR%%/all.md +%%PORTDOCS%%%%DOCSDIR%%/changelog.md +%%PORTDOCS%%%%DOCSDIR%%/highlighters.md +%%PORTDOCS%%%%DOCSDIR%%/highlighters/brackets.md +%%PORTDOCS%%%%DOCSDIR%%/highlighters/cursor.md +%%PORTDOCS%%%%DOCSDIR%%/highlighters/line.md +%%PORTDOCS%%%%DOCSDIR%%/highlighters/main.md +%%PORTDOCS%%%%DOCSDIR%%/highlighters/pattern.md +%%PORTDOCS%%%%DOCSDIR%%/highlighters/root.md +%%DATADIR%%/.revision-hash +%%DATADIR%%/.version +%%DATADIR%%/highlighters/brackets/brackets-highlighter.zsh +%%DATADIR%%/highlighters/cursor/cursor-highlighter.zsh +%%DATADIR%%/highlighters/line/line-highlighter.zsh +%%DATADIR%%/highlighters/main/main-highlighter.zsh +%%DATADIR%%/highlighters/pattern/pattern-highlighter.zsh +%%DATADIR%%/highlighters/root/root-highlighter.zsh +%%DATADIR%%/zsh-syntax-highlighting.zsh