From: Joel Rosdahl Date: Mon, 9 May 2022 16:52:30 +0000 (+0200) Subject: chore: Remove anonymous users from AUTHORS X-Git-Tag: v4.6.1~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b2c65a220cd3d60fecd7a825a8f3b74c1ecbf996;p=thirdparty%2Fccache.git chore: Remove anonymous users from AUTHORS --- diff --git a/doc/AUTHORS.adoc b/doc/AUTHORS.adoc index f5164a1ba..5f766344e 100644 --- a/doc/AUTHORS.adoc +++ b/doc/AUTHORS.adoc @@ -33,7 +33,6 @@ Ccache is a collective work with contributions from many people, including: * Cristian Adam * David Givone * Deepak Yadav -* Delgan * Doug Anderson * Edward Z. Yang * Enrico Sorichetti @@ -74,7 +73,6 @@ Ccache is a collective work with contributions from many people, including: * Leanid Chaika * Loïc Yhuel * Luboš Luňák -* luzpaz * Maarten Maathuis * Marius Zwicker * Mark Starovoytov @@ -124,7 +122,6 @@ Ccache is a collective work with contributions from many people, including: * Robin H. Johnson * Rolf Bjarne Kvinge * R. Voggenauer -* RW * Ryan Brown * Ryan Burns * Ryan Egesdahl diff --git a/doc/NEWS.adoc b/doc/NEWS.adoc index 86ce3e9c1..f5d166463 100644 --- a/doc/NEWS.adoc +++ b/doc/NEWS.adoc @@ -14,7 +14,7 @@ Release date: 2022-02-27 - Added an option to use a bearer token with the HTTP backend. This makes it possible to use e.g. Google Cloud Storage as a secondary storage backend. + - [small]#_[contributed by Delgan]_# + [small]#_[contributed by an anonymous user]_# - Added support for caching standard output from the compiler. + [small]#_[contributed by Luboš Luňák and Joel Rosdahl]_# diff --git a/misc/update-authors b/misc/update-authors index 0755026cc..3e0fcc07e 100755 --- a/misc/update-authors +++ b/misc/update-authors @@ -1,5 +1,7 @@ #!/bin/sh +anonymous="^(6d5CfLQ3dYAb|Delgan|luzpaz|RW|vsplesk)$" + if [ -d .git ]; then # Fetch full Git history if needed, e.g. when run via CI. git fetch --unshallow 2>/dev/null @@ -8,6 +10,7 @@ if [ -d .git ]; then # a "Co-authored-by:" in the commit message. (git log | grep -Po "(?<=Co-authored-by: )(.*)(?= <)"; \ git log --format="%aN") \ + | grep -Ev "$anonymous" \ | sed 's/^/* /' \ | LANG=en_US.utf8 sort -uf \ | perl -00 -p -i -e 's/^\*.*/ . "\n"/es' doc/AUTHORS.adoc