r11969 - in /branches/upstream/libtext-csv-perl/current: CSV_XS.pm ChangeLog META.yml Makefile.PL README examples/csv2xls

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Fri Jan 4 00:09:38 UTC 2008


Author: gregoa-guest
Date: Fri Jan  4 00:09:38 2008
New Revision: 11969

URL: http://svn.debian.org/wsvn/?sc=1&rev=11969
Log:
[svn-upgrade] Integrating new upstream version, libtext-csv-perl (0.33)

Modified:
    branches/upstream/libtext-csv-perl/current/CSV_XS.pm
    branches/upstream/libtext-csv-perl/current/ChangeLog
    branches/upstream/libtext-csv-perl/current/META.yml
    branches/upstream/libtext-csv-perl/current/Makefile.PL
    branches/upstream/libtext-csv-perl/current/README
    branches/upstream/libtext-csv-perl/current/examples/csv2xls

Modified: branches/upstream/libtext-csv-perl/current/CSV_XS.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libtext-csv-perl/current/CSV_XS.pm?rev=11969&op=diff
==============================================================================
--- branches/upstream/libtext-csv-perl/current/CSV_XS.pm (original)
+++ branches/upstream/libtext-csv-perl/current/CSV_XS.pm Fri Jan  4 00:09:38 2008
@@ -1,6 +1,6 @@
 package Text::CSV_XS;
 
-# Copyright (c) 2007-2007 H.Merijn Brand.  All rights reserved.
+# Copyright (c) 2007-2008 H.Merijn Brand.  All rights reserved.
 # Copyright (c) 1998-2001 Jochen Wiedmann. All rights reserved.
 # Portions Copyright (c) 1997 Alan Citterman. All rights reserved.
 #
@@ -28,7 +28,7 @@
 use DynaLoader ();
 
 use vars   qw( $VERSION @ISA );
-$VERSION = "0.32";
+$VERSION = "0.33";
 @ISA     = qw( DynaLoader );
 
 sub PV { 0 }
@@ -1226,7 +1226,7 @@
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2007-2007 H.Merijn Brand for PROCURA B.V.
+Copyright (C) 2007-2008 H.Merijn Brand for PROCURA B.V.
 Copyright (C) 1998-2001 Jochen Wiedmann. All rights reserved.
 Portions Copyright (C) 1997 Alan Citterman. All rights reserved.
 

Modified: branches/upstream/libtext-csv-perl/current/ChangeLog
URL: http://svn.debian.org/wsvn/branches/upstream/libtext-csv-perl/current/ChangeLog?rev=11969&op=diff
==============================================================================
--- branches/upstream/libtext-csv-perl/current/ChangeLog (original)
+++ branches/upstream/libtext-csv-perl/current/ChangeLog Fri Jan  4 00:09:38 2008
@@ -1,3 +1,8 @@
+2008-01-02  0.33 - H.Merijn Brand   <h.m.brand at xs4all.nl>
+
+	* Text-CSV_XS now under git
+	* Upped copyright to 2008
+
 2007-10-24  0.32 - H.Merijn Brand   <h.m.brand at xs4all.nl>
 
 	* Added $csv->error_diag () to SYNOPSIS

Modified: branches/upstream/libtext-csv-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libtext-csv-perl/current/META.yml?rev=11969&op=diff
==============================================================================
--- branches/upstream/libtext-csv-perl/current/META.yml (original)
+++ branches/upstream/libtext-csv-perl/current/META.yml Fri Jan  4 00:09:38 2008
@@ -1,15 +1,18 @@
 --- #YAML:1.0
 name:                Text-CSV_XS
-version:             0.32
+version:             0.33
 abstract:            Comma-Separated Values manipulation routines
 license:             perl
-generated_by:        ExtUtils::MakeMaker version 6.36
+author:              
+    - H.Merijn Brand <h.merijn at xs4all.nl>
+generated_by:        ExtUtils::MakeMaker version 6.42
 distribution_type:   module
 requires:     
+    Config:                        0
+    Dynaloader:                    0
+    IO::Handle:                    0
     Test::Harness:                 0
     Test::More:                    0
 meta-spec:
     url:     http://module-build.sourceforge.net/META-spec-v1.3.html
     version: 1.3
-author:
-    - H.Merijn Brand <h.merijn at xs4all.nl>

Modified: branches/upstream/libtext-csv-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/branches/upstream/libtext-csv-perl/current/Makefile.PL?rev=11969&op=diff
==============================================================================
--- branches/upstream/libtext-csv-perl/current/Makefile.PL (original)
+++ branches/upstream/libtext-csv-perl/current/Makefile.PL Fri Jan  4 00:09:38 2008
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 
-# Copyright PROCURA B.V. (c) 2006-2007 H.Merijn Brand
+# Copyright PROCURA B.V. (c) 2006-2008 H.Merijn Brand
 
 require 5.005;
 use strict;
@@ -25,7 +25,10 @@
     ABSTRACT     => "Comma-Separated Values manipulation routines",
     AUTHOR       => "H.Merijn Brand <h.merijn\@xs4all.nl>",
     VERSION_FROM => "CSV_XS.pm",
-    PREREQ_PM	 => { "Test::More"	=> 0,
+    PREREQ_PM	 => { "Dynaloader"	=> 0,
+		      "Config"		=> 0,
+		      "IO::Handle"	=> 0,
+		      "Test::More"	=> 0,
 		      "Test::Harness"	=> 0,
 		      },
     clean        => { FILES => join " ", qw(

Modified: branches/upstream/libtext-csv-perl/current/README
URL: http://svn.debian.org/wsvn/branches/upstream/libtext-csv-perl/current/README?rev=11969&op=diff
==============================================================================
--- branches/upstream/libtext-csv-perl/current/README (original)
+++ branches/upstream/libtext-csv-perl/current/README Fri Jan  4 00:09:38 2008
@@ -7,7 +7,7 @@
     fields into a CSV string and parse a CSV string into fields.
 
 Copying:
-    Copyright (c) 2007-2007 H.Merijn Brand.  All rights reserved.
+    Copyright (c) 2007-2008 H.Merijn Brand.  All rights reserved.
     Copyright (c) 1998-2001 Jochen Wiedmann. All rights reserved.
     Portions Copyright (c) 1997 Alan Citterman. All rights reserved.
 

Modified: branches/upstream/libtext-csv-perl/current/examples/csv2xls
URL: http://svn.debian.org/wsvn/branches/upstream/libtext-csv-perl/current/examples/csv2xls?rev=11969&op=diff
==============================================================================
--- branches/upstream/libtext-csv-perl/current/examples/csv2xls (original)
+++ branches/upstream/libtext-csv-perl/current/examples/csv2xls Fri Jan  4 00:09:38 2008
@@ -6,7 +6,7 @@
 use strict;
 use warnings;
 
-our $VERSION = "1.3";
+our $VERSION = "1.4";
 
 sub usage
 {
@@ -85,6 +85,7 @@
 my ($h, $w, @w) = (0, 1); # data height, -width, and default column widths
 while (<>) {
     unless ($csv) {
+	m/\S/ or next;	# Skip empty leading blank lines
 	$sep = # If explicitely set, use it
 	       defined $sep ? $sep :
 	       # otherwise start auto-detect with quoted strings




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