r9206 - in /branches/upstream/libio-compress-base-perl/current: Changes META.yml README lib/IO/Compress/Base.pm lib/IO/Compress/Base/Common.pm lib/IO/Uncompress/AnyUncompress.pm lib/IO/Uncompress/Base.pm t/compress/truncate.pl

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Sun Nov 11 14:54:22 UTC 2007


Author: gregoa-guest
Date: Sun Nov 11 14:54:22 2007
New Revision: 9206

URL: http://svn.debian.org/wsvn/?sc=1&rev=9206
Log:
[svn-upgrade] Integrating new upstream version, libio-compress-base-perl (2.008)

Modified:
    branches/upstream/libio-compress-base-perl/current/Changes
    branches/upstream/libio-compress-base-perl/current/META.yml
    branches/upstream/libio-compress-base-perl/current/README
    branches/upstream/libio-compress-base-perl/current/lib/IO/Compress/Base.pm
    branches/upstream/libio-compress-base-perl/current/lib/IO/Compress/Base/Common.pm
    branches/upstream/libio-compress-base-perl/current/lib/IO/Uncompress/AnyUncompress.pm
    branches/upstream/libio-compress-base-perl/current/lib/IO/Uncompress/Base.pm
    branches/upstream/libio-compress-base-perl/current/t/compress/truncate.pl

Modified: branches/upstream/libio-compress-base-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libio-compress-base-perl/current/Changes?rev=9206&op=diff
==============================================================================
--- branches/upstream/libio-compress-base-perl/current/Changes (original)
+++ branches/upstream/libio-compress-base-perl/current/Changes Sun Nov 11 14:54:22 2007
@@ -1,5 +1,9 @@
 CHANGES
 -------
+
+  2.008 2 November 2007
+
+      * Minor documentation changes in README
 
   2.006 1 September 20007
 

Modified: branches/upstream/libio-compress-base-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libio-compress-base-perl/current/META.yml?rev=9206&op=diff
==============================================================================
--- branches/upstream/libio-compress-base-perl/current/META.yml (original)
+++ branches/upstream/libio-compress-base-perl/current/META.yml Sun Nov 11 14:54:22 2007
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                IO-Compress-Base
-version:             2.006
+version:             2.008
 abstract:            Base Class for IO::Compress modules 
 license:             perl
 generated_by:        ExtUtils::MakeMaker version 6.36

Modified: branches/upstream/libio-compress-base-perl/current/README
URL: http://svn.debian.org/wsvn/branches/upstream/libio-compress-base-perl/current/README?rev=9206&op=diff
==============================================================================
--- branches/upstream/libio-compress-base-perl/current/README (original)
+++ branches/upstream/libio-compress-base-perl/current/README Sun Nov 11 14:54:22 2007
@@ -1,9 +1,9 @@
 
-                             IO::Compress::Base
+                             IO-Compress-Base
 
-                             Version 2.006
+                             Version 2.008
 
-                            1st September 2007
+                             2nd November 2007
 
 
        Copyright (c) 2005-2007 Paul Marquess. All rights reserved.
@@ -27,7 +27,7 @@
 PREREQUISITES
 -------------
 
-Before you can build IO::Compress::Base you need to have the following
+Before you can build IO-Compress-Base you need to have the following
 installed on your system:
 
 
@@ -52,7 +52,7 @@
 INSTALLATION
 ------------
 
-To install IO::Compress::Base, run the command below:
+To install IO-Compress-Base, run the command below:
 
     make install
 
@@ -77,7 +77,7 @@
 FEEDBACK
 --------
 
-How to report a problem with IO::Compress::Base.
+How to report a problem with IO-Compress-Base.
 
 To help me help you, I need all of the following information:
 
@@ -94,24 +94,8 @@
         If your perl does not understand the "-V" option it is too
         old. This module needs Perl version 5.004 or better.     
 
-     b. The version of IO::Compress::Base you have. 
-        If you have successfully installed IO::Compress::Base, this one-liner
-        will tell you:
-
-           perl -MIO::Compress::Base -e 'print qq[ver $IO::Compress::Base::VERSION\n]'
-
-        If you areplete* output from running this
-     
-            perl -V
-     
-        Do not edit the output in any way.
-        Note, I want you to run "perl -V" and NOT "perl -v".
-     
-        If your perl does not understand the "-V" option it is too
-        old. This module needs Perl version 5.004 or better.     
-
-     b. The version of IO::Compress::Base you have. 
-        If you have successfully installed IO::Compress::Base, this one-liner
+     b. The version of IO-Compress-Base you have. 
+        If you have successfully installed IO-Compress-Base, this one-liner
         will tell you:
 
            perl -MIO::Compress::Base -e 'print qq[ver $IO::Compress::Base::VERSION\n]'
