status-report-scripts parseBZbugList,1.88,1.89

Christian Iseli (c4chris) fedora-extras-commits at redhat.com
Wed Jan 30 16:24:34 UTC 2008


Author: c4chris

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

Modified Files:
	parseBZbugList 
Log Message:
exclude extras-orphan from 'people with no cvs activity'.


Index: parseBZbugList
===================================================================
RCS file: /cvs/fedora/status-report-scripts/parseBZbugList,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- parseBZbugList	24 Jan 2008 18:27:29 -0000	1.88
+++ parseBZbugList	30 Jan 2008 16:24:34 -0000	1.89
@@ -21,8 +21,6 @@
 # - Maybe report a count of FE-DEADREVIEW.
 # - Track packages that do not build on all supported arches, and check they
 #   have an arch dependent BZ tracking ticket.
-# - notting> nirik: hm, you may want to exclude extras-orphan from 'people
-#   with no cvs activity'
 
 use strict;
 use Getopt::Long;
@@ -1093,6 +1091,7 @@
   my @BL;
   my @O = keys %OWNER_STAT;
   foreach my $k (@O) {
+    next if $k eq $orphans;
     my $a = $OWNER_STAT{$k};
     #next unless $$a[2] == 0 && $$a[3] == 0;
     next unless $$a[2] == 0;
@@ -1104,7 +1103,7 @@
   }
   $MAINT_LIST{"bugs"} = \@BL;
   $MAINT_LIST{"packages"} = \@PL;
-  $COUNT_LIST{'maintainers'} = $#O + 1;
+  $COUNT_LIST{'maintainers'} = $#O; # Do not count orphan owner
   $COUNT_LIST{'maintbugs'} = $#BL + 1;
   $COUNT_LIST{'maintpkg'} = $#PL + 1;
 }




More information about the fedora-extras-commits mailing list