r58160 - in /branches/upstream/libspreadsheet-read-perl/current: Changes META.yml Read.pm t/30_xls.t t/36_xls.t

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Thu May 20 23:33:31 UTC 2010


Author: jawnsy-guest
Date: Thu May 20 23:33:24 2010
New Revision: 58160

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=58160
Log:
[svn-upgrade] Integrating new upstream version, libspreadsheet-read-perl (0.40)

Modified:
    branches/upstream/libspreadsheet-read-perl/current/Changes
    branches/upstream/libspreadsheet-read-perl/current/META.yml
    branches/upstream/libspreadsheet-read-perl/current/Read.pm
    branches/upstream/libspreadsheet-read-perl/current/t/30_xls.t
    branches/upstream/libspreadsheet-read-perl/current/t/36_xls.t

Modified: branches/upstream/libspreadsheet-read-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libspreadsheet-read-perl/current/Changes?rev=58160&op=diff
==============================================================================
--- branches/upstream/libspreadsheet-read-perl/current/Changes (original)
+++ branches/upstream/libspreadsheet-read-perl/current/Changes Thu May 20 23:33:24 2010
@@ -1,4 +1,8 @@
 Revision history for Spreadsheet::Read
+
+0.40	Wed 31 Mar 2010
+
+    - Default option for clip fixed (RT#56151 - Alan James)
 
 0.39	Tue 16 Mar 2010
 

Modified: branches/upstream/libspreadsheet-read-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libspreadsheet-read-perl/current/META.yml?rev=58160&op=diff
==============================================================================
--- branches/upstream/libspreadsheet-read-perl/current/META.yml (original)
+++ branches/upstream/libspreadsheet-read-perl/current/META.yml Thu May 20 23:33:24 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                   Read
-version:                0.39
+version:                0.40
 abstract:               Meta-Wrapper for reading spreadsheet data
 license:                perl
 author:                 
@@ -10,7 +10,7 @@
 provides:
   Spreadsheet::Read:
     file:               Read.pm
-    version:            0.39
+    version:            0.40
 requires:                       
   perl:                 5.006
   Exporter:             0
@@ -40,9 +40,9 @@
     requires:
       Text::CSV_XS:                        0.69
     recommends:
-      Text::CSV:                           1.16
-      Text::CSV_PP:                        1.24
-      Text::CSV_XS:                        0.72
+      Text::CSV:                           1.17
+      Text::CSV_PP:                        1.25
+      Text::CSV_XS:                        0.73
   opt_excel:
     description:        Provides parsing of Microsoft Excel files
     requires:
@@ -53,7 +53,7 @@
   opt_excelx:
     description:        Provides parsing of Microsoft Excel 2007 files
     requires:
-      Spreadsheet::XLSX:                   0.12
+      Spreadsheet::XLSX:                   0.13
       Spreadsheet::XLSX::Fmt2007:          0
   opt_oo:
     description:        Provides parsing of OpenOffice spreadsheets

Modified: branches/upstream/libspreadsheet-read-perl/current/Read.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libspreadsheet-read-perl/current/Read.pm?rev=58160&op=diff
==============================================================================
--- branches/upstream/libspreadsheet-read-perl/current/Read.pm (original)
+++ branches/upstream/libspreadsheet-read-perl/current/Read.pm Thu May 20 23:33:24 2010
@@ -23,7 +23,7 @@
 use strict;
 use warnings;
 
-our $VERSION = "0.39";
+our $VERSION = "0.40";
 sub  Version { $VERSION }
 
 use Carp;
@@ -239,7 +239,7 @@
     defined $opt{rc}	or $opt{rc}	= 1;
     defined $opt{cells}	or $opt{cells}	= 1;
     defined $opt{attr}	or $opt{attr}	= 0;
-    defined $opt{clip}	or $opt{clip}	= $opt{cell};
+    defined $opt{clip}	or $opt{clip}	= $opt{cells};
     defined $opt{strip}	or $opt{strip}	= 0;
     defined $opt{dtfmt} or $opt{dtfmt}	= "yyyy-mm-dd"; # Format 14
 

Modified: branches/upstream/libspreadsheet-read-perl/current/t/30_xls.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libspreadsheet-read-perl/current/t/30_xls.t?rev=58160&op=diff
==============================================================================
--- branches/upstream/libspreadsheet-read-perl/current/t/30_xls.t (original)
+++ branches/upstream/libspreadsheet-read-perl/current/t/30_xls.t Thu May 20 23:33:24 2010
@@ -70,7 +70,8 @@
 
 # This files is generated under Mac OS/X Tiger
 ok (1, "XLS File fom Mac OS X");
-ok ($xls = ReadData ("files/macosx.xls"),	"Read/Parse Mac OS X xls file");
+ok ($xls = ReadData ("files/macosx.xls", clip => 0),
+						"Read/Parse Mac OS X xls file");
 
 ok (1, "Base values");
 is ($xls->[0]{sheets},		3,		"Sheet count");

Modified: branches/upstream/libspreadsheet-read-perl/current/t/36_xls.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libspreadsheet-read-perl/current/t/36_xls.t?rev=58160&op=diff
==============================================================================
--- branches/upstream/libspreadsheet-read-perl/current/t/36_xls.t (original)
+++ branches/upstream/libspreadsheet-read-perl/current/t/36_xls.t Thu May 20 23:33:24 2010
@@ -76,7 +76,8 @@
 
 # This files is generated under Mac OS/X Tiger
 ok (1, "XLS File fom Mac OS X");
-ok ($xls = ReadDataStream ("files/macosx.xls"),	"Read/Parse Mac OS X xls file");
+ok ($xls = ReadDataStream ("files/macosx.xls", clip => 0),
+						"Read/Parse Mac OS X xls file");
 
 ok (1, "Base values");
 is ($xls->[0]{sheets},		3,		"Sheet count");




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