X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=darcs-all;h=579bc5cd15bdb2883da4fa8692933b0c66997a89;hb=6e2cffab037ee968dc49658ba75cc03beabcb769;hp=544d9cc91cd195793cfda78a2fdd85e44f8ba8c8;hpb=6b16111d35e8e4c2a32cf9a3c7c855efb32d5b1b;p=ghc-hetmet.git diff --git a/darcs-all b/darcs-all index 544d9cc..579bc5c 100644 --- a/darcs-all +++ b/darcs-all @@ -1,33 +1,44 @@ #!/bin/sh +set -e + top_dirs="nofib testsuite" default_repo_root="http://darcs.haskell.org/" default_lib_repo_root=$default_repo_root/packages -function darcsall() +quiet=NO + +message() { - echo == running darcs $* at the top level + if [ "$quiet" = "NO" ]; then + echo $* + fi +} + +darcsall() +{ + message "== running darcs $* at the top level" darcs $* for dir in $top_dirs; do if test -d $dir -a -d $dir/_darcs; then - echo "== running darcs $* in $dir" + message "== running darcs $* in $dir" darcs $* --repodir $dir else - echo "== $dir not present or not a repository; skipping" + message "== $dir not present or not a repository; skipping" fi done for pkg in `cat libraries/default-packages`; do if test -d libraries/$pkg; then - echo "== running darcs $* in libraries/$pkg" + message "== running darcs $* in libraries/$pkg" darcs $* --repodir libraries/$pkg else - echo "warning: $dir doesn't seem to exist, use 'darcs-all get' to get it" + echo "warning: $pkg doesn't seem to exist, use 'darcs-all get' to get it" fi done } -function darcsget() +darcsget() { case $* in *--partial*) ;; @@ -46,19 +57,24 @@ function darcsget() echo "warning: $pkg already present; omitting" else repo=$lib_repos/$pkg - echo "== running darcs get --partial $* $repo" + message "== running darcs get --partial $* $repo" darcs get --partial $* $repo fi done } -if test ! -d _darcs -o ! -d ghc; then +if test ! -d _darcs -o ! -d compiler; then echo "error: darcs-all must be run from the top level of the ghc tree." exit 1; fi +case $* in + *-q*) quiet=YES;; +esac + case $1 in - push|pull|wh*) darcsall $*;; get) shift; darcsget $*;; - *) echo "syntax: ./darcs-all push|pull|whatsnew|get"; exit 1;; + # Hack around whatsnew failing if there are no changes + w|wh|wha|what|whats|whatsn|whatsne|whatsnew) set +e; darcsall $*;; + *) darcsall $*;; esac