@@ -120,15 +104,15 @@
 
            perl -MIO::Compress::Base -e "print qq[ver $IO::Compress::Base::VERSION\n]"
 
-        If you haven't installed IO::Compress::Base then search IO::Compress::Base.pm
+        If you haven't installed IO-Compress-Base then search IO::Compress::Base.pm
         for a line like this:
 
-          $VERSION = "1.05" ;
+          $VERSION = "2.008" ;
 
 
 
- 2. If you are having problems building IO::Compress::Base, send me a
-    complete log of what happened. Start by unpacking the IO::Compress::Base
+ 2. If you are having problems building IO-Compress-Base, send me a
+    complete log of what happened. Start by unpacking the IO-Compress-Base
     module into a fresh directory and keep a log of all the steps
 
         [edit config.in, if necessary]

Modified: branches/upstream/libio-compress-base-perl/current/lib/IO/Compress/Base.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libio-compress-base-perl/current/lib/IO/Compress/Base.pm?rev=9206&op=diff
==============================================================================
--- branches/upstream/libio-compress-base-perl/current/lib/IO/Compress/Base.pm (original)
+++ branches/upstream/libio-compress-base-perl/current/lib/IO/Compress/Base.pm Sun Nov 11 14:54:22 2007
@@ -6,7 +6,7 @@
 use strict ;
 use warnings;
 
-use IO::Compress::Base::Common 2.006 ;
+use IO::Compress::Base::Common 2.008 ;
 
 use IO::File ;
 use Scalar::Util qw(blessed readonly);
@@ -20,7 +20,7 @@
 our (@ISA, $VERSION);
 @ISA    = qw(Exporter IO::File);
 
-$VERSION = '2.006';
+$VERSION = '2.008';
 
 #Can't locate object method "SWASHNEW" via package "utf8" (perhaps you forgot to load "utf8"?) at .../ext/Compress-Zlib/Gzip/blib/lib/Compress/Zlib/Common.pm line 16.
 

Modified: branches/upstream/libio-compress-base-perl/current/lib/IO/Compress/Base/Common.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libio-compress-base-perl/current/lib/IO/Compress/Base/Common.pm?rev=9206&op=diff
==============================================================================
--- branches/upstream/libio-compress-base-perl/current/lib/IO/Compress/Base/Common.pm (original)
+++ branches/upstream/libio-compress-base-perl/current/lib/IO/Compress/Base/Common.pm Sun Nov 11 14:54:22 2007
@@ -11,7 +11,7 @@
 require Exporter;
 our ($VERSION, @ISA, @EXPORT, %EXPORT_TAGS, $HAS_ENCODE);
 @ISA = qw(Exporter);
-$VERSION = '2.006';
+$VERSION = '2.008';
 
 @EXPORT = qw( isaFilehandle isaFilename whatIsInput whatIsOutput 
               isaFileGlobString cleanFileGlobString oneTarget

Modified: branches/upstream/libio-compress-base-perl/current/lib/IO/Uncompress/AnyUncompress.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libio-compress-base-perl/current/lib/IO/Uncompress/AnyUncompress.pm?rev=9206&op=diff
==============================================================================
--- branches/upstream/libio-compress-base-perl/current/lib/IO/Uncompress/AnyUncompress.pm (original)
+++ branches/upstream/libio-compress-base-perl/current/lib/IO/Uncompress/AnyUncompress.pm Sun Nov 11 14:54:22 2007
@@ -4,16 +4,16 @@
 use warnings;
 use bytes;
 
-use IO::Compress::Base::Common 2.006 qw(createSelfTiedObject);
-
-use IO::Uncompress::Base 2.006 ;
+use IO::Compress::Base::Common 2.008 qw(createSelfTiedObject);
+
+use IO::Uncompress::Base 2.008 ;
 
 
 require Exporter ;
 
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $AnyUncompressError);
 
-$VERSION = '2.006';
+$VERSION = '2.008';
 $AnyUncompressError = '';
 
 @ISA = qw( Exporter IO::Uncompress::Base );
