Date: Sat, 10 Mar 2018 19:22:33 +0000 (UTC) From: "Danilo G. Baio" <dbaio@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r464087 - in head/misc: . with Message-ID: <201803101922.w2AJMXNT013855@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dbaio Date: Sat Mar 10 19:22:33 2018 New Revision: 464087 URL: https://svnweb.freebsd.org/changeset/ports/464087 Log: Add misc/with: Command prefixing for continuous workflow using a single tool Starts an interactive shell with where every command is prefixed using <program>, for example: $ with git git> add . git> commit -a -m "Commited" git> push WWW: https://github.com/mchav/with PR: 226407 Submitted by: Mateusz Piotrowski <0mp@FreeBSD.org> Added: head/misc/with/ head/misc/with/Makefile (contents, props changed) head/misc/with/distinfo (contents, props changed) head/misc/with/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Sat Mar 10 19:08:08 2018 (r464086) +++ head/misc/Makefile Sat Mar 10 19:22:33 2018 (r464087) @@ -502,6 +502,7 @@ SUBDIR += viz SUBDIR += whichman SUBDIR += window + SUBDIR += with SUBDIR += wmScoreBoard SUBDIR += wmcalendar SUBDIR += wmjulia Added: head/misc/with/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/with/Makefile Sat Mar 10 19:22:33 2018 (r464087) @@ -0,0 +1,38 @@ +# $FreeBSD$ + +PORTNAME= with +DISTVERSION= g20171025 +CATEGORIES= misc + +MAINTAINER= 0mp@FreeBSD.org +COMMENT= Command prefixing for continuous workflow using a single tool + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= bash:shells/bash + +USE_GITHUB= yes +GH_ACCOUNT= mchav +GH_TAGNAME= 3d0ed3d + +NO_ARCH= yes +NO_BUILD= yes + +PLIST_FILES= bin/with \ + etc/bash_completion.d/with.bash-completion +PORTDOCS= README.md + +OPTIONS_DEFINE= DOCS + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/with ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d + ${INSTALL_DATA} ${WRKSRC}/with.bash-completion \ + ${STAGEDIR}${PREFIX}/etc/bash_completion.d + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} + +.include <bsd.port.mk> Added: head/misc/with/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/with/distinfo Sat Mar 10 19:22:33 2018 (r464087) @@ -0,0 +1,3 @@ +TIMESTAMP = 1520369229 +SHA256 (mchav-with-g20171025-3d0ed3d_GH0.tar.gz) = fa597cf4122875cb3e9320919c581fcb175fb226e4b2afebd6834e4f1560f61e +SIZE (mchav-with-g20171025-3d0ed3d_GH0.tar.gz) = 4822 Added: head/misc/with/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/with/pkg-descr Sat Mar 10 19:22:33 2018 (r464087) @@ -0,0 +1,11 @@ +Command prefixing for continuous workflow using a single tool. + +Starts an interactive shell with where every command is prefixed using +<program>, for example: + + $ with git + git> add . + git> commit -a -m "Commited" + git> push + +WWW: https://github.com/mchav/with
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803101922.w2AJMXNT013855>