summaryrefslogtreecommitdiff
path: root/update-authors.pl
diff options
context:
space:
mode:
authorrbuj <[email protected]>2020-02-15 15:54:30 -0500
committerraveit65 <[email protected]>2020-02-28 16:42:10 +0100
commitbbf1db30e13efe6175187f542b6dc6ca92b40833 (patch)
treea2afd51a530bdd173089c6013506ac621a171ff6 /update-authors.pl
parentad12733084635ae6b90bf3ef60c31ea38682d1a5 (diff)
downloadatril-bbf1db30e13efe6175187f542b6dc6ca92b40833.tar.bz2
atril-bbf1db30e13efe6175187f542b6dc6ca92b40833.tar.xz
Update authors
Diffstat (limited to 'update-authors.pl')
-rwxr-xr-xupdate-authors.pl6
1 files changed, 6 insertions, 0 deletions
diff --git a/update-authors.pl b/update-authors.pl
index 9441cd89..c590b059 100755
--- a/update-authors.pl
+++ b/update-authors.pl
@@ -44,6 +44,8 @@ sub ReplaceAuthors {
$_ eq 'rbuj <robert.buj%gmail.com>' and $_ = 'Robert Buj <robert.buj%gmail.com>' for @authors;
$_ eq 'Scott Balneaves <sbalneav%ltsp.org>' and $_ = 'Scott Balneaves <sbalneav%mate-desktop.org>' for @authors;
$_ eq 'Wolfgang Ulbrich <chat-to-me%raveit.de>' and $_ = 'Wolfgang Ulbrich <mate%raveit.de>' for @authors;
+ $_ eq 'Wu Xiaotian <yetist%gmail.com>' and $_ = 'Wu Xiaotian <xiaotian.wu%i-soft.com.cn>' for @authors;
+ $_ eq 'ZenWalker <scow%riseup.net>' and $_ = 'Pablo Barciela <scow%riseup.net>' for @authors;
return @authors;
}
@@ -67,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) . ';';