X-Git-Url: https://perl5.git.perl.org/perl5.git/blobdiff_plain/3f1788e11f2685299067ac0f8d3e4fd141a5b5cd..a405530a0bdfb812498536bb46a01f9dcbe8b5d7:/make_patchnum.pl diff --git a/make_patchnum.pl b/make_patchnum.pl index 1644d41..df352cb 100644 --- a/make_patchnum.pl +++ b/make_patchnum.pl @@ -17,9 +17,9 @@ make_patchnum.pl - make patchnum This program creates the files holding the information about locally applied patches to the source code. The created -files are C and C. +files are F and F. -=item C +=head2 F Contains status information from git in a form meant to be processed by the tied hash logic of Config.pm. It is actually optional, @@ -93,14 +93,14 @@ sub backtick { my $command = shift; if (wantarray) { my @result= `$subcd $command`; - warn "$subcd $command: \$?=$?\n" if $?; + #warn "$subcd $command: \$?=$?\n" if $?; print "#> $subcd $command ->\n @result\n" if !$? and $opt_v; chomp @result; return @result; } else { my $result= `$subcd $command`; $result="" if ! defined $result; - warn "$subcd $command: \$?=$?\n" if $?; + #warn "$subcd $command: \$?=$?\n" if $?; print "#> $subcd $command ->\n $result\n" if !$? and $opt_v; chomp $result; return $result; @@ -122,29 +122,67 @@ sub write_files { return 0; } -my $unpushed_commits = '/*no-op*/'; +my $unpushed_commits = ' '; my ($read, $branch, $snapshot_created, $commit_id, $describe)= ("") x 5; -my ($changed, $extra_info, $commit_title, $new_patchnum, $status)= ("") 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"); + $branch //= ""; my ($remote,$merge); if (length $branch) { $merge= backtick("git config branch.$branch.merge"); + $merge = "" unless $? == 0; $merge =~ s!^refs/heads/!!; $remote= backtick("git config branch.$branch.remote"); + $remote = "" unless $? == 0; } $commit_id = backtick("git rev-parse HEAD"); $describe = backtick("git describe"); my $commit_created = backtick(qq{git log -1 --pretty="format:%ci"}); - $new_patchnum = "describe: $describe"; $extra_info = "git_commit_date='$commit_created'"; + backtick("git diff --no-ext-diff --quiet --exit-code"); + $changed = $?; + unless ($changed) { + backtick("git diff-index --cached --quiet HEAD --"); + $changed = $?; + } + if (length $branch && length $remote) { # git cherry $remote/$branch | awk 'BEGIN{ORS=","} /\+/ {print $2}' | sed -e 's/,$//' my $unpushed_commit_list = @@ -163,26 +201,22 @@ git_remote_branch='$remote/$merge' git_unpushed='$unpushed_commit_list'"; } } - if ($changed) { # not touched since init'd. never true. - $changed = 'true'; + if ($changed) { $commit_title = "Derived from:"; - $status='"uncommitted-changes"' - } else { - $status='/*clean-working-directory-maybe*/' } $commit_title ||= "Commit id:"; } -# we extract the filename out of the warning header, so dont mess with that +# we extract the filename out of the warning header, so don't mess with that write_files(<<"EOF_HEADER", <<"EOF_CONFIG"); /************************************************************************** * WARNING: 'git_version.h' is automatically generated by make_patchnum.pl * DO NOT EDIT DIRECTLY - edit make_patchnum.pl instead ***************************************************************************/ -#define PERL_GIT_UNCOMMITTED_CHANGES $status -#define PERL_PATCHNUM "$describe" +@{[$describe ? "#define PERL_PATCHNUM \"$describe\"" : ()]} #define PERL_GIT_UNPUSHED_COMMITS\t\t\\ $unpushed_commits/*leave-this-comment*/ +@{[$changed ? "#define PERL_GIT_UNCOMMITTED_CHANGES" : ()]} EOF_HEADER ###################################################################### # WARNING: 'lib/Config_git.pl' is generated by make_patchnum.pl