r26528 - in /trunk/libspreadsheet-read-perl: Changes META.yml Makefile.PL README Read.pm debian/changelog examples/xlscat

ghostbar-guest at users.alioth.debian.org ghostbar-guest at users.alioth.debian.org
Sun Nov 2 08:04:09 UTC 2008


Author: ghostbar-guest
Date: Sun Nov  2 08:04:06 2008
New Revision: 26528

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

Modified:
    trunk/libspreadsheet-read-perl/Changes
    trunk/libspreadsheet-read-perl/META.yml
    trunk/libspreadsheet-read-perl/Makefile.PL
    trunk/libspreadsheet-read-perl/README
    trunk/libspreadsheet-read-perl/Read.pm
    trunk/libspreadsheet-read-perl/debian/changelog
    trunk/libspreadsheet-read-perl/examples/xlscat

Modified: trunk/libspreadsheet-read-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libspreadsheet-read-perl/Changes?rev=26528&op=diff
==============================================================================
--- trunk/libspreadsheet-read-perl/Changes (original)
+++ trunk/libspreadsheet-read-perl/Changes Sun Nov  2 08:04:06 2008
@@ -1,4 +1,12 @@
 Revision history for Spreadsheet::Read
+
+0.29	Tue 21 Oct 2008
+
+    - Make Read safer for files that do not match extension,
+      like HTML in foo.xls
+    - YAML declared 1.4 (META.yml) instead of 1.1 (YAML)
+    - Bring Makefile.PL in sync with META.yml
+    - Recommend Text-CSV-0.56
 
 0.28	Wed 04 Sep 2008
 

Modified: trunk/libspreadsheet-read-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libspreadsheet-read-perl/META.yml?rev=26528&op=diff
==============================================================================
--- trunk/libspreadsheet-read-perl/META.yml (original)
+++ trunk/libspreadsheet-read-perl/META.yml Sun Nov  2 08:04:06 2008
@@ -1,6 +1,6 @@
---- #YAML:1.4
+--- #YAML:1.1
 name:                   Read
-version:                0.28
+version:                0.29
 abstract:               Meta-Wrapper for reading spreadsheet data
 license:                perl
 author:                 
@@ -10,7 +10,7 @@
 provides:
   Spreadsheet::Read:
     file:               Read.pm
-    version:            0.28
+    version:            0.29
 requires:                       
   perl:                 5.006
   Exporter:             0
@@ -31,7 +31,7 @@
     recommends:
       Text::CSV:        1
       Text::CSV_PP:     1.05
-      Text::CSV_XS:     0.54
+      Text::CSV_XS:     0.56
 - opt_excel:
     description:        Provides parsing of Microsoft Excel files
     requires:

Modified: trunk/libspreadsheet-read-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libspreadsheet-read-perl/Makefile.PL?rev=26528&op=diff
==============================================================================
--- trunk/libspreadsheet-read-perl/Makefile.PL (original)
+++ trunk/libspreadsheet-read-perl/Makefile.PL Sun Nov  2 08:04:06 2008
@@ -24,6 +24,7 @@
     PREREQ_PM    => {
 	# Core modules
 	"Exporter"			=> 0.00,
+	"Carp"				=> 0.00,
 	"Data::Dumper"			=> 0.00,
 	"File::Temp"			=> 0.14,
 	"IO::Scalar"			=> 0.00,	# Optional
@@ -34,6 +35,7 @@
 	"Text::CSV_PP"			=> 1.05,	# 1.08 or up preferred
 	"Spreadsheet::ReadSXC"		=> 0.20,
 	"Spreadsheet::ParseExcel"	=> 0.26,
+	"Spreadsheet::ParseExcel::FmtDefault" => 0,
 #	"Spreadsheet::Perl"		=> 0.00,	# Not yet
 
 	# For testing
@@ -87,7 +89,8 @@
 	'',
 	'tgzdist:	checkmeta fixmeta $(DISTVNAME).tar.gz distcheck',
 	'	- at mv -f $(DISTVNAME).tar.gz $(DISTVNAME).tgz',
-	'	- at cpants_lint.pl $(DISTVNAME).tgz';
+	'	- at cpants_lint.pl $(DISTVNAME).tgz',
+	'	- at rm -f Debian_CPANTS.txt';
     } # postamble
 
 1;

