Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 27 Jan 2019 16:27:13 +0000 (UTC)
From:      Joseph Mingrone <jrm@FreeBSD.org>
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
Message-ID:  <201901271627.x0RGRDXh001628@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201901271627.x0RGRDXh001628>