summaryrefslogtreecommitdiff
path: root/cpan/Pod-Usage
Commit message (Collapse)AuthorAgeFilesLines
* Pod::Usage with CPAN 2.03Nicolas R2022-07-203-68/+77
|
* Update Pod-Usage from version 1.70 to 2.01Steve Hay2020-10-1415-1024/+1128
|
* Update Pod-Usage to v1.70Nicolas R2020-08-185-25/+49
| | | | | | | | Customized patch to t/pod/testp2pt.pl is now applied upstream and part of the 1.70 release. References: 88e4265ca263642612277ef33dd08ded69e4e4c5 Upstream-URL: https://rt.cpan.org/Ticket/Display.html?id=130418
* Fix parent directory in pod2usage auxiliary script.Craig A. Berry2019-08-301-1/+1
| | | | | | | | | | | | | | File::Basename::dirname does not always remove the last component of the path if that component is already a directory, depending on platform. This behavior is documented. pod2usage.t has been failing on VMS because we get the wrong directory into @INC. So, since we already have File::Spec loaded, just use the more obvious and portable method for getting the parent directory. Reported upstream at: <https://rt.cpan.org/Ticket/Display.html?id=130418>
* Update Pod-Usage to CPAN version 1.69Chris 'BinGOs' Williams2016-06-167-8/+4284
| | | | | | | | | | | | [DELTA] 1.69 (marekr) - CPAN#111313: Makefile creation issue with Pod-Usage-1.68 thanks to H M Brand for the suggestion on how to create a more portable tar.gz distribution file - CPAN#109830: Tests fail bundle some old Pod::Parser modules in the test so that there is no more dependency. This has to refactored one day to entirely get rid of that
* Upgrade Pod-Usage from version 1.67 to 1.68Steve Hay2016-01-073-9/+25
|
* Update Pod-Usage to CPAN version 1.67Chris 'BinGOs' Williams2015-06-1216-970/+1214
| | | | | | | | | | | | | | | | | | | | | | | | | | [DELTA] 1.67 (marekr) - added options -perlcmd and -perldoc to allow for non-standard installations of perl and the perldoc script. Thanks to Markus Jansen for the patch 1.66 (marekr) - CPAN#102116: pod2usage() -sections omits section with subsection specified added more precise documentation about the -section syntax and semantics - CPAN#102117: pod2usage() changes formatting added documentation to describe what formatting changes pod2usage applies - CPAN#102101: New tests fail when in core changed the way the tests find their dependencies. Thanks to BINGOS for the patch, applied in slightly modified way 1.65 (marekr) - CPAN#81059: [RT #115534]: Pod::Usage Failes to Select -sections with Negation fixed a specific corner case for section selection - CPAN#101538: Pod::Usage doesn't handle E<copy> correctly introduced a utf8 option; this may actually not solve the problem, but it is the best we can do for the moment - CPAN#101581: pod2usage() -sections omits marked-up text from =head lines make sure that marked-up text is not skipped
* Update Pod-Usage to CPAN version 1.64Chris 'BinGOs' Williams2014-07-031-14/+30
| | | | | | | | | | | | | | [DELTA] 1.64 (marekr) - CPAN#93170: Abstract in pod doesn't follow convention fixed the NAME section - CPAN#86932: documentation does not work with use strict rewritten parts of the DESCRIPTION section - CPAN#86776: "pod2usage -verbose 2 FILE" is broken when perldoc is missing verified that pod2usage acts decently if perldoc is missing note: a Perl installation without perldoc is like a haunted house without ghosts
* Update Pod-Usage to CPAN version 1.63Chris 'BinGOs' Williams2013-06-024-3/+276
| | | | | | | | | | [DELTA] 1.63 (marekr) - CPAN#85477: Module version not updated in last release ...fixed - CPAN#85478: typo fixes ...corrected
* Update Pod-Usage to CPAN version 1.62Chris 'BinGOs' Williams2013-05-244-1040/+809
| | | | | | | | | | | | | | | | | | | | | | | | | [DELTA] 1.62 (marekr) Patches provided by rjbs - many thanks! - These commits update Pod::Usage to only use Pod::Simple, so that any reliance on Pod::Parser is removed, making it easier to remove Pod::Parser from core. - [PATCH 1/4] update Makefile: strict, INSTALLDIR, 5.6 - [PATCH 2/4] we will start to require perl 5.6 from here on out - [PATCH 3/4] always use Pod::Text as default base class - [PATCH 4/4] eliminate the branch in which Pod::Parser would be used This commit is intended entirely to free Pod::Usage from any reliance on Pod::Parser. * Usage.pm now defaults to using Pod::Text, rather than checking $] to pick. * $Pod::Select::MAX_HEADING_LEVEL is replaced with a local var * &Pod::Select::_compile_section_spec is copied into this module This isn't the most elegant fix, but it's a bit of a ball of mud. The code is written to let you alter @ISA at runtime to something that is derived either from Pod::Parser or Pod::Simple. This should probably be more explicitly limited to Pod::Simple in future releases. - CPAN#84031: eliminate branches using Pod::Parser removed test suite dependencies on Pod::Parser
* Update Pod-Parser to CPAN version 1.60Chris 'BinGOs' Williams2013-02-0511-0/+1774
[DELTA] [Pod-Parser]   31-Jan-2013           Marek Rouchal                        <marekr@cpan.org>   -----------------------------------------------------------------------------   Version 1.60   + removed Pod::Checker and Pod::Usage from this distribution - they are now     separate distros and are subjects to be refactored, to be based upon     Pod::Simple. Thanks to rjbs for reminding me of this. Add Pod-Checker and Pod-Usage to cpan/ These have been split out of Pod-Parser [Pod-Checker] 27-Jan-2013           Marek Rouchal                        <marekr@cpan.org> ----------------------------------------------------------------------------- Version 1.60 + preparation of changing this module to use Pod::Simple    refactored the Pod-Parser distribution and moved all things Pod::Checker    to this new distribution package + CPAN RT#79535: Pod::Checker synopsis for podchecker is opposite    corrected the POD synopsis + factored this distribution out of Pod-Parser-1.51 [Pod-Usage] 1.61 (marekr) - fix empty META.yml (CPAN RT#83118: META.yml is empty) - update outdated test expected data (CPAN RT#83111: fails test)   1.60 (marekr) - moved POD behind __END__ for slighlty quicker loading - CPAN RT#81387: 2 suggestions for module Pod::Usage    added example of how to use FindBin to locate the script;    added $Pod::Usage::Formatter to allow a different base class - CPAN RT#75598: [PATCH] Don't use perldoc if it is missing    implemented as suggested in the RT ticket - factored Pod::Usageout of the Pod-Parser distribution into a separate one,    in order to prepare the rewrite based upon Pod::Simple - thanks to rjbs for driving this