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

Michael Meeks michael.meeks at collabora.com
Fri Jul 4 01:04:06 PDT 2014


 scripts/build-portal.pl  |    8 ++++++++
 scripts/esc-bug-stats.pl |    3 +++
 2 files changed, 11 insertions(+)

New commits:
commit 7dd15a2f55a5e1803d72038664ec3edd1a5b01d1
Author: Michael Meeks <michael.meeks at collabora.com>
Date:   Fri Jul 4 09:05:24 2014 +0100

    Find the perl modules next to the binary.

diff --git a/scripts/build-portal.pl b/scripts/build-portal.pl
index 32c977f..2e8edcc 100755
--- a/scripts/build-portal.pl
+++ b/scripts/build-portal.pl
@@ -1,10 +1,17 @@
 #!/usr/bin/perl -w
 
+use FindBin;
+use lib "$FindBin::Bin";
+
 use strict;
 use Bugzilla;
 
 my $git_dir = '/opt/libreoffice/push-tree';
 
+# FIXME: add a re-build-section thing ...
+# German comments: overall stats ... smallest <N> modules ...
+# a bit of text on how to fix that etc.
+
 sub usage()
 {
     print "build-portal.pl [--help] [--git path/to/git/repo]\n";
@@ -49,6 +56,7 @@ LibreOffice Development Portal
     <p>$dialogs{ui_files} UI files</p>
     <p>$dialogs{ui_dialogs} dialogs left</p>
     <p>$dialogs{ui_tabpages} tab-pages left</p>
+    <a href="FIXME: Caolan's write-up">Get Involved</a>
     </div>
 </body>
 </html>
diff --git a/scripts/esc-bug-stats.pl b/scripts/esc-bug-stats.pl
index 5ac0810..872f9eb 100755
--- a/scripts/esc-bug-stats.pl
+++ b/scripts/esc-bug-stats.pl
@@ -1,5 +1,8 @@
 #!/usr/bin/perl -w
 
+use FindBin;
+use lib "$FindBin::Bin";
+
 use strict;
 use warnings;
 use Bugzilla;


More information about the Libreoffice-commits mailing list