diff options
-rwxr-xr-x | bin/chroot-installation.sh | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/bin/chroot-installation.sh b/bin/chroot-installation.sh index 6e306129..a23066fa 100755 --- a/bin/chroot-installation.sh +++ b/bin/chroot-installation.sh @@ -285,16 +285,12 @@ fi # 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 iceweasel jadetex khelpcenter4 libav-tools - # libkf5akonadicore-bin libkutils4 libpango1.0-0 libpcap-dev - # libqca2-plugin-ossl myspell-en-gb myspell-ca myspell-it myspell-lt myspell-sl - # myspell-sv-se netcat python-gobject qml-module-org-kde-extensionplugin - # qtpositioning5-doc qtpositioning5-examples - # transfig ttf-dejavu ttf-freefont + # buster is frozen, so for now we ignore: + # <nothing yet!> (add the following in the pipeline below listing the + # ignored packages) + # | egrep -v "(pkg1|pkg2)" \ ( sudo chroot $CHROOT_TARGET dpkg -l \ | grep -v multiarch-support \ - | egrep -v "(dh-systemd|gnupg2|iceweasel|jadetex|khelpcenter4|libav-tools|libkf5akonadicore-bin|libkutils4|libpango1.0-0|libpcap-dev|libqca2-plugin-ossl|myspell-en-gb|myspell-ca|myspell-it|myspell-lt|myspell-sl|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 |