r51633 - in /branches/upstream/libextutils-parsexs-perl/current: Changes META.yml Makefile.PL lib/ExtUtils/ParseXS.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Wed Jan 27 01:50:48 UTC 2010


Author: jawnsy-guest
Date: Wed Jan 27 01:50:44 2010
New Revision: 51633

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=51633
Log:
[svn-upgrade] Integrating new upstream version, libextutils-parsexs-perl (2.220100)

Modified:
    branches/upstream/libextutils-parsexs-perl/current/Changes
    branches/upstream/libextutils-parsexs-perl/current/META.yml
    branches/upstream/libextutils-parsexs-perl/current/Makefile.PL
    branches/upstream/libextutils-parsexs-perl/current/lib/ExtUtils/ParseXS.pm

Modified: branches/upstream/libextutils-parsexs-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libextutils-parsexs-perl/current/Changes?rev=51633&op=diff
==============================================================================
--- branches/upstream/libextutils-parsexs-perl/current/Changes (original)
+++ branches/upstream/libextutils-parsexs-perl/current/Changes Wed Jan 27 01:50:44 2010
@@ -1,4 +1,10 @@
 Revision history for Perl extension ExtUtils::ParseXS.
+
+2.2201 Mon Jan 25 16:12:05 EST 2010
+
+ Bug fixes:
+
+ - IN/OUT/OUTLIST, etc. were broken due to a bad regexp.  [Simon Cozens]
 
 2.22 - Mon Jan 11 15:00:07 EST 2010
 

Modified: branches/upstream/libextutils-parsexs-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libextutils-parsexs-perl/current/META.yml?rev=51633&op=diff
==============================================================================
--- branches/upstream/libextutils-parsexs-perl/current/META.yml (original)
+++ branches/upstream/libextutils-parsexs-perl/current/META.yml Wed Jan 27 01:50:44 2010
@@ -8,7 +8,7 @@
   DynaLoader: 0
   ExtUtils::CBuilder: 0
   Test::More: 0.47
-generated_by: 'Module::Build version 0.3515'
+generated_by: 'Module::Build version 0.3603'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -17,7 +17,7 @@
 provides:
   ExtUtils::ParseXS:
     file: lib/ExtUtils/ParseXS.pm
-    version: 2.22
+    version: 2.2201
 requires:
   Cwd: 0
   Exporter: 0
@@ -29,4 +29,4 @@
   bugtracker: http://rt.cpan.org/Dist/Display.html?Queue=ExtUtils-ParseXS
   license: http://dev.perl.org/licenses/
   repository: git://github.com/dagolden/extutils-parsexs.git
-version: 2.22
+version: 2.2201

Modified: branches/upstream/libextutils-parsexs-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libextutils-parsexs-perl/current/Makefile.PL?rev=51633&op=diff
==============================================================================
--- branches/upstream/libextutils-parsexs-perl/current/Makefile.PL (original)
+++ branches/upstream/libextutils-parsexs-perl/current/Makefile.PL Wed Jan 27 01:50:44 2010
@@ -1,22 +1,22 @@
-# Note: this file was auto-generated by Module::Build::Compat version 0.35_15
+# Note: this file was auto-generated by Module::Build::Compat version 0.3603
 use ExtUtils::MakeMaker;
 WriteMakefile
 (
-          'PL_FILES' => {},
-          'INSTALLDIRS' => ($] < 5.008009 ? 'site' : 'perl'),
           'NAME' => 'ExtUtils::ParseXS',
-          'EXE_FILES' => [],
           'VERSION_FROM' => 'lib/ExtUtils/ParseXS.pm',
           'PREREQ_PM' => {
+                           'Carp' => 0,
+                           'Cwd' => 0,
+                           'DynaLoader' => 0,
+                           'Exporter' => 0,
+                           'ExtUtils::CBuilder' => 0,
+                           'File::Basename' => 0,
                            'File::Spec' => 0,
                            'Symbol' => 0,
-                           'Exporter' => 0,
-                           'Carp' => 0,
-                           'Test::More' => '0.47',
-                           'File::Basename' => 0,
-                           'DynaLoader' => 0,
-                           'ExtUtils::CBuilder' => 0,
-                           'Cwd' => 0
-                         }
+                           'Test::More' => '0.47'
+                         },
+          'INSTALLDIRS' => ($] < 5.008009 ? 'site' : 'perl'),
+          'EXE_FILES' => [],
+          'PL_FILES' => {}
         )
 ;

Modified: branches/upstream/libextutils-parsexs-perl/current/lib/ExtUtils/ParseXS.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libextutils-parsexs-perl/current/lib/ExtUtils/ParseXS.pm?rev=51633&op=diff
==============================================================================
--- branches/upstream/libextutils-parsexs-perl/current/lib/ExtUtils/ParseXS.pm (original)
+++ branches/upstream/libextutils-parsexs-perl/current/lib/ExtUtils/ParseXS.pm Wed Jan 27 01:50:44 2010
@@ -18,7 +18,7 @@
 my($XSS_work_idx, $cpp_next_tmp);
 
 use vars qw($VERSION);
-$VERSION = '2.22';
+$VERSION = '2.2201';
 $VERSION = eval $VERSION if $VERSION =~ /_/;
 
 use vars qw(%input_expr %output_expr $ProtoUsed @InitFileCode $FH $proto_re $Overload $errors $Fallback
@@ -521,11 +521,11 @@
 	  next unless defined($pre) && length($pre);
 	  my $out_type = '';
 	  my $inout_var;
-	  if ($process_inout and s/^(IN|IN_OUTLIST|OUTLIST|OUT|IN_OUT)\s+//) {
+	  if ($process_inout and s/^(IN|IN_OUTLIST|OUTLIST|OUT|IN_OUT)\s*//) {
 	    my $type = $1;
 	    $out_type = $type if $type ne 'IN';
-	    $arg =~ s/^(IN|IN_OUTLIST|OUTLIST|OUT|IN_OUT)\s+//;
-	    $pre =~ s/^(IN|IN_OUTLIST|OUTLIST|OUT|IN_OUT)\s+//;
+	    $arg =~ s/^(IN|IN_OUTLIST|OUTLIST|OUT|IN_OUT)\s*//;
+	    $pre =~ s/^(IN|IN_OUTLIST|OUTLIST|OUT|IN_OUT)\s*//;
 	  }
 	  my $islength;
 	  if ($name =~ /^length\( \s* (\w+) \s* \)\z/x) {




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