2004-10-21 21:58:25 +02:00
|
|
|
#! /usr/bin/perl -w
|
1998-12-10 10:35:50 +01:00
|
|
|
#
|
2003-11-18 20:50:24 +01:00
|
|
|
# Generate AUTHORS
|
1998-12-10 10:35:50 +01:00
|
|
|
#
|
2002-03-10 00:29:33 +01:00
|
|
|
# Copyright 1998 Alexandre Julliard
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2.1 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This library 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
|
|
|
|
# Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-03-10 00:29:33 +01:00
|
|
|
#
|
2004-10-21 21:58:25 +02:00
|
|
|
use strict;
|
2002-03-10 00:29:33 +01:00
|
|
|
|
2004-10-21 21:58:25 +02:00
|
|
|
my @authors;
|
1998-12-10 10:35:50 +01:00
|
|
|
open(AUTHORS,"<AUTHORS") or die "Can't open AUTHORS";
|
2006-08-08 12:19:31 +02:00
|
|
|
open(NEWAUTHORS,">AUTHORS.new") or die "Can't open AUTHORS.new";
|
1998-12-10 10:35:50 +01:00
|
|
|
while(<AUTHORS>)
|
|
|
|
{
|
|
|
|
print NEWAUTHORS;
|
2003-11-18 20:50:24 +01:00
|
|
|
last if /^$/;
|
1998-12-10 10:35:50 +01:00
|
|
|
}
|
|
|
|
while(<AUTHORS>)
|
|
|
|
{
|
|
|
|
chop;
|
|
|
|
push @authors, $_;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Sort them
|
2004-10-21 21:58:25 +02:00
|
|
|
sub cmpnames()
|
1998-12-10 10:35:50 +01:00
|
|
|
{
|
2004-10-21 21:58:25 +02:00
|
|
|
my @anames = split(" ",$a);
|
|
|
|
my @bnames = split(" ",$b);
|
|
|
|
my $ret;
|
1998-12-10 10:35:50 +01:00
|
|
|
$ret = $anames[-1] cmp $bnames[-1];
|
|
|
|
$ret = $anames[0] cmp $bnames[0] unless $ret;
|
|
|
|
return $ret;
|
|
|
|
}
|
|
|
|
@authors = sort cmpnames @authors;
|
|
|
|
|
|
|
|
# Print authors
|
2003-11-18 20:50:24 +01:00
|
|
|
print NEWAUTHORS (join "\n", @authors) . "\n";
|
1998-12-10 10:35:50 +01:00
|
|
|
print "Created AUTHORS.new\n";
|