X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=sync-all;h=ac06af123a5d4c4eae68b3a5551134ae5833f1d9;hp=3ccbc8620eaffaf0609c1bda88dc2b736f2996fb;hb=e5c3b478b3cd1707cf122833822f44b2ac09b8e9;hpb=5e060e6653ca7aba825aeaa92a1b24d218d27fc2 diff --git a/sync-all b/sync-all index 3ccbc86..ac06af1 100755 --- a/sync-all +++ b/sync-all @@ -142,13 +142,12 @@ sub parsePackages { foreach (@repos) { chomp; $lineNum++; - if (/^([^# ]+) +([^ ]+) +([^ ]+) +([^ ]+) +([^ ]+)$/) { + if (/^([^# ]+) +([^ ]+) +([^ ]+) +([^ ]+)$/) { my %line; $line{"localpath"} = $1; $line{"tag"} = $2; $line{"remotepath"} = $3; $line{"vcs"} = $4; - $line{"upstream"} = $5; push @packages, \%line; } elsif (! /^(#.*)?$/) { @@ -198,7 +197,6 @@ sub scmall { my $tag; my $remotepath; my $scm; - my $upstream; my $line; my $branch_name; my $subcommand; @@ -252,7 +250,6 @@ sub scmall { $tag = $$line{"tag"}; $remotepath = $$line{"remotepath"}; $scm = $$line{"vcs"}; - $upstream = $$line{"upstream"}; # Check the SCM is OK as early as possible die "Unknown SCM: $scm" if (($scm ne "darcs") and ($scm ne "git")); @@ -366,6 +363,9 @@ sub scmall { my @scm_args = ("log", "$branch_name.."); scm ($localpath, $scm, @scm_args, @args); } + elsif ($command =~ /^log$/) { + scm ($localpath, $scm, "log", @args); + } elsif ($command =~ /^remote$/) { my @scm_args; if ($subcommand eq 'add') { @@ -377,6 +377,12 @@ sub scmall { } scm ($localpath, $scm, @scm_args, @args); } + elsif ($command =~ /^checkout$/) { + # Not all repos are necessarily branched, so ignore failure + $ignore_failure = 1; + scm ($localpath, $scm, "checkout", @args) + unless $scm eq "darcs"; + } elsif ($command =~ /^grep$/) { # Hack around 'git grep' failing if there are no matches $ignore_failure = 1; @@ -423,10 +429,12 @@ Supported commands: * remote add * remote rm * remote set-url [--push] + * checkout * grep * clean * reset * config + * log Available package-tags are: END