r4379 - in /packages/libcompress-zlib-perl/trunk: ./ debian/ examples/ t/

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Fri Nov 24 20:48:27 CET 2006


Author: gregoa-guest
Date: Fri Nov 24 20:48:26 2006
New Revision: 4379

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=4379
Log:
Load libcompress-zlib-perl-1.42 into
packages/libcompress-zlib-perl/trunk.

Added:
    packages/libcompress-zlib-perl/trunk/debian/
    packages/libcompress-zlib-perl/trunk/debian/changelog
    packages/libcompress-zlib-perl/trunk/debian/compat
    packages/libcompress-zlib-perl/trunk/debian/control
    packages/libcompress-zlib-perl/trunk/debian/copyright
    packages/libcompress-zlib-perl/trunk/debian/rules   (with props)
    packages/libcompress-zlib-perl/trunk/debian/watch
Modified:
    packages/libcompress-zlib-perl/trunk/Makefile.PL   (props changed)
    packages/libcompress-zlib-perl/trunk/Zlib.pm
    packages/libcompress-zlib-perl/trunk/config.in   (contents, props changed)
    packages/libcompress-zlib-perl/trunk/examples/filtdef   (contents, props changed)
    packages/libcompress-zlib-perl/trunk/examples/filtinf   (contents, props changed)
    packages/libcompress-zlib-perl/trunk/examples/gzcat   (contents, props changed)
    packages/libcompress-zlib-perl/trunk/examples/gzgrep   (contents, props changed)
    packages/libcompress-zlib-perl/trunk/examples/gzstream   (contents, props changed)
    packages/libcompress-zlib-perl/trunk/t/01version.t
    packages/libcompress-zlib-perl/trunk/t/02zlib.t
    packages/libcompress-zlib-perl/trunk/t/03examples.t
    packages/libcompress-zlib-perl/trunk/t/04encoding.t
    packages/libcompress-zlib-perl/trunk/t/05gzsetp.t
    packages/libcompress-zlib-perl/trunk/t/06gzdopen.t

Propchange: packages/libcompress-zlib-perl/trunk/Makefile.PL
------------------------------------------------------------------------------
--- svn:executable (original)
+++ svn:executable Fri Nov 24 20:48:26 2006
@@ -1,0 +1,1 @@
+*

Modified: packages/libcompress-zlib-perl/trunk/Zlib.pm
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcompress-zlib-perl/trunk/Zlib.pm?rev=4379&op=diff
==============================================================================
--- packages/libcompress-zlib-perl/trunk/Zlib.pm (original)
+++ packages/libcompress-zlib-perl/trunk/Zlib.pm Fri Nov 24 20:48:26 2006
@@ -17,9 +17,9 @@
 use IO::Handle ;
 
 use strict ;
-local ($^W) = 1; #use warnings ;
-use vars qw($VERSION @ISA @EXPORT $AUTOLOAD);
-use vars qw($deflateDefault $deflateParamsDefault $inflateDefault);
+use warnings ;
+our ($VERSION, @ISA, @EXPORT, $AUTOLOAD);
+our ($deflateDefault, $deflateParamsDefault, $inflateDefault);
 
 $VERSION = "1.42" ;
 
