From d42c7c4125ae3252e1acb5b9e3126b57186c8850 Mon Sep 17 00:00:00 2001 From: Graham Knop Date: Sun, 20 Oct 2019 17:23:09 +0200 Subject: add git commit info into archive exports to allow building outside git Normally, builds require either a .patch file or to be built out of git when not a proper release. We can use git attributes to make a file that will give partial information about the commit when an archive is created. This allows downloads from github to build. --- make_patchnum.pl | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'make_patchnum.pl') diff --git a/make_patchnum.pl b/make_patchnum.pl index fc28d58f20..df352cbf34 100644 --- a/make_patchnum.pl +++ b/make_patchnum.pl @@ -126,11 +126,40 @@ my $unpushed_commits = ' '; my ($read, $branch, $snapshot_created, $commit_id, $describe)= ("") x 5; my ($changed, $extra_info, $commit_title)= ("") x 3; +my $git_patch_file; if (my $patch_file= read_file(".patch")) { ($branch, $snapshot_created, $commit_id, $describe) = split /\s+/, $patch_file; $extra_info = "git_snapshot_date='$snapshot_created'"; $commit_title = "Snapshot of:"; } +elsif ($git_patch_file = read_file(".git_patch") and $git_patch_file !~ /\A\$Format:%H/) { + chomp $git_patch_file; + ($commit_id, my $commit_date, my $names) + = split /\|/, $git_patch_file; + + my @names = split /,\s*/, $names; + + ($branch) = map m{^HEAD -> (.*)}, @names; + if (!$branch) { + ($branch) = map m{^(blead|maint/.*)}, @names; + } + if (!$branch) { + ($branch) = map m{^tag: (.*)}, @names; + $describe = $branch; + } + if (!$branch) { + my ($pr) = map m{^refs/pull/([0-9]+)/}, @names; + $branch = "pull-request-$pr"; + } + if (!$branch) { + $branch = $names[0] || $commit_id; + } + + $describe ||= $commit_id; + $extra_info = "git_commit_date='$commit_date'\n"; + $extra_info .= "git_snapshot_date='$commit_date'\n"; + $commit_title = "Snapshot of:"; +} elsif (-d "$srcdir/.git") { # git branch | awk 'BEGIN{ORS=""} /\*/ { print $2 }' ($branch) = map { /\* ([^(]\S*)/ ? $1 : () } backtick("git branch"); -- cgit v1.2.1