diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-04-25 14:21:06 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-04-25 14:21:06 +0200 |
commit | 0834ad9f50a8eaf139c7ba52c658380a4c5291b5 (patch) | |
tree | 706e3c509e65f254c3e14c07a52971b1c02866ac | |
parent | bee24c209bf74cc833808620106cafdce15714b3 (diff) | |
download | jenkins.debian.net-0834ad9f50a8eaf139c7ba52c658380a4c5291b5.tar.xz |
chroot-installations: also ignore transitional package myspell-sv-se for now
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rwxr-xr-x | bin/chroot-installation.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/chroot-installation.sh b/bin/chroot-installation.sh index 27a74f9b..52c4fe4b 100755 --- a/bin/chroot-installation.sh +++ b/bin/chroot-installation.sh @@ -291,12 +291,12 @@ if [ "$DISTRO" = "sid" ] ; then # stretch is frozen, so for now we ignore: # dh-systemd gnupg2 jadetex khelpcenter4 libav-tools libkf5akonadicore-bin # libkutils4 libpango1.0-0 libpcap-dev libqca2-plugin-ossl - # netcat python-gobject qml-module-org-kde-extensionplugin + # myspell-sv-se netcat python-gobject qml-module-org-kde-extensionplugin # qtpositioning5-doc qtpositioning5-examples # transfig ttf-dejavu ttf-freefont ( sudo chroot $CHROOT_TARGET dpkg -l \ | grep -v multiarch-support \ - | egrep -v "(dh-systemd|gnupg2|jadetex|khelpcenter4|libav-tools|libkf5akonadicore-bin|libkutils4|libpango1.0-0|libpcap-dev|libqca2-plugin-ossl|netcat|python-gobject|qml-module-org-kde-extensionplugin|qtpositioning5-doc|qtpositioning5-examples|transfig|ttf-dejavu|ttf-freefont)" \ + | egrep -v "(dh-systemd|gnupg2|jadetex|khelpcenter4|libav-tools|libkf5akonadicore-bin|libkutils4|libpango1.0-0|libpcap-dev|libqca2-plugin-ossl|myspell-sv-se|netcat|python-gobject|qml-module-org-kde-extensionplugin|qtpositioning5-doc|qtpositioning5-examples|transfig|ttf-dejavu|ttf-freefont)" \ | grep -i "Transitional" 2>/dev/null || true) > $TMPFILE if [ -s $TMPFILE ] ; then echo |