Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 17 May 2015 10:29:43 +0000 (UTC)
From:      Mathieu Arnold <mat@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r386595 - in head/devel: . gitflow
Message-ID:  <201505171029.t4HAThH5096065@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <nbari@dalmp.com>
+# $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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505171029.t4HAThH5096065>