From 6114c16dfc7e7abf7cec64f92d0101c22066a67b Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Tue, 15 Jan 2019 18:45:27 +0100 Subject: [PATCH] include/exclude more packages for Edu BD image Thanks to Wolfgang Schweer for the patch. Signed-off-by: Holger Levsen --- tools/generate_debian-edu_task | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/tools/generate_debian-edu_task b/tools/generate_debian-edu_task index ca0a20fa..ccbda233 100755 --- a/tools/generate_debian-edu_task +++ b/tools/generate_debian-edu_task @@ -54,16 +54,19 @@ $/ = ''; # Browse by paragraph # Ignore a few tasks that we don't want, e.g. education-development, # it's too big and pulls in all sorts of things that end users won't -# want/need +# want/need, also ignore cinnamon desktop (no Debian Edu support). my @ignore_list = ('education-development', - 'education-video'); + 'education-video', + 'task-cinnamon-desktop'); while (defined($_ = )) { m/^Package: (\S+)/m and $pkg = $1; m/^Filename: (\S+)/m and $filename = $1; - # We want all packages matching "^education-" - if (! ($pkg =~ /^education-/)) { + # We want all packages matching "^education-" and "^debian-edu-". + # Also wanted: all tasks; these are supposed to pull in localization related + # packages. Add otherwise missing gimp-help and thunderbird localization. + if (! ($pkg =~ /^education-|^debian-edu-|^task-|^gimp-help-|thunderbird-l10n-all/)) { next; }