Correct typo in Texinfo: cdf_tributions --> distributions
[maxima/cygwin.git] / admin / list_authors.pl
blob938742e5b6697ca151a416d51be3f6f0d9f52de0
1 #!/usr/bin/perl
2 # Create Maxima's "AUTHORS" file from the Git log.
3 # Copyright (C) by Wolfgang Dautermann
4 # License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl.html>
5 # This is free software: you are free to change and redistribute it.
6 # There is NO WARRANTY, to the extent permitted by law.
9 use strict;
10 use warnings;
11 use List::MoreUtils qw(uniq);
14 my $headtext=<<'ENDHEAD';
15 Maxima's development history spans three distinct periods: The
16 research project at MIT, the stewardship of William Schelter and the
17 current Maxima project.
19 MACSYMA (Project MAC's SYmbolic MAnipulation System) was developed by
20 the Mathlab group of the MIT Laboratory for Computer Science
21 (originally known as Project MAC), during the years 1969-1972. Their
22 work was supported by grants NSG 1323 of the National Aeronautics and
23 Space Administration, N00014-77-C-0641 of the Office of Naval
24 Research, ET-78-C-02-4687 of the U.S. Department of Energy, and
25 F49620-79-C-020 of the U.S. Air Force. MACSYMA was further modified
26 for use under the UNIX operating system (for use on DEC VAX computers
27 and Sun workstations), by Richard Fateman and colleagues at the
28 University of California at Berkeley; this version of MACSYMA is known
29 as VAXIMA.
31 William Schelter developed and maintained this version, Maxima, from
32 the project's inception until his untimely death in 2001. We are
33 eternally grateful for his enormous contribution.
35 William Schelter thanked the following people for having tested
36 the code under various common lisp implementations, and for helpful
37 comments:
39 hagiya%kurims.kurims.kyoto-u.junet%utokyo-relay.csnet@RELAY.CS.NET
40 (in kcl aosv)
41 steve@spock.ncsa.uiuc.edu (Steve on sun/franz common lisp)
42 spar!malcolm@decwrl.dec.com (malcolm) sun/lucid
43 raible@orville.nas.nasa.gov (Eric Raible on iris(kcl))
44 fateman@peoplesparc.Berkeley.EDU (Richard Fateman)
47 In November, 2001, the Maxima project moved to the Sourceforge
48 project hosting site. The following people contributed to the Maxima
49 sourcecode (according to Git logs):
51 ENDHEAD
54 my $foottext=<<'ENDFOOT';
56 Maxima also includes contributions from:
58 Michel van den Bergh
59 Karl Berry
60 Salvador Bosch Pérez
61 Fedor Bezrukov
62 Fabrizio Caruso
63 Ari Constancio
64 Gosei Furuya
65 Juan Pablo Hierro Álvarez
66 Vadim Konovalov
67 Tim Moore
68 Guenther Nowak
69 Kostas Oikonomou
70 Edmond Orignac
71 Valerij Pipin
72 Jose Ramirez Labrador
73 Ole Rohne
74 Thomas A. Russ
75 Marek Rychlik
77 Starting with version 5.9.0, Maxima uses mk::defsystem and (slightly
78 modified) run-lisp from the Common Lisp Open Code Collection,
79 <http://clocc.sourceforge.net>.
81 The nregex code was written by Lawrence E. Freil.
83 We also want to say thank you to everyone who sent patches,
84 reported bugs or suggested new features.
86 ENDFOOT
88 # get current year
89 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime();
90 $year = $year+1900;
92 print $headtext;
94 # the first year is 2000 (git log | tail)
95 for (my $y=$year; $y >= 2000; $y--) {
96 print "Contributors in $y\n====================\n";
97 my $since = $y . '-01-01';
98 my $until = $y . '-12-31';
99 my @authors=`git log --since=$since --until=$until --format='format:%an'`;
101 foreach my $i (0 .. $#authors) {
102 chomp $authors[$i];
103 # correct author names:
104 # This should be finished, before the "AUTHORS" file is generated
105 # But I do not know every Git log name <=> Realname
106 # completed (as good as possible) using https://sourceforge.net/p/maxima/_members/
107 $authors[$i] =~ s/^amundson$/James Amundson/;
108 $authors[$i] =~ s/^andrejv$/Andrej Vodopivec/;
109 $authors[$i] =~ s/^are_muc$/Andreas Eder/;
110 $authors[$i] =~ s/^Andreas Eder \(are_muc\)$/Andreas Eder/;
111 $authors[$i] =~ s/^belanger$/Jay Belanger/;
112 $authors[$i] =~ s/^beshenov$/Alexey Beshenov/;
113 $authors[$i] =~ s/^billingd$/David Billinghurst/;
114 $authors[$i] =~ s/^crategus$/Dieter Kaiser/;
115 $authors[$i] =~ s/^dgildea$/Dan Gildea/;
116 $authors[$i] =~ s/^dstang$/Dan Stanger/;
117 $authors[$i] =~ s/^dtc$/Douglas Crosher/;
118 $authors[$i] =~ s/^fabriziocaruso$/Fabrizio Caruso/;
119 $authors[$i] =~ s/^FabrizioCaruso$/Fabrizio Caruso/;
120 $authors[$i] =~ s/^Fabrizio CARUSO$/Fabrizio Caruso/;
121 $authors[$i] =~ s/^ficmatinfmag$/Jorge Barros de Abreu/;
122 $authors[$i] =~ s/^grozin$/Andrey Grozin/; # Mentioned by Robert Dodier on the Mailing list on 2020-05-28
123 $authors[$i] =~ s/^hgeyer$/Harald Geyer/;
124 $authors[$i] =~ s/^jpromerobx-max$/Juan Pablo Romero Bernal/;
125 $authors[$i] =~ s/^l_butler$/Leo Butler/;
126 $authors[$i] =~ s/^Leo Butler \(dev\)$/Leo Butler/; # same spelling as above.
127 $authors[$i] =~ s/^macrakis$/Stavros Macrakis/;
128 $authors[$i] =~ s/^mhw2$/Mark H. Weaver/;
129 $authors[$i] =~ s/^Mark H Weaver$/Mark H. Weaver/; # same spelling as above.
130 $authors[$i] =~ s/^mikeclarkson$/Mike Clarkson/;
131 $authors[$i] =~ s/^riotorto$/Mario Rodriguez Riotorto/;
132 $authors[$i] =~ s/^Mario Rodriguez$/Mario Rodriguez Riotorto/; # same spelling as above
133 $authors[$i] =~ s/^robert_dodier$/Robert Dodier/;
134 $authors[$i] =~ s/^Robert$/Robert Dodier/; # Mentioned by Robert Dodier on the Mailing list on 2020-05-28
135 $authors[$i] =~ s/^rtoy$/Raymond Toy/;
136 $authors[$i] =~ s/^starseeker$/Cliff Yapp/;
137 $authors[$i] =~ s/^van_nek$/Volker van Nek/;
138 $authors[$i] =~ s/^villate$/Jaime E. Villate/;
139 $authors[$i] =~ s/^Jaime Villate$/Jaime E. Villate/; # same spelling as above
140 $authors[$i] =~ s/^vttoth$/Viktor T. Toth/;
141 $authors[$i] =~ s/^vvzhy$/Vadim V. Zhytnikov/;
142 $authors[$i] =~ s/^wfs$/William F. Schelter/; # Mentioned by Robert Dodier on the Mailing list on 2020-05-28
143 $authors[$i] =~ s/^willisbl$/Barton Willis/;
144 $authors[$i] =~ s/^wjenkner$/Wolfgang Jenkner/;
145 $authors[$i] =~ s/^xefe$/Mario Rodriguez Riotorto/; # Mentioned by Robert Dodier on the Mailing list on 2020-05-28
146 $authors[$i] =~ s/^yasu-honda$/Yasuaki Honda/;
147 $authors[$i] =~ s/^yycamm$/Camm Maguire/;
149 @authors=sort(@authors);
150 @authors=uniq(@authors);
152 foreach my $i (0 .. $#authors) {
153 print $authors[$i] . "\n";
155 print "\n";
157 print $foottext;