diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-09-10 15:34:09 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-09-10 15:44:06 +0200 |
commit | d2eadb670ef7f41399d024b50b11fc220cfe4cb9 (patch) | |
tree | 424a104922b236db4447f006ae39058f25550f28 /bin | |
parent | bd9dc48101a1a679b7cbe3b3f159460dd0fac3b0 (diff) | |
download | jenkins.debian.net-d2eadb670ef7f41399d024b50b11fc220cfe4cb9.tar.xz |
chroot-installs: ignore iceowl-l10n-zh-tw and texlive-generic-recommended as new transitional packages
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/chroot-installation.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/chroot-installation.sh b/bin/chroot-installation.sh index 5191c0ad..12016cdc 100755 --- a/bin/chroot-installation.sh +++ b/bin/chroot-installation.sh @@ -318,10 +318,12 @@ if [ "$DISTRO" = "sid" ] ; then # - libgl1-mesa-glx 17.2.0-2 # - libgles2-mesa 17.2.0-2 # - iceweasel + # - iceowl-l10n-zh-tw + # - texlive-generic-recommended 2017.20170818-1 ( sudo chroot $CHROOT_TARGET dpkg -l \ | grep -v multiarch-support \ | egrep -v "(jadetex|dh-systemd|libpcap-dev|transfig|myspell-it|myspell-sl|python-gobject|ttf-dejavu|libav-tools|netcat|gnupg2|libkf5akonadicore-bin|qml-module-org-kde-extensionplugin|myspell-ca|myspell-en-gb|myspell-sv-se|myspell-lt|khelpcenter4|libqca2-plugin-ossl|gambas3-gb-desktop-gnome)" \ - | egrep -v "(libidn2-0-dev|texlive-htmlxml|gnome-user-guide|libegl1-mesa|libgl1-mesa-glx|libgles2-mesa|iceweasel)" \ + | egrep -v "(libidn2-0-dev|texlive-htmlxml|gnome-user-guide|libegl1-mesa|libgl1-mesa-glx|libgles2-mesa|iceweasel|texlive-generic-recommended|iceowl-l10n-zh-tw)" \ | grep -v "dummy transitional library" \ | grep -i "Transitional" 2>/dev/null || true) > $TMPFILE if [ -s $TMPFILE ] ; then |