status-report-scripts parseBZbugList,1.21,1.22

Christian Iseli (c4chris) fedora-extras-commits at redhat.com
Wed Apr 19 10:11:55 UTC 2006


Author: c4chris

Update of /cvs/fedora/status-report-scripts
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv4397

Modified Files:
	parseBZbugList 
Log Message:
Add a few missing lines...


Index: parseBZbugList
===================================================================
RCS file: /cvs/fedora/status-report-scripts/parseBZbugList,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- parseBZbugList	19 Apr 2006 10:10:56 -0000	1.21
+++ parseBZbugList	19 Apr 2006 10:11:52 -0000	1.22
@@ -320,6 +320,7 @@
 &displayNewReviewMail("FE-REVIEW");
 &displayNewReviewMail("FE-NEW");
 &displayNewReviewMail("FE-NEEDSPONSOR");
+&displayNewReviewMail("FE-LEGAL");
 &displayNewReviewMail("OPEN-BUGS");
 &displayCVSMail();
 &displayMaintainersMail();
@@ -550,7 +551,7 @@
     print STDERR " - $COUNT_LIST{'extrasNoOwner'} packages present in the ",
       "development repo which have no owners entry\n";
     my $p = $PKG_LIST{"extrasNoOwner"};
-    my $s = &toLine(join(" ", @$p));
+    my $s = &toLine(join(" ", sort @$p));
     $s =~ s/\n/\n    /sg;
     print STDERR "    $s\n";
   }
@@ -957,10 +958,13 @@
 sub displayCVSMail {
   print STDERR "\nCVS stats:\n";
   print STDERR " - $COUNT_LIST{'CVS'} packages with a devel directory\n";
-  my @A = keys %CVS_NO_OWNER;
+  my @A = sort(keys %CVS_NO_OWNER);
   if ($#A >= 0) {
     my $cnt = $#A + 1;
     print STDERR " - $cnt packages with no owners entry\n";
+    my $s = &toLine(join(" ", @A));
+    $s =~ s/\n/\n    /sg;
+    print STDERR "    $s\n";
   }
 }
 




More information about the fedora-extras-commits mailing list