forked from oasis-tcs/virtio-spec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitlog.pl
47 lines (41 loc) · 1.13 KB
/
gitlog.pl
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
#!/usr/bin/perl
#Usage: perl gitlog.pl [From..To]
#by default, logs from one before last version recorded in REVISION
use strict;
my $revs;
if ($#ARGV >= 0) {
$revs = join(' ', @ARGV);
} else {
# by default, get 1 revision before last
my $rev = `git log -q --format=%h -n 1 --skip=1 REVISION`;
chomp $rev;
my $name=`git cat-file -p ${rev}:REVISION`;
chomp $name;
$name =~ s/^virtio-//;
$revs = $name . "..";
}
print STDERR "LOG in the range $revs\n";
my @hashes=split(' ', `git log --reverse -q --format=%h ${revs}`);
sub escapelatex {
my $s = shift;
$s =~ s/[\\]/\\textbackslash /go;
$s =~ s/([&#%{}\$])/\\$1/go;
$s =~ s/[~]/\\~{}/go;
$s =~ s/(https?:\S*)/\\url{$1}/go;
#1st line always on a separate paragraph
$s =~ s/\n/\n\n/o;
#Guess where new paragraph starts
$s =~ s/\\.\n/.\n\n/go;
$s =~ s/\n-/\n\n-/go;
return $s;
}
for my $h (@hashes) {
my $date = `git show -q --format='%cd' --date='format:%d %b %Y' $h`;
chomp $date;
my $author = `git show -q --format='%aN' $h`;
chomp $author;
my $cl = `git show -q --format='%B' $h`;
$cl = escapelatex($cl);
print "$h & $date & $author & { $cl } \\\\\n";
print "\\hline\n";
}