@@ -204,7 +204,7 @@
 sub deflateInit(@)
 {
     my ($got) = ParseParameters($deflateDefault, @_) ;
-    local ($^W) = 0; #no warnings;
+    no warnings;
     croak "deflateInit: Bufsize must be >= 1, you specified $got->{Bufsize}"
         unless $got->{Bufsize} >= 1;
     _deflateInit($got->{Level}, $got->{Method}, $got->{WindowBits}, 
@@ -216,7 +216,7 @@
 sub inflateInit(@)
 {
     my ($got) = ParseParameters($inflateDefault, @_) ;
-    local ($^W) = 0; #no warnings;
+    no warnings;
     croak "inflateInit: Bufsize must be >= 1, you specified $got->{Bufsize}"
         unless $got->{Bufsize} >= 1;
     _inflateInit($got->{WindowBits}, $got->{Bufsize}, $got->{Dictionary});
@@ -229,7 +229,7 @@
     my ($got) = ParseParameters($deflateParamsDefault, @_) ;
     croak "deflateParams needs Level and/or Strategy"
         unless defined $got->{Level} || defined $got->{Strategy};
-    local ($^W) = 0; #no warnings;
+    no warnings;
     croak "deflateParams: Bufsize must be >= 1, you specified $got->{Bufsize}"
         unless  !defined $got->{Bufsize} || $got->{Bufsize} >= 1;
 

Modified: packages/libcompress-zlib-perl/trunk/config.in
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcompress-zlib-perl/trunk/config.in?rev=4379&op=diff
==============================================================================
--- packages/libcompress-zlib-perl/trunk/config.in (original)
+++ packages/libcompress-zlib-perl/trunk/config.in Fri Nov 24 20:48:26 2006
@@ -11,9 +11,9 @@
 # See to the section "Controlling the version of zlib used by
 # Compress::Zlib" in the README file for details of how to use this file.
 
-BUILD_ZLIB = True
-INCLUDE    = ./zlib-src
-LIB        = ./zlib-src
+BUILD_ZLIB = False
+INCLUDE    = /foo/bar/include
+LIB        = /foo/bar/lib
 OLD_ZLIB   = False
 
 

Propchange: packages/libcompress-zlib-perl/trunk/config.in
------------------------------------------------------------------------------
--- svn:executable (original)
+++ svn:executable Fri Nov 24 20:48:26 2006
@@ -1,0 +1,1 @@
+*

Added: packages/libcompress-zlib-perl/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcompress-zlib-perl/trunk/debian/changelog?rev=4379&op=file
==============================================================================
--- packages/libcompress-zlib-perl/trunk/debian/changelog (added)
+++ packages/libcompress-zlib-perl/trunk/debian/changelog Fri Nov 24 20:48:26 2006
@@ -1,0 +1,163 @@
+libcompress-zlib-perl (1.42-2) unstable; urgency=low
+
+  * New maintainer: Debian Perl Group.
+  * Set Standards-Version to 3.7.2 (no changes).
+  * Set debhelper compatibility level to 5.
+  * Change PWD to CURDIR in debian/rules to avoid problems with sudo.
+  * Remove empty /usr/share/perl5 directory.
+
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Fri, 24 Nov 2006 20:45:51 +0100
+
+libcompress-zlib-perl (1.42-1) unstable; urgency=low
+
+  * New upstream version.
+
+ -- Matthias Klose <doko at debian.org>  Sat, 19 Aug 2006 20:51:49 +0000
+
+libcompress-zlib-perl (1.41-1) unstable; urgency=low
+
+  * New upstream version.
+
+ -- Matthias Klose <doko at debian.org>  Sun, 23 Oct 2005 16:19:13 +0000
+
+libcompress-zlib-perl (1.39-2) unstable; urgency=low
+
+  * Upload to unstable.
+
+ -- Matthias Klose <doko at debian.org>  Thu, 22 Sep 2005 06:33:00 +0000
+
+libcompress-zlib-perl (1.39-1) unstable; urgency=low
+
+  * New upstream release
+    - fixes: new upstream release 1.38 available (Closes: #327842)
+    - updated copyright -> debian/copyright
+  * Standards-Version 3.6.2, no changes required
+
+ -- Matthias Klose <doko at debian.org>  Mon, 19 Sep 2005 23:22:36 +0200
+
+libcompress-zlib-perl (1.34-1) unstable; urgency=low
+
+  * New upstream version.
+
+ -- Matthias Klose <doko at debian.org>  Sat,  5 Feb 2005 10:36:22 +0100
+
+libcompress-zlib-perl (1.33-3) unstable; urgency=low
+
+  * Rebuild in clean unstable chroot (closes: #272416).
+
+ -- Matthias Klose <doko at debian.org>  Sun, 19 Sep 2004 21:40:32 +0000
+
+libcompress-zlib-perl (1.33-2) unstable; urgency=low
+
+  * Add watch file.
+
+ -- Matthias Klose <doko at debian.org>  Sun, 19 Sep 2004 19:48:29 +0200
+
+libcompress-zlib-perl (1.33-1) unstable; urgency=low
+
+  * New maintainer.
+  * New upstream version (closes: #218068).
+    - fixes memGzip not working properly with perl 5.8 when it is given
+      UTF-8 data (closes: #227942).
+  * Don't include backup files in examples directory (closes: #205213).
+  * Add pointer in copyright to Artistic license (closes: #157553).
+
+ -- Matthias Klose <doko at debian.org>  Mon, 28 Jun 2004 18:12:30 +0200
+
+libcompress-zlib-perl (1.16-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Build against perl 5.8. Bumped perl build-dependency to 5.8.0-3.
+
+ -- Colin Watson <cjwatson at debian.org>  Mon, 26 Aug 2002 17:17:10 +0100
+
+libcompress-zlib-perl (1.16-1) unstable; urgency=low
+
+  * New upstream version
+
+ -- Michael Alan Dorman <mdorman at debian.org>  Sat, 15 Dec 2001 21:23:53 -0500
+
+libcompress-zlib-perl (1.15-1) unstable; urgency=low
+
+  * New upstream version
+
+ -- Michael Alan Dorman <mdorman at debian.org>  Sun,  9 Dec 2001 10:58:56 -0500
+
+libcompress-zlib-perl (1.14-1) unstable; urgency=low
+
+  * New upstream version (closes: bug#113408)
+
+ -- Michael Alan Dorman <mdorman at debian.org>  Tue, 25 Sep 2001 12:28:30 -0400
+
+libcompress-zlib-perl (1.13-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Michael Alan Dorman <mdorman at debian.org>  Sat, 18 Aug 2001 18:04:53 -0400
+
+libcompress-zlib-perl (1.12-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Michael Alan Dorman <mdorman at debian.org>  Tue,  8 May 2001 09:59:13 -0400
+
+libcompress-zlib-perl (1.11-2) unstable; urgency=low
+
+  * Fix build-depends.
+  * Minor edits to rules and such.
+
+ -- Michael Alan Dorman <mdorman at debian.org>  Sun, 15 Apr 2001 15:45:26 -0400
+
+libcompress-zlib-perl (1.11-1) unstable; urgency=low
+
+  * New upstream release (closes: bug#80656, bug#65274, bug#57288)
+
+ -- Michael Alan Dorman <mdorman at debian.org>  Sat, 24 Feb 2001 12:17:16 -0800
+
+libcompress-zlib-perl (1.08-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Michael Alan Dorman <mdorman at debian.org>  Mon, 10 Jan 2000 12:41:09 -0500
+
+libcompress-zlib-perl (1.06-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Michael Alan Dorman <mdorman at debian.org>  Tue, 21 Sep 1999 11:55:35 -0400
+
+libcompress-zlib-perl (1.05-3) unstable; urgency=low
+
+  * For some reason I do not understand, Zlib.so doesn't show up
+    as linked to libz.  I've included a patch from Manish Singh
+    <yosh at gimp.org> (closes: bug#41869)
+
+ -- Michael Alan Dorman <mdorman at debian.org>  Sun, 25 Jul 1999 16:56:12 -0400
+
+libcompress-zlib-perl (1.05-2) unstable; urgency=low
+
+  * Too stupid to get the binary-arch stuff in the right place (closes: bug#40921)
+
+ -- Michael Alan Dorman <mdorman at debian.org>  Sun, 11 Jul 1999 12:48:38 -0400
+
+libcompress-zlib-perl (1.05-1) unstable; urgency=low
+
+  * New upstream release.
+  * Modified for new perl packages.
+  * Modified to use debhelper.
+
+ -- Michael Alan Dorman <mdorman at debian.org>  Mon,  5 Jul 1999 18:28:40 +0000
+
+libcompress-zlib-perl (1.02-1) unstable; urgency=low closes=20609 21021 25187 26828
+
+  * New upstream release.
+  * Recompiled against new zlib (closes: bug#21021, bug#25187, bug#26828)
+  * Correctly install manpages (closes: bug#20609)
+
+ -- Michael Alan Dorman <mdorman at debian.org>  Mon,  4 Dec 2017 12:27:41 -0500
+
+libcompress-zlib-perl (1.01-1) unstable; urgency=low
+
+  * Initial Debianization.
+
+ -- Michael Alan Dorman <mdorman at debian.org>  Mon,  4 Dec 2017 12:27:41 -0500

Added: packages/libcompress-zlib-perl/trunk/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcompress-zlib-perl/trunk/debian/compat?rev=4379&op=file
==============================================================================
--- packages/libcompress-zlib-perl/trunk/debian/compat (added)
+++ packages/libcompress-zlib-perl/trunk/debian/compat Fri Nov 24 20:48:26 2006
@@ -1,0 +1,1 @@
+5

Added: packages/libcompress-zlib-perl/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcompress-zlib-perl/trunk/debian/control?rev=4379&op=file
==============================================================================
--- packages/libcompress-zlib-perl/trunk/debian/control (added)
+++ packages/libcompress-zlib-perl/trunk/debian/control Fri Nov 24 20:48:26 2006
@@ -1,0 +1,22 @@
+Source: libcompress-zlib-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: gregor herrmann <gregor+debian at comodo.priv.at>
+XS-Vcs-Svn: svn://svn.debian.org/pkg-perl/packages/libcompress-zlib-perl/trunk/
+Priority: optional
+Section: perl
+Standards-Version: 3.7.2
+Build-Depends: debhelper (>= 5), perl (>= 5.8.3), zlib1g-dev
+
+Package: libcompress-zlib-perl
+Priority: optional
+Architecture: any
+Depends: ${perl:Depends}, ${shlibs:Depends}
+Description: Perl module for creation and manipulation of gzip files
+ Compress::Zlib is a Perl external module which provides an interface to
+ the info-zip zlib compression library. zlib is a general purpose
+ compression library.
+ .
+ Some of the features provided by Compress::Zlib include:
+ .
+    * in-memory compression and decompression
+    * read and write gzip (.gz) files directly.

Added: packages/libcompress-zlib-perl/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcompress-zlib-perl/trunk/debian/copyright?rev=4379&op=file
==============================================================================
--- packages/libcompress-zlib-perl/trunk/debian/copyright (added)
+++ packages/libcompress-zlib-perl/trunk/debian/copyright Fri Nov 24 20:48:26 2006
@@ -1,0 +1,20 @@
+This is Debian GNU/Linux's prepackaged version of Compress::Zlib
+(renamed to be libcompress-zlib-perl), the Perl module for creation
+and manipulation of gzip files.
+
+Michael Alan Dorman <mdorman at debian.org> assembled this package.  The
+library is available from the Comprehensive Perl Archive Network
+(CPAN). Visit <URL:http://www.perl.com/CPAN/> to find a CPAN site near
+you.
+
+The only change for the Debian package was the addition of the debian/
+files and the modification of the examples to reference /usr/bin/perl.
+
+The Compress::Zlib copyright is as follows:
+
+             Copyright (c) 1995-2005 Paul Marquess. All rights reserved.
+         This program is free software; you can redistribute it and/or
+                modify it under the same terms as Perl itself.
+
+On Debian GNU/Linux systems, the complete text of Perl's license, the
+Artistic License can be found in `/usr/share/common-licenses/Artistic'.

Added: packages/libcompress-zlib-perl/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcompress-zlib-perl/trunk/debian/rules?rev=4379&op=file
==============================================================================
--- packages/libcompress-zlib-perl/trunk/debian/rules (added)
+++ packages/libcompress-zlib-perl/trunk/debian/rules Fri Nov 24 20:48:26 2006
@@ -1,0 +1,68 @@
+#!/usr/bin/make -f
+
+PERL ?= /usr/bin/perl
+
+b := $(CURDIR)/debian/libcompress-zlib-perl
+
+arrange: arrange-stamp
+arrange-stamp: install
+	dh_testdir
+	touch arrange-stamp
+
+binary: binary-stamp
+binary-stamp: binary-indep binary-arch
+	dh_testdir
+	touch binary-stamp
+
+binary-arch: binary-arch-stamp
+binary-arch-stamp: arrange
+	dh_testdir
+	dh_testroot
+	dh_installdocs ANNOUNCE
+	dh_installexamples -X.bak examples/*
+	dh_installchangelogs -k README
+	dh_compress
+	dh_fixperms
+	dh_strip
+	dh_installdeb
+	dh_perl
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+	touch binary-arch-stamp
+
+binary-indep: binary-indep-stamp
+binary-indep-stamp: arrange
+	dh_testdir
+	touch binary-indep-stamp
+
+build: build-stamp
+build-stamp: config
+	dh_testdir
+	$(MAKE)
+	$(MAKE) test
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	dh_clean arrange-stamp binary-stamp binary-arch-stamp binary-indep-stamp build-stamp config-stamp install-stamp `find -name '*.bak'`
+	if [ -e Makefile ]; then $(MAKE) -i distclean; fi
+	rm -f test.gz
+
+config: config-stamp
+config-stamp:
+	dh_testdir
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	touch config-stamp
+
+install: install-stamp
+install-stamp: build
+	dh_testdir
+	dh_installdirs
+	$(MAKE) install PREFIX=$(b)/usr
+	rmdir --parents --ignore-fail-on-non-empty $(b)/usr/share/perl5
+	touch install-stamp
+
+.PHONY: arrange binary binary-arch binary-indep build clean config install

Propchange: packages/libcompress-zlib-perl/trunk/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: packages/libcompress-zlib-perl/trunk/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcompress-zlib-perl/trunk/debian/watch?rev=4379&op=file
==============================================================================
--- packages/libcompress-zlib-perl/trunk/debian/watch (added)
+++ packages/libcompress-zlib-perl/trunk/debian/watch Fri Nov 24 20:48:26 2006
@@ -1,0 +1,2 @@
+version=2
+http://mirror.hyperian.net/CPAN/authors/id/P/PM/PMQS/Compress-Zlib-([\d\.]*)\.tar\.gz

Modified: packages/libcompress-zlib-perl/trunk/examples/filtdef
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcompress-zlib-perl/trunk/examples/filtdef?rev=4379&op=diff
==============================================================================
--- packages/libcompress-zlib-perl/trunk/examples/filtdef (original)
+++ packages/libcompress-zlib-perl/trunk/examples/filtdef Fri Nov 24 20:48:26 2006
@@ -1,7 +1,7 @@
-#!/usr/local/bin/perl
+#!/usr/bin/perl
 
 use strict ;
-local ($^W) = 1; #use warnings ;
+use warnings ;
 
 use Compress::Zlib ;
 

Propchange: packages/libcompress-zlib-perl/trunk/examples/filtdef
------------------------------------------------------------------------------
--- svn:executable (original)
+++ svn:executable Fri Nov 24 20:48:26 2006
@@ -1,0 +1,1 @@
+*

Modified: packages/libcompress-zlib-perl/trunk/examples/filtinf
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcompress-zlib-perl/trunk/examples/filtinf?rev=4379&op=diff
==============================================================================
--- packages/libcompress-zlib-perl/trunk/examples/filtinf (original)
+++ packages/libcompress-zlib-perl/trunk/examples/filtinf Fri Nov 24 20:48:26 2006
@@ -1,7 +1,7 @@
-#!/usr/local/bin/perl
+#!/usr/bin/perl
 
 use strict ;
-local ($^W) = 1; #use warnings ;
+use warnings ;
 
 use Compress::Zlib ;
 

Propchange: packages/libcompress-zlib-perl/trunk/examples/filtinf
------------------------------------------------------------------------------
--- svn:executable (original)
+++ svn:executable Fri Nov 24 20:48:26 2006
@@ -1,0 +1,1 @@
+*

Modified: packages/libcompress-zlib-perl/trunk/examples/gzcat
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcompress-zlib-perl/trunk/examples/gzcat?rev=4379&op=diff
==============================================================================
--- packages/libcompress-zlib-perl/trunk/examples/gzcat (original)
+++ packages/libcompress-zlib-perl/trunk/examples/gzcat Fri Nov 24 20:48:26 2006
@@ -1,7 +1,7 @@
-#!/usr/local/bin/perl
+#!/usr/bin/perl
 
 use strict ;
-local ($^W) = 1; #use warnings ;
+use warnings ;
 
 use Compress::Zlib ;
 

Propchange: packages/libcompress-zlib-perl/trunk/examples/gzcat
------------------------------------------------------------------------------
--- svn:executable (original)
+++ svn:executable Fri Nov 24 20:48:26 2006
@@ -1,0 +1,1 @@
+*

Modified: packages/libcompress-zlib-perl/trunk/examples/gzgrep
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcompress-zlib-perl/trunk/examples/gzgrep?rev=4379&op=diff
==============================================================================
--- packages/libcompress-zlib-perl/trunk/examples/gzgrep (original)
+++ packages/libcompress-zlib-perl/trunk/examples/gzgrep Fri Nov 24 20:48:26 2006
@@ -1,7 +1,7 @@
-#!/usr/local/bin/perl
+#!/usr/bin/perl
 
 use strict ;
-local ($^W) = 1; #use warnings ;
+use warnings ;
 
 use Compress::Zlib ;
 

Propchange: packages/libcompress-zlib-perl/trunk/examples/gzgrep
------------------------------------------------------------------------------
--- svn:executable (original)
+++ svn:executable Fri Nov 24 20:48:26 2006
@@ -1,0 +1,1 @@
+*

Modified: packages/libcompress-zlib-perl/trunk/examples/gzstream
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcompress-zlib-perl/trunk/examples/gzstream?rev=4379&op=diff
==============================================================================
--- packages/libcompress-zlib-perl/trunk/examples/gzstream (original)
+++ packages/libcompress-zlib-perl/trunk/examples/gzstream Fri Nov 24 20:48:26 2006
@@ -1,7 +1,7 @@
-#!/usr/local/bin/perl
+#!/usr/bin/perl
 
 use strict ;
-local ($^W) = 1; #use warnings ;
+use warnings ;
 
 use Compress::Zlib ;
 

Propchange: packages/libcompress-zlib-perl/trunk/examples/gzstream
------------------------------------------------------------------------------
--- svn:executable (original)
+++ svn:executable Fri Nov 24 20:48:26 2006
@@ -1,0 +1,1 @@
+*

Modified: packages/libcompress-zlib-perl/trunk/t/01version.t
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcompress-zlib-perl/trunk/t/01version.t?rev=4379&op=diff
==============================================================================
--- packages/libcompress-zlib-perl/trunk/t/01version.t (original)
+++ packages/libcompress-zlib-perl/trunk/t/01version.t Fri Nov 24 20:48:26 2006
@@ -1,6 +1,6 @@
 
 use strict ;
-local ($^W) = 1; #use warnings ;
+use warnings ;
 
 use Compress::Zlib ;
 

Modified: packages/libcompress-zlib-perl/trunk/t/02zlib.t
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcompress-zlib-perl/trunk/t/02zlib.t?rev=4379&op=diff
==============================================================================
--- packages/libcompress-zlib-perl/trunk/t/02zlib.t (original)
+++ packages/libcompress-zlib-perl/trunk/t/02zlib.t Fri Nov 24 20:48:26 2006
@@ -1,7 +1,7 @@
 
 
 use strict ;
-local ($^W) = 1; #use warnings ;
+use warnings ;
 
 use Compress::Zlib ;
 

Modified: packages/libcompress-zlib-perl/trunk/t/03examples.t
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcompress-zlib-perl/trunk/t/03examples.t?rev=4379&op=diff
==============================================================================
--- packages/libcompress-zlib-perl/trunk/t/03examples.t (original)
+++ packages/libcompress-zlib-perl/trunk/t/03examples.t Fri Nov 24 20:48:26 2006
@@ -1,6 +1,6 @@
 
 use strict ;
-local ($^W) = 1; #use warnings ;
+use warnings ;
 
 use Compress::Zlib;
 

Modified: packages/libcompress-zlib-perl/trunk/t/04encoding.t
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcompress-zlib-perl/trunk/t/04encoding.t?rev=4379&op=diff
==============================================================================
--- packages/libcompress-zlib-perl/trunk/t/04encoding.t (original)
+++ packages/libcompress-zlib-perl/trunk/t/04encoding.t Fri Nov 24 20:48:26 2006
@@ -1,6 +1,6 @@
 
 use strict ;
-local ($^W) = 1; #use warnings ;
+use warnings ;
 
 BEGIN 
 {

Modified: packages/libcompress-zlib-perl/trunk/t/05gzsetp.t
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcompress-zlib-perl/trunk/t/05gzsetp.t?rev=4379&op=diff
==============================================================================
--- packages/libcompress-zlib-perl/trunk/t/05gzsetp.t (original)
+++ packages/libcompress-zlib-perl/trunk/t/05gzsetp.t Fri Nov 24 20:48:26 2006
@@ -1,7 +1,7 @@
 
 
 use strict ;
-local ($^W) = 1; #use warnings ;
+use warnings ;
 
 use Compress::Zlib ;
 

Modified: packages/libcompress-zlib-perl/trunk/t/06gzdopen.t
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcompress-zlib-perl/trunk/t/06gzdopen.t?rev=4379&op=diff
==============================================================================
--- packages/libcompress-zlib-perl/trunk/t/06gzdopen.t (original)
+++ packages/libcompress-zlib-perl/trunk/t/06gzdopen.t Fri Nov 24 20:48:26 2006
@@ -1,7 +1,7 @@
 
 
 use strict ;
-local ($^W) = 1; #use warnings ;
+use warnings ;
 
 use Compress::Zlib ;
 




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