summaryrefslogtreecommitdiff
path: root/update-authors.pl
diff options
context:
space:
mode:
authorrbuj <[email protected]>2020-02-15 16:15:28 -0500
committerraveit65 <[email protected]>2020-02-26 17:32:27 +0100
commit6e562d93d8447e352725039340ddf12ca7886a1d (patch)
treec411565b366b3ce3f0dc809bd17b0e8658f9fd5a /update-authors.pl
parent4fa11b6a4847a69e890ccccc7aa980dc8143d472 (diff)
downloadcaja-6e562d93d8447e352725039340ddf12ca7886a1d.tar.bz2
caja-6e562d93d8447e352725039340ddf12ca7886a1d.tar.xz
Update authors
Diffstat (limited to 'update-authors.pl')
-rwxr-xr-xupdate-authors.pl5
1 files changed, 5 insertions, 0 deletions
diff --git a/update-authors.pl b/update-authors.pl
index 8814bc3f..a3538be6 100755
--- a/update-authors.pl
+++ b/update-authors.pl
@@ -45,6 +45,7 @@ sub ReplaceAuthors {
$_ eq 'Victor Kareh <vkareh%vkareh.net>' and $_ = 'Victor Kareh <vkareh%redhat.com>' for @authors;
$_ eq 'Wolfgang Ulbrich <chat-to-me%raveit.de>' and $_ = 'Wolfgang Ulbrich <mate%raveit.de>' for @authors;
$_ eq 'yetist <xiaotian.wu%i-soft.com.cn>' and $_ = 'Wu Xiaotian <yetist%gmail.com>' for @authors;
+ $_ eq 'ZenWalker <scow%riseup.net>' and $_ = 'Pablo Barciela <scow%riseup.net>' for @authors;
return @authors;
}
@@ -68,5 +69,9 @@ sub GetNewAuthors {
my @A = GetCurrentAuthors;
my @B = GetNewAuthors;
+for (@B) {
+ s/<\d+\+(.+?)%users\.noreply\.github\.com>/<$1%users\.noreply\.github\.com>/;
+ s/<(.+?)%users\.noreply\.github\.com>/https:\/\/github.com\/$1/;
+}
my @merged = sort { $a cmp $b } keys %{{map {($_ => 1)} (@A, @B)}};
print join(';',@merged) . ';';