The following commit has been merged in the master branch:
commit 0c524bc5a4bed9ed4a6a46ef75b8294e97525b1a
Author: Andreas Tille <[email protected]>
Date: Tue Sep 1 18:35:06 2015 +0200
Sorted llist of packages in tasksel control files to enable better
comparison of the generation result
diff --git a/debian/changelog b/debian/changelog
index 98a5878..c20bd35 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,8 @@ blends (0.6.92.4) UNRELEASED; urgency=medium
* Drop Simple-CDD from docs
* Document how to deal with name space pollution
+ * devtools/blend-gen-control: Sorted llist of packages in tasksel control
+ files to enable better comparison of the generation result
-- Andreas Tille <[email protected]> Sat, 04 Jul 2015 16:37:24 +0200
diff --git a/devtools/blend-gen-control b/devtools/blend-gen-control
index e52a7d3..2cae3dd 100755
--- a/devtools/blend-gen-control
+++ b/devtools/blend-gen-control
@@ -307,7 +307,8 @@ sub print_task_desc {
}
print "Packages: list\n";
for my $header (qw(Depends Recommends)) {
- foreach my $package (task_packages($task, $header, 1)) {
+ @_ = task_packages($task, $header, 1);
+ foreach my $package (sort @_) {
print " $package\n" unless $seen{$package};
$seen{$package} = 1;
}
--
Git repository for blends code
_______________________________________________
Blends-commit mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/blends-commit