Modified: trunk/libspreadsheet-read-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libspreadsheet-read-perl/README?rev=26528&op=diff
==============================================================================
--- trunk/libspreadsheet-read-perl/README (original)
+++ trunk/libspreadsheet-read-perl/README Sun Nov  2 08:04:06 2008
@@ -13,11 +13,12 @@
 and Spreadheet::ReadSXC to give the end-user a single point of view to
 various types of spreadsheets and deal with these in a transparent way.
 
-See for more thorough documentation the pod in the module, or
+For more thorough documentation please refer to the perl documentation
+in the module in pod format, or
 
   $ man Spreadsheet::Read
 
-after installation
+after installation.
 
 =head1 INSTALLATION
 
@@ -52,6 +53,6 @@
 Copyright (C) 2005-2008 H.Merijn Brand
 
 This library is free software; you can redistribute it and/or modify
-it under the same terms as Perl itself. 
+it under the same terms as Perl itself.
 
 =cut

Modified: trunk/libspreadsheet-read-perl/Read.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libspreadsheet-read-perl/Read.pm?rev=26528&op=diff
==============================================================================
--- trunk/libspreadsheet-read-perl/Read.pm (original)
+++ trunk/libspreadsheet-read-perl/Read.pm Sun Nov  2 08:04:06 2008
@@ -21,7 +21,7 @@
 use strict;
 use warnings;
 
-our $VERSION = "0.28";
+our $VERSION = "0.29";
 sub  Version { $VERSION }
 
 use Carp;
@@ -308,7 +308,7 @@
 	    type	=> "xls",
 	    parser	=> "Spreadsheet::ParseExcel",
 	    version	=> $Spreadsheet::ParseExcel::VERSION,
-	    sheets	=> $oBook->{SheetCount},
+	    sheets	=> $oBook->{SheetCount} || 0,
 	    sheet	=> {},
 	    } );
 	# Overrule the default date format strings

Modified: trunk/libspreadsheet-read-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libspreadsheet-read-perl/debian/changelog?rev=26528&op=diff
==============================================================================
--- trunk/libspreadsheet-read-perl/debian/changelog (original)
+++ trunk/libspreadsheet-read-perl/debian/changelog Sun Nov  2 08:04:06 2008
@@ -1,3 +1,9 @@
+libspreadsheet-read-perl (0.29-1) UNRELEASED; urgency=low
+
+  * (NOT RELEASED YET) New upstream release
+
+ -- Jose Luis Rivas <ghostbar38 at gmail.com>  Sun, 02 Nov 2008 03:33:29 -0430
+
 libspreadsheet-read-perl (0.28-1) unstable; urgency=low
 
   * Initial Release. Closes: #497780

Modified: trunk/libspreadsheet-read-perl/examples/xlscat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libspreadsheet-read-perl/examples/xlscat?rev=26528&op=diff
==============================================================================
--- trunk/libspreadsheet-read-perl/examples/xlscat (original)
+++ trunk/libspreadsheet-read-perl/examples/xlscat Sun Nov  2 08:04:06 2008
@@ -1,12 +1,12 @@
 #!/pro/bin/perl
 
 # xls2cat: show XLS/SXC file as Text
-#	  (m)'08 [31-08-2008] Copyright H.M.Brand 2005-2008
+#	  (m)'08 [10-10-2008] Copyright H.M.Brand 2005-2008
 
 use strict;
 use warnings;
 
-our $VERSION = "1.7";
+our $VERSION = "1.8";
 
 sub usage
 {
@@ -32,6 +32,7 @@
 	"    Output Text (default):\n",
 	"       -s <sep>    Use separator <sep>. Default '|', \\n allowed\n",
 	"       -L          Line up the columns\n",
+	"       -A          Show field attributes in ANSI escapes\n",
 	"    Output Index only:\n",
 	"       -i          Show sheet names and size only\n",
 	"    Output CSV:\n",
@@ -60,7 +61,7 @@
 my $opt_u = 0;		# Show unformatted values
 my $opt_v = 0;		# Verbosity for xlscat
 my $opt_d = 0;		# Debug level for Spreadsheet::Read
-my $opt_A = 0;		# Show field colors in ansi escapes
+my $opt_A = 0;		# Show field colors in ANSI escapes
 my $clip  = 1;
 my $enc_i;		# Input  encoding
 my $enc_o;		# Output encoding




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