r5725 - in /packages/libcompress-raw-zlib-perl/branches/upstream/current: Changes META.yml Makefile.PL README Zlib.xs lib/Compress/Raw/Zlib.pm t/000prereq.t
eloy at users.alioth.debian.org
eloy at users.alioth.debian.org
Wed Jul 11 10:23:44 UTC 2007
Author: eloy
Date: Wed Jul 11 10:23:44 2007
New Revision: 5725
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=5725
Log:
[svn-upgrade] Integrating new upstream version, libcompress-raw-zlib-perl (2.005)
Modified:
packages/libcompress-raw-zlib-perl/branches/upstream/current/Changes
packages/libcompress-raw-zlib-perl/branches/upstream/current/META.yml
packages/libcompress-raw-zlib-perl/branches/upstream/current/Makefile.PL
packages/libcompress-raw-zlib-perl/branches/upstream/current/README
packages/libcompress-raw-zlib-perl/branches/upstream/current/Zlib.xs
packages/libcompress-raw-zlib-perl/branches/upstream/current/lib/Compress/Raw/Zlib.pm
packages/libcompress-raw-zlib-perl/branches/upstream/current/t/000prereq.t
Modified: packages/libcompress-raw-zlib-perl/branches/upstream/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcompress-raw-zlib-perl/branches/upstream/current/Changes?rev=5725&op=diff
==============================================================================
--- packages/libcompress-raw-zlib-perl/branches/upstream/current/Changes (original)
+++ packages/libcompress-raw-zlib-perl/branches/upstream/current/Changes Wed Jul 11 10:23:44 2007
@@ -1,5 +1,10 @@
CHANGES
-------
+
+ 2.005 18 June 2007
+
+ * Only include ppport.h when not being built with perl.
+ [core patch #30655]
2.004 3 March 2007
Modified: packages/libcompress-raw-zlib-perl/branches/upstream/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcompress-raw-zlib-perl/branches/upstream/current/META.yml?rev=5725&op=diff
==============================================================================
--- packages/libcompress-raw-zlib-perl/branches/upstream/current/META.yml (original)
+++ packages/libcompress-raw-zlib-perl/branches/upstream/current/META.yml Wed Jul 11 10:23:44 2007
@@ -1,9 +1,9 @@
--- #YAML:1.0
name: Compress-Raw-Zlib
-version: 2.004
+version: 2.005
abstract: Low-Level Interface to zlib compression library
license: perl
-generated_by: ExtUtils::MakeMaker version 6.31
+generated_by: ExtUtils::MakeMaker version 6.33
distribution_type: module
requires:
meta-spec:
Modified: packages/libcompress-raw-zlib-perl/branches/upstream/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcompress-raw-zlib-perl/branches/upstream/current/Makefile.PL?rev=5725&op=diff
==============================================================================
--- packages/libcompress-raw-zlib-perl/branches/upstream/current/Makefile.PL (original)
+++ packages/libcompress-raw-zlib-perl/branches/upstream/current/Makefile.PL Wed Jul 11 10:23:44 2007
@@ -13,6 +13,7 @@
my $OLD_ZLIB = '' ;
my $WALL = '' ;
my $GZIP_OS_CODE = -1 ;
+my $USE_PPPORT_H = ($ENV{PERL_CORE}) ? '' : '-DUSE_PPPORT_H';
#$WALL = ' -pedantic ' if $Config{'cc'} =~ /gcc/ ;
#$WALL = ' -Wall -Wno-comment ' if $Config{'cc'} =~ /gcc/ ;
@@ -65,7 +66,7 @@
NAME => 'Compress::Raw::Zlib',
VERSION_FROM => 'lib/Compress/Raw/Zlib.pm',
INC => "-I$ZLIB_INCLUDE" ,
- DEFINE => "$OLD_ZLIB $WALL -DGZIP_OS_CODE=$GZIP_OS_CODE" ,
+ DEFINE => "$OLD_ZLIB $WALL -DGZIP_OS_CODE=$GZIP_OS_CODE $USE_PPPORT_H" ,
XS => { 'Zlib.xs' => 'Zlib.c'},
'depend' => { 'Makefile' => 'config.in' },
'clean' => { FILES => '*.c constants.h constants.xs' },
@@ -81,7 +82,6 @@
: ()
),
-
(
$BUILD_ZLIB
? zlib_files($ZLIB_LIB)
Modified: packages/libcompress-raw-zlib-perl/branches/upstream/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcompress-raw-zlib-perl/branches/upstream/current/README?rev=5725&op=diff
==============================================================================
--- packages/libcompress-raw-zlib-perl/branches/upstream/current/README (original)
+++ packages/libcompress-raw-zlib-perl/branches/upstream/current/README Wed Jul 11 10:23:44 2007
@@ -1,9 +1,9 @@
Compress::Raw::Zlib
- Version 2.004
-
- 3rd March 2007
+ Version 2.005
+
+ 18th June 2007
Copyright (c) 2005-2007 Paul Marquess. All rights reserved.
Modified: packages/libcompress-raw-zlib-perl/branches/upstream/current/Zlib.xs
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcompress-raw-zlib-perl/branches/upstream/current/Zlib.xs?rev=5725&op=diff
==============================================================================
--- packages/libcompress-raw-zlib-perl/branches/upstream/current/Zlib.xs (original)
+++ packages/libcompress-raw-zlib-perl/branches/upstream/current/Zlib.xs Wed Jul 11 10:23:44 2007
@@ -58,9 +58,11 @@
# define AT_LEAST_ZLIB_1_2_3
#endif
-#define NEED_sv_2pvbyte
-#define NEED_sv_2pv_nolen
-#include "ppport.h"
+#ifdef USE_PPPORT_H
+# define NEED_sv_2pvbyte
+# define NEED_sv_2pv_nolen
+# include "ppport.h"
+#endif
#if PERL_REVISION == 5 && (PERL_VERSION < 8 || (PERL_VERSION == 8 && PERL_SUBVERSION < 4 ))
Modified: packages/libcompress-raw-zlib-perl/branches/upstream/current/lib/Compress/Raw/Zlib.pm
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcompress-raw-zlib-perl/branches/upstream/current/lib/Compress/Raw/Zlib.pm?rev=5725&op=diff
==============================================================================
--- packages/libcompress-raw-zlib-perl/branches/upstream/current/lib/Compress/Raw/Zlib.pm (original)
+++ packages/libcompress-raw-zlib-perl/branches/upstream/current/lib/Compress/Raw/Zlib.pm Wed Jul 11 10:23:44 2007
@@ -13,7 +13,7 @@
use bytes ;
our ($VERSION, $XS_VERSION, @ISA, @EXPORT, $AUTOLOAD);
-$VERSION = '2.004';
+$VERSION = '2.005';
$XS_VERSION = $VERSION;
$VERSION = eval $VERSION;
Modified: packages/libcompress-raw-zlib-perl/branches/upstream/current/t/000prereq.t
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libcompress-raw-zlib-perl/branches/upstream/current/t/000prereq.t?rev=5725&op=diff
==============================================================================
--- packages/libcompress-raw-zlib-perl/branches/upstream/current/t/000prereq.t (original)
+++ packages/libcompress-raw-zlib-perl/branches/upstream/current/t/000prereq.t Wed Jul 11 10:23:44 2007
@@ -19,7 +19,7 @@
if eval { require Test::NoWarnings ; import Test::NoWarnings; 1 };
- my $VERSION = '2.004';
+ my $VERSION = '2.005';
my @NAMES = qw(
);
More information about the Pkg-perl-cvs-commits
mailing list