File: git-source-pickup.pl

package info (click to toggle)
dosbox-x 2025.12.01%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 53,224 kB
  • sloc: cpp: 339,768; ansic: 165,257; sh: 1,455; makefile: 963; perl: 385; python: 106; asm: 57
file content (74 lines) | stat: -rwxr-xr-x 1,958 bytes parent folder | download | duplicates (2)
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
#!/usr/bin/perl

$project = `git config --get remote.origin.url | sed -e 's/\\/\$//' | sed -e 's/^.*\\///'`;
chomp $project;
$project =~ s/\.git$//;
die if $project eq "";

$branch = `git branch | grep '^\*' | sed -e 's/^\* //'`; chomp $branch;
$branchfname = "-branch-$branch" if $branch ne "";
print "Current branch: $branch\n";

print "Ensuring the build tree is clean...\n";
$x = system("./git-update-all-wo-push");
die unless $x == 0;

if (!open(S,"git --no-pager log --max-count=1 |")) { exit 1; }
my $lcommit = "x";
my $i,$lcdate = "unknown";
foreach my $line (<S>) {
	chomp $line;

	if ($line =~ m/^commit +/) {
		$lcommit = lc($');
		$lcommit =~ s/ +$//;
	}
	else {
		my @nv = split(/: +/,$line);
		my $value = $nv[1];
		my $name = $nv[0];

		if ($name =~ m/^Date$/i) {
			# Fri Apr 15 08:51:32 2011 -0700
			#  0   1   2  3        4     5
			my @b = split(/ +/,$value);

			$mon = lc($b[1]);
			$day = $b[2];
			$time = $b[3];
			$year = $b[4];
			$mon = 1 if $mon eq "jan";
			$mon = 2 if $mon eq "feb";
			$mon = 3 if $mon eq "mar";
			$mon = 4 if $mon eq "apr";
			$mon = 5 if $mon eq "may";
			$mon = 6 if $mon eq "jun";
			$mon = 7 if $mon eq "jul";
			$mon = 8 if $mon eq "aug";
			$mon = 9 if $mon eq "sep";
			$mon = 10 if $mon eq "oct";
			$mon = 11 if $mon eq "nov";
			$mon = 12 if $mon eq "dec";
			$mon = $mon+0;
			$date = sprintf("%04u%02u%02u",$year+0,$mon,$day+0);
			$time =~ s/://g;
			$lcdate = $date."-".$time;
		}
	}
}
close(S);

#my $filename = $project."-rev-".sprintf("%08u",$lcrev)."-src.tar.bz2";
my $pwd = `pwd`; chomp $pwd;
my $filename = "../".($as ne "" ? $as : $project)."-$lcdate-commit-$lcommit-src$branchfname.tar";
if (!( -f "$filename.xz" )) {
	print "Packing source (all build files except LIB,OBJ,etc.)\n";
	print "  to: $filename\n";

	$x = system("tar -C .. -cvf $filename $project"); # --exclude=.git
	die unless $x == 0;
	print "Packing to XZ\n";
	$x = system("xz -6e $filename");
	die unless $x == 0;
}