r20207 - in /trunk/libcompress-zlib-perl: Changes META.yml Makefile.PL README debian/changelog lib/Compress/Zlib.pm t/000prereq.t
gregoa at users.alioth.debian.org
gregoa at users.alioth.debian.org
Mon May 19 19:47:47 UTC 2008
Author: gregoa
Date: Mon May 19 19:47:47 2008
New Revision: 20207
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=20207
Log:
New upstream release.
Modified:
trunk/libcompress-zlib-perl/Changes
trunk/libcompress-zlib-perl/META.yml
trunk/libcompress-zlib-perl/Makefile.PL
trunk/libcompress-zlib-perl/README
trunk/libcompress-zlib-perl/debian/changelog
trunk/libcompress-zlib-perl/lib/Compress/Zlib.pm
trunk/libcompress-zlib-perl/t/000prereq.t
Modified: trunk/libcompress-zlib-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcompress-zlib-perl/Changes?rev=20207&op=diff
==============================================================================
--- trunk/libcompress-zlib-perl/Changes (original)
+++ trunk/libcompress-zlib-perl/Changes Mon May 19 19:47:47 2008
@@ -1,5 +1,9 @@
CHANGES
-------
+
+ 2.011 17 May 2008
+
+ * No Changes
2.010 5 May 2008
Modified: trunk/libcompress-zlib-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcompress-zlib-perl/META.yml?rev=20207&op=diff
==============================================================================
--- trunk/libcompress-zlib-perl/META.yml (original)
+++ trunk/libcompress-zlib-perl/META.yml Mon May 19 19:47:47 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: trunk/libcompress-zlib-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcompress-zlib-perl/Makefile.PL?rev=20207&op=diff
==============================================================================
--- trunk/libcompress-zlib-perl/Makefile.PL (original)
+++ trunk/libcompress-zlib-perl/Makefile.PL Mon May 19 19:47:47 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: trunk/libcompress-zlib-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcompress-zlib-perl/README?rev=20207&op=diff
==============================================================================
--- trunk/libcompress-zlib-perl/README (original)
+++ trunk/libcompress-zlib-perl/README Mon May 19 19:47:47 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: trunk/libcompress-zlib-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcompress-zlib-perl/debian/changelog?rev=20207&op=diff
==============================================================================
--- trunk/libcompress-zlib-perl/debian/changelog (original)
+++ trunk/libcompress-zlib-perl/debian/changelog Mon May 19 19:47:47 2008
@@ -1,3 +1,9 @@
+libcompress-zlib-perl (2.011-1) UNRELEASED; urgency=low
+
+ * New upstream release.
+
+ -- gregor herrmann <gregoa at debian.org> Mon, 19 May 2008 21:46:31 +0200
+
libcompress-zlib-perl (2.010-1) unstable; urgency=low
* New upstream release.
Modified: trunk/libcompress-zlib-perl/lib/Compress/Zlib.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcompress-zlib-perl/lib/Compress/Zlib.pm?rev=20207&op=diff
==============================================================================
--- trunk/libcompress-zlib-perl/lib/Compress/Zlib.pm (original)
+++ trunk/libcompress-zlib-perl/lib/Compress/Zlib.pm Mon May 19 19:47:47 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: trunk/libcompress-zlib-perl/t/000prereq.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcompress-zlib-perl/t/000prereq.t?rev=20207&op=diff
==============================================================================
--- trunk/libcompress-zlib-perl/t/000prereq.t (original)
+++ trunk/libcompress-zlib-perl/t/000prereq.t Mon May 19 19:47:47 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