summaryrefslogtreecommitdiffstats
path: root/tools/cvslog2changelog.pl
blob: 7109ad3066f282b5bfa221765a36510f57f0d667 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!/usr/bin/perl

while (<>) {
    if ($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;
    }
}

foreach $date (reverse sort keys %l) {
    foreach $user (sort keys %{$l{$date}}) {
	$fuser = $users{$user} || $user;
	print "$date  $fuser\n\n";
	my %inv;
	while (($file, $log) = each %{$l{$date}{$user}}) {
	    $log =~ s/^\s+( \*)?//ms;
	    $log =~ s/\s+$//ms;
	    $log = "\n$log" if $log =~ /^-/;
	    push @{$inv{$log}}, $file;
	}
	foreach $log (keys %inv) {
	    $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 = (
	      'gc'      => 'Guillaume Cottenceau  <gc@mandrakesoft.com>',
	      'fpons'   => 'François Pons  <fpons@mandrakesoft.com>',
	      'pablo'   => 'Pablo Saratxaga  <pablo@mandrakesoft.com>',
	      'damien'  => 'dam\'s  <dams@idm.fr>',
	      'install' => 'DrakX  <install@mandrakesoft.com>',
	      'prigaux' => 'Pixel  <pixel@mandrakesoft.com>',
	      'flepied' => 'Frederic Lepied  <flepied@mandrakesoft.com>',
	      'chmouel' => 'Chmouel Boudjnah  <chmouel@mandrakesoft.com>',
	      'uid526'  => 'dam\'s  <damien@mandrakesoft.com>',
	      'uid533'  => 'François Pons  <fpons@mandrakesoft.com>',
	      'uid535'  => 'Guillaume Cottenceau  <gc@mandrakesoft.com>',
	      'uid553'  => 'Pixel  <pixel@mandrakesoft.com>',
	      'tvignaud' => 'Thierry Vignaud  <tvignaud@mandrakesoft.com>',
	      'sbenedict'=>'Stew Benedict  <sbenedict@mandrakesoft.com>',
	      'tkamppeter' => 'Till Kamppeter  <till@mandrakesoft.com>',
	      'yduret'  => 'Yves Duret  <yduret@mandrakesoft.com>',
	      'daouda'  => 'Daouda Lo  <daouda@mandrakesoft.com>',
	      'dchaumette' => 'Damien Chaumette  <dchaumette@mandrakesoft.com>',
	      'cbelisle' => 'Christian Belisle  <cbelisle@mandrakesoft.com>',
	      'warly'   => 'Warly  <warly@mandrakesoft.com>',
	      'jgotti'  => 'Jonathan Gotti  <jgotti@mandrakesoft.com>',
	      'fcrozat' => 'Frederic Crozat  <fcrozat@mandrakesoft.com>',
	      'baudens' => 'David Baudens  <baudens@mandrakesoft.com>',
	     );
}