From e3b44822d75b877f34b96dc800115a41912ff268 Mon Sep 17 00:00:00 2001 From: Adam Conrad Date: Wed, 12 Jul 2017 16:34:36 -0600 Subject: [PATCH] live-build/auto/config: Filter libgles1-mesa out of tasks, as it is not a dependency of anything in updates anymore, fixing mate/myth (LP: #1704013) --- debian/changelog | 7 +++++++ live-build/auto/config | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 473c8340..23dccc2a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +livecd-rootfs (2.408.14) xenial; urgency=medium + + * live-build/auto/config: Filter libgles1-mesa out of tasks, as it is not a + dependency of anything in updates anymore, fixing mate/myth (LP: #1704013) + + -- Adam Conrad Wed, 12 Jul 2017 16:28:13 -0600 + livecd-rootfs (2.408.13) xenial; urgency=medium [ Balint Reczey ] diff --git a/live-build/auto/config b/live-build/auto/config index bbb395ea..cbdeea85 100755 --- a/live-build/auto/config +++ b/live-build/auto/config @@ -65,7 +65,7 @@ add_task () else # If HWE_BUILD is set, we strip out drivers not available # in the HWE stack, then sed the rest with their HWE suffixes - echo "!chroot chroot apt-cache dumpavail | grep-dctrl -nsPackage \\\\\\( -XFArchitecture $ARCH -o -XFArchitecture all \\\\\\) -a -wFTask $task | grep -v xserver-xorg-input-vmmouse | sed -e 's/xserver-xorg.*/&-hwe-16.04/'" >> "config/package-lists/livecd-rootfs.list.chroot_$pass" + echo "!chroot chroot apt-cache dumpavail | grep-dctrl -nsPackage \\\\\\( -XFArchitecture $ARCH -o -XFArchitecture all \\\\\\) -a -wFTask $task | grep -v xserver-xorg-input-vmmouse | grep -v libgles1-mesa | sed -e 's/xserver-xorg.*/&-hwe-16.04/'" >> "config/package-lists/livecd-rootfs.list.chroot_$pass" fi done }