r49412 - in /trunk/libmodule-pluggable-fast-perl: Changes Fast.pm META.yml debian/changelog 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:57:24 UTC 2009


Author: jawnsy-guest
Date: Sat Dec 26 05:57:19 2009
New Revision: 49412

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=49412
Log:
New upstream release

Removed:
    trunk/libmodule-pluggable-fast-perl/t/._01use.t
    trunk/libmodule-pluggable-fast-perl/t/._02pod.t
    trunk/libmodule-pluggable-fast-perl/t/._03podcoverage.t
    trunk/libmodule-pluggable-fast-perl/t/._09require.t
    trunk/libmodule-pluggable-fast-perl/t/._10innerpack_noinner.t
Modified:
    trunk/libmodule-pluggable-fast-perl/Changes
    trunk/libmodule-pluggable-fast-perl/Fast.pm
    trunk/libmodule-pluggable-fast-perl/META.yml
    trunk/libmodule-pluggable-fast-perl/debian/changelog

Modified: trunk/libmodule-pluggable-fast-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-pluggable-fast-perl/Changes?rev=49412&op=diff
==============================================================================
--- trunk/libmodule-pluggable-fast-perl/Changes (original)
+++ trunk/libmodule-pluggable-fast-perl/Changes Sat Dec 26 05:57:19 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: trunk/libmodule-pluggable-fast-perl/Fast.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-pluggable-fast-perl/Fast.pm?rev=49412&op=diff
==============================================================================
--- trunk/libmodule-pluggable-fast-perl/Fast.pm (original)
+++ trunk/libmodule-pluggable-fast-perl/Fast.pm Sat Dec 26 05:57:19 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: trunk/libmodule-pluggable-fast-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-pluggable-fast-perl/META.yml?rev=49412&op=diff
==============================================================================
--- trunk/libmodule-pluggable-fast-perl/META.yml (original)
+++ trunk/libmodule-pluggable-fast-perl/META.yml Sat Dec 26 05:57:19 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

Modified: trunk/libmodule-pluggable-fast-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-pluggable-fast-perl/debian/changelog?rev=49412&op=diff
==============================================================================
--- trunk/libmodule-pluggable-fast-perl/debian/changelog (original)
+++ trunk/libmodule-pluggable-fast-perl/debian/changelog Sat Dec 26 05:57:19 2009
@@ -1,3 +1,9 @@
+libmodule-pluggable-fast-perl (0.19-1) UNRELEASED; urgency=low
+
+  * New upstream release
+
+ -- Jonathan Yu <jawnsy at cpan.org>  Sat, 26 Dec 2009 00:54:32 -0500
+
 libmodule-pluggable-fast-perl (0.18-2) unstable; urgency=low
 
   [ gregor herrmann ]




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