summaryrefslogtreecommitdiff
path: root/MANIFEST
Commit message (Collapse)AuthorAgeFilesLines
* Updated CPANPLUS to CPAN version 0.9130Chris 'BinGOs' Williams2012-06-151-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [DELTA] Changes for 0.9130 Thu May 24 22:04:10 2012 ================================================ * Always re-fetch CHECKSUMS if fetchdir is set (Torsten Schoenfeld) Changes for 0.9129 Wed May 9 21:22:41 2012 ================================================ * Handle multiple makemakerargs and makeflags arguments better. * Use File::HomeDir for home directory location if it is available, thanks to kmx * Added PERL5_CPANPLUS_HOME for altering where the .cpanplus directory is located Changes for 0.9128 Sat Apr 28 21:27:06 2012 ================================================ * Fix the previous fix Changes for 0.9127 Sat Apr 28 20:34:44 2012 ================================================ * Silenced annoying warnings related to older perls and the progress indicators Changes for 0.9126 Sat Apr 28 00:49:43 2012 ================================================ * More speed enhancements to module indexing, thanks to Vincent Pit Changes for 0.9125 Wed Apr 25 14:28:34 2012 ================================================ * Speed enhancements to module indexing, thanks to Vincent Pit Changes for 0.9124 Fri Apr 6 19:24:55 2012 ================================================ * Save the history between invocations of the shell. Changes for 0.9123 Fri Mar 30 16:46:52 2012 ================================================ * Added support for adding blib/script to PATH Changes for 0.9122 Wed Mar 28 21:52:38 2012 ================================================ * Don't spawn a process to check whether perl version prereqs are satisfied
* add tests for regex recompilationDavid Mitchell2012-06-131-0/+1
| | | | | | | | | | | | | | | | | | The run-time regexp compilation (invoked via pp_regcomp()) has a mechanism to skip the recompilation if the pattern text hasn't changed since the last recompile. Astonishingly this mechanism isn't actually tested, so here's a test file. All the tests now pass, but this is due to the various recent fixes in this branch. In particular, it never used to consider the UTF8ness of the pattern string, or whether the pattern contained code blocks. It works by checking the output of 'use re debug' (and -Dr if available) to detect how many times the pattern was compiled. This file then is also an indirect test of whether the correct debugging output is generated, i.e. whether the regcomp.c or ext/re/re_comp.c versions of functions are getting called.
* Update List-Util to CPAN version 1.25Chris 'BinGOs' Williams2012-06-121-20/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [DELTA] 1.25 -- Sat Mar 24 13:10:13 UTC 2012 * Restore back-compat. to perl 5.6 (thanks to Zefram) 1.24 -- Thu Mar 22 18:10:10 UTC 2012 * Update to 1.24 release version (no other changes since 1.23_04). 1.23_04 -- Sat Mar 10 00:16:16 UTC 2012 * RT#72700 Fix off-by-two on string literal length 1.23_03 -- Tue Sep 14 10:09:59 CDT 2010 * Min perl version supported for build is not 5.008 * Dropped the pure-Perl implementation of both Scalar::- and List::Util. * RT#61118 Fix assumption in sum() that once magic, always magic 1.23_02 -- Tue Mar 30 11:09:15 CDT 2010 * Fix first() and reduce() to check the callback first; &first(1) is now illigal. [gfx] * Fix reduce() to allow XSUB callbacks [gfx] * Fix first() to allow XSUB callbacks [gfx] * Resolve RT #55763: tainted() doesn't do SvGETMAGIC(sv) [gfx] * define CvISXSUB so older perl versions will still compile 1.23_01 -- Mon Mar 22 08:24:11 CDT 2010 * Add failing tests; SVt_RV is not directly SvROK [gfx] * Implement openhandle() in XS (with extra tests) [gfx] * Modernize *.pm [gfx] * Modernize ListUtil.xs [gfx] * Add ppport.h [gfx] * Fix an overloading issue on sum(), and add tests for overloading [gfx] * Small tweaks for minstr()/maxstr() [gfx] * Optimize dualvar() [gfx] * Use sv_copypv() instead of SvPV() and sv_setpv() [gfx] * avoid non-portable warnings
* Remove win32/config*.gc64noxSteve Hay2012-06-091-2/+0
| | | | | | | | | The ARCHPREFIX setting from makefile.mk is now passed into config_sh.PL and config_h.PL and used to apply the changes necessary to the config*.gc64 files to support both the usual gcc suite and the x86_64-w64-mingw32-gcc suite (used when GCCCROSS=define). Also remove the redundant INST_VER argument in the config_h.PL calls.
* Add alloccopstash provisionally to the APIFather Chrysostomos2012-06-081-0/+1
|
* [perl #112272] test link()'s error returns (TODO)Tony Cook2012-05-281-0/+1
|
* new perldeltaZefram2012-05-261-0/+1
|
* remove Version-Requirements from core!Ricardo Signes2012-05-241-7/+0
| | | | | | | | It has been replaced by CPAN::Meta::Requirements, which is just the same code, renamed. It was renamed (and now removed) to avoid conflicts on case-sensitive filesystems between version::Internals and Version::Requirements.
* [rt #111730] TODO tests for vec() with large offsetsTony Cook2012-05-211-0/+1
|
* [rt #100514] regression test for read() with a 2Gib offsetTony Cook2012-05-211-0/+1
|
* create the new perldelta for 5.17.0Ricardo Signes2012-05-201-0/+1
|
* Revert fixes for [rt.cpan.org #61577]Ricardo Signes2012-05-141-3/+0
| | | | | | | | | | | | These changes introduced some test failures on AIX and other platforms, and rather than dig around for more failing platforms during the RCx period, we will revert this to reapply later when it is more tested. This reverts commit 01b71c89216c9f447494638a5d108e13c45c3863. This reverts commit b6903614db213f07401367249dc84c896eb099b7. This reverts commit 271d04eee1933df0971f54f7bf9a5ca3575e7e6a.
* remove perl515*delta, add perl5160deltaRicardo Signes2012-05-101-11/+0
|
* [rt.cpan.org #61577] sockdomain and socktype undef on newly accepted socketsDaniel Kahn Gillmor2012-05-101-0/+3
| | | | | | | | | | | | | | There appears to be a flaw in IO::Socket where some IO::Socket objects are unable to properly report their socktype, sockdomain, or protocol (they return undef, even when the underlying socket is sufficiently initialized to have these properties). The attached patch should cover IO::Socket objects created via accept(), new_from_fd(), new(), and anywhere else whose details haven't been properly cached. No new code should be executed on IO::Socket objects whose details are already cached and present.
* Label UTF8 cleanupBrian Fraser2012-03-251-0/+2
| | | | | This meant changing LABEL's definition in perly.y, so most of this commit is actually from the regened files.
* op.c: Warnings cleanup.Brian Fraser2012-03-231-0/+1
|
* Create a perldelta for 5.15.9Abigail2012-03-201-0/+1
|
* Move the example git bisect shell script from perlgit.pod to Porting/Nicholas Clark2012-03-191-0/+1
| | | | | This both avoids cluttering the flow of manpage with auxiliary data, and saves the user from having to extract the script from within the pod file.
* Add a placeholder man page for perltodo, directing people to look at git.Nicholas Clark2012-03-191-0/+1
| | | | (Done as a second commit to avoid confusing git's rename detection.)
* Move the todo list from pod/ to Porting/Nicholas Clark2012-03-191-1/+1
| | | | | | Installing the Perl 5 to-do list as a manpage isn't that useful to anyone, as it's a snapshot that becomes increasingly out of date. Much better to point anyone interested in contributing direct to git HEAD, to view the current list.
* Separate the POD from the corelist data in Module::CoreListChris 'BinGOs' Williams2012-03-151-0/+1
| | | | See https://github.com/CPAN-API/metacpan-web/issues/485
* Upgrade Socket to 2.000Abigail2012-03-141-0/+1
|
* Add Porting/sync-with-cpanAbigail2012-03-131-0/+1
| | | | It helps if you actually commit the changes you make. :(
* List the new files that came with the upgrade of CPAN-MetaAbigail2012-03-131-0/+6
|
* new patch for Term::ReadLine event loop supportRicardo Signes2012-03-121-1/+2
| | | | | | | https://rt.perl.org/rt3/Ticket/Display.html?id=108470 This is more work from Darin McBride and Rocco Caputo to get the event loop code offered earlier working, tested, and documented.
* The parser should always close the file handle that it opened.Nicholas Clark2012-02-271-0/+1
| | | | | | | | | | | | | | | | | Previously it would leave the file handle open if it was (equal to) stdin, on the assumption that this must have been because no script name was supplied on the interpreter command line, so the interpreter was defaulting to reading the script from standard input. However, if the program has closed STDIN, then the next file handle opened (for any reason) will have file descriptor 0. So in this situation, the handle that require opened to read the module would be mistaken for the above situation and left open. Effectively, this leaked a file handle. This is now fixed, by explicitly tracking from parser creation time whether it should keep the file handle open, and only setting this flag when defaulting to reading the main program from standard input. This resolves RT #37033.
* Improve the tests for -xNicholas Clark2012-02-271-0/+1
| | | | | Test the error message generated when -x can't find a "#!perl" line. Test that this error message still appears when -x is used with -e.
* Remove ExtUtils-CBuilder's MANIFEST.SKIPDavid Golden2012-02-231-1/+0
| | | | | Apparently, 'make distclean' tries to use it in confusing and counterproducive ways. Easier to remove it than fix the other.
* ExtUtils::CBuilder: add support informationDavid Golden2012-02-221-0/+1
| | | | | Adds a documentation note about support. Adds a README.patching file with instructions for bumping versions, Changes, etc.
* ExtUtils::CBuilder - add dual-life support filesDavid Golden2012-02-221-0/+5
| | | | | Adds Makefile.PL, LICENSE, etc. and updates Changes for work in blead from 5.14.0
* Add perl5158delta.podMax Maischein2012-02-211-0/+1
|
* Fix bug in pod2html crossreferencingMarc Green2012-02-201-0/+2
|
* ...and add unadded fileRicardo Signes2012-02-191-0/+1
|
* remove MANIFEST entries for pruned filesRicardo Signes2012-02-191-2/+0
|
* Add t/porting/pending-author.t, fixing a limitation of t/porting/authors.tNicholas Clark2012-02-181-0/+1
| | | | | | | | | t/porting/pending-author.t attempts to avoid the problem of C<make test> passing 100%, but the subsequent git commit causing F<t/porting/authors.t> to fail, because it uses a "new" e-mail address. This test is only run if one is building inside a git checkout, B<and> one has made local changes. Otherwise it's skipped.
* Add t/porting/perlfunc.t so that porting tests catch problems with perlfuncNicholas Clark2012-02-181-0/+1
| | | | | | | | | | | | | Pod::Functions is now generated from pod/perlfunc.pod by ext/Pod-Functions/Functions_pm.PL If it can't parse pod/perlfunc.pod, it will abort, which will cause the build to break. It's really not possible for it to carry on, hence aborting is the only option. However, innocent-seeming changes to documentation shouldn't break the build, and we expect everyone to run (at least) the porting tests, hence this test, to catch such problems before it's too late. To avoid duplicating the parsing logic, we make Functions_pm.PL take a --tap option, to test that all is well.
* Change ext/Pod-Functions to generate Functions.pm from a Perl script.Nicholas Clark2012-02-181-1/+2
| | | | For the first step, simply output the current file in one hit.
* Move Pod::Functions from lib/ to ext/Nicholas Clark2012-02-181-2/+2
|
* Update Socket to CPAN version 1.98Chris 'BinGOs' Williams2012-02-171-0/+1
| | | | | | | | | | | | | [DELTA] 1.98 CHANGES: * Detect presence of sockaddr_in6 and ipv6_mreq; conditionally build pack/unpack functions on this * Back-compatibility improvements for older perls, back as far as 5.6.1 (thanks Zefram) * Fix for picky compilers or platforms on which size_t doesn't printf() correctly by %d * Suppress some harmless compile-time warnings about unused variables
* add wrap_op_checker() API functionZefram2012-02-111-0/+1
| | | | | This function provides a convenient and thread-safe way for modules to hook op checking.
* Add regen/mk_invlists.pl, charclass_invlists.hKarl Williamson2012-02-091-0/+2
| | | | | | | This will be used to generate compile-time inversion lists in a C hdr file that can be included in programs for initialization speed Three simple inversion lists are included in this initial commit
* Move lib/Pod/t/eol.t to ext/Pod-Html, as it's testing Pod::Html.Nicholas Clark2012-02-081-1/+1
|
* in Carp, fix circular dep on Perl 5.6Zefram2012-02-071-0/+1
| | | | | | The circular dependency between Carp and warnings was causing trouble with new versions of Carp against very old versions of warnings (versions that were bundled with Perl 5.6). No functional effect on blead.
* Update MANIFESTMarc Green2012-02-061-0/+2
|
* Update MANIFEST with dist/Data-Dumper/t/qr.tFather Chrysostomos2012-02-031-0/+1
|
* Revert "Add IO::Socket::IP 0.08 as dual-life module"Ricardo Signes2012-02-031-16/+0
| | | | This reverts commit 497f7de2d964167330f7260590736e9adb18899c.
* Add IO::Socket::IP 0.08 as dual-life modulePaul Evans2012-02-031-0/+16
| | | | Signed-off-by: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
* in Carp, avoid vivifying utf8 stash on Perl 5.6Zefram2012-02-031-0/+2
| | | | | | Carp was breaking swash loading on Perl 5.6. Makes no difference to blead, where the utf8 stash is previvified, but it matters for the CPAN release.
* Move typemap documentation to its own fileSteffen Mueller2012-02-011-2/+3
| | | | | | | | | | Sadly, the POD in Typemap.xs was not easily extractable into a POD file at build time, so it now lives in a separate POD file from the start. Makes keeping documentation and testing efforts in sync marginally harder, but it's probably the right trade-off. What's left to do is finding the right places in other POD files to refer to this old/new documentation.
* Inline the XS-Typemap typemap fileSteffen Mueller2012-02-011-1/+0
|