summaryrefslogtreecommitdiff
path: root/cpan/Pod-Perldoc
Commit message (Collapse)AuthorAgeFilesLines
* add gitignore exclusions for files in gitGraham Knop2020-11-231-0/+1
| | | | | | | | There are a number of files excluded using gitignore rules that are included in the repository. This can lead to confusion if something other than git tries to read the ignore files. Add rules to the gitignore files so that these files won't be ignored.
* customise Pod::Perldoc to fix output misbehaviourZefram2017-10-161-11/+1
| | | | | | | | | | | | | | | | | Pod::Perldoc has, since version 3.20, exhibited various kinds of misbehaviour relating to a bad default choice of formatter. Output has sometimes appeared mangled due to the newly-default formatter emitting unportable escape sequences, and sometimes there has been a more severe output failure due to perldoc making unportable changes to pager configuration in an attempt to make the escape sequences work. This is discussed in [perl #131762]. In the upstream instance of the module there have been tweaks to the unportable behaviour, but not an actual fix. In order to make the core distro ship a reliably-working version of perldoc, this patch customises Pod::Perldoc to implement the obvious fix for the portability problems. The fixed version defaults to the ToText formatter, which produces properly plain text that will go through any pager. It never attempts any change to pager configuration.
* Sync Pod-Perldoc with CPAN version 3.28.James E Keenan2017-03-1713-22/+61
| | | | | This should enable us to close https://rt.perl.org/Ticket/Display.html?id=130759.
* Exclude a new Pod-Perldoc test script for now, since it's failing in coreSteve Hay2016-08-101-74/+0
| | | | | | | | | | | | | | | | | | | Failures on Win32/MSVC++ when dropped into core are: not ok 3 - got expected output in STDOUT # Failed test 'got expected output in STDOUT' # at t/02_module_pod_output.t line 40. # undef # doesn't match '(?^:Look up Perl documentation)' not ok 7 - got expected output in STDERR # Failed test 'got expected output in STDERR' # at t/02_module_pod_output.t line 73. # ''perl' is not recognized as an internal or external command , # operable program or batch file. # ' # doesn't match '(?^:No documentation)'
* Upgrade Pod-Perldoc from vesion 3.25_03 to 3.27Steve Hay2016-08-1017-33/+204
|
* cpan/: bump $VERSION as neededTony Cook2016-07-261-1/+1
|
* cpan/: remove . from @INC when loading optional modulesTony Cook2016-07-261-0/+5
|
* Mark the Perldoc.pm as customizedJarkko Hietaniemi2015-12-151-1/+1
|
* amigaos4: cpan/Pod-Perldoc: add pager preferencesAndy Broad2015-12-151-0/+4
| | | | Upstreamed: https://rt.cpan.org/Ticket/Display.html?id=110368
* bump versions of perl modules updated in AmigaOS branchRicardo Signes2015-09-061-1/+2
|
* amigaos4: cpan/Pod-Perldoc: different pagingAndy Broad2015-09-051-1/+7
| | | | Upstreamed: https://rt.cpan.org/Ticket/Display.html?id=106798
* Update Pod-Perldoc to CPAN version 3.25Chris 'BinGOs' Williams2015-02-1215-81/+107
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [DELTA] 3.25 - Thu Feb 12 03:06:43 UTC 2015 * No changes - roll an official release for inclusion in Perl 5.22 3.24_02 - Wed Jan 21 03:12:37 UTC 2015 * Dave Mitchell sent a patch to reduce stderr spam during core perl builds. Resolves RT#101493 * Make perldoc honor the MANPAGER environment variable as documented. Resolves RT#100933 * Decode command line arguments at UTF-8 data. Resolves RT#9806 3.24_01 - Wed Sep 10 03:13:58 UTC 2014 * The 'ToTerm' backend generates terminal escape sequences that the 'less' pager does not display by default. The "-R" option controls this, so pass it in the LESS environment variable to avoid disturbing other pager invocations. Patch by Niko Tyni. Closes RT#98636 * Unify filehandle opens and encoding into two methods 'open_fh' and 'set_encoding'. Based on a pull request by Koichi KUBO. Closes RT#98019 better than c3fd47f :) * Applied PR by Olivier Mengué to 'use parent' instead of 'use base'
* Update Pod-Perldoc to CPAN version 3.24Chris 'BinGOs' Williams2014-08-2113-16/+19
| | | | | | | | | | | | | | | [DELTA] 3.24 - Tue Aug 19 03:38:07 UTC 2014 * Release 3.24 Make sure when we open a filehandle for reading or writing, we set ':encoding(UTF-8)' on it everywhere. Closes RT#98019. 3.23_01 - Sat Aug 16 16:47:45 UTC 2014 * Test release to test UTF8 filehandles. * Happy CPAN Day!
* Update Pod-Perldoc to CPAN version 3.23Chris 'BinGOs' Williams2014-02-2515-74/+144
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [DELTA] 3.23 - Sun Feb 23 18:54:43 UTC 2014 * Release 3.23 Yes, this is a packaging error. Mea culpa. In the future test releases will be 3.23_01, etc. See https://twitter.com/frioux/status/429245594180128769 for context. 3.22_02 - Wed Feb 5 05:08:34 UTC 2014 * Add a pager that doesn't redirect stdin RT#85173 Added a special pager environment variable for use when perldoc is in the -m mode that doesn't redirect STDIN. Set PERLDOC_SRC_PAGER to use. As in: PERLDOC_SRC_PAGER=/usr/bin/vim perldoc -m File::Temp * Teach ToTerm.pm to get terminal width RT#85467 Get a terminal width and pass it to Pod::Text::Termcap from one of these sources (in order): 1. An explicit width set from command line with -w 2. MANWIDTH environment variable 3. stty output 4. The default width of 76 (same as Pod::Text) 3.22_01 - Sat Feb 1 05:00:13 UTC 2014 * Match =item more carefully when scanning perlfunc. Fixes RT #86795. Previously matches could be generated on words like 'size' and 'precision' which are not Perl functions. * Cleanup code related to mandoc RT #85844 Patch by Ingo Schwarze * Re-add '-U' flag to skip attempting to drop privileges. RT #87837 * Do not install to INSTALLDIRS after Perl 5.11 RT #89756 * Refactor search_perlop (finds operators like 'q' 'qq' 'tr' and others) RT #86506. Previously most of the text generated was incorrect. * Fix wrong version in DEBUG output from ToTerm.pm RT #85468 * Fix POD errors when scanning parts of perlfunc RT #86472 Patch by Shlomi Fish.
* Pod-Perldoc: add Makefile.PL from distroDavid Mitchell2014-01-071-0/+76
| | | | | | | | | | | | | | | | Since 3.21, the Makefile includes special code for copying perldoc.pod to the right location, so use that rather than an auto-generated one. See [perl #120280] 5.19.5 intermittent failure t/search50.t With this change, cpan/Pod-Perldoc/perldoc.pod is now copied to lib/perldoc.pod rather than lib/Pod/perldoc.pod (Its install location of lib/$version/pod/perldoc.pod is unaffected)
* Update Pod-Perldoc to CPAN version 3.21Chris 'BinGOs' Williams2014-01-0614-27/+125
| | | | | | | | | | | | | | | | | [DELTA] 3.21 - Mon Jan 6 02:17:07 UTC 2014 * Add '-a' flag to search through perlapi documentation. Patch by Matthew Horsfall. * Apply RT #91733 to install perldoc.pod in the right place. Should fix RT #88898 too. Patch by Dave Mitchell. 3.21_01 - Tue Nov 19 17:07:46 UTC 2013 * Do not modify @INC to look for docs perl RT #120357 (Patch by Kent Fredric) * Prefer mandoc on bitrig * Fix typos
* Update Pod-Perldoc to CPAN version 3.20Chris 'BinGOs' Williams2013-05-2414-16/+26
| | | | | | | | | | | [DELTA] 3.20 - Sat Apr 27 05:25:30 UTC 2013 * Make default formatter "ToTerm" instead of "ToMan" for better UTF-8 support * When dynamically building POD from perlfunc (perlvar) make sure we open filehandles with utf8 and add an =encoding (RT #80527) (RT #80640)
* Update Pod-Perldoc to CPAN version 3.19Chris 'BinGOs' Williams2013-01-2814-37/+49
| | | | | | | | | | | | | | [DELTA] 3.19 - Mon Jan 28 04:29:40 UTC 2013 * Really put perldoc.pod into man1 3.18 - Mon Jan 28 04:17:26 UTC 2013 * Document perldoc behavior in build directories (RT #80376) * Don't blindly force UTF8 to Pod::Man (RT #77465) * Fix is_dos typo (RT #76029) * Put perldoc.pod into man1 RT #77210 (ppisar@redhat.com) * Remove formatting from literal blocks RT #77209 (ppisar@redhat.com)
* Update Pod::Perldoc to version 3.17Abigail2012-03-1917-168/+215
|
* Pod-Perldoc is now maintained on CPANFlorian Ragwitz2012-01-3120-0/+12346