Hi - The following patch adds a tool AUTHORS.sh to compute a complete AUTHORS list to cover the entire git history. We do this in systemtap and it's a nice way of showing off the large list of contributors over time.
commit 72823322be9a8f0143de21ccfb67a89696a9522f (HEAD -> master2) Author: Frank Ch. Eigler <f...@redhat.com> Date: Sun Apr 24 19:39:47 2022 -0400 AUTHORS: Use generator script & git mailmap We can compute a pretty complete list of contributors. Signed-off-by: Frank Ch. Eigler <f...@redhat.com> diff --git a/.mailmap b/.mailmap new file mode 100644 index 000000000000..fd42169b8a3f --- /dev/null +++ b/.mailmap @@ -0,0 +1,25 @@ +# help out git with erroneous or incomplete email address mappings + +Piotr Drąg <ra...@fedoraproject.org> +Domingo Becker <becke...@fedoraproject.org> +Ulrich Drepper <drep...@x201.akkadia.org> +Ulrich Drepper <drep...@redhat.com.roland> +Hyu_gabaru Ryu_ichi <hyu...@fedoraproject.org> +kiyoto hashida <khas...@fedoraproject.org> +Claudio Rodrigo Pereyra Diaz <elsupergo...@fedoraproject.org> +Gladys Guerrero <gguer...@fedoraproject.org> +Wei Liu <leah...@fedoraproject.org> +Michael Münch <m...@fedoraproject.org> +Noah Sanci <nsa...@redhat.com> +Noriko Mizumoto <nor...@fedoraproject.org> +Cornelius Neckenig <tb...@fedoraproject.org> +Francesco Tombolini <to...@fedoraproject.org> +Thomas Spura <toms...@fedoraproject.org> +Geert Warrink <warr...@fedoraproject.org> +Yulia Poyarkova <ypoya...@fedoraproject.org> +Yuri Chornoivan <yurc...@fedoraproject.org> +Ahelenia Ziemiańska <nabijaczlew...@nabijaczleweli.xyz> +Daniel Cabrera <lo...@fedoraproject.org> +Thomas Canniot <mr...@fedoraproject.org> +Ahelenia Ziemiańska <nabijaczlew...@nabijaczleweli.xyz> наб via Elfutils-devel <elfutils-devel@sourceware.org> + diff --git a/AUTHORS b/AUTHORS index ef3c5430a963..45cb1f8d8e9f 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,4 +1,104 @@ -For Now: -Ulrich Drepper. -Roland McGrath +Aaron Merey +Adam Markey +Adrian Ratiu +Ahelenia Ziemiańska +Akihiko Odaki +Alexander Cherepanov +Alexander Kanavin +Alexander Miller +Alice Zhang +Andreas Krebbel +Andreas Schwab +Andrei Homescu +Anthony G. Basile +Ben Woodard +Chih-Hung Hsieh +Claudio Rodrigo Pereyra Diaz +Colin Cross +Cornelius Neckenig +Daniel Cabrera +David Abdurachmanov +Di Chen +Dima Kogan +Dimitris Glezos +Dmitry V. Levin +Dodji Seketeli +Domingo Becker +Eduardo Santiago +Eli Schwartz +Érico Nogueira +Érico Rolim +Filipe Brandenburger +Florian Weimer +Francesco Tombolini +Frank Ch. Eigler +Geert Warrink +Gladys Guerrero +Gustavo Romero +Hayatsu Shunsuke +H.J. Lu +Hyu_gabaru Ryu_ichi +Jakub Jelinek +Jan Kratochvil +Jan Pokorný +Jason P. Leasure +Jean Pihet +Jeff Kenton +Jim Wilson +John M Mellor-Crummey +John Ogness +Jonathan Lebon +Jonathon Anderson +Jose E. Marchesi +Josh Stone +Joshua Watt +Kevin Cernekee +kiyoto hashida +Konrad Kleine +Kurt Roeckx +Kyle McMartin +Lei Zhang +Lubomir Rintel +Luca Boccassi +Luiz Angelo Daros de Luca +Mao Han +Marek Polacek +Mark Wielaard +Martin Liska +Masatake YAMATO +Matt Fleming +Matthias Klose +Matthias Maennich +Max Filippov +Michael Forney +Michael Münch +Mike Frysinger +Milian Wolff +Namhyung Kim +Noah Sanci +Noriko Mizumoto +Omar Sandoval Petr Machata +Pino Toscano +Piotr Drąg +Ravi Bangoria +Richard Henderson +Roland McGrath +Rosen Penev +Ross Burton +Saleem Abdulrasool +Sergei Trofimovich +Srđan Milaković +Steven Chamberlain +Thomas Canniot +Thomas Spura +Timm Bäder +Tom Tromey +Ulf Hermann +Ulrich Drepper +Wei Liu +William Cohen +Yonghong Song +Yulia Poyarkova +Yunlian Jiang +Yuri Chornoivan diff --git a/AUTHORS.sh b/AUTHORS.sh new file mode 100644 index 000000000000..ff048a6489e0 --- /dev/null +++ b/AUTHORS.sh @@ -0,0 +1,12 @@ +#! /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 + +# shortlog will canonicalize the names using the file .mailmap +git shortlog -s ${1-} | +sed -e 's, via Elfutils-devel,,' | +cut -b8- | # strip the commit counts +sort | uniq diff --git a/ChangeLog b/ChangeLog index f0cd28a8ddbe..5ad93a16eeba 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2022-04-24 Frank Ch. Eigler <f...@redhat.com> + + * AUTHORS.sh, .mailmap: New files. + * AUTHORS: Regenerated to cover entire history of elfutils. + 2022-04-24 Mark Wielaard <m...@klomp.org> * configure.ac (AC_CHECK_FUNCS): Add mremap.