summary refs log tree commit diff
path: root/pkgs/development/perl-modules
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2013-06-02 23:32:59 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2013-06-02 23:33:27 +0200
commitf1c42a833140451e4ec909920154236274ce3f60 (patch)
tree55543a993176db534964ebba129315d8139f0afe /pkgs/development/perl-modules
parent6609df220b8a887c02c6ba6edaf92c8e268e8914 (diff)
downloadnixlib-f1c42a833140451e4ec909920154236274ce3f60.tar
nixlib-f1c42a833140451e4ec909920154236274ce3f60.tar.gz
nixlib-f1c42a833140451e4ec909920154236274ce3f60.tar.bz2
nixlib-f1c42a833140451e4ec909920154236274ce3f60.tar.lz
nixlib-f1c42a833140451e4ec909920154236274ce3f60.tar.xz
nixlib-f1c42a833140451e4ec909920154236274ce3f60.tar.zst
nixlib-f1c42a833140451e4ec909920154236274ce3f60.zip
Module::Pluggable: Update to 4.8
Diffstat (limited to 'pkgs/development/perl-modules')
-rw-r--r--pkgs/development/perl-modules/module-pluggable.patch92
1 files changed, 27 insertions, 65 deletions
diff --git a/pkgs/development/perl-modules/module-pluggable.patch b/pkgs/development/perl-modules/module-pluggable.patch
index defe8e01ff64..51a029c106b9 100644
--- a/pkgs/development/perl-modules/module-pluggable.patch
+++ b/pkgs/development/perl-modules/module-pluggable.patch
@@ -1,65 +1,27 @@
-diff -rc Module-Pluggable-3.5-orig/lib/Module/Pluggable/Object.pm Module-Pluggable-3.5/lib/Module/Pluggable/Object.pm
-*** Module-Pluggable-3.5-orig/lib/Module/Pluggable/Object.pm	2007-01-30 00:13:00.000000000 +0100
---- Module-Pluggable-3.5/lib/Module/Pluggable/Object.pm	2007-03-13 14:29:34.000000000 +0100
-***************
-*** 136,147 ****
-          my $sp = catdir($dir, (split /::/, $searchpath));
-  
-          # if it doesn't exist or it's not a dir then skip it
-!         next unless ( -e $sp && -d _ ); # Use the cached stat the second time
-  
-          my @files = $self->find_files($sp);
-  
-          # foreach one we've found 
-          foreach my $file (@files) {
-              # untaint the file; accept .pm only
-              next unless ($file) = ($file =~ /(.*$file_regex)$/); 
-              # parse the file to get the name
---- 136,148 ----
-          my $sp = catdir($dir, (split /::/, $searchpath));
-  
-          # if it doesn't exist or it's not a dir then skip it
-!         next unless ( -d $sp );
-  
-          my @files = $self->find_files($sp);
-  
-          # foreach one we've found 
-          foreach my $file (@files) {
-+              
-              # untaint the file; accept .pm only
-              next unless ($file) = ($file =~ /(.*$file_regex)$/); 
-              # parse the file to get the name
-***************
-*** 161,167 ****
-  
-              my $err = $self->handle_finding_plugin($plugin);
-              carp "Couldn't require $plugin : $err" if $err;
-!              
-              push @plugins, $plugin;
-          }
-  
---- 162,168 ----
-  
-              my $err = $self->handle_finding_plugin($plugin);
-              carp "Couldn't require $plugin : $err" if $err;
-! 
-              push @plugins, $plugin;
-          }
-  
-***************
-*** 201,207 ****
-                               (my $path = $File::Find::name) =~ s#^\\./##;
-                               push @files, $path;
-                             }
-!                       }, $search_path );
-      }
-      #chdir $cwd;
-      return @files;
---- 202,208 ----
-                               (my $path = $File::Find::name) =~ s#^\\./##;
-                               push @files, $path;
-                             }
-!                       }, "$search_path/." );
-      }
-      #chdir $cwd;
-      return @files;
+diff -ru Module-Pluggable-4.8/lib/Module/Pluggable/Object.pm Module-Pluggable-4.8-new/lib/Module/Pluggable/Object.pm
+--- Module-Pluggable-4.8/lib/Module/Pluggable/Object.pm	2013-05-28 01:30:06.000000000 +0200
++++ Module-Pluggable-4.8-new/lib/Module/Pluggable/Object.pm	2013-06-02 23:24:52.704125205 +0200
+@@ -180,12 +180,13 @@
+         my $sp = catdir($dir, (split /::/, $searchpath));
+ 
+         # if it doesn't exist or it's not a dir then skip it
+-        next unless ( -e $sp && -d _ ); # Use the cached stat the second time
++        next unless ( -d $sp );
+ 
+         my @files = $self->find_files($sp);
+ 
+         # foreach one we've found 
+         foreach my $file (@files) {
++             
+             # untaint the file; accept .pm only
+             next unless ($file) = ($file =~ /(.*$file_regex)$/); 
+             # parse the file to get the name
+@@ -314,7 +315,7 @@
+                              (my $path = $File::Find::name) =~ s#^\\./##;
+                              push @files, $path;
+                            }
+-                      }, $search_path );
++                      }, "$search_path/." );
+     }
+     #chdir $cwd;
+     return @files;