Ensure that the correct version of the Installation Guide is included

This commit is contained in:
Frans Pop 2008-03-07 09:27:39 +00:00
parent 8fd196b6b0
commit 559ba5615c
4 changed files with 37 additions and 7 deletions

5
debian/changelog vendored
View File

@ -100,7 +100,10 @@ debian-cd (3.0.4) UNRELEASED; urgency=low
* New OMIT_DOC_TOOLS option to be able to work with mirrors that do not
contain the doc and tools directories.
-- Otavio Salvador <otavio@ossystems.com.br> Thu, 14 Feb 2008 12:27:58 -0200
[ Frans Pop ]
* Ensure that the correct version of the Installation Guide is included.
-- Frans Pop <fjp@debian.org> Fri, 07 Mar 2008 10:26:22 +0100
debian-cd (3.0.3) unstable; urgency=low

29
tools/Packages-gen.sh Executable file
View File

@ -0,0 +1,29 @@
#! /bin/sh
set -e
if [ ! -d $LOCALDEBS ]; then
echo "error: LOCALDEBS variable not set"
exit 1
fi
cd $LOCALDEBS
distr=$1
if [ -z "$distr" ]; then
echo "Usage: $(basename $0) <codename>"
exit 1
elif [ ! -d dists/$distr/local/ ]; then
echo "No local repository matching '$distr' was found"
exit 1
fi
for repo in dists/$distr/local/binary-*; do
[ -d $repo ] || break
echo Creating Packages file for $repo...
apt-ftparchive packages $repo | gzip >$repo/Packages.gz
done
for repo in dists/$distr/local/debian-installer/binary-*; do
[ -d $repo ] || break
echo Creating Packages file for $repo...
apt-ftparchive packages $repo | gzip >$repo/Packages.gz
done
echo "Done."

View File

@ -25,8 +25,7 @@ if [ "$OMIT_MANUAL" != 1 ]; then
INSTALLDIR=$DIR/$DOCDIR/manual/$ARCH
fi
DOCS=$MIRROR/dists/$DI_CODENAME/main/installer-$ARCH/current/$DOCDIR
INSTALLGUIDE=$(zcat $MIRROR/dists/etch/main/binary-$ARCH//Packages.gz | \
INSTALLGUIDE=$(zcat $MIRROR/dists/$CODENAME/main/binary-$ARCH//Packages.gz | \
sed -n "s/Filename: \(pool\/main\/i\/installation-guide\/installation-guide-$ARCH.*deb\)$/\1/p")
if [ -f "$MIRROR/$INSTALLGUIDE" ]; then

View File

@ -25,8 +25,7 @@ if [ "$OMIT_MANUAL" != 1 ]; then
INSTALLDIR=$DIR/$DOCDIR/manual/$ARCH
fi
DOCS=$MIRROR/dists/$DI_CODENAME/main/installer-$ARCH/current/$DOCDIR
INSTALLGUIDE=$(zcat $MIRROR/dists/etch/main/binary-$ARCH//Packages.gz | \
INSTALLGUIDE=$(zcat $MIRROR/dists/$CODENAME/main/binary-$ARCH//Packages.gz | \
sed -n "s/Filename: \(pool\/main\/i\/installation-guide\/installation-guide-$ARCH.*deb\)$/\1/p")
if [ -f "$MIRROR/$INSTALLGUIDE" ]; then