Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 May 2019 21:04:01 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r502170 - in head/devel: . git-subrepo
Message-ID:  <201905202104.x4KL41jx072111@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhb (src,doc committer)
Date: Mon May 20 21:04:01 2019
New Revision: 502170
URL: https://svnweb.freebsd.org/changeset/ports/502170

Log:
  New port: devel/git-subrepo: Git command for managing subrepositories
  
  This git command "clones" an external git repo into a subdirectory of
  your repo.  Later on, upstream changes can be pulled in, and local
  changes can be pushed back.
  
  WWW: https://github.com/ingydotnet/git-subrepo
  
  Reviewed by:	brooks
  Approved by:	bdrewery
  Feedback from:	mat
  Differential Revision:	https://reviews.freebsd.org/D20189

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon May 20 20:45:19 2019	(r502169)
+++ head/devel/Makefile	Mon May 20 21:04:01 2019	(r502170)
@@ -787,6 +787,7 @@
     SUBDIR += git-modes
     SUBDIR += git-remote-hg
     SUBDIR += git-review
+    SUBDIR += git-subrepo
     SUBDIR += git-subversion
     SUBDIR += git-town
     SUBDIR += gitaly

Added: head/devel/git-subrepo/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/git-subrepo/Makefile	Mon May 20 21:04:01 2019	(r502170)
@@ -0,0 +1,26 @@
+# $FreeBSD$
+
+PORTNAME=	git-subrepo
+DISTVERSION=	0.4.0
+CATEGORIES=	devel
+
+MAINTAINER=	jhb@FreeBSD.org
+COMMENT=	Git command for managing subrepositories
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/License
+
+RUN_DEPENDS=	bash:shells/bash \
+		git:devel/git
+
+USES=		gmake
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	ingydotnet
+
+NO_ARCH=	yes
+NO_BUILD=	yes
+
+MAKE_ARGS=	INSTALL_MAN1="\$${DESTDIR}\$${MANPREFIX}/man/man1"
+
+.include <bsd.port.mk>

Added: head/devel/git-subrepo/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/git-subrepo/distinfo	Mon May 20 21:04:01 2019	(r502170)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1557267733
+SHA256 (ingydotnet-git-subrepo-0.4.0_GH0.tar.gz) = e60243efeebd9ae195559400220366e7e04718123481b9da38344e75bab71d21
+SIZE (ingydotnet-git-subrepo-0.4.0_GH0.tar.gz) = 118241

Added: head/devel/git-subrepo/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/git-subrepo/pkg-descr	Mon May 20 21:04:01 2019	(r502170)
@@ -0,0 +1,5 @@
+This git command "clones" an external git repo into a subdirectory of
+your repo.  Later on, upstream changes can be pulled in, and local
+changes can be pushed back.
+
+WWW: https://github.com/ingydotnet/git-subrepo

Added: head/devel/git-subrepo/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/git-subrepo/pkg-plist	Mon May 20 21:04:01 2019	(r502170)
@@ -0,0 +1,4 @@
+libexec/git-core/git-subrepo
+libexec/git-core/git-subrepo.d/bash+.bash
+libexec/git-core/git-subrepo.d/help-functions.bash
+man/man1/git-subrepo.1.gz



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