From owner-svn-ports-head@freebsd.org Sun Feb 4 02:49:00 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 D9DD9EE07AF; Sun, 4 Feb 2018 02:48:59 +0000 (UTC) (envelope-from yuri@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 7E71A68476; Sun, 4 Feb 2018 02:48:59 +0000 (UTC) (envelope-from yuri@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 74EE514007; Sun, 4 Feb 2018 02:48:59 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w142mxSS098051; Sun, 4 Feb 2018 02:48:59 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w142mxsx098047; Sun, 4 Feb 2018 02:48:59 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201802040248.w142mxsx098047@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 4 Feb 2018 02:48:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r460862 - in head/devel: . git-town X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . git-town X-SVN-Commit-Revision: 460862 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: Sun, 04 Feb 2018 02:49:00 -0000 Author: yuri Date: Sun Feb 4 02:48:58 2018 New Revision: 460862 URL: https://svnweb.freebsd.org/changeset/ports/460862 Log: New port: devel/git-town: Git extension for generic, high-level git workflow support This extension adds several git commands of the form "git town {subcommand} {arguments}". See the tutorial: http://www.git-town.com/tutorial.html Approved by: adamw (mentor) Differential Revision: https://reviews.freebsd.org/D14189 Added: head/devel/git-town/ head/devel/git-town/Makefile (contents, props changed) head/devel/git-town/distinfo (contents, props changed) head/devel/git-town/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Feb 4 01:01:34 2018 (r460861) +++ head/devel/Makefile Sun Feb 4 02:48:58 2018 (r460862) @@ -766,6 +766,7 @@ SUBDIR += git-modes SUBDIR += git-review SUBDIR += git-subversion + SUBDIR += git-town SUBDIR += gitaly SUBDIR += gitblit SUBDIR += gitflow Added: head/devel/git-town/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/git-town/Makefile Sun Feb 4 02:48:58 2018 (r460862) @@ -0,0 +1,36 @@ +# $FreeBSD$ + +PORTNAME= git-town +DISTVERSIONPREFIX= v +DISTVERSION= 6.0.1 +CATEGORIES= devel + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Git extension for generic, high-level git workflow support + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= go:lang/go +RUN_DEPENDS= git:devel/git + +USE_GITHUB= yes +GH_ACCOUNT= Originate +GH_SUBDIR= src/github.com/${GH_ACCOUNT}/${PORTNAME} + +PLIST_FILES= bin/${PORTNAME} + +OPTIONS_DEFINE= DOCS + +PORTDOCS= * + +do-build: + @cd ${WRKSRC}/${GH_SUBDIR} && ${SETENV} GOPATH=${WRKSRC} go build + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/ + +do-install-DOCS-on: + cd ${WRKSRC}/documentation && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} + +.include Added: head/devel/git-town/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/git-town/distinfo Sun Feb 4 02:48:58 2018 (r460862) @@ -0,0 +1,3 @@ +TIMESTAMP = 1517708275 +SHA256 (Originate-git-town-v6.0.1_GH0.tar.gz) = c24972d005c708c3b2534113256ce5a6d447c0576013aea3443156858c4bbf4f +SIZE (Originate-git-town-v6.0.1_GH0.tar.gz) = 10039806 Added: head/devel/git-town/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/git-town/pkg-descr Sun Feb 4 02:48:58 2018 (r460862) @@ -0,0 +1,6 @@ +Git Town makes software development teams who use Git even more productive +and happy. It adds Git commands that support GitHub Flow, Git Flow, the Nvie +model, GitLab Flow, and other workflows more directly, and it allows you to +perform many common Git operations faster and easier. + +WWW: http://www.git-town.com