X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=darcs-all;h=e8a113915ab5d15a88112df7d19c9d69cd4b2d2f;hp=1ab395b06ffefa0141efd5af0e57d44a8059108e;hb=1d141bd52e6eea321e90cd11059f726094dd50be;hpb=cb5e627211db27c91450b897734d79f1fcd43a16 diff --git a/darcs-all b/darcs-all index 1ab395b..e8a1139 100644 --- a/darcs-all +++ b/darcs-all @@ -1,101 +1,209 @@ -#!/bin/sh +#!/usr/bin/perl -w -set -e +use strict; -top_dirs="nofib testsuite" +# Usage: +# +# ./darcs-all [-q] [-s] [--nofib] [--testsuite] get [darcs get flags] +# This gets the GHC core repos, if they do not already exist. +# -q says to be quite, and -s to be silent. +# --nofib, --testsuite also get the nofib and testsuite repos respectively +# The darcs get flag you are most likely to want is --complete. By +# default we pass darcs the --partial flag. +# +# ./darcs-all [-q] [-s] cmd [darcs cmd flags] +# This runs the darcs "cmd" command, with any flags you give, in all +# of the repos you have checked out. e.g. +# ./darcs-all pull +# ./darcs-all -q send --dry-run +# -q says to be quite, and -s to be silent. + +$| = 1; # autoflush stdout after each print, to avoid output after die # Figure out where to get the other repositories from, # based on where this GHC repo came from. -defaultrepo=`cat _darcs/prefs/defaultrepo` -case $defaultrepo in - http://*) default_repo_root=`echo $defaultrepo | sed 's!/ghc$!!'` - default_lib_repo_root=$default_repo_root/packages;; - /*) default_repo_root=$defaultrepo - default_lib_repo_root=$default_repo_root/libraries;; -esac - -quiet=NO - -message() -{ - if [ "$quiet" = "NO" ]; then - echo $* - fi +my $defaultrepo = `cat _darcs/prefs/defaultrepo`; +chomp $defaultrepo; +my $defaultrepo_base; +my $checked_out_tree; + +if ($defaultrepo =~ /^...*:/) { + # HTTP or SSH + # Above regex says "at least two chars before the :", to avoid + # catching Win32 drives ("C:\"). + $defaultrepo_base = $defaultrepo; + $defaultrepo_base =~ s#/[^/]+/?$##; + $checked_out_tree = 0; +} +elsif ($defaultrepo =~ /^\/|\.\.\/|.:(\/|\\)/) { + # Local filesystem, either absolute or relative path + # (assumes a checked-out tree): + $defaultrepo_base = $defaultrepo; + $checked_out_tree = 1; +} +else { + die "Couldn't work out defaultrepo"; } -darcsall() -{ - message "== running darcs $* at the top level" - darcs $* - for dir in $top_dirs; do - if test -d $dir -a -d $dir/_darcs; then - message "== running darcs $* in $dir" - darcs $* --repodir $dir - else - message "== $dir not present or not a repository; skipping" - fi - done - for pkg in `cat libraries/core-packages libraries/extra-packages`; do - if test -d libraries/$pkg; then - message "== running darcs $* in libraries/$pkg" - darcs $* --repodir libraries/$pkg - else - echo "warning: $pkg doesn't seem to exist, use 'darcs-all get' to get it" - fi - done +my $verbose = 2; +my $ignore_failure = 0; + +my %tags; + +sub message { + if ($verbose >= 2) { + print "@_\n"; + } } -darcsget() -{ - case $* in - *--partial*) ;; - *) echo "warning: adding --partial, to override use --complete" - esac - - repo_root=`cat _darcs/prefs/defaultrepo` - case $repo_root in - /*) lib_repos=$repo_root/libraries;; - *) lib_repos=$default_lib_repo_root;; - esac - - cd libraries - - if test "$extra" = "YES"; then - packages=`cat core-packages extra-packages` - else - packages=`cat core-packages` - fi - - for pkg in $packages; do - if test -d $pkg; then - echo "warning: $pkg already present; omitting" - else - repo=$lib_repos/$pkg - message "== running darcs get --partial $* $repo" - darcs get --partial $* $repo - fi - done +sub warning { + if ($verbose >= 1) { + print "warning: @_\n"; + } +} + +sub darcs { + message "== running darcs @_"; + system ("darcs", @_) == 0 + or $ignore_failure + or die "darcs failed: $?"; +} + +sub darcsall { + my $localpath; + my $path; + my $tag; + my @repos; + + open IN, "< packages" or die "Can't open packages file"; + @repos = ; + close IN; + + foreach (@repos) { + chomp; + if (/^([^# ]+) +(?:([^ ]+) +)?([^ ]+) +([^ ]+)$/) { + $localpath = $1; + $tag = defined($2) ? $2 : ""; + + if (-d "$localpath/_darcs") { + darcs (@_, "--repodir", $localpath); + } + elsif ($tag eq "") { + message "== Required repo $localpath is missing! Skipping"; + } + else { + message "== $localpath repo not present; skipping"; + } + } + elsif (! /^(#.*)?$/) { + die "Bad line: $_"; + } + } } -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 - -# --extra says we grab the extra libs with 'get'. It has no effect on -# the other commands. -extra=NO; -case $1 in - --extra) shift; extra=YES; -esac - -case $1 in - get) shift; darcsget $*;; - # Hack around whatsnew failing if there are no changes - w|wh|wha|what|whats|whatsn|whatsne|whatsnew) set +e; darcsall $*;; - *) darcsall $*;; -esac +sub darcsget { + my $r_flags; + my $localpath; + my $remotepath; + my $path; + my $tag; + my @repos; + + if (! grep /(?:--complete|--partial)/, @_) { + warning("adding --partial, to override use --complete"); + $r_flags = [@_, "--partial"]; + } + else { + $r_flags = \@_; + } + + open IN, "< packages" or die "Can't open packages file"; + @repos = ; + close IN; + + foreach (@repos) { + chomp; + if (/^([^ ]+) +(?:([^ ]+) +)?([^ ]+) +([^ ]+)$/) { + $localpath = $1; + $tag = defined($2) ? $2 : ""; + $remotepath = $3; + + if ($checked_out_tree) { + $path = "$defaultrepo_base/$localpath"; + } + else { + if ($remotepath =~ /^http:/) { + $path = $remotepath; + } + else { + $path = "$defaultrepo_base/$remotepath"; + } + } + + if (($tag eq "") || defined($tags{$tag})) { + if (-d $localpath) { + warning("$localpath already present; omitting"); + } + else { + darcs (@$r_flags, $path, $localpath); + } + } + } + elsif (! /^(#.*)?$/) { + die "Bad line: $_"; + } + } +} + +sub main { + if (! -d "_darcs" || ! -d "compiler") { + die "error: darcs-all must be run from the top level of the ghc tree." + } + + while ($#_ ne -1) { + my $arg = shift; + # We handle -q here as well as lower down as we need to skip over it + # if it comes before the darcs command + if ($arg eq "-q") { + $verbose = 1; + } + elsif ($arg eq "-s") { + $verbose = 0; + } + # --nofib tells get to also grab the nofib repo. + # It has no effect on the other commands. + elsif ($arg eq "--nofib") { + $tags{"nofib"} = 1; + } + # --testsuite tells get to also grab the testsuite repo. + # It has no effect on the other commands. + elsif ($arg eq "--testsuite") { + $tags{"testsuite"} = 1; + } + else { + unshift @_, $arg; + if (grep /^-q$/, @_) { + $verbose = 1; + } + last; + } + } + + if ($#_ eq -1) { + die "What do you want to do?"; + } + my $command = $_[0]; + if ($command eq "get") { + darcsget @_; + } + else { + if ($command =~ /^(?:w|wh|wha|what|whats|whatsn|whatsne|whatsnew)$/) { + # Hack around whatsnew failing if there are no changes + $ignore_failure = 1; + } + darcsall @_; + } +} + +main(@ARGV); +