In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/5edbc4ffd619bf985c0d95ab3981022eea5bcc99?hp=cc24d4fc4624d324753615195c9de25ec9bfffe4>
- Log ----------------------------------------------------------------- commit 5edbc4ffd619bf985c0d95ab3981022eea5bcc99 Author: Smylers <[email protected]> Date: Tue Sep 3 14:52:12 2013 +0100 Restore perlrepository.pod in stub form Give Perl doc sites a sane âlatestâ version to display, directing readers to current information, rather than showing the Perl 5.12 version in perpetuity. And help anybody typing man perlrepository find where the docs have moved to. Suggested by Father Chrysostomos in: http://www.nntp.perl.org/group/perl.perl5.porters/2013/09/msg207079.html ----------------------------------------------------------------------- Summary of changes: MANIFEST | 1 + pod/perl.pod | 1 + pod/perlrepository.pod | 18 ++++++++++++++++++ win32/pod.mak | 4 ++++ 4 files changed, 24 insertions(+) create mode 100644 pod/perlrepository.pod diff --git a/MANIFEST b/MANIFEST index 8b4fd50..72d44bb 100644 --- a/MANIFEST +++ b/MANIFEST @@ -4703,6 +4703,7 @@ pod/perlref.pod Perl references, the rest of the story pod/perlreftut.pod Perl references short introduction pod/perlreguts.pod Perl regular expression engine internals pod/perlre.pod Perl regular expressions, the rest of the story +pod/perlrepository.pod pod/perlrequick.pod Perl regular expressions quick start pod/perlreref.pod Perl regular expressions quick reference pod/perlretut.pod Perl regular expressions tutorial diff --git a/pod/perl.pod b/pod/perl.pod index 20b6ad3..7ff91e4 100644 --- a/pod/perl.pod +++ b/pod/perl.pod @@ -271,6 +271,7 @@ aux a2p c2ph h2ph h2xs perlbug pl2pm pod2html pod2man s2p splain xsubpp perltodo perltooc perltoot + perlrepository =for buildtoc __END__ diff --git a/pod/perlrepository.pod b/pod/perlrepository.pod new file mode 100644 index 0000000..5c4ab00 --- /dev/null +++ b/pod/perlrepository.pod @@ -0,0 +1,18 @@ +=encoding utf8 + +=head1 NAME + +perlrepository - Links to current information on the Perl source repository + +=head1 DESCRIPTION + +Perl's source code is stored in a Git repository. + +See L<perlhack> for an explanation of Perl development, including the +L<Super Quick Patch Guide|perlhack/SUPER QUICK PATCH GUIDE> for making and +submitting a small patch. + +See L<perlgit> for detailed information about Perl's Git repository. + +(The above documents supersede the information that was formerly here in +perlrepository.) diff --git a/win32/pod.mak b/win32/pod.mak index 44e6cea..65589ee 100644 --- a/win32/pod.mak +++ b/win32/pod.mak @@ -118,6 +118,7 @@ POD = perl.pod \ perlref.pod \ perlreftut.pod \ perlreguts.pod \ + perlrepository.pod \ perlrequick.pod \ perlreref.pod \ perlretut.pod \ @@ -249,6 +250,7 @@ MAN = perl.man \ perlref.man \ perlreftut.man \ perlreguts.man \ + perlrepository.man \ perlrequick.man \ perlreref.man \ perlretut.man \ @@ -380,6 +382,7 @@ HTML = perl.html \ perlref.html \ perlreftut.html \ perlreguts.html \ + perlrepository.html \ perlrequick.html \ perlreref.html \ perlretut.html \ @@ -511,6 +514,7 @@ TEX = perl.tex \ perlref.tex \ perlreftut.tex \ perlreguts.tex \ + perlrepository.tex \ perlrequick.tex \ perlreref.tex \ perlretut.tex \ -- Perl5 Master Repository
