From fddace2a5a1b25e196faa964803e871b2619094a Mon Sep 17 00:00:00 2001 From: rbuj Date: Mon, 18 Feb 2019 21:11:40 +0100 Subject: Add update-authors.pl script which helps to update pluma.about --- update-authors.pl | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100755 update-authors.pl diff --git a/update-authors.pl b/update-authors.pl new file mode 100755 index 00000000..683594e0 --- /dev/null +++ b/update-authors.pl @@ -0,0 +1,67 @@ +#!/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 . + +=cut +use strict; +use warnings; + +sub ReplaceAuthors { + my @authors = @_; + $_ eq 'bl0ckeduser ' and $_ = 'Gabriel Cormier-Affleck ' for @authors; + $_ eq 'hekel ' and $_ = 'Adam Erdman ' for @authors; + $_ eq 'infirit ' and $_ = 'Sander Sweers ' for @authors; + $_ eq 'leigh123linux ' and $_ = 'Leigh Scott ' for @authors; + $_ eq 'lyokha ' and $_ = 'Alexey Radkov ' for @authors; + $_ eq 'Martin Wimpress ' and $_ = 'Martin Wimpress ' for @authors; + $_ eq 'monsta ' and $_ = 'Vlad Orlov ' for @authors; + $_ eq 'Monsta ' and $_ = 'Vlad Orlov ' for @authors; + $_ eq 'Patrick Monnerat ' and $_ = 'Patrick Monnerat ' for @authors; + $_ eq 'Paolo Borelli ' and $_ = 'Paolo Borelli ' for @authors; + $_ eq 'Perberos ' and $_ = 'Perberos ' for @authors; + $_ eq 'raveit ' and $_ = 'Wolfgang Ulbrich ' for @authors; + $_ eq 'raveit65 ' and $_ = 'Wolfgang Ulbrich ' for @authors; + $_ eq 'raveit65 ' and $_ = 'Wolfgang Ulbrich ' for @authors; + $_ eq 'rbuj ' and $_ = 'Robert Buj ' for @authors; + $_ eq 'Scott Balneaves ' and $_ = 'Scott Balneaves ' for @authors; + $_ eq 'Vadim Barkov ' and $_ = 'Vadim Barkov ' for @authors; + $_ eq 'Wolfgang Ulbrich ' and $_ = 'Wolfgang Ulbrich ' for @authors; + return @authors; +} + +sub GetCurrentAuthors { + my @authors; + open(FILE,"pluma/pluma.about") or die "Can't open pluma/pluma.about"; + while () { + 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) . ';'; -- cgit v1.2.1