From 3d27811a00f4cc6d1f1b9d0916c9e77b431dd09e Mon Sep 17 00:00:00 2001 From: Tzafrir Cohen Date: Mon, 19 Apr 2010 23:35:20 +0300 Subject: remove names that are in authors file * Some of the extra names I hardcoded are now in the authors file. * But also '(no author)'. Make sure it doesn't break anything. --- gen_authors | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/gen_authors b/gen_authors index 762e2ae..429f8bc 100755 --- a/gen_authors +++ b/gen_authors @@ -1,23 +1,8 @@ #!/bin/sh # Generate a AUTHORS file in the format git-svn likes (with an extra = sign) +# The extra case in the sed is for the '(no author)' line. wget -q -O- http://svn.digium.com/svn/repotools/authors \ -| sed -e 's/^[a-z]*/& =/' +| sed -e 's/^\([a-z-]\|(.*)\)*/& =/' -# A few things missing: -# Only in the initial commit: -echo '(no author) = Admin Commit ' -echo 'matteo = Matteo Brancaleoni ' -# An earlier persona of jdixon? -echo 'jim = Jim Dixon ' -# Is this the right email to use? -echo 'martinp = Martin Pycko ' -# Created and then deleted an empty file: -echo 'wmeadows = Test User ' -echo 'malcolmd = Malcolm Davenport ' -echo 'tholo = Thorsten lockert ' -# An earlier persona of jamesgolovich: -echo 'citats = James Golovich ' -echo 'anthm = Anthony Minessale II ' -echo 'root = Automerge script ' echo 'automerge = Automerge script ' -- cgit v1.2.3