From owner-svn-ports-head@freebsd.org Sat Mar 10 19:22:34 2018 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 6B813F2BC73; Sat, 10 Mar 2018 19:22:34 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2176F8085D; Sat, 10 Mar 2018 19:22:34 +0000 (UTC) (envelope-from dbaio@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 1C72E1212F; Sat, 10 Mar 2018 19:22:34 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2AJMXg3013859; Sat, 10 Mar 2018 19:22:33 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2AJMXNT013855; Sat, 10 Mar 2018 19:22:33 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201803101922.w2AJMXNT013855@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Sat, 10 Mar 2018 19:22:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r464087 - in head/misc: . with X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: in head/misc: . with X-SVN-Commit-Revision: 464087 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 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: Sat, 10 Mar 2018 19:22:34 -0000 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 , 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 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 +, for example: + + $ with git + git> add . + git> commit -a -m "Commited" + git> push + +WWW: https://github.com/mchav/with