r40067 - in /branches/upstream/libpod-simple-perl/current: ChangeLog META.yml Makefile.PL lib/Pod/Simple.pm lib/Pod/Simple/XHTML.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Fri Jul 17 16:15:25 UTC 2009


Author: jawnsy-guest
Date: Fri Jul 17 16:15:12 2009
New Revision: 40067

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=40067
Log:
[svn-upgrade] Integrating new upstream version, libpod-simple-perl (3.08)

Modified:
    branches/upstream/libpod-simple-perl/current/ChangeLog
    branches/upstream/libpod-simple-perl/current/META.yml
    branches/upstream/libpod-simple-perl/current/Makefile.PL
    branches/upstream/libpod-simple-perl/current/lib/Pod/Simple.pm
    branches/upstream/libpod-simple-perl/current/lib/Pod/Simple/XHTML.pm

Modified: branches/upstream/libpod-simple-perl/current/ChangeLog
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpod-simple-perl/current/ChangeLog?rev=40067&op=diff
==============================================================================
--- branches/upstream/libpod-simple-perl/current/ChangeLog (original)
+++ branches/upstream/libpod-simple-perl/current/ChangeLog Fri Jul 17 16:15:12 2009
@@ -1,5 +1,14 @@
 # ChangeLog for Pod::Simple dist
 #---------------------------------------------------------------------------
+
+2009-07-16   Allison Randal <allison at perl.org>
+	* Release 3.08
+
+	Fix installdirs for Perl versions where Pod::Simple was core;
+        RT#36446 & RT#39709, thanks to Jerry Hedden.
+
+	Fix encoding handling for code in paragraphs; RT#45829, thanks
+        to David Wheeler.
 
 2008-06-04   Allison Randal <allison at perl.org>
 	* Release 3.07

Modified: branches/upstream/libpod-simple-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpod-simple-perl/current/META.yml?rev=40067&op=diff
==============================================================================
--- branches/upstream/libpod-simple-perl/current/META.yml (original)
+++ branches/upstream/libpod-simple-perl/current/META.yml Fri Jul 17 16:15:12 2009
@@ -1,10 +1,12 @@
-# http://module-build.sourceforge.net/META-spec.html
-#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
-name:         Pod-Simple
-version:      3.07
-version_from: lib/Pod/Simple.pm
-installdirs:  site
-requires:
+--- #YAML:1.0
+name:                Pod-Simple
+version:             3.08
+abstract:            framework for parsing Pod
+license:             ~
+author:              ~
+generated_by:        ExtUtils::MakeMaker version 6.42
+distribution_type:   module
+requires:     
     Carp:                          0
     Config:                        0
     constant:                      0
@@ -20,6 +22,6 @@
     Test:                          1.25
     Test::More:                    0
     Text::Wrap:                    98.112902
-
-distribution_type: module
-generated_by: ExtUtils::MakeMaker version 6.30
+meta-spec:
+    url:     http://module-build.sourceforge.net/META-spec-v1.3.html
+    version: 1.3

Modified: branches/upstream/libpod-simple-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpod-simple-perl/current/Makefile.PL?rev=40067&op=diff
==============================================================================
--- branches/upstream/libpod-simple-perl/current/Makefile.PL (original)
+++ branches/upstream/libpod-simple-perl/current/Makefile.PL Fri Jul 17 16:15:12 2009
@@ -29,6 +29,8 @@
     constant integer File::Find Test::More
    ]
   },
+
+  INSTALLDIRS => $] >= 5.009003 ? 'perl' : 'site',
 );
 
 

Modified: branches/upstream/libpod-simple-perl/current/lib/Pod/Simple.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpod-simple-perl/current/lib/Pod/Simple.pm?rev=40067&op=diff
==============================================================================
--- branches/upstream/libpod-simple-perl/current/lib/Pod/Simple.pm (original)
+++ branches/upstream/libpod-simple-perl/current/lib/Pod/Simple.pm Fri Jul 17 16:15:12 2009
@@ -18,7 +18,7 @@
 );
 
 @ISA = ('Pod::Simple::BlackBox');
-$VERSION = '3.07';
+$VERSION = '3.08';
 
 @Known_formatting_codes = qw(I B C L E F S X Z); 
 %Known_formatting_codes = map(($_=>1), @Known_formatting_codes);

Modified: branches/upstream/libpod-simple-perl/current/lib/Pod/Simple/XHTML.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpod-simple-perl/current/lib/Pod/Simple/XHTML.pm?rev=40067&op=diff
==============================================================================
--- branches/upstream/libpod-simple-perl/current/lib/Pod/Simple/XHTML.pm (original)
+++ branches/upstream/libpod-simple-perl/current/lib/Pod/Simple/XHTML.pm Fri Jul 17 16:15:12 2009
@@ -328,8 +328,8 @@
 sub start_B { $_[0]{'scratch'} .= '<b>' }
 sub end_B   { $_[0]{'scratch'} .= '</b>' }
 
-sub start_C { $_[0]{'scratch'} .= '<code>' }
-sub end_C   { $_[0]{'scratch'} .= '</code>' }
+sub start_C { $_[0]{'scratch'} .= '<code>'; $_[0]{'in_verbatim'} = 1; }
+sub end_C   { $_[0]{'scratch'} .= '</code>'; $_[0]{'in_verbatim'} = 0; }
 
 sub start_E { $_[0]{'scratch'} .= '&' }
 sub end_E   { $_[0]{'scratch'} .= ';' }




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