From owner-svn-ports-head@freebsd.org Sun Jan 27 16:27:14 2019 Return-Path: Delivered-To: svn-ports-head@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 ACF7114B3295; Sun, 27 Jan 2019 16:27:14 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5537A713CB; Sun, 27 Jan 2019 16:27:14 +0000 (UTC) (envelope-from jrm@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 4A78BA80D; Sun, 27 Jan 2019 16:27:14 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x0RGREPp001632; Sun, 27 Jan 2019 16:27:14 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x0RGRDXh001628; Sun, 27 Jan 2019 16:27:13 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <201901271627.x0RGRDXh001628@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Sun, 27 Jan 2019 16:27:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r491367 - in head/textproc: . zsh-autosuggestions zsh-autosuggestions/files X-SVN-Group: ports-head X-SVN-Commit-Author: jrm X-SVN-Commit-Paths: in head/textproc: . zsh-autosuggestions zsh-autosuggestions/files X-SVN-Commit-Revision: 491367 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5537A713CB X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.977,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jan 2019 16:27:14 -0000 Author: jrm Date: Sun Jan 27 16:27:13 2019 New Revision: 491367 URL: https://svnweb.freebsd.org/changeset/ports/491367 Log: New port, textproc/zsh-autosuggestions: Autosuggestions for Zsh WWW: https://github.com/zsh-users/zsh-autosuggestions Added: head/textproc/zsh-autosuggestions/ head/textproc/zsh-autosuggestions/Makefile (contents, props changed) head/textproc/zsh-autosuggestions/distinfo (contents, props changed) head/textproc/zsh-autosuggestions/files/ head/textproc/zsh-autosuggestions/files/pkg-message.in (contents, props changed) head/textproc/zsh-autosuggestions/pkg-descr (contents, props changed) Modified: head/textproc/Makefile (contents, props changed) Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sun Jan 27 16:25:52 2019 (r491366) +++ head/textproc/Makefile Sun Jan 27 16:27:13 2019 (r491367) @@ -1881,6 +1881,7 @@ SUBDIR += yould SUBDIR += zenxml SUBDIR += zorba + SUBDIR += zsh-autosuggestions SUBDIR += zsh-syntax-highlighting SUBDIR += zu-aspell SUBDIR += zu-hunspell Added: head/textproc/zsh-autosuggestions/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/zsh-autosuggestions/Makefile Sun Jan 27 16:27:13 2019 (r491367) @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= zsh-autosuggestions +DISTVERSIONPREFIX= v +DISTVERSION= 0.5.0 +CATEGORIES= textproc + +MAINTAINER= jrm@FreeBSD.org +COMMENT= Fish-like autosuggestions for Zsh + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= zsh>=4.3:shells/zsh + +USE_GITHUB= yes +GH_ACCOUNT= zsh-users + +NO_ARCH= yes +NO_BUILD= yes +PLIST_FILES= ${DATADIR}/${PORTNAME}.zsh +SUB_FILES= pkg-message + +do-install: + @${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/zsh-autosuggestions.zsh ${STAGEDIR}/${DATADIR} + +.include Added: head/textproc/zsh-autosuggestions/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/zsh-autosuggestions/distinfo Sun Jan 27 16:27:13 2019 (r491367) @@ -0,0 +1,3 @@ +TIMESTAMP = 1548604584 +SHA256 (zsh-users-zsh-autosuggestions-v0.5.0_GH0.tar.gz) = 3067774d3129fa3220f7010d79ee735d1bbea0a07b6bf32c5b38dd37188538d9 +SIZE (zsh-users-zsh-autosuggestions-v0.5.0_GH0.tar.gz) = 23018 Added: head/textproc/zsh-autosuggestions/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/zsh-autosuggestions/files/pkg-message.in Sun Jan 27 16:27:13 2019 (r491367) @@ -0,0 +1,5 @@ +================================================================================ +Add the line below to your .zshrc to enable auto suggestions. + +source %%DATADIR%%/zsh-autosuggestions.zsh +================================================================================ Added: head/textproc/zsh-autosuggestions/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/zsh-autosuggestions/pkg-descr Sun Jan 27 16:27:13 2019 (r491367) @@ -0,0 +1,4 @@ +zsh-autosuggestions enables fast and unobtrusive fish-like autosuggestions +for Zsh. It suggests commands as you type, based on command history. + +WWW: https://github.com/zsh-users/zsh-autosuggestions