From owner-svn-ports-all@freebsd.org Thu Mar 3 10:11:12 2016 Return-Path: Delivered-To: svn-ports-all@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 756B3A93849; Thu, 3 Mar 2016 10:11:12 +0000 (UTC) (envelope-from rakuco@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 2E24CDC0; Thu, 3 Mar 2016 10:11:12 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u23ABB2B088704; Thu, 3 Mar 2016 10:11:11 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u23ABAxH088700; Thu, 3 Mar 2016 10:11:10 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201603031011.u23ABAxH088700@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Thu, 3 Mar 2016 10:11:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r410021 - in head/devel: . git-cvs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Mar 2016 10:11:12 -0000 Author: rakuco Date: Thu Mar 3 10:11:10 2016 New Revision: 410021 URL: https://svnweb.freebsd.org/changeset/ports/410021 Log: New port: devel/git-cvs. Tool to incrementally import changesets from CVS into a Git repository with stable commit hashes. WWW: https://github.com/ustuehler/git-cvs/ PR: 207456 Submitted by: mp39590@gmail.com Added: head/devel/git-cvs/ head/devel/git-cvs/Makefile (contents, props changed) head/devel/git-cvs/distinfo (contents, props changed) head/devel/git-cvs/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Mar 3 10:10:11 2016 (r410020) +++ head/devel/Makefile Thu Mar 3 10:11:10 2016 (r410021) @@ -660,6 +660,7 @@ SUBDIR += git-bzr-ng SUBDIR += git-codereview SUBDIR += git-cola + SUBDIR += git-cvs SUBDIR += git-extras SUBDIR += git-gui SUBDIR += git-lfs Added: head/devel/git-cvs/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/git-cvs/Makefile Thu Mar 3 10:11:10 2016 (r410021) @@ -0,0 +1,23 @@ +# Created by: mp39590@gmail.com +# $FreeBSD$ + +PORTNAME= git-cvs +PORTVERSION= 0.0.1.20151027 +CATEGORIES= devel python + +MAINTAINER= mp39590@gmail.com +COMMENT= Tool to incrementally import changesets from CVS into Git + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}rcsparse>0:${PORTSDIR}/devel/py-rcsparse \ + ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 + +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_GITHUB= yes +GH_ACCOUNT= ustuehler +GH_TAGNAME= d068834 + +USES= python:2.7 +USE_PYTHON= autoplist distutils + +.include Added: head/devel/git-cvs/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/git-cvs/distinfo Thu Mar 3 10:11:10 2016 (r410021) @@ -0,0 +1,2 @@ +SHA256 (ustuehler-git-cvs-0.0.1.20151027-d068834_GH0.tar.gz) = 632d30087c30f57c834e843e9334f1367a46bfb3f53a3e44d4c26eef8e16a08f +SIZE (ustuehler-git-cvs-0.0.1.20151027-d068834_GH0.tar.gz) = 67055 Added: head/devel/git-cvs/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/git-cvs/pkg-descr Thu Mar 3 10:11:10 2016 (r410021) @@ -0,0 +1,4 @@ +Tool to incrementally import changesets from CVS into a Git repository with +stable commit hashes. + +WWW: https://github.com/ustuehler/git-cvs/