The following commit has been merged in the master branch:
commit 00dfa40971d40301db1298e3adab8baf5167df0b
Author: Ole Streicher <[email protected]>
Date:   Mon Apr 4 15:37:43 2016 +0200

    Add a $blend-all task
    This task contains the default (complete, in the moment) selection of tasks
    for the Debian installer.

diff --git a/devtools/blend-gen-control b/devtools/blend-gen-control
index 786607f..f9c1681 100755
--- a/devtools/blend-gen-control
+++ b/devtools/blend-gen-control
@@ -177,6 +177,25 @@ sub uniq {
 
 sub gen_control {
     my $task;
+
+    print "Package: $blendshortname-all\n";
+    print "Section: metapackages\n" ;
+    print "Architecture: all\n";
+    my @list;
+    for $task (sort keys %taskinfo) {
+        next if (exists $taskinfo{$task}{'Metapackage'} &&
+                        $taskinfo{$task}{'Metapackage'} eq 'false');
+       if ( $suppressempty && $taskinfo{$task}{'haspackages'} == 0 ) {
+           next ;
+       }
+       push (@list, $task)
+    }
+    print "Recommends: ";
+    print join(",\n ",@list);
+    print "\nDescription: Default selection of tasks for $blendtitle\n";
+    print " This package is part of the $blendtitle Pure Blend and installs 
all\n";
+    print " tasks for a default installation of this blend.\n\n";
+
     for $task (sort keys %taskinfo) {
         next if (exists $taskinfo{$task}{'Metapackage'} &&
                         $taskinfo{$task}{'Metapackage'} eq 'false');

-- 
Git repository for blends code

_______________________________________________
Blends-commit mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/blends-commit

Reply via email to