From c9839c0eb33b2446ac0c6413d23c70b57d027f55 Mon Sep 17 00:00:00 2001 From: Sam Hatchett Date: Tue, 15 Sep 2015 10:45:51 -0400 Subject: [PATCH] adding authors listing tool and initial AUTHORS file --- AUTHORS | 24 ++++++++++++++++++++++++ tools/update-authors.sh | 22 ++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 AUTHORS create mode 100755 tools/update-authors.sh diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..6738417 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,24 @@ +# Authors ordered by first contribution. + +Jessica Orquina +Michael Tryby +sam hatchett +Feng Shang +James Uber +Sam Hatchett +Tom Taxon +Hyoungmin Woo +Mickey +JinduanChen +mickey +yuniersoad +jamesuber +Mike Kane +eldemet +Will Furnass +Steffen Macke +Mariosmsk +Elad Salomons +Demetrios Eliades + +# Generated by tools/update-authors.sh diff --git a/tools/update-authors.sh b/tools/update-authors.sh new file mode 100755 index 0000000..17ea7a6 --- /dev/null +++ b/tools/update-authors.sh @@ -0,0 +1,22 @@ +#!/bin/sh + +git log --reverse --format='%aN <%aE>' | perl -we ' + +BEGIN { + %seen = (), @authors = (); +} + +while (<>) { + next if $seen{$_}; + next if /\@chromium.org/; + next if //; + $seen{$_} = push @authors, $_; +} + +END { + print "# Authors ordered by first contribution.\n"; + print "\n", @authors, "\n"; + print "# Generated by tools/update-authors.sh\n"; +} + +' > ../AUTHORS \ No newline at end of file