[PATCH] Prevent git-rev-list without --merge-order producing duplicates in output
[git/dscho.git] / git-shortlog
bloba147e7b4741b1613a14da997a4bf7553366e4882
1 #!/usr/bin/perl -w
3 use strict;
6 # Even with git, we don't always have name translations.
7 # So have an email->real name table to translate the
8 # (hopefully few) missing names
10 my %mailmap = (
11 'R.Marek@sh.cvut.cz' => 'Rudolf Marek',
12 'Ralf.Wildenhues@gmx.de' => 'Ralf Wildenhues',
13 'aherrman@de.ibm.com' => 'Andreas Herrmann',
14 'akpm@osdl.org' => 'Andrew Morton',
15 'andrew.vasquez@qlogic.com' => 'Andrew Vasquez',
16 'aquynh@gmail.com' => 'Nguyen Anh Quynh',
17 'axboe@suse.de' => 'Jens Axboe',
18 'blaisorblade@yahoo.it' => 'Paolo \'Blaisorblade\' Giarrusso',
19 'bunk@stusta.de' => 'Adrian Bunk',
20 'domen@coderock.org' => 'Domen Puncer',
21 'dougg@torque.net' => 'Douglas Gilbert',
22 'dwmw2@shinybook.infradead.org' => 'David Woodhouse',
23 'ecashin@coraid.com' => 'Ed L Cashin',
24 'felix@derklecks.de' => 'Felix Moeller',
25 'fzago@systemfabricworks.com' => 'Frank Zago',
26 'gregkh@suse.de' => 'Greg Kroah-Hartman',
27 'hch@lst.de' => 'Christoph Hellwig',
28 'htejun@gmail.com' => 'Tejun Heo',
29 'jejb@mulgrave.(none)' => 'James Bottomley',
30 'jejb@titanic.il.steeleye.com' => 'James Bottomley',
31 'jgarzik@pretzel.yyz.us' => 'Jeff Garzik',
32 'johnpol@2ka.mipt.ru' => 'Evgeniy Polyakov',
33 'kay.sievers@vrfy.org' => 'Kay Sievers',
34 'minyard@acm.org' => 'Corey Minyard',
35 'mshah@teja.com' => 'Mitesh shah',
36 'pj@ludd.ltu.se' => 'Peter A Jonsson',
37 'rmps@joel.ist.utl.pt' => 'Rui Saraiva',
38 'santtu.hyrkko@gmail.com' => 'Santtu Hyrkkö',
39 'simon@thekelleys.org.uk' => 'Simon Kelley',
40 'ssant@in.ibm.com' => 'Sachin P Sant',
41 'terra@gnome.org' => 'Morten Welinder',
42 'tony.luck@intel.com' => 'Tony Luck',
43 'welinder@anemone.rentec.com' => 'Morten Welinder',
44 'welinder@darter.rentec.com' => 'Morten Welinder',
45 'welinder@troll.com' => 'Morten Welinder',
48 my (%map);
49 my $pstate = 1;
50 my $n_records = 0;
51 my $n_output = 0;
54 sub shortlog_entry($$) {
55 my ($name, $desc) = @_;
56 my $key = $name;
58 $desc =~ s#/pub/scm/linux/kernel/git/#/.../#g;
59 $desc =~ s#\[PATCH\] ##g;
61 # store description in array, in email->{desc list} map
62 if (exists $map{$key}) {
63 # grab ref
64 my $obj = $map{$key};
66 # add desc to array
67 push(@$obj, $desc);
68 } else {
69 # create new array, containing 1 item
70 my @arr = ($desc);
72 # store ref to array
73 $map{$key} = \@arr;
77 # sort comparison function
78 sub by_name($$) {
79 my ($a, $b) = @_;
81 uc($a) cmp uc($b);
84 sub shortlog_output {
85 my ($obj, $key, $desc);
87 foreach $key (sort by_name keys %map) {
88 # output author
89 printf "%s:\n", $key;
91 # output author's 1-line summaries
92 $obj = $map{$key};
93 foreach $desc (@$obj) {
94 print " $desc\n";
95 $n_output++;
98 # blank line separating author from next author
99 print "\n";
103 sub changelog_input {
104 my ($author, $desc);
106 while (<>) {
107 # get author and email
108 if ($pstate == 1) {
109 my ($email);
111 next unless /^Author: (.*)<(.*)>.*$/;
113 $n_records++;
115 $author = $1;
116 $email = $2;
117 $desc = undef;
119 # trim trailing whitespace.
120 # why doesn't chomp work?
121 while ($author && ($author =~ /\s$/)) {
122 chop $author;
125 # cset author fixups
126 if (exists $mailmap{$email}) {
127 $author = $mailmap{$email};
128 } elsif (exists $mailmap{$author}) {
129 $author = $mailmap{$author};
130 } elsif ((!$author) || ($author eq "")) {
131 $author = $email;
134 $pstate++;
137 # skip to blank line
138 elsif ($pstate == 2) {
139 next unless /^\s*$/;
140 $pstate++;
143 # skip to non-blank line
144 elsif ($pstate == 3) {
145 next unless /^\s*(\S.*)$/;
147 # skip lines that are obviously not
148 # a 1-line cset description
149 next if /^\s*From: /;
151 chomp;
152 $desc = $1;
154 &shortlog_entry($author, $desc);
156 $pstate = 1;
159 else {
160 die "invalid parse state $pstate";
165 sub finalize {
166 #print "\n$n_records records parsed.\n";
168 if ($n_records != $n_output) {
169 die "parse error: input records != output records\n";
173 &changelog_input;
174 &shortlog_output;
175 &finalize;
176 exit(0);