Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 4 Nov 2012 15:42:35 +0000 (UTC)
From:      Raphael Kubo da Costa <rakuco@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r306972 - in head/devel: . git-review
Message-ID:  <201211041542.qA4FgZqU020050@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rakuco
Date: Sun Nov  4 15:42:34 2012
New Revision: 306972
URL: http://svn.freebsd.org/changeset/ports/306972

Log:
  Add devel/git-review.
  
  Git review allows you to extend git to interact more easily with a
  Gerrit server from the console.
  
  It allows you to push change to review, download a changeset into a
  new branch, push a change as draft or push an amended change as new
  patchset.
  
  PR:		ports/173006
  Submitted by:	Sébastien Santoro aka Dereckson <dereckson@gmail.com>
  Feature safe:	yes

Added:
  head/devel/git-review/
  head/devel/git-review/Makefile   (contents, props changed)
  head/devel/git-review/distinfo   (contents, props changed)
  head/devel/git-review/pkg-descr   (contents, props changed)
  head/devel/git-review/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Nov  4 15:42:09 2012	(r306971)
+++ head/devel/Makefile	Sun Nov  4 15:42:34 2012	(r306972)
@@ -530,6 +530,7 @@
     SUBDIR += gio-sharp
     SUBDIR += git
     SUBDIR += git-merge-changelog
+    SUBDIR += git-review
     SUBDIR += git-subversion
     SUBDIR += gitg
     SUBDIR += gitolite

Added: head/devel/git-review/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/git-review/Makefile	Sun Nov  4 15:42:34 2012	(r306972)
@@ -0,0 +1,32 @@
+# $FreeBSD$
+
+PORTNAME=	git-review
+PORTVERSION=	1.18
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+MASTER_SITE_SUBDIR=	source/g/${PORTNAME}
+
+MAINTAINER=	dereckson@gmail.com
+COMMENT=	Allow to push review and interact with a Gerrit server
+
+LICENSE=	AL2
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}argparse>0:${PORTSDIR}/devel/py-argparse \
+		git:${PORTSDIR}/devel/git
+
+USE_PYTHON=	yes
+NO_BUILD=	yes
+
+MAN1=		git-review.1
+
+do-install:
+	${INSTALL_SCRIPT} ${WRKSRC}/git-review ${PREFIX}/bin/git-review
+	${INSTALL_MAN} ${WRKSRC}/git-review.1 ${PREFIX}/man/man1
+.if !defined(NOPORTDOCS)
+	${MKDIR} ${DOCSDIR}
+	${INSTALL_MAN} ${WRKSRC}/README.md ${DOCSDIR}
+	${INSTALL_MAN} ${WRKSRC}/HACKING ${DOCSDIR}
+	${INSTALL_MAN} ${WRKSRC}/AUTHORS ${DOCSDIR}
+.endif
+
+.include <bsd.port.mk>

Added: head/devel/git-review/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/git-review/distinfo	Sun Nov  4 15:42:34 2012	(r306972)
@@ -0,0 +1,2 @@
+SHA256 (git-review-1.18.tar.gz) = 682b434a2eaf40e172728a9012bd0e461b892784f266e4829f55e3480f588772
+SIZE (git-review-1.18.tar.gz) = 17062

Added: head/devel/git-review/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/git-review/pkg-descr	Sun Nov  4 15:42:34 2012	(r306972)
@@ -0,0 +1,7 @@
+Git review allows you to extend git to interact more easily with a Gerrit server
+from the console.
+
+It allows you to push change to review, download a changeset into a new branch,
+push a change as draft or push an amended change as new patchset.
+
+WWW: https://launchpad.net/git-review

Added: head/devel/git-review/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/git-review/pkg-plist	Sun Nov  4 15:42:34 2012	(r306972)
@@ -0,0 +1,5 @@
+bin/git-review
+%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
+%%PORTDOCS%%%%DOCSDIR%%/HACKING
+%%PORTDOCS%%%%DOCSDIR%%/README.md
+%%PORTDOCS%%@dirrm %%DOCSDIR%%



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