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:30:35 +0100
commitdd600fb80975ed6df27bd93bfcca3ce695d5bc87 (patch)
treed36d3ceba7d6ce73ecb20767d06b105d0a37d6f5 /update-authors.pl
parentbcd95de76adeb382a25a612abad305e3e931af5a (diff)
downloadcaja-dd600fb80975ed6df27bd93bfcca3ce695d5bc87.tar.bz2
caja-dd600fb80975ed6df27bd93bfcca3ce695d5bc87.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) . ';';