[Libreoffice-commits] dev-tools.git: scripts/Bugzilla.pm scripts/esc-bug-stats.pl

Michael Meeks michael.meeks at collabora.com
Mon Jul 28 18:18:05 PDT 2014


 scripts/Bugzilla.pm      |    1 +
 scripts/esc-bug-stats.pl |    8 ++++++--
 2 files changed, 7 insertions(+), 2 deletions(-)

New commits:
commit 9aee886ac125693808a14fa71ad37cd28c46033e
Author: Michael Meeks <michael.meeks at collabora.com>
Date:   Mon Jul 28 21:19:59 2014 -0400

    Update blacklist, and prune migration.

diff --git a/scripts/Bugzilla.pm b/scripts/Bugzilla.pm
index 8093c8b..2a7715f 100644
--- a/scripts/Bugzilla.pm
+++ b/scripts/Bugzilla.pm
@@ -58,6 +58,7 @@ my %sadly_non_libreoffice = (
     'Tom Stellard' => 1,
     'almos' => 1,
     'Andreas Boll' => 1,
+    'Tapani Pälli' => 1,
 );
 
 sub get_url($)
diff --git a/scripts/esc-bug-stats.pl b/scripts/esc-bug-stats.pl
index 508a95b..3b299b0 100755
--- a/scripts/esc-bug-stats.pl
+++ b/scripts/esc-bug-stats.pl
@@ -81,8 +81,10 @@ print STDERR "\n";
 
 my %component_count;
 
+my %obsolete_components = ( 'Migration' => 1 );
+
 # custom pieces
-$component_count{'Migration'} = Bugzilla::get_deps("https://$Bugzilla::bugserver/showdependencytree.cgi?id=43489&hide_resolved=1");
+$component_count{'Migration'} = 0; # aBugzilla::get_deps("https://$Bugzilla::bugserver/showdependencytree.cgi?id=43489&hide_resolved=1"); - kill for now.
 $component_count{'Crashes'} = Bugzilla::get_query("https://$Bugzilla::bugserver/buglist.cgi?keywords=regression&keywords_type=allwords&list_id=296015&short_desc=crash&query_based_on=CrashRegressions&query_format=advanced&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=NEEDINFO&short_desc_type=allwordssubstr&product=LibreOffice&known_name=CrashRegressions");
 $component_count{'Borders'} = Bugzilla::get_query("https://$Bugzilla::bugserver/buglist.cgi?keywords=regression&keywords_type=allwords&list_id=296016&short_desc=border&query_based_on=BorderRegressions&query_format=advanced&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=NEEDINFO&short_desc_type=allwordssubstr&product=LibreOffice&known_name=BorderRegressions");
 
@@ -94,7 +96,9 @@ for my $component (@reg_toquery) {
 
 print STDERR "\t* ~Component   count net *\n";
 for my $component (sort { $component_count{$b} <=> $component_count{$a} } keys %component_count) {
-    printf STDERR "\t  %12s - %2d (+?)\n", $component, $component_count{$component};
+    if (!defined $obsolete_components{$component}) {
+	printf STDERR "\t  %12s - %2d (+?)\n", $component, $component_count{$component};
+    }
 }
 
 print << "EOF"


More information about the Libreoffice-commits mailing list