From owner-svn-ports-head@freebsd.org Tue Jan 12 11:17:34 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8681AA6DE76; Tue, 12 Jan 2016 11:17:34 +0000 (UTC) (envelope-from matthew@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 mx1.freebsd.org (Postfix) with ESMTPS id 43F6B1BB6; Tue, 12 Jan 2016 11:17:34 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0CBHXWg052892; Tue, 12 Jan 2016 11:17:33 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0CBHWr5052887; Tue, 12 Jan 2016 11:17:32 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201601121117.u0CBHWr5052887@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Tue, 12 Jan 2016 11:17:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r405862 - in head/devel: . rubygem-svn2git X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 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: Tue, 12 Jan 2016 11:17:34 -0000 Author: matthew Date: Tue Jan 12 11:17:32 2016 New Revision: 405862 URL: https://svnweb.freebsd.org/changeset/ports/405862 Log: svn2git is a tiny utility for migrating projects from Subversion to Git while keeping the trunk, branches and tags where they should be. It uses git-svn to clone an svn repository and does some clean-up to make sure branches and tags are imported in a meaningful way, and that the code checked into master ends up being what's currently in your svn trunk rather than whichever svn branch your last commit was in. WWW: https://github.com/nirvdrum/svn2git Added: head/devel/rubygem-svn2git/ head/devel/rubygem-svn2git/Makefile (contents, props changed) head/devel/rubygem-svn2git/distinfo (contents, props changed) head/devel/rubygem-svn2git/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Jan 12 11:16:14 2016 (r405861) +++ head/devel/Makefile Tue Jan 12 11:17:32 2016 (r405862) @@ -5077,6 +5077,7 @@ SUBDIR += rubygem-sugar-high SUBDIR += rubygem-sumbur SUBDIR += rubygem-sundawg_country_codes + SUBDIR += rubygem-svn2git SUBDIR += rubygem-sysinfo SUBDIR += rubygem-systemu SUBDIR += rubygem-table_print Added: head/devel/rubygem-svn2git/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-svn2git/Makefile Tue Jan 12 11:17:32 2016 (r405862) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= svn2git +PORTVERSION= 2.3.2 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= matthew@FreeBSD.org +COMMENT= Ruby utilities for exporting SVN repo to git + +LICENSE= MIT + +RUN_DEPENDS= git-subversion>0:${PORTSDIR}/devel/git-subversion + +NO_ARCH= yes +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/devel/rubygem-svn2git/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-svn2git/distinfo Tue Jan 12 11:17:32 2016 (r405862) @@ -0,0 +1,2 @@ +SHA256 (rubygem/svn2git-2.3.2.gem) = 74e9ea79a80b2bb36e776fa243b0aa52e72c37a39de34f357b71f74d1717696e +SIZE (rubygem/svn2git-2.3.2.gem) = 16896 Added: head/devel/rubygem-svn2git/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-svn2git/pkg-descr Tue Jan 12 11:17:32 2016 (r405862) @@ -0,0 +1,9 @@ +svn2git is a tiny utility for migrating projects from Subversion to +Git while keeping the trunk, branches and tags where they should +be. It uses git-svn to clone an svn repository and does some clean-up +to make sure branches and tags are imported in a meaningful way, and +that the code checked into master ends up being what's currently in +your svn trunk rather than whichever svn branch your last commit was +in. + +WWW: https://github.com/nirvdrum/svn2git