[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[SCM] Debian package checker branch, master, updated. 2.1.6-2-g0e9bbbc



The following commit has been merged in the master branch:
commit 0e9bbbcb068cfff0993fe5264c5b2b392fcf816a
Author: Raphael Geissert <atomo64@gmail.com>
Date:   Wed Jan 21 20:29:51 2009 +0000

    Add a couple of missing "use Util"s required for the use of fail().
    
    * lib/Lintian/Collect/Source.pm: Add a missing "use Util" as the module
      uses the fail() function from that module.  Thanks, Raphael Geissert.
      (Closes: #512560)
    * lib/Text_utils.pm:  Add a missing "use Util" as the module uses the
      fail() function from that module.  Thanks, Raphael Geissert.

diff --git a/debian/changelog b/debian/changelog
index f9cae2a..15835db 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,12 @@ lintian (2.1.7) UNRELEASED; urgency=low
     + [RA] Add swfobject.js to embedded-javascript-library.  Thanks, Paul
       Wise.  (Closes: #512363)
 
+  * lib/Lintian/Collect/Source.pm: Add a missing "use Util" as the module
+    uses the fail() function from that module.  Thanks, Raphael Geissert.
+    (Closes: #512560)
+  * lib/Text_utils.pm:  Add a missing "use Util" as the module uses the
+    fail() function from that module.  Thanks, Raphael Geissert.
+
  -- Russ Allbery <rra@debian.org>  Mon, 19 Jan 2009 20:45:31 -0800
 
 lintian (2.1.6) unstable; urgency=low
diff --git a/lib/Lintian/Collect/Source.pm b/lib/Lintian/Collect/Source.pm
index 2bfdb2e..4a7d6c2 100644
--- a/lib/Lintian/Collect/Source.pm
+++ b/lib/Lintian/Collect/Source.pm
@@ -21,6 +21,7 @@ use strict;
 
 use Lintian::Collect;
 use Parse::DebianChangelog;
+use Util;
 
 our @ISA = qw(Lintian::Collect);
 
diff --git a/lib/Text_utils.pm b/lib/Text_utils.pm
index e869b50..96e745a 100644
--- a/lib/Text_utils.pm
+++ b/lib/Text_utils.pm
@@ -29,6 +29,8 @@ use strict;
 
 # requires wrap() function
 use Text::Wrap;
+# requires fail() function
+use Util;
 
 # html_wrap -- word-wrap a paragaph.  The wrap() function from Text::Wrap
 # is not suitable, because it chops words that are longer than the line

-- 
Debian package checker


Reply to: