r5399 - in /packages/libspreadsheet-parseexcel-perl/branches/upstream/current: Build.PL Changes MANIFEST META.yml Makefile.PL lib/Spreadsheet/ParseExcel.pm t/examples/ t/memory_leak.t t/sample.t

gwolf at users.alioth.debian.org gwolf at users.alioth.debian.org
Mon May 14 14:52:29 UTC 2007


Author: gwolf
Date: Mon May 14 14:52:29 2007
New Revision: 5399

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

Removed:
    packages/libspreadsheet-parseexcel-perl/branches/upstream/current/t/examples/
    packages/libspreadsheet-parseexcel-perl/branches/upstream/current/t/memory_leak.t
    packages/libspreadsheet-parseexcel-perl/branches/upstream/current/t/sample.t
Modified:
    packages/libspreadsheet-parseexcel-perl/branches/upstream/current/Build.PL
    packages/libspreadsheet-parseexcel-perl/branches/upstream/current/Changes
    packages/libspreadsheet-parseexcel-perl/branches/upstream/current/MANIFEST
    packages/libspreadsheet-parseexcel-perl/branches/upstream/current/META.yml
    packages/libspreadsheet-parseexcel-perl/branches/upstream/current/Makefile.PL
    packages/libspreadsheet-parseexcel-perl/branches/upstream/current/lib/Spreadsheet/ParseExcel.pm

Modified: packages/libspreadsheet-parseexcel-perl/branches/upstream/current/Build.PL
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libspreadsheet-parseexcel-perl/branches/upstream/current/Build.PL?rev=5399&op=diff
==============================================================================
--- packages/libspreadsheet-parseexcel-perl/branches/upstream/current/Build.PL (original)
+++ packages/libspreadsheet-parseexcel-perl/branches/upstream/current/Build.PL Mon May 14 14:52:29 2007
@@ -11,7 +11,8 @@
 );
 
 if (exists $Config{useperlio} && $Config{useperlio} eq "define") {
-    delete $deps{'IO::Scalar'};
+    print "\$Config{useperlio} is defined, removing requirement of IO::Scalar\n";
+#    delete $deps{'IO::Scalar'};
 }
 
 

Modified: packages/libspreadsheet-parseexcel-perl/branches/upstream/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libspreadsheet-parseexcel-perl/branches/upstream/current/Changes?rev=5399&op=diff
==============================================================================
--- packages/libspreadsheet-parseexcel-perl/branches/upstream/current/Changes (original)
+++ packages/libspreadsheet-parseexcel-perl/branches/upstream/current/Changes Mon May 14 14:52:29 2007
@@ -1,4 +1,12 @@
 Revision history for Perl extension Spreadsheet::ParseExcel.
+
+0.32 2007.05.05
+    - Remove the memory_leak test as well as it still fails.
+
+0.31 2007.05.03
+    - Require IO::Scalar always as OLE::Storage_Lite needs it but does not prereq it
+    - disable some of the tests that don't yet work on 64 bit due to number precision
+      in order to allow automatic installation
 
 0.30 2007.03.31
     - add some more tests

Modified: packages/libspreadsheet-parseexcel-perl/branches/upstream/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libspreadsheet-parseexcel-perl/branches/upstream/current/MANIFEST?rev=5399&op=diff
==============================================================================
--- packages/libspreadsheet-parseexcel-perl/branches/upstream/current/MANIFEST (original)
+++ packages/libspreadsheet-parseexcel-perl/branches/upstream/current/MANIFEST Mon May 14 14:52:29 2007
@@ -8,18 +8,18 @@
 META.yml
 
 t/basic.t
-t/sample.t
+#t/sample.t
 t/parse.t
-t/memory_leak.t
+#t/memory_leak.t
 t/pod.t
-t/examples/sample_j.t
-t/examples/sample.t
-t/examples/sampleOEM.t
-t/examples/chkFmt.t
-t/examples/chkInfo.t
-t/examples/dmpExR.t
-t/examples/warning.t
-t/examples/iftest.t
+#t/examples/sample_j.t
+#t/examples/sample.t
+#t/examples/sampleOEM.t
+#t/examples/chkFmt.t
+#t/examples/chkInfo.t
+#t/examples/dmpExR.t
+#t/examples/warning.t
+#t/examples/iftest.t
 t/lib/Test/Example.pm
 
 lib/Spreadsheet/ParseExcel.pm

Modified: packages/libspreadsheet-parseexcel-perl/branches/upstream/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libspreadsheet-parseexcel-perl/branches/upstream/current/META.yml?rev=5399&op=diff
==============================================================================
--- packages/libspreadsheet-parseexcel-perl/branches/upstream/current/META.yml (original)
+++ packages/libspreadsheet-parseexcel-perl/branches/upstream/current/META.yml Mon May 14 14:52:29 2007
@@ -1,6 +1,6 @@
 ---
 name: Spreadsheet-ParseExcel
-version: 0.30
+version: 0.32
 author:
   - Kawai Takanori
 abstract: Get information from Excel file
@@ -9,6 +9,7 @@
   license: http://dev.perl.org/licenses/
 requires:
   IO::File: 0
+  IO::Scalar: 0
   OLE::Storage_Lite: 0.08
   Scalar::Util: 0
 build_requires:
@@ -16,7 +17,7 @@
 provides:
   Spreadsheet::ParseExcel:
     file: lib/Spreadsheet/ParseExcel.pm
-    version: 0.30
+    version: 0.32
   Spreadsheet::ParseExcel::Cell:
     file: lib/Spreadsheet/ParseExcel.pm
   Spreadsheet::ParseExcel::Dump:
@@ -54,7 +55,7 @@
     file: lib/Spreadsheet/ParseExcel.pm
   Spreadsheet::ParseExcel::Worksheet:
     file: lib/Spreadsheet/ParseExcel.pm
-generated_by: Module::Build version 0.2806
+generated_by: Module::Build version 0.2807
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.2.html
   version: 1.2

Modified: packages/libspreadsheet-parseexcel-perl/branches/upstream/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libspreadsheet-parseexcel-perl/branches/upstream/current/Makefile.PL?rev=5399&op=diff
==============================================================================
--- packages/libspreadsheet-parseexcel-perl/branches/upstream/current/Makefile.PL (original)
+++ packages/libspreadsheet-parseexcel-perl/branches/upstream/current/Makefile.PL Mon May 14 14:52:29 2007
@@ -11,7 +11,8 @@
     'Test::More'          => '0.47',
 );
 if (exists $Config{useperlio} && $Config{useperlio} eq "define") {
-    delete $deps{'IO::Scalar'};
+    print "\$Config{useperlio} is defined, removing requirement of IO::Scalar\n";
+#    delete $deps{'IO::Scalar'};
 }
 
 WriteMakefile(

Modified: packages/libspreadsheet-parseexcel-perl/branches/upstream/current/lib/Spreadsheet/ParseExcel.pm
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libspreadsheet-parseexcel-perl/branches/upstream/current/lib/Spreadsheet/ParseExcel.pm?rev=5399&op=diff
==============================================================================
--- packages/libspreadsheet-parseexcel-perl/branches/upstream/current/lib/Spreadsheet/ParseExcel.pm (original)
+++ packages/libspreadsheet-parseexcel-perl/branches/upstream/current/lib/Spreadsheet/ParseExcel.pm Mon May 14 14:52:29 2007
@@ -197,7 +197,7 @@
 use OLE::Storage_Lite;
 use IO::File;
 use Config;
-our $VERSION = '0.30';
+our $VERSION = '0.32';
 
 my @aColor =
 (




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