r49410 - in /branches/upstream/libmodule-pluggable-fast-perl/current: Changes Fast.pm META.yml t/._01use.t t/._02pod.t t/._03podcoverage.t t/._09require.t t/._10innerpack_noinner.t

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sat Dec 26 05:55:36 UTC 2009


Author: jawnsy-guest
Date: Sat Dec 26 05:55:23 2009
New Revision: 49410

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=49410
Log:
[svn-upgrade] Integrating new upstream version, libmodule-pluggable-fast-perl (0.19)

Removed:
    branches/upstream/libmodule-pluggable-fast-perl/current/t/._01use.t
    branches/upstream/libmodule-pluggable-fast-perl/current/t/._02pod.t
    branches/upstream/libmodule-pluggable-fast-perl/current/t/._03podcoverage.t
    branches/upstream/libmodule-pluggable-fast-perl/current/t/._09require.t
    branches/upstream/libmodule-pluggable-fast-perl/current/t/._10innerpack_noinner.t
Modified:
    branches/upstream/libmodule-pluggable-fast-perl/current/Changes
    branches/upstream/libmodule-pluggable-fast-perl/current/Fast.pm
    branches/upstream/libmodule-pluggable-fast-perl/current/META.yml

Modified: branches/upstream/libmodule-pluggable-fast-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-pluggable-fast-perl/current/Changes?rev=49410&op=diff
==============================================================================
--- branches/upstream/libmodule-pluggable-fast-perl/current/Changes (original)
+++ branches/upstream/libmodule-pluggable-fast-perl/current/Changes Sat Dec 26 05:55:23 2009
@@ -1,4 +1,7 @@
 Revision history for Perl extension Module::Pluggable::Fast
+
+0.19  Fri Dec 25 00:00:00 2009
+	- Add untaint patch from GEOFFR
 
 0.18  Fri Dec 16 00:00:00 2005
 

Modified: branches/upstream/libmodule-pluggable-fast-perl/current/Fast.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-pluggable-fast-perl/current/Fast.pm?rev=49410&op=diff
==============================================================================
--- branches/upstream/libmodule-pluggable-fast-perl/current/Fast.pm (original)
+++ branches/upstream/libmodule-pluggable-fast-perl/current/Fast.pm Sat Dec 26 05:55:23 2009
@@ -8,7 +8,7 @@
 use File::Basename;
 use File::Spec::Functions qw/splitdir catdir abs2rel/;
 
-$VERSION = '0.18';
+$VERSION = '0.19';
 
 =head1 NAME
 
@@ -112,6 +112,8 @@
     my $wanted = sub {
         my $path = $File::Find::name;
         return unless $path =~ /\w+\.pm$/;
+        return unless $path =~ /\A(.+)\z/;
+        $path = $1;     # untaint
 
         # don't include symbolig links pointing into nowhere
         # (e.g. emacs lock-files)

Modified: branches/upstream/libmodule-pluggable-fast-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-pluggable-fast-perl/current/META.yml?rev=49410&op=diff
==============================================================================
--- branches/upstream/libmodule-pluggable-fast-perl/current/META.yml (original)
+++ branches/upstream/libmodule-pluggable-fast-perl/current/META.yml Sat Dec 26 05:55:23 2009
@@ -1,12 +1,22 @@
-# http://module-build.sourceforge.net/META-spec.html
-#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
-name:         Module-Pluggable-Fast
-version:      0.18
-version_from: Fast.pm
-installdirs:  site
+--- #YAML:1.0
+name:               Module-Pluggable-Fast
+version:            0.19
+abstract:           ~
+author:  []
+license:            unknown
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
+build_requires:
+    ExtUtils::MakeMaker:  0
 requires:
-    File::Find:                    0
-    UNIVERSAL::require:            0
-
-distribution_type: module
-generated_by: ExtUtils::MakeMaker version 6.30
+    File::Find:          0
+    UNIVERSAL::require:  0
+no_index:
+    directory:
+        - t
+        - inc
+generated_by:       ExtUtils::MakeMaker version 6.54
+meta-spec:
+    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
+    version:  1.4




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