From b066e9c15c8e443b84852688170a47a6eab48e1b Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Mon, 25 Mar 2013 23:36:53 -0400 Subject: [PATCH] Remove authors file from version control (can still be built from 'make authors') --- AUTHORS.TXT | 221 --------------------------------------------- hacking/authors.sh | 4 +- 2 files changed, 2 insertions(+), 223 deletions(-) delete mode 100644 AUTHORS.TXT diff --git a/AUTHORS.TXT b/AUTHORS.TXT deleted file mode 100644 index fb401083da..0000000000 --- a/AUTHORS.TXT +++ /dev/null @@ -1,221 +0,0 @@ -Michael DeHaan -Daniel Hokka Zakrisson -Stephen Fromm -Seth Vidal -Tim Bielawa -Dag Wieers -Jan-Piet Mens -Jeroen Hoekx -Lorin Hochstein -Michel Blanc -Stephen Fromm -Marco Vito Moscaritolo -Matthew Williams -Mark Theunissen -Brian Coca -Dave Hatton -Pepe Barbe -Peter Sankauskas -Derek Carter -John Kleint -Dane Summers -Romeo Theriault -Matt Wright -Nigel Metheringham -Brad Olson -Chris Hoffman -fdavis -Jeroen Hoekx -Timothy Appnel -Brian Coca -Daniel Néri -Dietmar Schinnerl -Nikhil Singh -Tim Gerla -Wes Johnson -jkleint -Christopher Johnston -Jimmy Tang -Nigel Metheringham -Rodney Quillo -Stoned Elipot -Yeukhon Wong -Yves Dorfsman -lwade -Anastasis Andronidis -Dag Wieërs -Ludovic Claude -Shaun Zinck -cocoy -Ahmad Khayyat -Aleksej Romanov -Aurélien Bondis -Fabian Arrotin -Fred Alger -Gregory Duchatelet -Henry Graham -Ingo Gottwald -Jeremy Smitherman -Jim Richardson -Johan Wirén -Matt Wright -Peter Sankauskas -Petros Moisiadis -Serge van Ginderachter -Blair Zajac -Chris Hoffman -Christoph Seitz -Cosmin Luță -Félix Sipma -Grzegorz Nosek -Hubert Feyrer -John Callender -John Eckersberg -Jonathan Palley -Kavin Kankeshwar -Lester Wade -Luke Antins -Maxim Burgerhout -Nigel Metheringham -Norman J. Harman Jr -Remy -Sebastien Bocahu -Silviu Dicu -Sundar Raman -Will Thames -lessmian -willthames -Brendan Beveridge -Brian Coca -Chelsea Robb -Ingo Gottwald -James Martin -Jeremy Katz -Jesse Andrews -Johan Wirén -Junegunn Choi -Les Aker -Lorin Hochstein -Marco Vito Moscaritolo -Matt Coddington -Matthew Johnson -Maykel Moya -Nathan A. Feger -Patrick Pelletier -Patrik Lundin -Pepe Barbe -Philipp Grau -Rafal Lewczuk -Scott Anderson -Stijn Opheide -Ton Kersten -Will Thames -afterburn -bradobro -u348095 -willthames -willthames -Ali Asad Lotia -Ashley Penney -Brendan Taylor -Chin Fang -Chris Geddings -Dave Peticolas -Florian Diebold -Igor Galić -Javier Candeira -Jayson Vantuyl -Josh Mandel -Juha Litola -Jure Triglav -Martijn Koster -Matt Cordial -Matt Goodall -Michael Lambert -Nandor Sivok -Piffey Parlance -Remy van Elst -Rune Kaagaard -Stavros Korokithakis -Till Maas -Ton Kersten -Vincent Van der Kussen -Yvan Cottyn -alex -bleader -davixx -felix -igor -martin f. krafft -ron1 -schmic -willthames -ADRIyas -Adam Denenberg -Alan Orth -Alexandre Bourget -Bowe Strickland -Boyd Adamson -Brandon Alexander -Chandler Latour -Chris Berkhout -Chris Read -Christopher A. Snapp -Cliffano Subagio -Collin Allen -Daniel Néri -Dave Coutu -Dave Peticolas -Devin Bayer -Elliott Foster -Fabian Arrotin -Felix Ingram -Francesc Esplugas -Francis Besset -Gary Richards -Gert Goet -Jeff Blaine -Jens Rantil -Jeremiah Heller -Jeremy Penner -Joel Roller -John Gosset -Jonathan Palley -Jonte Norman -Joshua Tacoma -K. Preyk -Lennie -Lester Wade -Mark Maas -Marko Mikulicic -Matt Klich -Matthew Johnson -Max Spransy -Miek Gieben -Mikael Zayenz Lagerkvist -Mike Grozak -Nathan A. Feger -Oscar Korz -Petetin Ludovic -Piotr Kweclich -Piotr Kweclich -Piotr Roszatycki -Ralph Bean -Reed Murphy -Rob Parrott -Romeo Theriault -Sergey Popov -Sri Harsha Yalamanchili -Stanis Trendelenburg -Stefane Fermigier -Steve Frank -Sébastien Bocahu -Ton Kersten -diefans -ftao -jibs -junyoung -mxxcon -root -shlomozippel -vincent Van der Kussen diff --git a/hacking/authors.sh b/hacking/authors.sh index f9287828e4..7c97840b2f 100644 --- a/hacking/authors.sh +++ b/hacking/authors.sh @@ -4,11 +4,11 @@ set -e # Get a list of authors ordered by number of commits # and remove the commit count column -AUTHORS=$(git --no-pager shortlog -nse | cut -f 2-) +AUTHORS=$(git --no-pager shortlog -nse | cut -f 2- | sort -f) if [ -z "$AUTHORS" ] ; then echo "Authors list was empty" exit 1 fi # Display the authors list and write it to the file -echo "$AUTHORS" | tee "$(git rev-parse --show-toplevel)/AUTHORS.TXT" | sort +echo "$AUTHORS" | tee "$(git rev-parse --show-toplevel)/AUTHORS.TXT"