Updates for 2.2r4

This commit is contained in:
Steve McIntyre 2001-12-16 23:22:11 +00:00
parent e340669c45
commit a1daf080e5
1 changed files with 9 additions and 8 deletions

View File

@ -19,7 +19,7 @@ NONUS=${NONUS:-$MIRROR/non-US}
NONFREE=1 NONFREE=1
# What release version is this? # What release version is this?
VER=2.2r3 VER=2.2r4
# Path to use with mkisofs/mkhybrid # Path to use with mkisofs/mkhybrid
MKISOFS=${MKISOFS:-"mkhybrid"} MKISOFS=${MKISOFS:-"mkhybrid"}
@ -36,7 +36,7 @@ OUT=/mirror/debian-cd
# Location of the diff file to use to determine the changes. If you leave # Location of the diff file to use to determine the changes. If you leave
# this blank, we'll try to determine the changes from the ChangeLog files, # this blank, we'll try to determine the changes from the ChangeLog files,
# which is probably less accurate. # which is probably less accurate.
DIFF=/mirror/lists/r0-r3.diff #~/r2.diff DIFF=/mirror/lists/r0-r4.diff #~/r2.diff
REL=Debian"$VER" REL=Debian"$VER"
CLOG=dists/potato/ChangeLog CLOG=dists/potato/ChangeLog
@ -52,8 +52,8 @@ ARCH2="m68k powerpc sparc"
export TDIR NONFREE NONUS VER MIRROR CODENAME OUT BASEDIR export TDIR NONFREE NONUS VER MIRROR CODENAME OUT BASEDIR
scanpackages=$BASEDIR/tools/scanpackages scanpackages=$BASEDIR/tools/scanpackages.old
scansources=$BASEDIR/tools/scansources scansources=$BASEDIR/tools/scansources.old
set_mkisofs_opts=$BASEDIR/tools/set_mkisofs_opts set_mkisofs_opts=$BASEDIR/tools/set_mkisofs_opts
adddirs=$BASEDIR/tools/add_dirs adddirs=$BASEDIR/tools/add_dirs
addfiles=$BASEDIR/tools/add_files addfiles=$BASEDIR/tools/add_files
@ -137,21 +137,22 @@ fi
cd $UPD cd $UPD
echo Splitting binary dirs between trees echo Splitting binary dirs between trees
for ARCH in $ARCH2 for ARCH in $ARCH2
do do
find CD1 -type d | egrep -e binary-$ARCH$ | xargs rm -r find CD1 -type d | egrep -e binary-$ARCH$ | xargs rm -r
done done
find CD1 -type d | egrep -e source | xargs rm -r find CD1 -type d | grep source$ | xargs rm -r
for ARCH in $ARCH1 for ARCH in $ARCH1
do do
find CD2 -type d | egrep -e binary-$ARCH$ | xargs rm -r find CD2 -type d | egrep -e binary-$ARCH$ | xargs rm -r
done done
find CD2 -type d | egrep -e source | xargs rm -r find CD2 -type d | grep source$ | xargs rm -r
for ARCH in sparc all for ARCH in $ARCH1 $ARCH2 all
do do
find CD3 -type d | egrep -e binary-$ARCH$ | xargs rm -r find CD3 -type d | grep -e binary-$ARCH$ | xargs rm -r >/dev/null 2>&1
done done
# Now create the binary-all symlinks # Now create the binary-all symlinks