From owner-svn-ports-all@freebsd.org Wed Oct 28 00:07:12 2015 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 4F7ACA1FEA3; Wed, 28 Oct 2015 00:07:12 +0000 (UTC) (envelope-from jonathan@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 F144D1A75; Wed, 28 Oct 2015 00:07:11 +0000 (UTC) (envelope-from jonathan@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9S07ApU018724; Wed, 28 Oct 2015 00:07:10 GMT (envelope-from jonathan@FreeBSD.org) Received: (from jonathan@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9S07AY6018721; Wed, 28 Oct 2015 00:07:10 GMT (envelope-from jonathan@FreeBSD.org) Message-Id: <201510280007.t9S07AY6018721@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jonathan set sender to jonathan@FreeBSD.org using -f From: Jonathan Anderson Date: Wed, 28 Oct 2015 00:07:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r400363 - head/devel/myrepos 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.20 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: Wed, 28 Oct 2015 00:07:12 -0000 Author: jonathan (src committer) Date: Wed Oct 28 00:07:10 2015 New Revision: 400363 URL: https://svnweb.freebsd.org/changeset/ports/400363 Log: Add new port: devel/libdistance. This is a library for calculating the edit distance between strings or data using various metrics (Levenshtein, Damerau, Needleman-Wunsch, Hamming...). Reviewed by: garga Approved by: brooks Differential Revision: https://reviews.freebsd.org/D3730 Added: head/devel/myrepos/ head/devel/myrepos/Makefile (contents, props changed) head/devel/myrepos/distinfo (contents, props changed) head/devel/myrepos/pkg-descr (contents, props changed) Added: head/devel/myrepos/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/myrepos/Makefile Wed Oct 28 00:07:10 2015 (r400363) @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= myrepos +PORTVERSION= 1.20130710 +CATEGORIES= devel + +MAINTAINER= jonathan@FreeBSD.org +COMMENT= Tool to manage all your version control repos + +LICENSE= GPLv2 + +USE_GITHUB= yes +GH_ACCOUNT= joeyh + +USES+= perl5 shebangfix +USE_PERL5= run +SHEBANG_FILES= mr + +PLIST_FILES= bin/mr +PORTDOCS= README index.mdwn + +NO_BUILD= + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/mr ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC} && ${INSTALL_DATA} README doc/*.mdwn ${STAGEDIR}${DOCSDIR}) + +.include Added: head/devel/myrepos/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/myrepos/distinfo Wed Oct 28 00:07:10 2015 (r400363) @@ -0,0 +1,2 @@ +SHA256 (joeyh-myrepos-1.20130710_GH0.tar.gz) = 3f5747f7fcaebc2d2291f28765e0f9f76ff889da1d3ad8e519be3d798eb726d9 +SIZE (joeyh-myrepos-1.20130710_GH0.tar.gz) = 42451 Added: head/devel/myrepos/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/myrepos/pkg-descr Wed Oct 28 00:07:10 2015 (r400363) @@ -0,0 +1,10 @@ +You have a lot of version control repositories. Sometimes you want to +update them all at once. Or push out all your local changes. You use +special command lines in some repositories to implement specific workflows. +Myrepos provides a `mr` command, which is a tool to manage all your version +control repositories. + +It supports git, svn, mercurial, bzr, darcs, cvs, fossil and veracity. + +Author: Joey Hess +WWW: http://myrepos.branchable.com/