]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
chore: Remove anonymous users from AUTHORS
authorJoel Rosdahl <joel@rosdahl.net>
Mon, 9 May 2022 16:52:30 +0000 (18:52 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Sat, 14 May 2022 18:41:29 +0000 (20:41 +0200)
doc/AUTHORS.adoc
doc/NEWS.adoc
misc/update-authors

index f5164a1ba1aa415b461aa6c4cd395e36e1087e44..5f766344e01d6c3a9d18812f41b093a5294cf32a 100644 (file)
@@ -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
index 86ce3e9c1f293529d940533cb919096a3ed5759b..f5d1664638e3e331b51df4efae5f35489ad502a5 100644 (file)
@@ -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]_#
index 0755026cc151e92b920d189d8d7f6ac356eff2be..3e0fcc07e49eacef351af14eb36d10a395c15bf5 100755 (executable)
@@ -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/^\*.*/<STDIN> . "\n"/es' doc/AUTHORS.adoc