diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-04-20 13:33:48 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-04-20 13:33:48 +0200 |
commit | aa007e1c07768172e3203f87bbaacff316a14307 (patch) | |
tree | ba490a5286b3bb92e66e79fe6b49fb67086f7793 /bin | |
parent | 2f81aceb09ebf0973bda391337a1c8c6c1921e38 (diff) | |
download | jenkins.debian.net-aa007e1c07768172e3203f87bbaacff316a14307.tar.xz |
chroot-installations: ignore libpango1.0-0|dh-systemd|jadetex|libkutils4|libpcap-dev when looking for transitional packages
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/chroot-installation.sh | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/bin/chroot-installation.sh b/bin/chroot-installation.sh index 9d0b4150..19262530 100755 --- a/bin/chroot-installation.sh +++ b/bin/chroot-installation.sh @@ -288,12 +288,11 @@ fi # if [ "$DISTRO" = "sid" ] ; then # ignore multiarch-support because the transition will never be finished… - # ignore ttf-freefont, stretch is frozen… - # ignore transfig, stretch is frozen… + # stretch is frozen, so for now we ignore: + # ttf-freefont transfig libpango1.0-0 dh-systemd jadetex libkutils4 libpcap-dev ( sudo chroot $CHROOT_TARGET dpkg -l \ | grep -v multiarch-support \ - | grep -v ttf-freefont \ - | grep -v transfig \ + | egrep -v "(ttf-freefont|transfig|libpango1.0-0|dh-systemd|jadetex|libkutils4|libpcap-dev)" \ | grep -i "Transitional" 2>/dev/null || true) > $TMPFILE if [ -s $TMPFILE ] ; then echo |