summaryrefslogtreecommitdiff
path: root/contrib/get-authors
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/get-authors')
-rwxr-xr-xcontrib/get-authors12
1 files changed, 8 insertions, 4 deletions
diff --git a/contrib/get-authors b/contrib/get-authors
index df147d10d..f25c43989 100755
--- a/contrib/get-authors
+++ b/contrib/get-authors
@@ -1,7 +1,7 @@
#!/bin/sh
#
# get-authors
-# Copyright (c) 2009-2019 The CVC4 Project
+# Copyright (c) 2009-2020 The CVC4 Project
#
# usage: get-authors [ files... ]
#
@@ -47,10 +47,8 @@ while [ $# -gt 0 ]; do
'$2 !~ /^[ \t]*(#include|namespace|}.*namespace.*|[ \t]*$)/ {print $1}' | \
# Keep author names only, remove the last 4 columns in ( ... )
- awk 'NF{NF-=4};1' | \
- # Determine top three contributors
- sort | uniq -c | sort -rn | head -n3 | \
+ awk 'NF{NF-=4};1' | \
# Fix author names
sed "s,Not Committed Yet <not.committed.yet>,$gituser," | \
@@ -64,9 +62,15 @@ while [ $# -gt 0 ]; do
sed 's/makaimann/Makai Mann/' | \
sed 's/Martin Brain/Martin/' | \
sed 's/Martin/Martin Brain/' | \
+ sed 's/nafur/Gereon Kremer/' | \
sed 's/justinxu421/Justin Xu/' | \
sed 's/yoni206/Yoni Zohar/' | \
sed 's/ayveejay/Andrew V. Jones/' | \
+ sed 's/FabianWolff/Fabian Wolff/' | \
+ sed 's/mudathirmahgoub/Mudathir Mohamed/' | \
+
+ # Determine top three contributors
+ sort | uniq -c | sort -rn | head -n3 | \
# Remove first columns from uniq -c (number of lines)
awk '{$1=""; print}' | \
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback