diff options
author | rbuj <[email protected]> | 2020-02-15 15:54:30 -0500 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-02-28 16:40:55 +0100 |
commit | a4f8d785f4c7e0fcec212e5ea4d90fc919ed3efc (patch) | |
tree | 99da94063c98bf5bd382ba40b6ed4123ccff605e /update-authors.pl | |
parent | 3e6253c802f6910d12f4ac1952edc21981f58f64 (diff) | |
download | atril-a4f8d785f4c7e0fcec212e5ea4d90fc919ed3efc.tar.bz2 atril-a4f8d785f4c7e0fcec212e5ea4d90fc919ed3efc.tar.xz |
Update authors
Diffstat (limited to 'update-authors.pl')
-rwxr-xr-x | update-authors.pl | 6 |
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) . ';'; |