r63679 - in /branches/upstream/libtext-csv-xs-perl/current: CSV_XS.pm ChangeLog META.yml t/80_diag.t

ansgar at users.alioth.debian.org ansgar at users.alioth.debian.org
Wed Oct 13 15:56:35 UTC 2010


Author: ansgar
Date: Wed Oct 13 15:54:42 2010
New Revision: 63679

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=63679
Log:
[svn-upgrade] new version libtext-csv-xs-perl (0.76)

Modified:
    branches/upstream/libtext-csv-xs-perl/current/CSV_XS.pm
    branches/upstream/libtext-csv-xs-perl/current/ChangeLog
    branches/upstream/libtext-csv-xs-perl/current/META.yml
    branches/upstream/libtext-csv-xs-perl/current/t/80_diag.t

Modified: branches/upstream/libtext-csv-xs-perl/current/CSV_XS.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-csv-xs-perl/current/CSV_XS.pm?rev=63679&op=diff
==============================================================================
--- branches/upstream/libtext-csv-xs-perl/current/CSV_XS.pm (original)
+++ branches/upstream/libtext-csv-xs-perl/current/CSV_XS.pm Wed Oct 13 15:54:42 2010
@@ -30,7 +30,7 @@
 use Carp;
 
 use vars   qw( $VERSION @ISA );
-$VERSION = "0.75";
+$VERSION = "0.76";
 @ISA     = qw( DynaLoader );
 bootstrap Text::CSV_XS $VERSION;
 

Modified: branches/upstream/libtext-csv-xs-perl/current/ChangeLog
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-csv-xs-perl/current/ChangeLog?rev=63679&op=diff
==============================================================================
--- branches/upstream/libtext-csv-xs-perl/current/ChangeLog (original)
+++ branches/upstream/libtext-csv-xs-perl/current/ChangeLog Wed Oct 13 15:54:42 2010
@@ -1,3 +1,6 @@
+2010-10-09 0.76 - H.Merijn Brand   <h.m.brand at xs4all.nl>
+    * Windows doesn't support STDERR redirection as used in t/80_diag
+
 2010-10-05 0.75 - H.Merijn Brand   <h.m.brand at xs4all.nl>
     * Fixed undefinedness of $\ in print (RT#61880)
 

Modified: branches/upstream/libtext-csv-xs-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-csv-xs-perl/current/META.yml?rev=63679&op=diff
==============================================================================
--- branches/upstream/libtext-csv-xs-perl/current/META.yml (original)
+++ branches/upstream/libtext-csv-xs-perl/current/META.yml Wed Oct 13 15:54:42 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                    Text-CSV_XS
-version:                 0.75
+version:                 0.76
 abstract:                Comma-Separated Values manipulation routines
 license:                 perl
 author:              
@@ -10,7 +10,7 @@
 provides:
     Text::CSV_XS:
         file:            CSV_XS.pm
-        version:         0.75
+        version:         0.76
 requires:     
     perl:                5.005
     DynaLoader:          0

Modified: branches/upstream/libtext-csv-xs-perl/current/t/80_diag.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-csv-xs-perl/current/t/80_diag.t?rev=63679&op=diff
==============================================================================
--- branches/upstream/libtext-csv-xs-perl/current/t/80_diag.t (original)
+++ branches/upstream/libtext-csv-xs-perl/current/t/80_diag.t Wed Oct 13 15:54:42 2010
@@ -116,7 +116,10 @@
     like ($@, qr '^# CSV_XS ERROR: 2027 -', "2 - error message");
     }
 
-{   my $diag_file = "_$$.out";
+SKIP: {
+    $^O =~ m/MSWin/i and skip "Windows does not support STDERR redirection as used in these tests", 23;
+
+    my $diag_file = "_$$.out";
     open  EH,     ">&STDERR";
     open  STDERR, ">$diag_file";
     ok ($csv->_cache_diag,	"Cache debugging output");




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