In perl.git, the branch book/perlsecret has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/b590b68d8540cf4da30364ac213ff720308d8798?hp=1891d0d8b6142275dda5ad7dd5d2d5d7f6de209f>

- Log -----------------------------------------------------------------
commit b590b68d8540cf4da30364ac213ff720308d8798
Author: Rafael Garcia-Suarez <r...@consttype.org>
Date:   Sat Mar 31 17:10:33 2012 +0200

    Insert ignored PODs in MANIFEST
    
    and regenerate pod lists
-----------------------------------------------------------------------

Summary of changes:
 MANIFEST           |    2 +-
 Porting/pod_lib.pl |    4 ++++
 win32/pod.mak      |    4 ++++
 3 files changed, 9 insertions(+), 1 deletions(-)

diff --git a/MANIFEST b/MANIFEST
index db8d35a..7ef2458 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -4734,7 +4734,7 @@ pod/perlreref.pod         Perl regular expressions quick 
reference
 pod/perlretut.pod              Perl regular expressions tutorial
 pod/perlrun.pod                        Perl execution and options
 pod/perlsec.pod                        Perl security
-pod/perlsecret.pod                     Perl secret operators
+pod/perlsecret.pod             The perlsecret manpage
 pod/perlsource.pod             Guide to the Perl source tree
 pod/perlstyle.pod              Perl style guide
 pod/perlsub.pod                        Perl subroutines
diff --git a/Porting/pod_lib.pl b/Porting/pod_lib.pl
index f4e09d6..e82e203 100644
--- a/Porting/pod_lib.pl
+++ b/Porting/pod_lib.pl
@@ -296,6 +296,10 @@ sub get_pod_metadata {
     }
 
     my @inconsistent;
+    foreach (keys %ignoredpods) {
+        s/\.pod$//;
+        $state{pods}{$_} = "The $_ manpage";
+    }
     foreach my $i (sort keys %disk_pods) {
         push @inconsistent, "$0: $i exists but is unknown by buildtoc\n"
             unless $our_pods{$i} || $ignoredpods{$i};
diff --git a/win32/pod.mak b/win32/pod.mak
index 4ef661b..d7e22e5 100644
--- a/win32/pod.mak
+++ b/win32/pod.mak
@@ -121,6 +121,7 @@ POD = perl.pod      \
        perlretut.pod   \
        perlrun.pod     \
        perlsec.pod     \
+       perlsecret.pod  \
        perlsource.pod  \
        perlstyle.pod   \
        perlsub.pod     \
@@ -249,6 +250,7 @@ MAN = perl.man      \
        perlretut.man   \
        perlrun.man     \
        perlsec.man     \
+       perlsecret.man  \
        perlsource.man  \
        perlstyle.man   \
        perlsub.man     \
@@ -377,6 +379,7 @@ HTML = perl.html    \
        perlretut.html  \
        perlrun.html    \
        perlsec.html    \
+       perlsecret.html \
        perlsource.html \
        perlstyle.html  \
        perlsub.html    \
@@ -505,6 +508,7 @@ TEX = perl.tex      \
        perlretut.tex   \
        perlrun.tex     \
        perlsec.tex     \
+       perlsecret.tex  \
        perlsource.tex  \
        perlstyle.tex   \
        perlsub.tex     \

--
Perl5 Master Repository

Reply via email to