X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=darcs-all;h=6c8b406cf3816d9cec4e254233f5063fc8b54205;hb=2378b2325df64a5ccc5b2e038ac3dbb848dea5f7;hp=28933bfc3299bdae43662755d2ed713888b0fe13;hpb=cc05d6cad27f11720a93e26c680f40b8bedd8d32;p=ghc-hetmet.git diff --git a/darcs-all b/darcs-all index 28933bf..6c8b406 100644 --- a/darcs-all +++ b/darcs-all @@ -56,12 +56,10 @@ sub darcsall { my $path; my $tag; - darcs @_; - open IN, "< packages" or die "Can't open packages file"; while () { chomp; - if (/^([^ ]+) +(?:([^ ]+) +)?([^ ]+)/) { + if (/^([^# ]+) +(?:([^ ]+) +)?([^ ]+) +([^ ]+)$/) { $localpath = $1; $tag = defined($2) ? $2 : ""; @@ -75,7 +73,7 @@ sub darcsall { message "== $localpath repo not present; skipping"; } } - elsif (! /^$/) { + elsif (! /^(#.*)?$/) { die "Bad line: $_"; } } @@ -100,7 +98,7 @@ sub darcsget { open IN, "< packages" or die "Can't open packages file"; while () { chomp; - if (/^([^ ]+) +(?:([^ ]+) +)?([^ ]+)/) { + if (/^([^ ]+) +(?:([^ ]+) +)?([^ ]+) +([^ ]+)$/) { $localpath = $1; $tag = defined($2) ? $2 : ""; $remotepath = $3; @@ -121,7 +119,7 @@ sub darcsget { } } } - elsif (! /^$/) { + elsif (! /^(#.*)?$/) { die "Bad line: $_"; } } @@ -143,6 +141,11 @@ sub main { elsif ($arg eq "-s") { $verbose = 0; } + # --dph says we grab the dph libs with 'get'. + # It has no effect on the other commands. + elsif ($arg eq "--dph") { + $tags{"dph"} = 1; + } # --extra says we grab the extra libs with 'get'. # It has no effect on the other commands. elsif ($arg eq "--extra") {