CHANGES
-------
+ 2.010 5 May 2008
+
+ * No Changes
+
2.009 20 April 2008
* No Changes
Compress-Raw-Zlib
- Version 2.009
+ Version 2.010
- 20th April 2008
+ 5th May 2008
Copyright (c) 2005-2008 Paul Marquess. All rights reserved.
This program is free software; you can redistribute it
If you haven't installed Compress-Raw-Zlib then search Compress::Raw::Zlib.pm
for a line like this:
- $VERSION = "2.009" ;
+ $VERSION = "2.010" ;
c. The version of zlib you have used.
If you have successfully installed Compress-Raw-Zlib, this one-liner
# include "ppport.h"
#endif
+#if PERL_REVISION == 5 && PERL_VERSION == 9
+ /* For Andreas */
+# define sv_pvbyte_force(sv,lp) sv_pvbyten_force(sv,lp)
+#endif
+
#if PERL_REVISION == 5 && (PERL_VERSION < 8 || (PERL_VERSION == 8 && PERL_SUBVERSION < 4 ))
# ifdef SvPVbyte_force
use bytes ;
our ($VERSION, $XS_VERSION, @ISA, @EXPORT, $AUTOLOAD);
-$VERSION = '2.009';
+$VERSION = '2.010';
$XS_VERSION = $VERSION;
$VERSION = eval $VERSION;
use Config qw(%Config);
use File::Copy;
+my $VERSION = '1.0';
+
BEGIN
{
CHANGES
-------
+ 2.010 5 May 2008
+
+ * Fixed problem that meant Perl 5.10 could not upgrade this module.
+ [RT #35341]
+
2.009 20 April 2008
* Minor documentation issue with flush.
use strict ;
require 5.004 ;
-$::VERSION = '2.009' ;
+$::VERSION = '2.010' ;
use private::MakeUtil;
use ExtUtils::MakeMaker 5.16 ;
INSTALLDIRS => ($] >= 5.009 ? 'perl' : 'site'),
+ (
+ $] >= 5.009 && ! $ENV{PERL_CORE}
+ ? (INST_LIB => 'blib/arch')
+ : ()
+ ),
+
((ExtUtils::MakeMaker->VERSION() gt '6.30') ?
('LICENSE' => 'perl') : ()),
Compress-Zlib
- Version 2.009
+ Version 2.010
- 20th April 2008
+ 5th May 2008
Copyright (c) 1995-2008 Paul Marquess. All rights reserved.
This program is free software; you can redistribute it
If you haven't installed Compress-Zlib then search Compress::Zlib.pm
for a line like this:
- $VERSION = "2.009" ;
+ $VERSION = "2.010" ;
2. If you are having problems building Compress-Zlib, send me a
complete log of what happened. Start by unpacking the Compress-Zlib
use IO::Handle ;
use Scalar::Util qw(dualvar);
-use IO::Compress::Base::Common 2.009 ;
-use Compress::Raw::Zlib 2.009 ;
-use IO::Compress::Gzip 2.009 ;
-use IO::Uncompress::Gunzip 2.009 ;
+use IO::Compress::Base::Common 2.010 ;
+use Compress::Raw::Zlib 2.010 ;
+use IO::Compress::Gzip 2.010 ;
+use IO::Uncompress::Gunzip 2.010 ;
use strict ;
use warnings ;
use bytes ;
our ($VERSION, $XS_VERSION, @ISA, @EXPORT, $AUTOLOAD);
-$VERSION = '2.009';
+$VERSION = '2.010';
$XS_VERSION = $VERSION;
$VERSION = eval $VERSION;
package Compress::Zlib ;
-use IO::Compress::Gzip::Constants 2.009 ;
+use IO::Compress::Gzip::Constants 2.010 ;
sub memGzip($)
{
use Config qw(%Config);
use File::Copy;
+my $VERSION = '1.0';
+
BEGIN
{
CHANGES
-------
+ 2.010 5 May 2008
+
+ * Fixed problem that meant Perl 5.10 could not upgrade this module.
+ [RT #35342]
+
2.009 20 April 2008
* Removed the alpha status from File::GlobMapper
INSTALLDIRS => ($] >= 5.009 ? 'perl' : 'site'),
+ (
+ $] >= 5.009 && ! $ENV{PERL_CORE}
+ ? (INST_LIB => 'blib/arch')
+ : ()
+ ),
+
((ExtUtils::MakeMaker->VERSION() gt '6.30') ?
('LICENSE' => 'perl') : ()),
IO-Compress-Base
- Version 2.009
+ Version 2.010
- 20th April 2008
+ 5th May 2008
Copyright (c) 2005-2008 Paul Marquess. All rights reserved.
This program is free software; you can redistribute it
If you haven't installed IO-Compress-Base then search IO::Compress::Base.pm
for a line like this:
- $VERSION = "2.009" ;
+ $VERSION = "2.010" ;
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
use strict ;
use warnings;
-use IO::Compress::Base::Common 2.009 ;
+use IO::Compress::Base::Common 2.010 ;
use IO::File ;
use Scalar::Util qw(blessed readonly);
our (@ISA, $VERSION);
@ISA = qw(Exporter IO::File);
-$VERSION = '2.009';
+$VERSION = '2.010';
#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.
require Exporter;
our ($VERSION, @ISA, @EXPORT, %EXPORT_TAGS, $HAS_ENCODE);
@ISA = qw(Exporter);
-$VERSION = '2.009';
+$VERSION = '2.010';
@EXPORT = qw( isaFilehandle isaFilename whatIsInput whatIsOutput
isaFileGlobString cleanFileGlobString oneTarget
use warnings;
use bytes;
-use IO::Compress::Base::Common 2.009 qw(createSelfTiedObject);
+use IO::Compress::Base::Common 2.010 qw(createSelfTiedObject);
-use IO::Uncompress::Base 2.009 ;
+use IO::Uncompress::Base 2.010 ;
require Exporter ;
our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $AnyUncompressError);
-$VERSION = '2.009';
+$VERSION = '2.010';
$AnyUncompressError = '';
@ISA = qw( Exporter IO::Uncompress::Base );
BEGIN
{
- eval ' use IO::Uncompress::Adapter::Inflate 2.009 ;';
- eval ' use IO::Uncompress::Adapter::Bunzip2 2.009 ;';
- eval ' use IO::Uncompress::Adapter::LZO 2.009 ;';
- eval ' use IO::Uncompress::Adapter::Lzf 2.009 ;';
-
- eval ' use IO::Uncompress::Bunzip2 2.009 ;';
- eval ' use IO::Uncompress::UnLzop 2.009 ;';
- eval ' use IO::Uncompress::Gunzip 2.009 ;';
- eval ' use IO::Uncompress::Inflate 2.009 ;';
- eval ' use IO::Uncompress::RawInflate 2.009 ;';
- eval ' use IO::Uncompress::Unzip 2.009 ;';
- eval ' use IO::Uncompress::UnLzf 2.009 ;';
+ eval ' use IO::Uncompress::Adapter::Inflate 2.010 ;';
+ eval ' use IO::Uncompress::Adapter::Bunzip2 2.010 ;';
+ eval ' use IO::Uncompress::Adapter::LZO 2.010 ;';
+ eval ' use IO::Uncompress::Adapter::Lzf 2.010 ;';
+
+ eval ' use IO::Uncompress::Bunzip2 2.010 ;';
+ eval ' use IO::Uncompress::UnLzop 2.010 ;';
+ eval ' use IO::Uncompress::Gunzip 2.010 ;';
+ eval ' use IO::Uncompress::Inflate 2.010 ;';
+ eval ' use IO::Uncompress::RawInflate 2.010 ;';
+ eval ' use IO::Uncompress::Unzip 2.010 ;';
+ eval ' use IO::Uncompress::UnLzf 2.010 ;';
}
sub new
sub getExtraParams
{
- use IO::Compress::Base::Common 2.009 qw(:Parse);
+ use IO::Compress::Base::Common 2.010 qw(:Parse);
return ( 'RawInflate' => [1, 1, Parse_boolean, 0] ) ;
}
@ISA = qw(Exporter IO::File);
-$VERSION = '2.009';
+$VERSION = '2.010';
use constant G_EOF => 0 ;
use constant G_ERR => -1 ;
-use IO::Compress::Base::Common 2.009 ;
+use IO::Compress::Base::Common 2.010 ;
#use Parse::Parameters ;
use IO::File ;
use Config qw(%Config);
use File::Copy;
+my $VERSION = '1.0';
+
BEGIN
{
$extra = 1
if eval { require Test::NoWarnings ; import Test::NoWarnings; 1 };
- plan tests => 80 + $extra ;
+ plan tests => 78 + $extra ;
use_ok('Scalar::Util');
use_ok('IO::Compress::Base::Common');
$$xx_ref = 666 ;
is $xx, 666;
- my $got1 = ParseParameters(1, {'Fred' => [1, 1, Parse_writable_scalar, undef]}, $got) ;
- ok $got->parsed('Fred'), "parsed" ;
- $xx_ref = $got->value('Fred');
- $$xx_ref = 666 ;
- is $xx, 666;
+# my $got1 = ParseParameters(1, {'Fred' => [1, 1, Parse_writable_scalar, undef]}, $got) ;
+# ok $got->parsed('Fred'), "parsed" ;
+# $xx_ref = $got->value('Fred');
+# $$xx_ref = 666 ;
+# is $xx, 666;
}
My::testParseParameters();
CHANGES
-------
+ 2.010 5 May 2008
+
+ * Fixed problem that meant Perl 5.10 could not upgrade this module.
+ [RT #35343]
+
2.009 20 April 2008
* IO::Compress::Zip
use strict ;
require 5.004 ;
-$::VERSION = '2.009' ;
+$::VERSION = '2.010' ;
use private::MakeUtil;
use ExtUtils::MakeMaker 5.16 ;
INSTALLDIRS => ($] >= 5.009 ? 'perl' : 'site'),
+ (
+ $] >= 5.009 && ! $ENV{PERL_CORE}
+ ? (INST_LIB => 'blib/arch')
+ : ()
+ ),
+
+
((ExtUtils::MakeMaker->VERSION() gt '6.30') ?
('LICENSE' => 'perl') : ()),
IO-Compress-Zlib
- Version 2.009
+ Version 2.010
- 20th April 2008
+ 5th May 2008
Copyright (c) 2005-2008 Paul Marquess. All rights reserved.
This program is free software; you can redistribute it
If you haven't installed IO-Compress-Zlib then search IO::Compress::Gzip.pm
for a line like this:
- $VERSION = "2.009" ;
+ $VERSION = "2.010" ;
2. If you are having problems building IO-Compress-Zlib, send me a
complete log of what happened. Start by unpacking the IO-Compress-Zlib
use warnings;
use bytes;
-use IO::Compress::Base::Common 2.009 qw(:Status);
+use IO::Compress::Base::Common 2.010 qw(:Status);
-use Compress::Raw::Zlib 2.009 qw(Z_OK Z_FINISH MAX_WBITS) ;
+use Compress::Raw::Zlib 2.010 qw(Z_OK Z_FINISH MAX_WBITS) ;
our ($VERSION);
-$VERSION = '2.009';
+$VERSION = '2.010';
sub mkCompObject
{
use warnings;
use bytes;
-use IO::Compress::Base::Common 2.009 qw(:Status);
+use IO::Compress::Base::Common 2.010 qw(:Status);
our ($VERSION);
-$VERSION = '2.009';
+$VERSION = '2.010';
sub mkCompObject
{
require Exporter ;
-use IO::Compress::RawDeflate 2.009 ;
+use IO::Compress::RawDeflate 2.010 ;
-use Compress::Raw::Zlib 2.009 ;
-use IO::Compress::Zlib::Constants 2.009 ;
-use IO::Compress::Base::Common 2.009 qw(createSelfTiedObject);
+use Compress::Raw::Zlib 2.010 ;
+use IO::Compress::Zlib::Constants 2.010 ;
+use IO::Compress::Base::Common 2.010 qw(createSelfTiedObject);
our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $DeflateError);
-$VERSION = '2.009';
+$VERSION = '2.010';
$DeflateError = '';
@ISA = qw(Exporter IO::Compress::RawDeflate);
use bytes;
-use IO::Compress::RawDeflate 2.009 ;
+use IO::Compress::RawDeflate 2.010 ;
-use Compress::Raw::Zlib 2.009 ;
-use IO::Compress::Base::Common 2.009 qw(:Status :Parse createSelfTiedObject);
-use IO::Compress::Gzip::Constants 2.009 ;
-use IO::Compress::Zlib::Extra 2.009 ;
+use Compress::Raw::Zlib 2.010 ;
+use IO::Compress::Base::Common 2.010 qw(:Status :Parse createSelfTiedObject);
+use IO::Compress::Gzip::Constants 2.010 ;
+use IO::Compress::Zlib::Extra 2.010 ;
BEGIN
{
our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $GzipError);
-$VERSION = '2.009';
+$VERSION = '2.010';
$GzipError = '' ;
@ISA = qw(Exporter IO::Compress::RawDeflate);
our ($VERSION, @ISA, @EXPORT, %GZIP_OS_Names);
our ($GZIP_FNAME_INVALID_CHAR_RE, $GZIP_FCOMMENT_INVALID_CHAR_RE);
-$VERSION = '2.009';
+$VERSION = '2.010';
@ISA = qw(Exporter);
use bytes;
-use IO::Compress::Base 2.009 ;
-use IO::Compress::Base::Common 2.009 qw(:Status createSelfTiedObject);
-use IO::Compress::Adapter::Deflate 2.009 ;
+use IO::Compress::Base 2.010 ;
+use IO::Compress::Base::Common 2.010 qw(:Status createSelfTiedObject);
+use IO::Compress::Adapter::Deflate 2.010 ;
require Exporter ;
our ($VERSION, @ISA, @EXPORT_OK, %DEFLATE_CONSTANTS, %EXPORT_TAGS, $RawDeflateError);
-$VERSION = '2.009';
+$VERSION = '2.010';
$RawDeflateError = '';
@ISA = qw(Exporter IO::Compress::Base);
{
my $self = shift ;
- use IO::Compress::Base::Common 2.009 qw(:Parse);
- use Compress::Raw::Zlib 2.009 qw(Z_DEFLATED Z_DEFAULT_COMPRESSION Z_DEFAULT_STRATEGY);
+ use IO::Compress::Base::Common 2.010 qw(:Parse);
+ use Compress::Raw::Zlib 2.010 qw(Z_DEFLATED Z_DEFAULT_COMPRESSION Z_DEFAULT_STRATEGY);
return (
use warnings;
use bytes;
-use IO::Compress::Base::Common 2.009 qw(:Status createSelfTiedObject);
-use IO::Compress::RawDeflate 2.009 ;
-use IO::Compress::Adapter::Deflate 2.009 ;
-use IO::Compress::Adapter::Identity 2.009 ;
-use IO::Compress::Zlib::Extra 2.009 ;
-use IO::Compress::Zip::Constants 2.009 ;
+use IO::Compress::Base::Common 2.010 qw(:Status createSelfTiedObject);
+use IO::Compress::RawDeflate 2.010 ;
+use IO::Compress::Adapter::Deflate 2.010 ;
+use IO::Compress::Adapter::Identity 2.010 ;
+use IO::Compress::Zlib::Extra 2.010 ;
+use IO::Compress::Zip::Constants 2.010 ;
-use Compress::Raw::Zlib 2.009 qw(crc32) ;
+use Compress::Raw::Zlib 2.010 qw(crc32) ;
BEGIN
{
eval { require IO::Compress::Adapter::Bzip2 ;
- import IO::Compress::Adapter::Bzip2 2.009 ;
+ import IO::Compress::Adapter::Bzip2 2.010 ;
require IO::Compress::Bzip2 ;
- import IO::Compress::Bzip2 2.009 ;
+ import IO::Compress::Bzip2 2.010 ;
} ;
}
our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $ZipError);
-$VERSION = '2.009';
+$VERSION = '2.010';
$ZipError = '';
@ISA = qw(Exporter IO::Compress::RawDeflate);
{
my $self = shift ;
- use IO::Compress::Base::Common 2.009 qw(:Parse);
- use Compress::Raw::Zlib 2.009 qw(Z_DEFLATED Z_DEFAULT_COMPRESSION Z_DEFAULT_STRATEGY);
+ use IO::Compress::Base::Common 2.010 qw(:Parse);
+ use Compress::Raw::Zlib 2.010 qw(Z_DEFLATED Z_DEFAULT_COMPRESSION Z_DEFAULT_STRATEGY);
my @Bzip2 = ();
our ($VERSION, @ISA, @EXPORT, %ZIP_CM_MIN_VERSIONS);
-$VERSION = '2.009';
+$VERSION = '2.010';
@ISA = qw(Exporter);
our ($VERSION, @ISA, @EXPORT);
-$VERSION = '2.009';
+$VERSION = '2.010';
@ISA = qw(Exporter);
our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS);
-$VERSION = '2.009';
+$VERSION = '2.010';
-use IO::Compress::Gzip::Constants 2.009 ;
+use IO::Compress::Gzip::Constants 2.010 ;
sub ExtraFieldError
{
use strict;
use bytes;
-use IO::Compress::Base::Common 2.009 qw(:Status);
+use IO::Compress::Base::Common 2.010 qw(:Status);
our ($VERSION);
-$VERSION = '2.009';
+$VERSION = '2.010';
-use Compress::Raw::Zlib 2.009 ();
+use Compress::Raw::Zlib 2.010 ();
sub mkUncompObject
{
use warnings;
use bytes;
-use IO::Compress::Base::Common 2.009 qw(:Status);
-use Compress::Raw::Zlib 2.009 qw(Z_OK Z_DATA_ERROR Z_STREAM_END Z_FINISH MAX_WBITS);
+use IO::Compress::Base::Common 2.010 qw(:Status);
+use Compress::Raw::Zlib 2.010 qw(Z_OK Z_DATA_ERROR Z_STREAM_END Z_FINISH MAX_WBITS);
our ($VERSION);
-$VERSION = '2.009';
+$VERSION = '2.010';
use warnings;
use bytes;
-use IO::Compress::Base::Common 2.009 qw(createSelfTiedObject);
+use IO::Compress::Base::Common 2.010 qw(createSelfTiedObject);
-use IO::Uncompress::Adapter::Inflate 2.009 ();
+use IO::Uncompress::Adapter::Inflate 2.010 ();
-use IO::Uncompress::Base 2.009 ;
-use IO::Uncompress::Gunzip 2.009 ;
-use IO::Uncompress::Inflate 2.009 ;
-use IO::Uncompress::RawInflate 2.009 ;
-use IO::Uncompress::Unzip 2.009 ;
+use IO::Uncompress::Base 2.010 ;
+use IO::Uncompress::Gunzip 2.010 ;
+use IO::Uncompress::Inflate 2.010 ;
+use IO::Uncompress::RawInflate 2.010 ;
+use IO::Uncompress::Unzip 2.010 ;
require Exporter ;
our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $AnyInflateError);
-$VERSION = '2.009';
+$VERSION = '2.010';
$AnyInflateError = '';
@ISA = qw( Exporter IO::Uncompress::Base );
sub getExtraParams
{
- use IO::Compress::Base::Common 2.009 qw(:Parse);
+ use IO::Compress::Base::Common 2.010 qw(:Parse);
return ( 'RawInflate' => [1, 1, Parse_boolean, 0] ) ;
}
use warnings;
use bytes;
-use IO::Uncompress::RawInflate 2.009 ;
+use IO::Uncompress::RawInflate 2.010 ;
-use Compress::Raw::Zlib 2.009 qw( crc32 ) ;
-use IO::Compress::Base::Common 2.009 qw(:Status createSelfTiedObject);
-use IO::Compress::Gzip::Constants 2.009 ;
-use IO::Compress::Zlib::Extra 2.009 ;
+use Compress::Raw::Zlib 2.010 qw( crc32 ) ;
+use IO::Compress::Base::Common 2.010 qw(:Status createSelfTiedObject);
+use IO::Compress::Gzip::Constants 2.010 ;
+use IO::Compress::Zlib::Extra 2.010 ;
require Exporter ;
$GunzipError = '';
-$VERSION = '2.009';
+$VERSION = '2.010';
sub new
{
sub getExtraParams
{
- use IO::Compress::Base::Common 2.009 qw(:Parse);
+ use IO::Compress::Base::Common 2.010 qw(:Parse);
return ( 'ParseExtra' => [1, 1, Parse_boolean, 0] ) ;
}
use warnings;
use bytes;
-use IO::Compress::Base::Common 2.009 qw(:Status createSelfTiedObject);
-use IO::Compress::Zlib::Constants 2.009 ;
+use IO::Compress::Base::Common 2.010 qw(:Status createSelfTiedObject);
+use IO::Compress::Zlib::Constants 2.010 ;
-use IO::Uncompress::RawInflate 2.009 ;
+use IO::Uncompress::RawInflate 2.010 ;
require Exporter ;
our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $InflateError);
-$VERSION = '2.009';
+$VERSION = '2.010';
$InflateError = '';
@ISA = qw( Exporter IO::Uncompress::RawInflate );
use warnings;
use bytes;
-use Compress::Raw::Zlib 2.009 ;
-use IO::Compress::Base::Common 2.009 qw(:Status createSelfTiedObject);
+use Compress::Raw::Zlib 2.010 ;
+use IO::Compress::Base::Common 2.010 qw(:Status createSelfTiedObject);
-use IO::Uncompress::Base 2.009 ;
-use IO::Uncompress::Adapter::Inflate 2.009 ;
+use IO::Uncompress::Base 2.010 ;
+use IO::Uncompress::Adapter::Inflate 2.010 ;
require Exporter ;
our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, %DEFLATE_CONSTANTS, $RawInflateError);
-$VERSION = '2.009';
+$VERSION = '2.010';
$RawInflateError = '';
@ISA = qw( Exporter IO::Uncompress::Base );
use warnings;
use bytes;
-use IO::Uncompress::RawInflate 2.009 ;
-use IO::Compress::Base::Common 2.009 qw(:Status createSelfTiedObject);
-use IO::Uncompress::Adapter::Identity 2.009 ;
-use IO::Compress::Zlib::Extra 2.009 ;
-use IO::Compress::Zip::Constants 2.009 ;
+use IO::Uncompress::RawInflate 2.010 ;
+use IO::Compress::Base::Common 2.010 qw(:Status createSelfTiedObject);
+use IO::Uncompress::Adapter::Identity 2.010 ;
+use IO::Compress::Zlib::Extra 2.010 ;
+use IO::Compress::Zip::Constants 2.010 ;
-use Compress::Raw::Zlib 2.009 qw(crc32) ;
+use Compress::Raw::Zlib 2.010 qw(crc32) ;
BEGIN
{
our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $UnzipError, %headerLookup);
-$VERSION = '2.009';
+$VERSION = '2.010';
$UnzipError = '';
@ISA = qw(Exporter IO::Uncompress::RawInflate);
sub getExtraParams
{
- use IO::Compress::Base::Common 2.009 qw(:Parse);
+ use IO::Compress::Base::Common 2.010 qw(:Parse);
return (
use Config qw(%Config);
use File::Copy;
+my $VERSION = '1.0';
+
BEGIN
{