From owner-svn-ports-head@FreeBSD.ORG Sun May 17 10:29:45 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 612653F7; Sun, 17 May 2015 10:29:45 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 40E1E1E51; Sun, 17 May 2015 10:29:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4HATjY8096073; Sun, 17 May 2015 10:29:45 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4HAThH5096065; Sun, 17 May 2015 10:29:43 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201505171029.t4HAThH5096065@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Sun, 17 May 2015 10:29:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r386595 - in head/devel: . gitflow X-SVN-Group: ports-head 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.20 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, 17 May 2015 10:29:45 -0000 Author: mat Date: Sun May 17 10:29:43 2015 New Revision: 386595 URL: https://svnweb.freebsd.org/changeset/ports/386595 Log: Add gitflow, an AVH Edition of the git extensions to provide high-level repository operations for Vincent Driessen's branching model PR: 200093 Submitted by: nbari_dalmp_com Sponsored by: Absolight Added: head/devel/gitflow/ head/devel/gitflow/Makefile (contents, props changed) head/devel/gitflow/distinfo (contents, props changed) head/devel/gitflow/pkg-descr (contents, props changed) head/devel/gitflow/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun May 17 10:20:32 2015 (r386594) +++ head/devel/Makefile Sun May 17 10:29:43 2015 (r386595) @@ -564,6 +564,7 @@ SUBDIR += git-modes SUBDIR += git-review SUBDIR += git-subversion + SUBDIR += gitflow SUBDIR += gitg SUBDIR += gitg0 SUBDIR += gitinspector Added: head/devel/gitflow/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gitflow/Makefile Sun May 17 10:29:43 2015 (r386595) @@ -0,0 +1,28 @@ +# Created by: Nicolas Embriz +# $FreeBSD$ + +PORTNAME= gitflow +PORTVERSION= 1.8.0 +CATEGORIES= devel + +MAINTAINER= nbari@dalmp.com +COMMENT= Git extensions to provide high-level repository operations + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= ${LOCALBASE}/bin/getopt:${PORTSDIR}/misc/getopt + +USE_GITHUB= yes +GH_ACCOUNT= nbari + +OPTIONS_DEFINE= EXAMPLES + +USES= tar:bzip2 gmake + +NO_BUILD= yes +MAKE_ARGS= prefix=${STAGEDIR}${PREFIX} + +post-install: + ${MV} ${STAGEDIR}${DOCSDIR} ${STAGEDIR}${EXAMPLESDIR} + +.include Added: head/devel/gitflow/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gitflow/distinfo Sun May 17 10:29:43 2015 (r386595) @@ -0,0 +1,2 @@ +SHA256 (nbari-gitflow-1.8.0_GH0.tar.bz2) = 8239131b8dac160d7e929eab376fa14de44a55cbd5c5545e0ad4464d3a57adef +SIZE (nbari-gitflow-1.8.0_GH0.tar.bz2) = 56304 Added: head/devel/gitflow/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gitflow/pkg-descr Sun May 17 10:29:43 2015 (r386595) @@ -0,0 +1,6 @@ +git-flow (AVH Edition) + +A collection of Git extensions to provide high-level repository operations +for Vincent Driessen's branching model. + +WWW: http://nvie.com/git-model Added: head/devel/gitflow/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gitflow/pkg-plist Sun May 17 10:29:43 2015 (r386595) @@ -0,0 +1,48 @@ +bin/git-flow +bin/git-flow-config +bin/git-flow-feature +bin/git-flow-hotfix +bin/git-flow-init +bin/git-flow-log +bin/git-flow-release +bin/git-flow-support +bin/git-flow-version +bin/gitflow-common +bin/gitflow-shFlags +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/filter-flow-hotfix-finish-tag-message +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/filter-flow-hotfix-start-version +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/filter-flow-release-branch-tag-message +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/filter-flow-release-finish-tag-message +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/filter-flow-release-start-version +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/post-flow-feature-delete +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/post-flow-feature-finish +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/post-flow-feature-publish +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/post-flow-feature-pull +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/post-flow-feature-start +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/post-flow-feature-track +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/post-flow-hotfix-delete +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/post-flow-hotfix-finish +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/post-flow-hotfix-publish +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/post-flow-hotfix-start +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/post-flow-release-branch +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/post-flow-release-delete +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/post-flow-release-finish +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/post-flow-release-publish +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/post-flow-release-start +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/post-flow-release-track +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/pre-flow-feature-delete +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/pre-flow-feature-finish +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/pre-flow-feature-publish +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/pre-flow-feature-pull +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/pre-flow-feature-start +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/pre-flow-feature-track +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/pre-flow-hotfix-delete +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/pre-flow-hotfix-finish +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/pre-flow-hotfix-publish +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/pre-flow-hotfix-start +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/pre-flow-release-branch +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/pre-flow-release-delete +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/pre-flow-release-finish +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/pre-flow-release-publish +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/pre-flow-release-start +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hooks/pre-flow-release-track