mirror of https://gitee.com/openkylin/pluma.git
68 lines
3.2 KiB
Perl
Executable File
68 lines
3.2 KiB
Perl
Executable File
#!/usr/bin/perl
|
|
=pod
|
|
|
|
update-authors.pl is part of Pluma.
|
|
|
|
Pluma is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
Pluma is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with Pluma. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
=cut
|
|
use strict;
|
|
use warnings;
|
|
|
|
sub ReplaceAuthors {
|
|
my @authors = @_;
|
|
$_ eq 'bl0ckeduser <bl0ckedusersoft%gmail.com>' and $_ = 'Gabriel Cormier-Affleck <bl0ckedusersoft%gmail.com>' for @authors;
|
|
$_ eq 'hekel <hekel%archlinux.info>' and $_ = 'Adam Erdman <hekel%archlinux.info>' for @authors;
|
|
$_ eq 'infirit <infirit%gmail.com>' and $_ = 'Sander Sweers <infirit%gmail.com>' for @authors;
|
|
$_ eq 'leigh123linux <leigh123linux%googlemail.com>' and $_ = 'Leigh Scott <leigh123linux%googlemail.com>' for @authors;
|
|
$_ eq 'lyokha <alexey.radkov%gmail.com>' and $_ = 'Alexey Radkov <alexey.radkov%gmail.com>' for @authors;
|
|
$_ eq 'Martin Wimpress <code%flexion.org>' and $_ = 'Martin Wimpress <martin%mate-desktop.org>' for @authors;
|
|
$_ eq 'monsta <monsta%inbox.ru>' and $_ = 'Vlad Orlov <monsta%inbox.ru>' for @authors;
|
|
$_ eq 'Monsta <monsta%inbox.ru>' and $_ = 'Vlad Orlov <monsta%inbox.ru>' for @authors;
|
|
$_ eq 'Patrick Monnerat <pm%rawhide.datasphere.ch>' and $_ = 'Patrick Monnerat <pm%datasphere.ch>' for @authors;
|
|
$_ eq 'Paolo Borelli <pborelli%katamail.com>' and $_ = 'Paolo Borelli <pborelli%gnome.org>' for @authors;
|
|
$_ eq 'Perberos <perberos%(none).(none)>' and $_ = 'Perberos <perberos%gmail.com>' for @authors;
|
|
$_ eq 'raveit <chat-to-me%raveit.de>' and $_ = 'Wolfgang Ulbrich <mate%raveit.de>' for @authors;
|
|
$_ eq 'raveit65 <chat-to-me%raveit.de>' and $_ = 'Wolfgang Ulbrich <mate%raveit.de>' for @authors;
|
|
$_ eq 'raveit65 <mate%raveit.de>' and $_ = 'Wolfgang Ulbrich <mate%raveit.de>' for @authors;
|
|
$_ 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 'Vadim Barkov <neverscaired%gmail.com>' and $_ = 'Vadim Barkov <vbrkov%gmail.com>' for @authors;
|
|
$_ eq 'Wolfgang Ulbrich <chat-to-me%raveit.de>' and $_ = 'Wolfgang Ulbrich <mate%raveit.de>' for @authors;
|
|
return @authors;
|
|
}
|
|
|
|
sub GetCurrentAuthors {
|
|
my @authors;
|
|
open(FILE,"pluma/pluma.about") or die "Can't open pluma/pluma.about";
|
|
while (<FILE>) {
|
|
if (/^Authors=*(.+)$/) {
|
|
@authors=split(";",$1);
|
|
}
|
|
}
|
|
close FILE;
|
|
return ReplaceAuthors(@authors);
|
|
}
|
|
|
|
sub GetNewAuthors {
|
|
my @authors = `git log --pretty="%an <%ae>" -- . "_.h" "_.c" | sort | uniq | sed 's/@/%/g' | sed '/^mate-i18n.*/d'`;
|
|
chomp @authors;
|
|
return ReplaceAuthors(@authors);
|
|
}
|
|
|
|
my @A = GetCurrentAuthors;
|
|
my @B = GetNewAuthors;
|
|
my @merged = sort { $a cmp $b } keys %{{map {($_ => 1)} (@A, @B)}};
|
|
print join(';',@merged) . ';';
|