blob: 579bc5cd15bdb2883da4fa8692933b0c66997a89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
#!/bin/sh
set -e
top_dirs="nofib testsuite"
default_repo_root="http://darcs.haskell.org/"
default_lib_repo_root=$default_repo_root/packages
quiet=NO
message()
{
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
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/default-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
}
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
for pkg in `cat default-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
}
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
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
|