Date: Mon, 18 Jun 2018 04:59:40 +0000 (UTC) From: Tobias Kortkamp <tobik@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472672 - in head/shells: . zsh-antigen zsh-antigen/files Message-ID: <201806180459.w5I4xetT082530@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tobik Date: Mon Jun 18 04:59:40 2018 New Revision: 472672 URL: https://svnweb.freebsd.org/changeset/ports/472672 Log: New port: shells/zsh-antigen Antigen is a small set of functions that help you easily manage your Z shell (zsh) plugins, called bundles. The concept is pretty much the same as bundles in a typical vim+pathogen setup. Antigen is to zsh, what Vundle is to vim. WWW: https://github.com/zsh-users/antigen PR: 217706 Submitted by: Victor <gudfitz@gmail.com> Added: head/shells/zsh-antigen/ head/shells/zsh-antigen/Makefile (contents, props changed) head/shells/zsh-antigen/distinfo (contents, props changed) head/shells/zsh-antigen/files/ head/shells/zsh-antigen/files/pkg-message.in (contents, props changed) head/shells/zsh-antigen/pkg-descr (contents, props changed) Modified: head/shells/Makefile Modified: head/shells/Makefile ============================================================================== --- head/shells/Makefile Mon Jun 18 04:16:19 2018 (r472671) +++ head/shells/Makefile Mon Jun 18 04:59:40 2018 (r472672) @@ -49,6 +49,7 @@ SUBDIR += wcd SUBDIR += xonsh SUBDIR += zsh + SUBDIR += zsh-antigen SUBDIR += zsh-navigation-tools .include <bsd.port.subdir.mk> Added: head/shells/zsh-antigen/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/zsh-antigen/Makefile Mon Jun 18 04:59:40 2018 (r472672) @@ -0,0 +1,30 @@ +# $FreeBSD$ + +PORTNAME= zsh-antigen +DISTVERSIONPREFIX= v +DISTVERSION= 2.2.3 +CATEGORIES= shells + +MAINTAINER= gudfitz@gmail.com +COMMENT= Tool for managing Zshell plugins inspired by Vundle + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= zsh>=4.3.11:shells/zsh \ + git:devel/git + +USE_GITHUB= yes +GH_ACCOUNT= zsh-users +GH_PROJECT= antigen + +NO_ARCH= yes +NO_BUILD= yes +PLIST_FILES= ${DATADIR}/antigen.zsh +SUB_FILES= pkg-message + +do-install: + @${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/bin/antigen.zsh ${STAGEDIR}${DATADIR} + +.include <bsd.port.mk> Added: head/shells/zsh-antigen/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/zsh-antigen/distinfo Mon Jun 18 04:59:40 2018 (r472672) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529013823 +SHA256 (zsh-users-antigen-v2.2.3_GH0.tar.gz) = bd3f1077050d52f459bc30fa3f025c44c528d625b4924a2f487fd2bacb89d61e +SIZE (zsh-users-antigen-v2.2.3_GH0.tar.gz) = 72679 Added: head/shells/zsh-antigen/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/zsh-antigen/files/pkg-message.in Mon Jun 18 04:59:40 2018 (r472672) @@ -0,0 +1 @@ +Antigen can be found at %%DATADIR%%/antigen.zsh Added: head/shells/zsh-antigen/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/zsh-antigen/pkg-descr Mon Jun 18 04:59:40 2018 (r472672) @@ -0,0 +1,6 @@ +Antigen is a small set of functions that help you easily manage +your Z shell (zsh) plugins, called bundles. The concept is pretty +much the same as bundles in a typical vim+pathogen setup. Antigen +is to zsh, what Vundle is to vim. + +WWW: https://github.com/zsh-users/antigen
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806180459.w5I4xetT082530>