r20205 - in /branches/upstream/libcompress-zlib-perl/current: Changes META.yml Makefile.PL README lib/Compress/Zlib.pm t/000prereq.t
gregoa at users.alioth.debian.org
gregoa at users.alioth.debian.org
Mon May 19 19:46:10 UTC 2008
Author: gregoa
Date: Mon May 19 19:46:10 2008
New Revision: 20205
URL: http://svn.debian.org/wsvn/?sc=1&rev=20205
Log:
[svn-upgrade] Integrating new upstream version, libcompress-zlib-perl (2.011)
Modified:
branches/upstream/libcompress-zlib-perl/current/Changes
branches/upstream/libcompress-zlib-perl/current/META.yml
branches/upstream/libcompress-zlib-perl/current/Makefile.PL
branches/upstream/libcompress-zlib-perl/current/README
branches/upstream/libcompress-zlib-perl/current/lib/Compress/Zlib.pm
branches/upstream/libcompress-zlib-perl/current/t/000prereq.t
Modified: branches/upstream/libcompress-zlib-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libcompress-zlib-perl/current/Changes?rev=20205&op=diff
==============================================================================
--- branches/upstream/libcompress-zlib-perl/current/Changes (original)
+++ branches/upstream/libcompress-zlib-perl/current/Changes Mon May 19 19:46:10 2008
@@ -1,5 +1,9 @@
CHANGES
-------
+
+ 2.011 17 May 2008
+
+ * No Changes
2.010 5 May 2008
Modified: branches/upstream/libcompress-zlib-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libcompress-zlib-perl/current/META.yml?rev=20205&op=diff
==============================================================================
--- branches/upstream/libcompress-zlib-perl/current/META.yml (original)
+++ branches/upstream/libcompress-zlib-perl/current/META.yml Mon May 19 19:46:10 2008
@@ -1,6 +1,6 @@
--- #YAML:1.0
name: Compress-Zlib
-version: 2.010
+version: 2.011
abstract: Interface to zlib compression library
license: perl
author:
@@ -8,13 +8,13 @@
generated_by: ExtUtils::MakeMaker version 6.44
distribution_type: module
requires:
- Compress::Raw::Zlib: 2.010
- IO::Compress::Base: 2.010
- IO::Compress::Base::Common: 2.010
- IO::Compress::Gzip: 2.010
- IO::Compress::Gzip::Constants: 2.010
- IO::Uncompress::Base: 2.010
- IO::Uncompress::Gunzip: 2.010
+ Compress::Raw::Zlib: 2.011
+ IO::Compress::Base: 2.011
+ IO::Compress::Base::Common: 2.011
+ IO::Compress::Gzip: 2.011
+ IO::Compress::Gzip::Constants: 2.011
+ IO::Uncompress::Base: 2.011
+ IO::Uncompress::Gunzip: 2.011
Scalar::Util: 0
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.3.html
Modified: branches/upstream/libcompress-zlib-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/branches/upstream/libcompress-zlib-perl/current/Makefile.PL?rev=20205&op=diff
==============================================================================
--- branches/upstream/libcompress-zlib-perl/current/Makefile.PL (original)
+++ branches/upstream/libcompress-zlib-perl/current/Makefile.PL Mon May 19 19:46:10 2008
@@ -3,7 +3,7 @@
use strict ;
require 5.004 ;
-$::VERSION = '2.010' ;
+$::VERSION = '2.011' ;
use private::MakeUtil;
use ExtUtils::MakeMaker 5.16 ;
Modified: branches/upstream/libcompress-zlib-perl/current/README
URL: http://svn.debian.org/wsvn/branches/upstream/libcompress-zlib-perl/current/README?rev=20205&op=diff
==============================================================================
--- branches/upstream/libcompress-zlib-perl/current/README (original)
+++ branches/upstream/libcompress-zlib-perl/current/README Mon May 19 19:46:10 2008
@@ -1,9 +1,9 @@
Compress-Zlib
- Version 2.010
+ Version 2.011
- 5th May 2008
+ 17th May 2008
Copyright (c) 1995-2008 Paul Marquess. All rights reserved.
This program is free software; you can redistribute it
@@ -106,7 +106,7 @@
If you haven't installed Compress-Zlib then search Compress::Zlib.pm
for a line like this:
- $VERSION = "2.010" ;
+ $VERSION = "2.011" ;
2. If you are having problems building Compress-Zlib, send me a
complete log of what happened. Start by unpacking the Compress-Zlib
Modified: branches/upstream/libcompress-zlib-perl/current/lib/Compress/Zlib.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libcompress-zlib-perl/current/lib/Compress/Zlib.pm?rev=20205&op=diff
==============================================================================
--- branches/upstream/libcompress-zlib-perl/current/lib/Compress/Zlib.pm (original)
+++ branches/upstream/libcompress-zlib-perl/current/lib/Compress/Zlib.pm Mon May 19 19:46:10 2008
@@ -8,17 +8,17 @@
use IO::Handle ;
use Scalar::Util qw(dualvar);
-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 IO::Compress::Base::Common 2.011 ;
+use Compress::Raw::Zlib 2.011 ;
+use IO::Compress::Gzip 2.011 ;
+use IO::Uncompress::Gunzip 2.011 ;
use strict ;
use warnings ;
use bytes ;
our ($VERSION, $XS_VERSION, @ISA, @EXPORT, $AUTOLOAD);
-$VERSION = '2.010';
+$VERSION = '2.011';
$XS_VERSION = $VERSION;
$VERSION = eval $VERSION;
@@ -452,7 +452,7 @@
package Compress::Zlib ;
-use IO::Compress::Gzip::Constants 2.010 ;
+use IO::Compress::Gzip::Constants 2.011 ;
sub memGzip($)
{
Modified: branches/upstream/libcompress-zlib-perl/current/t/000prereq.t
URL: http://svn.debian.org/wsvn/branches/upstream/libcompress-zlib-perl/current/t/000prereq.t?rev=20205&op=diff
==============================================================================
--- branches/upstream/libcompress-zlib-perl/current/t/000prereq.t (original)
+++ branches/upstream/libcompress-zlib-perl/current/t/000prereq.t Mon May 19 19:46:10 2008
@@ -27,7 +27,7 @@
if eval { require Test::NoWarnings ; import Test::NoWarnings; 1 };
- my $VERSION = '2.010';
+ my $VERSION = '2.011';
my @NAMES = qw(
Compress::Raw::Zlib
IO::Compress::Base
More information about the Pkg-perl-cvs-commits
mailing list