diff options
author | Mattia Rizzolo <mattia@debian.org> | 2017-08-06 21:40:07 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-08-06 15:43:16 -0400 |
commit | b06de8bc35b8aab2a3a5f925021eb264e7c9e320 (patch) | |
tree | 63e86bbc18bf2ee8698144d3e73a99994b135b86 | |
parent | 09e17915cba341abfea34348d27d8ad8ccd3fcc3 (diff) | |
download | jenkins.debian.net-b06de8bc35b8aab2a3a5f925021eb264e7c9e320.tar.xz |
chroot-installation: stop ignoring transitional packages now that stretch is released, let's get rid of them!
Signed-off-by: Mattia Rizzolo <mattia@debian.org>
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-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 |