diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-04-23 16:27:02 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-04-23 16:27:02 +0200 |
commit | 534f2bcf33fb7bd39a52b24560b58e1f5c9ab2f1 (patch) | |
tree | 2070988dd3cc0d3aef9ba18a29b399b6371bc441 /bin | |
parent | 41963402724a46881f17d953bcfecf67ca748539 (diff) | |
download | jenkins.debian.net-534f2bcf33fb7bd39a52b24560b58e1f5c9ab2f1.tar.xz |
chroot-installation: ignore transitional packages libqca2-plugin-ossl and qml-module-org-kde-extensionplugin for now
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/chroot-installation.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/chroot-installation.sh b/bin/chroot-installation.sh index 4c6d146f..bb7fe8b9 100755 --- a/bin/chroot-installation.sh +++ b/bin/chroot-installation.sh @@ -290,11 +290,12 @@ if [ "$DISTRO" = "sid" ] ; then # ignore multiarch-support because the transition will never be finished… # stretch is frozen, so for now we ignore: # dh-systemd gnupg2 jadetex libav-tools libkf5akonadicore-bin - # libkutils4 libpango1.0-0 libpcap-dev netcat python-gobject + # libkutils4 libpango1.0-0 libpcap-dev libqca2-plugin-ossl + # netcat python-gobject qml-module-org-kde-extensionplugin # transfig ttf-dejavu ttf-freefont ( sudo chroot $CHROOT_TARGET dpkg -l \ | grep -v multiarch-support \ - | egrep -v "(dh-systemd|gnupg2|jadetex|libav-tools|libkf5akonadicore-bin|libkutils4|libpango1.0-0|libpcap-dev|netcat|python-gobject|transfig|ttf-dejavu|ttf-freefont)" \ + | egrep -v "(dh-systemd|gnupg2|jadetex|libav-tools|libkf5akonadicore-bin|libkutils4|libpango1.0-0|libpcap-dev|libqca2-plugin-ossl|netcat|python-gobject|qml-module-org-kde-extensionplugin|transfig|ttf-dejavu|ttf-freefont)" \ | grep -i "Transitional" 2>/dev/null || true) > $TMPFILE if [ -s $TMPFILE ] ; then echo |