From owner-svn-ports-head@freebsd.org Mon May 20 21:04:03 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 861BC159284A; Mon, 20 May 2019 21:04:03 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 25BD5928EF; Mon, 20 May 2019 21:04:03 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AE29323C16; Mon, 20 May 2019 21:04:02 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x4KL42EJ072116; Mon, 20 May 2019 21:04:02 GMT (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x4KL41jx072111; Mon, 20 May 2019 21:04:01 GMT (envelope-from jhb@FreeBSD.org) Message-Id: <201905202104.x4KL41jx072111@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jhb set sender to jhb@FreeBSD.org using -f From: John Baldwin Date: Mon, 20 May 2019 21:04:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r502170 - in head/devel: . git-subrepo X-SVN-Group: ports-head X-SVN-Commit-Author: jhb X-SVN-Commit-Paths: in head/devel: . git-subrepo X-SVN-Commit-Revision: 502170 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 25BD5928EF X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.983,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 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: Mon, 20 May 2019 21:04:03 -0000 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 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