r59833 - in /trunk/dh-make-perl: debian/changelog lib/Debian/Control/FromCPAN.pm

ansgar-guest at users.alioth.debian.org ansgar-guest at users.alioth.debian.org
Sun Jun 27 03:38:49 UTC 2010


Author: ansgar-guest
Date: Sun Jun 27 03:38:05 2010
New Revision: 59833

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=59833
Log:
Debian::Control::FromCPAN (discover_dependencies): Do not ignore results
from Module::Depends::Intrusive. (Closes: #587276)

Modified:
    trunk/dh-make-perl/debian/changelog
    trunk/dh-make-perl/lib/Debian/Control/FromCPAN.pm

Modified: trunk/dh-make-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/debian/changelog?rev=59833&op=diff
==============================================================================
--- trunk/dh-make-perl/debian/changelog (original)
+++ trunk/dh-make-perl/debian/changelog Sun Jun 27 03:38:05 2010
@@ -13,6 +13,8 @@
     specified by --packagename option. (Closes: #584619)
   * dh-make-perl: Fix spelling error ("intercepring" → "intercepting").
   * Debian::WNPP::Query: Fix bugs_for_package method.
+  * Debian::Control::FromCPAN (discover_dependencies): Do not ignore results
+    from Module::Depends::Intrusive. (Closes: #587276)
 
   [ Salvatore Bonaccorso ]
   * Add support of Breaks field for binary package stanzas in debian/control

Modified: trunk/dh-make-perl/lib/Debian/Control/FromCPAN.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/Debian/Control/FromCPAN.pm?rev=59833&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/Debian/Control/FromCPAN.pm (original)
+++ trunk/dh-make-perl/lib/Debian/Control/FromCPAN.pm Sun Jun 27 03:38:05 2010
@@ -149,14 +149,12 @@
             }
         }
         else {
-            warn
-                "If you understand the security implications, try --intrusive.\n"
-                if $verbose;
-        }
-        warn '=' x 70, "\n"
-            if $verbose;
-
-        return;
+            if ($verbose) {
+                warn "If you understand the security implications, try --intrusive.\n";
+                warn '=' x 70, "\n";
+            }
+            return;
+        }
     }
 
     # run-time




More information about the Pkg-perl-cvs-commits mailing list