summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* typo fix for bigintDavid Steinbrunner2013-05-251-2/+2
| | | | Bump $VERSION.
* typo fixes for B::DepaeseDavid Steinbrunner2013-05-251-3/+3
| | | | Bump $VERSION.
* Correct bug number comment in test.Nicholas Clark2013-05-251-1/+1
|
* In the debugger use local $ENV{MANPATH}, instead of a work around.Nicholas Clark2013-05-251-8/+1
| | | | | | local on regular hashes was fixed to delete elements it added by commit 1f5346dc23a1f0ea in Dec 2000. The analogous fix for tied hashes was made by commit c39e6ab0a7545b7a in May 2002. So the work around can go.
* Remove the hard-coded list of "perl" manpages from the debugger.Nicholas Clark2013-05-251-135/+15
| | | | | Instead, use the directory of installed pod files to work out whether the page name the user typed should have "perl" prepended.
* In the debugger's doc command, use man[13]direxp instead of man[13]dir.Nicholas Clark2013-05-251-2/+2
| | | | | Without this, the doc command won't work when perl is configured and installed with a prefix starting with ~
* canonical.t test for Storable will use Digest::MD5 instead of MD5Alexandr Ciornii2013-05-251-3/+4
|
* Fix the man/perldoc/doc command in the debugger.Nicholas Clark2013-05-253-2/+28
| | | | This was accidentally broken by commit c7b0c61d36b24841.
* Bump $VERSION.James E Keenan2013-05-251-1/+1
|
* typo fixes for Locale::MaketextDavid Steinbrunner2013-05-252-3/+3
|
* typo fixes for CwdDavid Steinbrunner2013-05-252-4/+4
| | | | Bump $VERSION.
* another typo fix for ExtUtils::ParseXSDavid Steinbrunner2013-05-251-2/+2
| | | | Bump $VERSION.
* typo fixes for ExtUtils::ParseXSDavid Steinbrunner2013-05-252-6/+6
|
* typo fix for Attribute::HandlersDavid Steinbrunner2013-05-251-4/+3
| | | | Bump $VERSION.
* lib/perldoc.pod is no longer generated, stop ignoring itTony Cook2013-05-251-1/+0
| | | | | This changed with cb1974ba, 4a430f72 added an ignore for the new location but didn't remove the old location.
* Typo fixes for B modules.David Steinbrunner2013-05-253-6/+6
| | | | | | | Uses of 'optimise' change to 'optimize' to be consistent with other uses of 'optimize'. Bump $VERSION.
* typo fix for perl5dbDavid Steinbrunner2013-05-251-9/+9
| | | | Bump $VERSION.
* typo fix for ThreadDavid Steinbrunner2013-05-251-2/+2
| | | | Bump $VERSION.
* typo fix for DBDavid Steinbrunner2013-05-251-2/+2
| | | | Bump $VERSION.
* typo fix for _charnamesDavid Steinbrunner2013-05-252-2/+2
| | | | Bump $VERSION for charnames.
* Add lib/Pod/perldoc.pod to lib/.gitignore.James E Keenan2013-05-251-0/+1
|
* typo fixes for BenchmarkDavid Steinbrunner2013-05-251-24/+24
| | | | Bump $VERSION; clean up trailing whitespace.
* typo fix for File::FindDavid Steinbrunner2013-05-251-2/+2
| | | | Bump $VERSION for File::Find.
* Update HTTP-Tiny to CPAN version 0.029Chris 'BinGOs' Williams2013-05-2416-20/+639
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [DELTA] 0.029 2013-04-17 13:49:07 America/New_York [FIXED] - Checks for new enough OpenSSL library before using SNI (otherwise IO::Socket::SSL throws warnings) 0.028 2013-03-05 14:11:57 America/New_York [SUPPORT] - Fix repository/issue links to reflect proper repo name 0.027 2013-03-05 12:02:58 America/New_York [SUPPORT] - Changed metadata to point to the chansen github repository for code and issues [DOCUMENTATION] - Added hyperlink for HTTP::CookieJar 0.026 2013-03-04 22:53:39 America/New_York [ADDED] - Added cookie support if an HTTP::CookieJar object is provided in the 'cookie_jar' attribute [Edward Zborowski]
* Update Module-Build to CPAN version 0.4005Chris 'BinGOs' Williams2013-05-2433-49/+113
| | | | | | | | | | | | | | | | | | | | | | | | | | [DELTA] 0.4005 - Thu Apr 25 15:10:14 CEST 2013 [ENHANCEMENTS] - Added --pureperl-only support [BUG FIXES] - #72176: pod2html will fail with an empty podpath in some cases. [Phillip Moore] - Fix links between modules in HTML docs output [Michael Wild, Leon Timmermans] 0.4004 - Fri Mar 29 15:05:00 CET 2013 [BUG FIXES] - Minor VMS fix for @INC [Craig Berry] [ENHANCEMENTS] - test_requires support has been added [Matsuno Tokuhiro]
* Update Pod-Perldoc to CPAN version 3.20Chris 'BinGOs' Williams2013-05-2417-19/+29
| | | | | | | | | | | [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-Usage to CPAN version 1.62Chris 'BinGOs' Williams2013-05-246-1044/+810
| | | | | | | | | | | | | | | | | | | | | | | | | [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
* Ensure that the IV in struct pmop (for ithreads) is aligned properly.Nicholas Clark2013-05-242-1/+18
| | | | | | | | | | | | | | | | | | | The members of struct pmop vary between ithreads and non-ithreads builds. For ithreads, an IV is used for op_pmoffset. For 32 bit platforms built with -Duse64bitint, IVs are 64 bits, but pointers (and all other members of all OP structures) are 32 bits, hence on 32 bit platforms OP structure sizes can be an odd multiple of 4 bytes. Since the swap to the slab allocator, this is causing problems on architectures where 8 byte IVs have to be 8 byte aligned, notably sparcs. The long-term fix is to replace the IV with an appropriate 32 bit type, as it is being used for an array index. However, for maint-5.18 we need a work around which doesn't change the public headers and ideally doesn't impose a large speed or memory penalty. Hence for now, simply avoid using the slab allocator when allocating a struct pmop. Only do this for 32 bit platforms build with 8 byte IVs and ithreads. This is the interim fix for RT #118055.
* Update to CPAN-Meta means META.* need regeneratingChris 'BinGOs' Williams2013-05-242-2/+2
|
* Update File-Temp to CPAN version 0.2301Chris 'BinGOs' Williams2013-05-242-773/+814
| | | | | | | | | [DELTA] 0.2301 2013-04-11 16:30:05 Europe/London * dist.ini: Managed with Dist::Zilla now; generates Makefile.PL to avoid circular dependency when using Build.PL
* Update CPAN-Meta to CPAN version 2.130880Chris 'BinGOs' Williams2013-05-2412-61/+586
| | | | | | | | | | | | | | | | | [DELTA] 2.130880 2013-03-29 09:51:00 America/New_York [BUGFIX] - Fix provides 'version' bug introduced in the 2.130870 fix 2.130870 2013-03-28 11:08:50 America/New_York [BUGFIX] - Don't add 'version' to 'provides' during conversion if one didn't exist in the original [Reported by Miyagawa; fixed by David Golden]
* Updated Module-Metadata to CPAN version 1.000014Chris 'BinGOs' Williams2013-05-247-37/+225
| | | | | | | | | | | | | | | | | [DELTA] 1.000014 - 2014-05-09 - Remove "now installs to 'site' for perl 5.12+" from last version 1.000013 - 2013-05-08 - Fix reliance on recent Test::Builder - Make tests perl 5.6 compatible - now installs to 'site' for perl 5.12+, as per p5p recommendation 1.000012 - 2013-05-04 - improved package detection heuristics (thanks, Edward Zborowski!) - fix ->contains_pod (RT#84932, Tokuhiro Matsuno) - fix detection of pod after __END__ (RT79656, Tokuhiro Matsuno)
* Update File-Fetch to CPAN version 0.42Chris 'BinGOs' Williams2013-05-243-8/+80
| | | | | | | | | | | | [DELTA] Changes for 0.42 Fri Apr 12 15:28:34 2013 ================================================= * Skip slurp tests for git:// Changes for 0.40 Fri Apr 12 11:18:52 2013 ================================================= * Added git:// url support
* Update perlfaq to CPAN version 5.0150043Chris 'BinGOs' Williams2013-05-247-11/+11
| | | | | | | | [DELTA] 5.0150043 Sun 12 May 2013 19:40:17 +0100 * Various typos and URL fixes (dsteinbrunner) * Typo (argrath)
* Update Encode to CPAN version 2.51Chris 'BinGOs' Williams2013-05-2415-54/+118
| | | | | | | | | | | | | | | | | | | | | | | | | | | [DELTA] $Revision: 2.51 $ $Date: 2013/04/29 22:19:11 $ ! Encode.xs Addressed: Encode.xs doesn't compile with Microsoft C compiler https://rt.cpan.org/Public/Bug/Display.html?id=84920 ! MANIFEST Addressed: t/taint.t missing https://rt.cpan.org/Public/Bug/Display.html?id=84919 2.50 2013/04/26 18:30:46 ! Encode.xs Unicode/Unicode.xs lib/Encode/Unicode/UTF7.pm lib/CN/HZ.pm lib/Encode/GSM0338.pm t/taint.t Addressed: Encode::encode and Encode::decode gratuitously launders tainted data Taintedness now propagates as it should. https://rt.cpan.org/Ticket/Display.html?id=84879 ! encoding.pm Addressed: 5.18 deprecation https://rt.cpan.org/Ticket/Display.html?id=84709 ! bin/piconv Applied: Update piconv documentation https://rt.cpan.org/Ticket/Display.html?id=84695
* Update Config-Perl-V version in Maintainers.plChris 'BinGOs' Williams2013-05-241-1/+1
|
* Update Config-Perl-V to version 0.18H.Merijn Brand2013-05-244-8/+128
|
* Add NO_TAINT_SUPPORT to S_Internals_V ()H.Merijn Brand2013-05-241-0/+3
|
* typo fixes for porting scriptsDavid Steinbrunner2013-05-248-12/+12
|
* typo fixes for version podDavid Steinbrunner2013-05-241-2/+2
|
* Try to avoid nesting F<$F<...>> in generated Config.pmDavid Golden2013-05-231-1/+1
|
* fix various podcheck nitsDavid Golden2013-05-2314-52/+52
|
* fix various Pod line length warningsDavid Golden2013-05-2312-44/+65
|
* help t/podcheck.t skip duplicate pod in utilsDavid Golden2013-05-231-0/+2
|
* stop t/podcheck.t from flagging blockquotesDavid Golden2013-05-231-0/+1
|
* Make t/podcheck.t less sensitiveDavid Golden2013-05-232-232/+23
| | | | | | | | | | The max line length is increased to 100. This eliminates dozens of known issues. The warnings about using F<> and L<> instead of C<> have been removed on the rationale that they are too opinionated. They flag stylistic issues rather than syntactic or structural issues and have minimal impact on the effectiveness of the resulting documentation.
* typo fixes for porting modulesDavid Steinbrunner2013-05-242-4/+4
| | | | Bump $VERSION for Porting/Maintainers.pm.
* typo fixes for porting pod note optimiserDavid Steinbrunner2013-05-244-11/+12
| | | | | Change to optimizer to be consistent with other uses of optimizer in todo. Clear up confusion in regex optimizer entry.
* making DOS stand out in dosifyDavid Steinbrunner2013-05-241-1/+1
|
* typo fix for os2 moduleDavid Steinbrunner2013-05-241-2/+2
| | | | Bump $VERSION for os2/OS2/OS2-Process/Process.pm.