my $tarname = "pspp-$version.tar.gz";
$tarball = save_result ("source distribution", "pspp$build_number/_build/$tarname", 1);
+ # Save distributed files in Git.
+ start_step ("Save distributed files in Git");
+ run ("GIT_DIR=$topdir/.git $topdir/git-import-tar $resultsdir/$tarname refs/builds/$build_number/dist", "git-dist");
+
# Build user manual
start_step ("Build user manual");
run ("cd pspp$build_number && cp _build/doc/*.texi doc/");
or die "$0: failed to open \"$tarball\": $!\n";
}
-my $commit_user = `git config --get user.name`;
-chomp $commit_user;
-my $commit_email = `git config --get user.email`;
-chomp $commit_email;
-my $committer = "$commit_user <$commit_email>";
+my $committer_ident = `git var GIT_COMMITTER_IDENT`;
+chomp $committer_ident;
open (GFI, "|-", "git fast-import --date-format=raw --quiet")
or die "$0: \"git fast-import\" failed to start: $!\n";
my $commit = $mark++;
print GFI "commit $branch\n";
print GFI "mark :$commit\n";
-print GFI "committer $committer ", time(), " +0000\n";
+print GFI "committer $committer_ident\n";
print GFI "data ", length($message), "\n";
print GFI $message, "\n";
print GFI "merge $branch^0\n" if !$new_branch;
use strict;
use warnings;
+use File::Spec;
use HTML::Entities;
open (LOG, '<', "LOG");
my (@steps);
my ($new_page) = 0;
my ($result) = "failure";
+my @dirstack;
while (<LOG>) {
my $ln = $.;
chomp;
if (/^\f$/) {
$new_page = 1;
+ @dirstack = ();
print LOG_HTML "</pre><hr><pre>\n";
next;
}
+ if (/Entering directory `(.*)'$/) {
+ push (@dirstack, $1);
+ } elsif (/Leaving directory `(.*)'$/) {
+ pop (@dirstack);
+ }
+
my $log_class;
if ($new_page) {
$new_page = 0;
$d{DIAGNOSTIC} = lc ($diagnostic);
$d{MESSAGE} = $_;
$d{LN} = $ln;
+
+ if (@dirstack && (my ($file, $line) = /^([^\s:]+):(\d+):\s/)) {
+ $file = File::Spec->rel2abs ($file, $dirstack[$#dirstack]);
+ my (@path) = grep ($_ ne '' && $_ ne '.', split ('/', $file));
+ for (my $i = 0; $i < $#path; ) {
+ if ($path[$i + 1] eq '..') {
+ splice (@path, $i, 2);
+ } else {
+ $i++;
+ }
+ }
+
+ $d{LINE} = $line;
+ $d{FILE} = join ('/', @path);
+ }
push (@{$steps[$#steps]{CHILDREN}}, \%d);
$log_class = "$diagnostic";
print INDEX "<p class=\"$c->{DIAGNOSTIC}\">";
print INDEX "<a href=\"log.html#$c->{LN}\">";
print INDEX encode_entities ($c->{MESSAGE});
- print INDEX "</a></p>\n";
+ print INDEX "</a>";
+ if (exists $c->{FILE}) {
+ print INDEX " in $c->{FILE}";
+ }
+ print INDEX "</p>\n";
} else {
print INDEX "<p>→ <a href=\"", encode_entities ($c->{HREF}), "\">";
print INDEX encode_entities ($c->{PRODUCT});