Upgrade to Math-Complex-1.56
[p5sagit/p5-mst-13.2.git] / Porting / git-find-p4-change
1 #!/usr/bin/perl
2
3 # given a perforce change number, output the equivalent git commit id
4 # with -c, checks out the specified commit
5
6 die "usage: $0 [-c|--checkout] [git-log-options] changenum" unless @ARGV;
7
8 my $num = 1;
9 my $checkout = 0;
10
11 for (@ARGV) {
12         m{^\d+$} && (($change,$_) = ($_,undef));
13         m{^-\d+$} && (($num,$_) = (-$_,undef));
14         $_ eq '-c' || $_ eq '--checkout'
15             and $checkout = 1;
16 }
17
18 my $grep = "--grep=^p4raw-id:.*\@$change\$";
19 @ARGV = grep { defined } @ARGV;
20
21 if ($checkout) {
22     my $commit = qx(git rev-list -1 --all '$grep');
23     chomp $commit;
24     die "no commit found" unless $commit;
25     system(git => checkout => $commit);
26 }
27 else {
28     if ( -t STDOUT or @ARGV ) {
29         system(qw(git log), $grep, "-$num", "--all", @ARGV);
30     }
31     else {
32         system(qw(git rev-list -1 --all), $grep);
33     }
34 }