#!/usr/bin/perl my %l; { my ($date, $user, $file); local $_; while (<>) { if (my $e = /^description:/ .. /^={77}/) { next if $e == 1 || $e =~ /E0/; if (/^-{28}/ .. /^date: /) { if (/^date: (\S+)\s.*author: (\S+);/) { ($date, $user) = ($1, $2); } } elsif (!/^branches: / && !/file .* was initially added on branch/ && !/empty log message/ && !/no_comment/) { $l{$date}{$user}{$file} .= $_; } } elsif (/Working file: (.*)/) { $file = $1; } } } my %users; foreach my $date (reverse sort keys %l) { foreach my $user (sort keys %{$l{$date}}) { next if $ENV{AUTHOR} && $ENV{AUTHOR} ne $user; my $fuser = $users{$user} || $user; print "$date $fuser\n\n"; my %inv; while (my ($file, $log) = each %{$l{$date}{$user}}) { $log =~ s/^\s+( \*)?//ms; $log =~ s/\s+$//ms; $log = "\n$log" if $log =~ /^-/; push @{$inv{$log}}, $file; } foreach my $log (keys %inv) { my $line = join(', ', @{$inv{$log}}) . ($log !~ /^\(/ && ':') . " $log"; print "\t* ", join("\n\t", auto_fill($line, 72)), "\n\n"; } } } 1; sub auto_fill { my ($line, $col) = @_; map { my @l; my $l = ''; $_ = " $_" if /^-/; while ($_) { s/^(\s*)(\S*)//; my $m = "$l$1$2"; if (length $m > $col) { push @l, $l; $l = $2; } else { $l = $m } } @l, $l; } split("\n", $line); } BEGIN { %users = ( 'alafox' => 'Alice Lafox ', 'alus' => 'Arkadiusz Lipiec ', 'baudens' => 'David Baudens ', 'damien' => 'dam\'s ', 'daouda' => 'Daouda Lo ', 'dchaumette' => 'Damien Chaumette ', 'erwan' => 'Erwan Velu ', 'fabman' => 'Fabian Mandelbaum ', 'fcrozat' => 'Frederic Crozat ', 'flepied' => 'Frederic Lepied ', 'florin' => 'Florin Grad ', 'gc' => 'Guillaume Cottenceau ', 'install' => 'DrakX ', 'nplanel' => 'Nicolas Planel ', 'oblin' => 'Olivier Blin ', 'pablo' => 'Pablo Saratxaga ', 'prigaux' => 'Pixel ', 'rgarciasuarez' => 'Rafael Garcia-Suarez ', 'rvojta' => 'Robert Vojta ', 'sbenedict' => 'Stew Benedict ', 'tkamppeter' => 'Till Kamppeter ', 'tvignaud' => 'Thierry Vignaud ', 'vguardiola' => 'Vincent Guardiola ', 'warly' => 'Warly ', ); }