@@ -27,18 +27,18 @@
 
 BEGIN
 {
-   eval ' use IO::Uncompress::Adapter::Inflate 2.006 ;';
-   eval ' use IO::Uncompress::Adapter::Bunzip2 2.006 ;';
-   eval ' use IO::Uncompress::Adapter::LZO 2.006 ;';
-   eval ' use IO::Uncompress::Adapter::Lzf 2.006 ;';
-
-   eval ' use IO::Uncompress::Bunzip2 2.006 ;';
-   eval ' use IO::Uncompress::UnLzop 2.006 ;';
-   eval ' use IO::Uncompress::Gunzip 2.006 ;';
-   eval ' use IO::Uncompress::Inflate 2.006 ;';
-   eval ' use IO::Uncompress::RawInflate 2.006 ;';
-   eval ' use IO::Uncompress::Unzip 2.006 ;';
-   eval ' use IO::Uncompress::UnLzf 2.006 ;';
+   eval ' use IO::Uncompress::Adapter::Inflate 2.008 ;';
+   eval ' use IO::Uncompress::Adapter::Bunzip2 2.008 ;';
+   eval ' use IO::Uncompress::Adapter::LZO 2.008 ;';
+   eval ' use IO::Uncompress::Adapter::Lzf 2.008 ;';
+
+   eval ' use IO::Uncompress::Bunzip2 2.008 ;';
+   eval ' use IO::Uncompress::UnLzop 2.008 ;';
+   eval ' use IO::Uncompress::Gunzip 2.008 ;';
+   eval ' use IO::Uncompress::Inflate 2.008 ;';
+   eval ' use IO::Uncompress::RawInflate 2.008 ;';
+   eval ' use IO::Uncompress::Unzip 2.008 ;';
+   eval ' use IO::Uncompress::UnLzf 2.008 ;';
 }
 
 sub new
@@ -56,7 +56,7 @@
 
 sub getExtraParams
 {
-    use IO::Compress::Base::Common 2.006 qw(:Parse);
+    use IO::Compress::Base::Common 2.008 qw(:Parse);
     return ( 'RawInflate' => [1, 1, Parse_boolean,  0] ) ;
 }
 

Modified: branches/upstream/libio-compress-base-perl/current/lib/IO/Uncompress/Base.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libio-compress-base-perl/current/lib/IO/Uncompress/Base.pm?rev=9206&op=diff
==============================================================================
--- branches/upstream/libio-compress-base-perl/current/lib/IO/Uncompress/Base.pm (original)
+++ branches/upstream/libio-compress-base-perl/current/lib/IO/Uncompress/Base.pm Sun Nov 11 14:54:22 2007
@@ -9,12 +9,12 @@
 @ISA    = qw(Exporter IO::File);
 
 
-$VERSION = '2.006';
+$VERSION = '2.008';
 
 use constant G_EOF => 0 ;
 use constant G_ERR => -1 ;
 
-use IO::Compress::Base::Common 2.006 ;
+use IO::Compress::Base::Common 2.008 ;
 #use Parse::Parameters ;
 
 use IO::File ;

Modified: branches/upstream/libio-compress-base-perl/current/t/compress/truncate.pl
URL: http://svn.debian.org/wsvn/branches/upstream/libio-compress-base-perl/current/t/compress/truncate.pl?rev=9206&op=diff
==============================================================================
--- branches/upstream/libio-compress-base-perl/current/t/compress/truncate.pl (original)
+++ branches/upstream/libio-compress-base-perl/current/t/compress/truncate.pl Sun Nov 11 14:54:22 2007
@@ -14,12 +14,21 @@
     my $Error           = getErrorRef($CompressClass);
     my $UnError         = getErrorRef($UncompressClass);
     
-    my $hello = <<EOM ;
-hello world
-this is a test
-some more stuff on this line
-and finally...
-EOM
+#    my $hello = <<EOM ;
+#hello world
+#this is a test
+#some more stuff on this line
+#and finally...
+#EOM
+
+    # ASCII hex equivalent of the text above. This makes the test
+    # harness behave identically on an EBCDIC platform.
+    my $hello = 
+      "\x68\x65\x6c\x6c\x6f\x20\x77\x6f\x72\x6c\x64\x0a\x74\x68\x69\x73" .
+      "\x20\x69\x73\x20\x61\x20\x74\x65\x73\x74\x0a\x73\x6f\x6d\x65\x20" .
+      "\x6d\x6f\x72\x65\x20\x73\x74\x75\x66\x66\x20\x6f\x6e\x20\x74\x68" .
+      "\x69\x73\x20\x6c\x69\x6e\x65\x0a\x61\x6e\x64\x20\x66\x69\x6e\x61" .
+      "\x6c\x6c\x79\x2e\x2e\x2e\x0a" ;
 
     my $blocksize = 10 ;
 




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