summaryrefslogtreecommitdiffstats
path: root/bin/chroot-installation.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2017-08-18 08:15:32 -0400
committerHolger Levsen <holger@layer-acht.org>2017-08-18 12:35:06 -0400
commitf4e426b5bc1bdc4431ce3d31b25ad141c6f3911b (patch)
tree92fc8d94a0c0d5acc22be6e50a48b6e00ffc0a72 /bin/chroot-installation.sh
parent5e163c081ca5d91990ae4626faf5375a3ba63c80 (diff)
downloadjenkins.debian.net-f4e426b5bc1bdc4431ce3d31b25ad141c6f3911b.tar.xz
chroot-installs: ignore libidn2-0-dev (but don't file a removal bug until buster is released) when checking for transitional packages
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin/chroot-installation.sh')
-rwxr-xr-xbin/chroot-installation.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/chroot-installation.sh b/bin/chroot-installation.sh
index 0e16f090..fafe5887 100755
--- a/bin/chroot-installation.sh
+++ b/bin/chroot-installation.sh
@@ -289,9 +289,11 @@ if [ "$DISTRO" = "sid" ] ; then
# ignore dh-systemd because #871312
# ignore libpcap-dev because #872265
# ignore "dummy transitional library" because it really is what it says it is…
+ # ignore libidn2-0-dev (but don't file a removal bug until buster is released)
( sudo chroot $CHROOT_TARGET dpkg -l \
| grep -v multiarch-support \
| egrep -v "(jadetex|dh-systemd|libpcap-dev)" \
+ | egrep -v libidn2-0-dev \
| grep -v "dummy transitional library" \
| grep -i "Transitional" 2>/dev/null || true) > $TMPFILE
if [ -s $TMPFILE ] ; then