r17974 - in /branches/upstream/libmodule-scandeps-perl/current: Changes META.yml lib/Module/ScanDeps.pm

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Wed Mar 26 17:21:23 UTC 2008


Author: gregoa-guest
Date: Wed Mar 26 17:21:19 2008
New Revision: 17974

URL: http://svn.debian.org/wsvn/?sc=1&rev=17974
Log:
[svn-upgrade] Integrating new upstream version, libmodule-scandeps-perl (0.83)

Modified:
    branches/upstream/libmodule-scandeps-perl/current/Changes
    branches/upstream/libmodule-scandeps-perl/current/META.yml
    branches/upstream/libmodule-scandeps-perl/current/lib/Module/ScanDeps.pm

Modified: branches/upstream/libmodule-scandeps-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libmodule-scandeps-perl/current/Changes?rev=17974&op=diff
==============================================================================
--- branches/upstream/libmodule-scandeps-perl/current/Changes (original)
+++ branches/upstream/libmodule-scandeps-perl/current/Changes Wed Mar 26 17:21:19 2008
@@ -1,3 +1,6 @@
+[Changes for 0.83 - 2008-03-23]
+* Add special case for Image::ExifTool.
+
 [Changes for 0.82 - 2008-01-08]
 * Add Test::More to build requirements (Alexandr Ciornii)
 * Add dependency on version.pm

Modified: branches/upstream/libmodule-scandeps-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libmodule-scandeps-perl/current/META.yml?rev=17974&op=diff
==============================================================================
--- branches/upstream/libmodule-scandeps-perl/current/META.yml (original)
+++ branches/upstream/libmodule-scandeps-perl/current/META.yml Wed Mar 26 17:21:19 2008
@@ -21,4 +21,4 @@
   Module::Build::ModuleInfo: 0
   perl: 5.6.0
   version: 0
-version: 0.82
+version: 0.83

Modified: branches/upstream/libmodule-scandeps-perl/current/lib/Module/ScanDeps.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libmodule-scandeps-perl/current/lib/Module/ScanDeps.pm?rev=17974&op=diff
==============================================================================
--- branches/upstream/libmodule-scandeps-perl/current/lib/Module/ScanDeps.pm (original)
+++ branches/upstream/libmodule-scandeps-perl/current/lib/Module/ScanDeps.pm Wed Mar 26 17:21:19 2008
@@ -4,7 +4,7 @@
 use strict;
 use vars qw( $VERSION @EXPORT @EXPORT_OK $CurrentPackage @IncludeLibs $ScanFileRE );
 
-$VERSION   = '0.82';
+$VERSION   = '0.83';
 @EXPORT    = qw( scan_deps scan_deps_runtime );
 @EXPORT_OK = qw( scan_line scan_chunk add_deps scan_deps_runtime path_to_inc_name );
 
@@ -285,6 +285,11 @@
     'HTTP/Message.pm' => [ qw(
         URI/URL.pm          URI.pm
     ) ],
+    'Image/ExifTool.pm' => sub {
+        return( _glob_in_inc("Image/ExifTool", 1), qw(
+            File/RandomAccess.pm
+        ));
+    },
     'Image/Info.pm' => sub {
         return( _glob_in_inc("Image/Info", 1), qw(
             Image/TIFF.pm




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