Meta: Add authors files

This commit is contained in:
Rob Garrison 2017-06-08 19:25:17 -05:00
parent 5923ef0e0e
commit 8c6111dda0
4 changed files with 106 additions and 0 deletions

5
.mailmap Normal file
View File

@ -0,0 +1,5 @@
Rob Garrison <wowmotty@gmail.com> Mottie <wowmotty@gmail.com>
Rob Garrison <wowmotty@gmail.com> Rob G <wowmotty@gmail.com>
Justin F. Hallett <thesin@gmail.com> Justin F. Hallett <thesin@users.sf.net>
Erik-B. Ernst <git@black-milk.de> Erik-B. Ernst <github@black-milk.de>
Herst <Herst@users.noreply.github.com> Herst <github.x.herst@spamgourmet.com>

81
AUTHORS Normal file
View File

@ -0,0 +1,81 @@
# Authors ordered by first contribution.
Rob Garrison <wowmotty@gmail.com>
rozwell <rozwell69@gmail.com>
Wesley Walser <wwalser@atlassian.com>
Michael Meisel <michael@thousandeyes.com>
Sam Tyson <styson@gmail.com>
ViViDboarder <ViViDboarder@gmail.com>
blowsie <sam@blowsie.com>
Nick Craver <nrcraver@gmail.com>
emmerich <stevenhall@scottlogic.co.uk>
Ryan Millikin <rmillikin@gmail.com>
Bo-Yi Wu <appleboy.tw@gmail.com>
Deniss Abramovs <somebi@gmail.com>
Dave Riddle <david@joyvuu.com>
Cthulhu59 <stephane.bouteille@novigotech.com>
Volker Thiel <riker09@gmx.de>
Dawn Budge <d.budge@nature.com>
Campbell Allen <campbell.allen@gmail.com>
Justin F. Hallett <thesin@gmail.com>
Mathieu Lemoine <mathieu@wemakecustom.com>
gknights <gjknights@gmail.com>
harryxu <harryzhxu@gmail.com>
Craig Michael Thompson <craig@craigsworks.com>
Hugot Maxime <hugot.maxime@gmail.com>
Marcin <marcin@feedoptimise.com>
Christopher Thomas <chris.thomas@antimatter-studios.com>
Erik-B. Ernst <git@black-milk.de>
Mohit Jain <mayank.mohit@gmail.com>
James Reynolds <eire1130@gmail.com>
Dan Dascalescu <ddascalescu+github@gmail.com>
Mihhail Verhovtsov <mihhail.verhovtsov@icefire.ee>
Dan Turkenkopf <dturkenk@gmail.com>
Anders Antila <anders.antila@gmail.com>
evanboho <evan.kuchar@gmail.com>
sylvain-hamel <sylvainhamel0@gmail.com>
Ilya Igonkin <osdev0@gmail.com>
Alexander Johansson <ajax@ustwo.co.uk>
Juarez Turrini <juarez.turrini@gmail.com>
shobute <tesuuji@gmail.com>
lordmat0 <lordmat@gmail.com>
scratcher28 <scratcher@k.ro>
yelly <arielchinn@gmail.com>
Frédéric Rodrigo <fred.rodrigo@gmail.com>
Sean Hussey <sean@seanhussey.com>
Michael Wiencek <mwtuea@gmail.com>
prijutme4ty <prijutme4ty@gmail.com>
Ilya Vorontsov <prijutme4ty@gmail.com>
MaksimProgr <medvedevmaksim6@gmail.com>
Nicholas Burlett [GHS] <nburlett@ghs.com>
John Whitman <johnjameswhitman@gmail.com>
nikolas <nnyby@columbia.edu>
Herst <Herst@users.noreply.github.com>
Kevin Kirsche <Kev.Kirsche+GitHub@gmail.com>
VictorT83 <vteicher@gmail.com>
Andreas Mair <andreas.mair@linogate.de>
X O <xo@wvvw.me>
Ansis Kļaviņš <LvLynx@users.noreply.github.com>
Alexis Tyler <xo@wvvw.me>
fire-wally <evilhecubus@gmail.com>
Jon Dufresne <jon.dufresne@gmail.com>
Gabor Gyorvari <scr34m@gmail.com>
tschilling <schillingt@better-simple.com>
rjoly <rjoly@groupe-cogep.fr>
Drumsticks1 <Drumsticks1@users.noreply.github.com>
jasongabel <jasongabel@outlook.com>
Anton Rieder <aried3r@gmail.com>
Peter Dave Hello <hsu@peterdavehello.org>
Finn Bock <bckfnn@users.noreply.github.com>
Jan S. (Milania1) <github@milania.de>
Joel Perry <joelperry@me.com>
babaevmm <babaevmm@gmail.com>
Chris Rogers <ChrisM-Rogers@users.noreply.github.com>
Dan Feidt <dan.feidt@gmail.com>
MAROT Loïc <frennetix@gmail.com>
Simen Flatby <simenflatby@users.noreply.github.com>
Ruchir Patel <ruchir.patel19@gmail.com>
Andy Sleigh <adsleigh@hotmail.com>
Micah <micahedumont@gmail.com>
# Generated by tools/authors.sh

View File

@ -38,6 +38,9 @@
"type": "git",
"url": "git://github.com/Mottie/tablesorter.git"
},
"scripts": {
"authors": "bash testing/authors.sh"
},
"npmName": "tablesorter",
"npmFileMap": [
{

17
testing/authors.sh Normal file
View File

@ -0,0 +1,17 @@
#!/bin/bash
# generate AUTHORS, modify .mailmap in case of duplicates
git log --reverse --format='%aN <%aE>' | perl -we '
BEGIN {
%seen = (), @authors = ();
}
while (<>) {
next if $seen{$_};
$seen{$_} = push @authors, $_;
}
END {
print "# Authors ordered by first contribution.\n";
print "\n", @authors, "\n";
print "# Generated by tools/authors.sh\n";
}
' > "${BASH_SOURCE%/*}/../AUTHORS"