Add support for unreleased packages from Debian Ports

This commit is contained in:
John Paul Adrian Glaubitz 2017-09-07 22:19:13 +02:00
parent 2b9b429245
commit eb68c7621b
2 changed files with 5 additions and 0 deletions

1
debian/changelog vendored
View File

@ -17,6 +17,7 @@ debian-cd (3.1.21) UNRELEASED; urgency=medium
* Remove special handling for palo, silo and yaboot in which_deb.
* Fix relative d-i path for kernel images and initrd in boot-hppa.
* Fix relative d-i path for kernel images and initrd in boot-sparc64.
* Add support for unreleased debian-installer packages from Debian Ports.
-- Steve McIntyre <93sam@debian.org> Mon, 19 Jun 2017 13:59:36 +0100

View File

@ -111,6 +111,10 @@ if [ ! -e "$APTTMP/$THIS_PKGSET/apt/sources.list" ]; then
echo "$ADEB file:$MIRROR $DI_CODENAME main/debian-installer" \
>> $APTTMP/$THIS_PKGSET/apt/sources.list
fi
if [ -n "$UNRELEASED" ]; then
echo "$ADEB file:$MIRROR unreleased main/debian-installer" \
>> $APTTMP/$THIS_PKGSET/apt/sources.list
fi
if [ -n "$LOCAL" ] && [ -e "${LOCALDEBS:-$MIRROR}/dists/$DI_CODENAME/local/debian-installer" ]; then
echo "$ADEB file:${LOCALDEBS:-$MIRROR} $DI_CODENAME local/debian-installer" \
>> $APTTMP/$THIS_PKGSET/apt/sources.list