first cut of merge of STABLE-pre1_0 into HEAD. I won't even guarantee that it
[mir.git] / scripts / autotar / updatetarballs.sh
1 #
2 # this script makes four tarballs:
3
4 # 1. STABLE-pre1_0: with and without libs
5 # 2. current with and without libs
6
7 MIR_TARHOME=/home/rk/autotar/tarballs
8 MIR_HOME=/home/rk/autotar/mir
9 MIR_STABLEHOME=/home/rk/autotar/mirstable
10
11
12
13 echo "[updating cvs stable in $MIR_STABLEHOME]"
14 cd $MIR_STABLEHOME/mir
15 cvs -q update -dP
16 cd ..
17 echo "[tar stable in $MIR_TARHOME] .."
18 tar cfz $MIR_TARHOME/mir_stable.tar.gz --exclude "mir/lib" --exclude "CVS" mir
19 echo "[tar stable+libs in $MIR_TARHOME] .."
20 tar cfz $MIR_TARHOME/mir_stable+libs.tar.gz --exclude "CVS" mir
21
22 echo "[updating cvs current in $MIR_HOME]"
23 cd $MIR_HOME/mir
24 cvs -q update -dP
25 cd ..
26
27 echo "[tar current in $MIR_TARHOME] .."
28 tar cfz $MIR_TARHOME/mir.tar.gz --exclude "mir/lib" --exclude "CVS" mir
29 echo "[tar current+libs in $MIR_TARHOME] .."
30 tar cfz $MIR_TARHOME/mir+libs.tar.gz --exclude "CVS" mir
31