From 71f4000b1036859f4fe927f528f2d6f25507fd76 Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Tue, 17 Feb 2009 16:19:45 -0500 Subject: autogenerate AUTHORS --- AUTHORS | 57 +++++++++++++++++++++++++++++++++++++++++++------------ AUTHORS.sh | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ChangeLog | 5 +++++ 3 files changed, 114 insertions(+), 12 deletions(-) create mode 100755 AUTHORS.sh diff --git a/AUTHORS b/AUTHORS index a0a551fc..351a6bc3 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,12 +1,45 @@ -Frank Ch. Eigler -Martin Hunt -Li Guanglei -Joshua Stone -David Smith -Graydon Hoare -Jim Keniston -Roland McGrath -Will Cohen -Thang Nguyen -Tom Zanussi -... and others! +Ananth N Mavinakayanahalli +Anil Keshavamurthy +anithra +Charles Spirakis +Dave Brolley +Dave Nomura +David Smith +David Wilder +Don Domingo +Elliott Baron +Eugene Teo +Eugeniy Meshcheryakov +Frank Ch. Eigler +Graydon Hoare +Hien Nguyen +James Bottomley +Jim Keniston +Josh Stone +Kent Sebastian +Kevin Stafford +K Prasad +Li Guanglei +Mark McLoughlin +Mark Wielaard +Martin Hunt +Masami Hiramatsu +Michael Meeks +Mike Mason +Nobuhiro Tachino +Phil Muldoon +Prerna +Rajan Arora +Roland McGrath +Shaohua Li +Srikar Dronamraju +Srinivasa DS +Stan Cox +Thang Nguyen +Theodore Ts'o +Tim Moore +Tom Zanussi +Wenji Huang +Will Cohen +William Cohen +Zhaolei diff --git a/AUTHORS.sh b/AUTHORS.sh new file mode 100755 index 00000000..5a16d753 --- /dev/null +++ b/AUTHORS.sh @@ -0,0 +1,64 @@ +#! /bin/sh + +# Create the AUTHORS file, by searching the git history. + +# Run as "AUTHORS.sh" to get complete history +# Run with "AUTHORS.sh commitish..commitish" for history between tags + +# Early history did not include userid->full-name mappings, so we do +# that explicitly here. + +sedcmd="$sedcmd -e s/^fche$/Frank_Ch._Eigler/" +sedcmd="$sedcmd -e s/^brolley$/Dave_Brolley/" +sedcmd="$sedcmd -e s/^kenistoj$/Jim_Keniston/" +sedcmd="$sedcmd -e s/^dsmith$/David_Smith/" +sedcmd="$sedcmd -e s/^hunt$/Martin_Hunt/" +sedcmd="$sedcmd -e s/^roland$/Roland_McGrath/" +sedcmd="$sedcmd -e s/^wcohen$/Will_Cohen/" +sedcmd="$sedcmd -e s/^graydon$/Graydon_Hoare/" +sedcmd="$sedcmd -e s/^ananth$/Ananth_N_Mavinakayanahalli/" +sedcmd="$sedcmd -e s/^mbehm$/Michael_Behm/" +sedcmd="$sedcmd -e s/^bradchen$/Brad_Chen/" +sedcmd="$sedcmd -e s/^trz$/Tom_Zanussi/" +sedcmd="$sedcmd -e s/^rustyl$/Rusty_Lynch/" +sedcmd="$sedcmd -e s/^askeshav$/Anil_Keshavamurthy/" +sedcmd="$sedcmd -e s/^cspiraki$/Charles_Spirakis/" +sedcmd="$sedcmd -e s/^prasannasp$/Prasanna_S_Panchamukhi/" +sedcmd="$sedcmd -e s/^hien$/Hien_Nguyen/" +sedcmd="$sedcmd -e s/^kevinrs$/Kevin_Stafford/" +sedcmd="$sedcmd -e s/^jistone$/Josh_Stone/" +sedcmd="$sedcmd -e s/^hiramatu$/Masami_Hiramatsu/" +sedcmd="$sedcmd -e s/^markmc$/Mark_McLoughlin/" +sedcmd="$sedcmd -e s/^eteo$/Eugene_Teo/" +sedcmd="$sedcmd -e s/^guanglei$/Li_Guanglei/" +sedcmd="$sedcmd -e s/^tpnguyen$/Thang_Nguyen/" +sedcmd="$sedcmd -e s/^maobibo$/bibo_mao/" +sedcmd="$sedcmd -e s/^dwilder$/David_Wilder/" +sedcmd="$sedcmd -e s/^mmason$/Mike_Mason/" +sedcmd="$sedcmd -e s/^srikar$/Srikar_Dronamraju/" +sedcmd="$sedcmd -e s/^srinivasa$/Srinivasa_DS/" +sedcmd="$sedcmd -e s/^wenji$/Wenji_Huang/" +sedcmd="$sedcmd -e s/^ostrichfly$/Zhaolei/" +sedcmd="$sedcmd -e s/^zhaolei$/Zhaolei/" +sedcmd="$sedcmd -e s/^shli$/Shaohua_Li/" +sedcmd="$sedcmd -e s/^prasadkr$/K.Prasad/" +sedcmd="$sedcmd -e s/^dcnomura$/Dave_Nomura/" +sedcmd="$sedcmd -e s/^ddomingo$/Don_Domingo/" +sedcmd="$sedcmd -e s/^rarora$/Rajan_Arora/" +sedcmd="$sedcmd -e s/^prerna$/Prerna_Saxena/" +sedcmd="$sedcmd -e s/^dvlasenk$/Denys_Vlasenko/" +sedcmd="$sedcmd -e s/^ebaron$/Elliott_Baron/" +sedcmd="$sedcmd -e s/^ksebasti$/Kent_Sebastian/" +sedcmd="$sedcmd -e s/^maynardj$/Maynard_Johnson/" + +# tweaks +sedcmd="$sedcmd -e s/^root$//" +sedcmd="$sedcmd -e s/^dcn$/Dave_Nomura/" +sedcmd="$sedcmd -e s/^Srinivasa$/Srinivasa_DS/" + + +# echo $sedcmd +git log --pretty=format:"%an" ${1-} | +sed -e 's/ /_/g' | sed $sedcmd | sed -e 's/_/ /g' | +grep . | +sort | uniq # -c diff --git a/ChangeLog b/ChangeLog index 25452e6c..7e3f43f6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-02-17 Frank Ch. Eigler + + * AUTHORS: Regenerated with ... + * AUTHORS.sh: New script. + 2009-02-17 Frank Ch. Eigler * configury throughout: autoreconf -f -i'd. -- cgit