diff -Nru libpod-plainer-perl-1.02/Changes libpod-plainer-perl-1.03/Changes --- libpod-plainer-perl-1.02/Changes 2010-02-11 16:20:17.000000000 +0000 +++ libpod-plainer-perl-1.03/Changes 2010-08-25 09:26:43.000000000 +0000 @@ -1,5 +1,11 @@ Revision history for Perl extension Pod::Plainer. +1.03 2010-08-25 + - deleted C to remove dependency on 'if', + which is not available in 5.006, as reported in #RT60721. + I think C is only necessary for versions that + appear in the core. + 1.02 2010-02-11 - change email address diff -Nru libpod-plainer-perl-1.02/debian/changelog libpod-plainer-perl-1.03/debian/changelog --- libpod-plainer-perl-1.02/debian/changelog 2011-04-30 21:36:27.000000000 +0000 +++ libpod-plainer-perl-1.03/debian/changelog 2011-04-30 21:36:28.000000000 +0000 @@ -1,3 +1,10 @@ +libpod-plainer-perl (1.03-1) unstable; urgency=low + + * New upstream release + * Update Standards-Version (no changes) + + -- Dominic Hargreaves Sun, 30 Jan 2011 15:56:34 +0000 + libpod-plainer-perl (1.02-1) unstable; urgency=low * Initial Release. (Closes: #580055) diff -Nru libpod-plainer-perl-1.02/debian/control libpod-plainer-perl-1.03/debian/control --- libpod-plainer-perl-1.02/debian/control 2011-04-30 21:36:27.000000000 +0000 +++ libpod-plainer-perl-1.03/debian/control 2011-04-30 21:36:28.000000000 +0000 @@ -5,7 +5,7 @@ Build-Depends-Indep: perl Maintainer: Debian Perl Group Uploaders: Dominic Hargreaves -Standards-Version: 3.8.4 +Standards-Version: 3.9.1 Homepage: http://search.cpan.org/dist/Pod-Plainer/ Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libpod-plainer-perl/ Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libpod-plainer-perl/ diff -Nru libpod-plainer-perl-1.02/META.yml libpod-plainer-perl-1.03/META.yml --- libpod-plainer-perl-1.02/META.yml 2010-02-11 16:28:14.000000000 +0000 +++ libpod-plainer-perl-1.03/META.yml 2010-08-25 11:10:11.000000000 +0000 @@ -1,6 +1,6 @@ --- #YAML:1.0 name: Pod-Plainer -version: 1.02 +version: 1.03 abstract: Perl extension for converting Pod to old-style Pod. author: - Robin Barker @@ -17,7 +17,7 @@ directory: - t - inc -generated_by: ExtUtils::MakeMaker version 6.55_02 +generated_by: ExtUtils::MakeMaker version 6.56 meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html version: 1.4 diff -Nru libpod-plainer-perl-1.02/Plainer.pm libpod-plainer-perl-1.03/Plainer.pm --- libpod-plainer-perl-1.02/Plainer.pm 2010-02-11 16:28:10.000000000 +0000 +++ libpod-plainer-perl-1.03/Plainer.pm 2010-08-25 10:53:14.000000000 +0000 @@ -2,10 +2,10 @@ use 5.006; use strict; use warnings; -use if $] >= 5.011, 'deprecate'; +# use if $] >= 5.011, 'deprecate'; use Pod::Parser; our @ISA = qw(Pod::Parser); -our $VERSION = '1.02'; +our $VERSION = '1.03'; our %E = qw( < lt > gt ); @@ -89,7 +89,7 @@ =head1 COPYRIGHT AND LICENSE -Copyright (C) 2009 by Robin Barker +Copyright (C) 2009, 2010 by Robin Barker This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.10.1 or, @@ -97,4 +97,4 @@ =cut -$Id: Plainer.pm 253 2010-02-11 16:28:10Z rmb1 $ +$Id: Plainer.pm 257 2010-08-25 10:53:14Z robin $ diff -Nru libpod-plainer-perl-1.02/README libpod-plainer-perl-1.03/README --- libpod-plainer-perl-1.02/README 2010-02-11 16:19:18.000000000 +0000 +++ libpod-plainer-perl-1.03/README 2010-08-25 09:23:46.000000000 +0000 @@ -1,4 +1,4 @@ -Pod-Plainer version 1.02 +Pod-Plainer version 1.03 ======================== This was a core module in the Perl distribution to aid adoption @@ -20,11 +20,15 @@ Pod::Parser +RECENT CHANGES + +1.03 Removed C + COPYRIGHT AND LICENCE Put the correct copyright and licence information here. -Copyright (C) 2009 by Robin Barker +Copyright (C) 2009, 2010 by Robin Barker This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.10.1 or,