svn commit: r351962 - in head/devel: . git-bzr-ng

Dmitry Marakasov amdmi3 at FreeBSD.org
Wed Apr 23 17:49:49 UTC 2014


Author: amdmi3
Date: Wed Apr 23 17:49:48 2014
New Revision: 351962
URL: http://svnweb.freebsd.org/changeset/ports/351962
QAT: https://qat.redports.org/buildarchive/r351962/

Log:
  git-bzr-ng is a bidirectional bridge between git and bzr that lets
  you stop worrying which version control the code you love is using -
  as long as they are using git or bzr
  
  WWW: https://github.com/termie/git-bzr-ng

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Wed Apr 23 17:46:20 2014	(r351961)
+++ head/devel/Makefile	Wed Apr 23 17:49:48 2014	(r351962)
@@ -547,6 +547,7 @@
     SUBDIR += gindent
     SUBDIR += gio-sharp
     SUBDIR += git
+    SUBDIR += git-bzr-ng
     SUBDIR += git-merge-changelog
     SUBDIR += git-modes
     SUBDIR += git-review

Added: head/devel/git-bzr-ng/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/git-bzr-ng/Makefile	Wed Apr 23 17:49:48 2014	(r351962)
@@ -0,0 +1,36 @@
+# Created by: Dmitry Marakasov <amdmi3 at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	git-bzr-ng
+PORTVERSION=	git20140423
+CATEGORIES=	devel
+
+MAINTAINER=	amdmi3 at FreeBSD.org
+COMMENT=	Bi-directional git to bzr bridge
+
+LICENSE=	BSD3CLAUSE
+
+RUN_DEPENDS=	git:${PORTSDIR}/devel/git \
+		bzr:${PORTSDIR}/devel/bzr \
+		${PYTHON_SITELIBDIR}/bzrlib/plugins/fastimport/__init__.py:${PORTSDIR}/devel/bzr-fastimport
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	termie
+GH_TAGNAME=	${GH_COMMIT}
+GH_COMMIT=	9878a30
+
+NO_BUILD=	yes
+PLIST_FILES=	libexec/git-core/git-bzr
+PLIST_DIRSTRY=	libexec/git-core
+PORTDOCS=	*
+USE_PYTHON_RUN=	2
+
+OPTIONS_DEFINE=	DOCS
+
+do-install:
+	${MKDIR} ${STAGEDIR}${PREFIX}/libexec/git-core
+	${INSTALL_SCRIPT} ${WRKSRC}/git-bzr ${STAGEDIR}${PREFIX}/libexec/git-core/
+	${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/README.rst ${STAGEDIR}${DOCSDIR}/
+
+.include <bsd.port.mk>

Added: head/devel/git-bzr-ng/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/git-bzr-ng/distinfo	Wed Apr 23 17:49:48 2014	(r351962)
@@ -0,0 +1,2 @@
+SHA256 (git-bzr-ng-git20140423.tar.gz) = 548827396bbabdf2b311e7bc783e8e9afc24391f29eae3c95eb5129bd81525be
+SIZE (git-bzr-ng-git20140423.tar.gz) = 12443

Added: head/devel/git-bzr-ng/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/git-bzr-ng/pkg-descr	Wed Apr 23 17:49:48 2014	(r351962)
@@ -0,0 +1,5 @@
+git-bzr-ng is a bidirectional bridge between git and bzr that lets
+you stop worrying which version control the code you love is using -
+as long as they are using git or bzr
+
+WWW: https://github.com/termie/git-bzr-ng


More information about the svn-ports-all mailing list