r30242 - in /branches/upstream/libspreadsheet-read-perl/current: Changes META.yml Read.pm t/61_clr.t t/62_fmt.t t/64_dates.t t/65_perc.t

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Thu Jan 29 17:06:35 UTC 2009


Author: gregoa
Date: Thu Jan 29 17:06:32 2009
New Revision: 30242

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

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/61_clr.t
    branches/upstream/libspreadsheet-read-perl/current/t/62_fmt.t
    branches/upstream/libspreadsheet-read-perl/current/t/64_dates.t
    branches/upstream/libspreadsheet-read-perl/current/t/65_perc.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=30242&op=diff
==============================================================================
--- branches/upstream/libspreadsheet-read-perl/current/Changes (original)
+++ branches/upstream/libspreadsheet-read-perl/current/Changes Thu Jan 29 17:06:32 2009
@@ -1,4 +1,10 @@
 Revision history for Spreadsheet::Read
+
+0.34	Fri 23 Jan 2009
+
+    - Spreadsheet::XLSX 0.09 still does not support attributes
+      still think it is better to follow closely. 0.09 is much
+      better than 0.08
 
 0.33	Fri 23 Jan 2009
 

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=30242&op=diff
==============================================================================
--- branches/upstream/libspreadsheet-read-perl/current/META.yml (original)
+++ branches/upstream/libspreadsheet-read-perl/current/META.yml Thu Jan 29 17:06:32 2009
@@ -1,6 +1,6 @@
 --- #YAML:1.1
 name:                   Read
-version:                0.33
+version:                0.34
 abstract:               Meta-Wrapper for reading spreadsheet data
 license:                perl
 author:                 
@@ -10,7 +10,7 @@
 provides:
   Spreadsheet::Read:
     file:               Read.pm
-    version:            0.33
+    version:            0.34
 requires:                       
   perl:                 5.006
   Exporter:             0
@@ -37,18 +37,18 @@
     recommends:
       Text::CSV:                           1.10
       Text::CSV_PP:                        1.10
-      Text::CSV_XS:                        0.59
+      Text::CSV_XS:                        0.60
 - opt_excel:
     description:        Provides parsing of Microsoft Excel files
     requires:
       Spreadsheet::ParseExcel:             0.26
       Spreadsheet::ParseExcel::FmtDefault: 0
     recommends:
-      Spreadsheet::ParseExcel:             0.48
+      Spreadsheet::ParseExcel:             0.49
 - opt_excelx:
     description:        Provides parsing of Microsoft Excel 2007 files
     requires:
-      Spreadsheet::XLSX:                   0.08
+      Spreadsheet::XLSX:                   0.09
       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=30242&op=diff
==============================================================================
--- branches/upstream/libspreadsheet-read-perl/current/Read.pm (original)
+++ branches/upstream/libspreadsheet-read-perl/current/Read.pm Thu Jan 29 17:06:32 2009
@@ -22,7 +22,7 @@
 use strict;
 use warnings;
 
-our $VERSION = "0.33";
+our $VERSION = "0.34";
 sub  Version { $VERSION }
 
 use Carp;

Modified: branches/upstream/libspreadsheet-read-perl/current/t/61_clr.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libspreadsheet-read-perl/current/t/61_clr.t?rev=30242&op=diff
==============================================================================
--- branches/upstream/libspreadsheet-read-perl/current/t/61_clr.t (original)
+++ branches/upstream/libspreadsheet-read-perl/current/t/61_clr.t Thu Jan 29 17:06:32 2009
@@ -17,7 +17,7 @@
 ok ($xls = ReadData ("files/attr.xlsx", attr => 1), "Excel Attributes testcase");
 
 SKIP: {
-    $xls->[0]{version} <= 0.08 and
+    $xls->[0]{version} <= 0.09 and
 	skip "$xls->[0]{parser} $xls->[0]{version} does not reliably support colours", 255;
 
     my $clr = $xls->[$xls->[0]{sheet}{Colours}];

Modified: branches/upstream/libspreadsheet-read-perl/current/t/62_fmt.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libspreadsheet-read-perl/current/t/62_fmt.t?rev=30242&op=diff
==============================================================================
--- branches/upstream/libspreadsheet-read-perl/current/t/62_fmt.t (original)
+++ branches/upstream/libspreadsheet-read-perl/current/t/62_fmt.t Thu Jan 29 17:06:32 2009
@@ -17,7 +17,7 @@
 ok ($xls = ReadData ("files/attr.xlsx", attr => 1), "Excel Attributes testcase");
 
 SKIP: {
-    $xls->[0]{version} <= 0.08 and
+    $xls->[0]{version} <= 0.09 and
 	skip "$xls->[0]{parser} $xls->[0]{version} does not reliably support attributes", 38;
 
     my $fmt = $xls->[$xls->[0]{sheet}{Format}];

Modified: branches/upstream/libspreadsheet-read-perl/current/t/64_dates.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libspreadsheet-read-perl/current/t/64_dates.t?rev=30242&op=diff
==============================================================================
--- branches/upstream/libspreadsheet-read-perl/current/t/64_dates.t (original)
+++ branches/upstream/libspreadsheet-read-perl/current/t/64_dates.t Thu Jan 29 17:06:32 2009
@@ -19,7 +19,7 @@
 ok ($xls = ReadData ("files/Dates.xlsx", attr => 1, dtfmt => "yyyy-mm-dd"), "Excel Date testcase");
 
 SKIP: {
-    $xls->[0]{version} <= 0.08 and
+    $xls->[0]{version} <= 0.09 and
 	skip "$xls->[0]{parser} $xls->[0]{version} does not reliably support formats", 68;
 
     my $ss   = $xls->[1];

Modified: branches/upstream/libspreadsheet-read-perl/current/t/65_perc.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libspreadsheet-read-perl/current/t/65_perc.t?rev=30242&op=diff
==============================================================================
--- branches/upstream/libspreadsheet-read-perl/current/t/65_perc.t (original)
+++ branches/upstream/libspreadsheet-read-perl/current/t/65_perc.t Thu Jan 29 17:06:32 2009
@@ -25,7 +25,7 @@
     is ($ss->{attr}[3][$row]{type}, "percentage",	"Type C$row percentage");
 
     SKIP: {
-	$xls->[0]{version} <= 0.08 and
+	$xls->[0]{version} <= 0.09 and
 	    skip "$xls->[0]{parser} $xls->[0]{version} has format problems", 1;
 	my $i = int $ss->{"A$row"};
 	is ($ss->{"B$row"}, "$i%",		"Formatted values for row $row\n");




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