platform/upstream/perl.git
14 years agoAdded a sucker for the August 20 release
Jesse Vincent [Tue, 16 Feb 2010 16:06:01 +0000 (08:06 -0800)]
Added a sucker for the August 20 release

14 years agoUpdated release schedule through July 2010
Jesse Vincent [Tue, 16 Feb 2010 15:40:08 +0000 (07:40 -0800)]
Updated release schedule through July 2010

14 years agoRemove unused variable
H.Merijn Brand [Tue, 16 Feb 2010 11:15:11 +0000 (12:15 +0100)]
Remove unused variable

14 years agoDoc adjustment about lock(), by Daniel Frederick Crisman
Rafael Garcia-Suarez [Mon, 15 Feb 2010 23:00:32 +0000 (00:00 +0100)]
Doc adjustment about lock(), by Daniel Frederick Crisman

14 years agoAdd our repository URL as a 'repository' key in META.yml.
Nicholas Clark [Mon, 15 Feb 2010 14:56:54 +0000 (14:56 +0000)]
Add our repository URL as a 'repository' key in META.yml.

14 years agoBump version's $VERSION
Steve Hay [Sun, 14 Feb 2010 23:52:41 +0000 (23:52 +0000)]
Bump version's $VERSION

version.pm was changed by 61a0cb1c57a82d328c88c2dd525c91495edb2db9
and Jesse confirms that the $VERSION should be bumped as a result.

14 years agoMake distclean work again on Win32
Steve Hay [Sun, 14 Feb 2010 23:49:20 +0000 (23:49 +0000)]
Make distclean work again on Win32

Cf. 71eaafb1e6768e777bc805cc8490b55c6e77da64

14 years agoFirst stab at a perl5115delta.pod with just under a week to go
Steve Hay [Sun, 14 Feb 2010 22:46:51 +0000 (22:46 +0000)]
First stab at a perl5115delta.pod with just under a week to go

14 years agoUpdate AUTHORS and Porting/checkAUTHORS.pl with new names and aliases
Steve Hay [Sun, 14 Feb 2010 19:58:51 +0000 (19:58 +0000)]
Update AUTHORS and Porting/checkAUTHORS.pl with new names and aliases

14 years agoConvert Perl_sv_pos_u2b_proper() to Perl_sv_pos_u2b_flags().
Nicholas Clark [Sun, 14 Feb 2010 12:31:44 +0000 (12:31 +0000)]
Convert Perl_sv_pos_u2b_proper() to Perl_sv_pos_u2b_flags().

Change from a value/return offset pointer to passing a Unicode offset, and
returning a byte offset. The optional length value/return pointer remains.
Add a flags argument, passed to SvPV_flags(). This allows the caller to
specify whether mg_get() should be called on sv.

14 years agoRemove a vestigial STRLEN case and convert a label to lowercase.
Nicholas Clark [Sun, 14 Feb 2010 16:04:35 +0000 (16:04 +0000)]
Remove a vestigial STRLEN case and convert a label to lowercase.

(Tweaking 777f7c561610dee6.)

14 years agoRemoves 32-bit limit on substr arguments. The full range of IV and UV is available...
Eric Brine [Fri, 12 Feb 2010 01:28:29 +0000 (20:28 -0500)]
Removes 32-bit limit on substr arguments. The full range of IV and UV is available for the pos and len arguments, with safe conversion to STRLEN where it's smaller than an IV.

14 years ago[PATCH] Support for SystemTap's dtrace compatibility layer and issues linking miniperl
H.Merijn Brand [Sat, 13 Feb 2010 18:09:53 +0000 (19:09 +0100)]
[PATCH] Support for SystemTap's dtrace compatibility layer and issues linking miniperl

SystemTaps' dtrace binary lives in /usr/bin, so add a check to Configure
for that.

Additionally link the dtrace .o file into miniperl, which is an issue
with SystemTap and also reported on p5p to affect OpenSolaris in

Signed-off-by: H.Merijn Brand <h.m.brand@xs4all.nl>
14 years agoBump Safe's version to 2.22
Rafael Garcia-Suarez [Thu, 11 Feb 2010 21:57:31 +0000 (22:57 +0100)]
Bump Safe's version to 2.22

14 years agobump to CPAN 1.12. Only Makefile.PL changes not affecting CORE
Reini Urban [Thu, 11 Feb 2010 11:56:39 +0000 (12:56 +0100)]
bump to CPAN 1.12. Only Makefile.PL changes not affecting CORE

14 years agoSilence spurious warning in new Safe test
Rafael Garcia-Suarez [Thu, 11 Feb 2010 21:36:54 +0000 (22:36 +0100)]
Silence spurious warning in new Safe test

This warning is emitted by perl when re-throwing the exception, so add a
TODO test to suppress it. However, fixing that will imply a core change.

14 years agoRemove npl addresses from "my" files
Robin Barker [Thu, 11 Feb 2010 16:39:13 +0000 (16:39 +0000)]
Remove npl addresses from "my" files

14 years agodelete orphaned text
Robin Barker [Thu, 11 Feb 2010 17:57:45 +0000 (17:57 +0000)]
delete orphaned text

14 years agoRevised opening line of perl man page
David Golden [Thu, 11 Feb 2010 20:04:54 +0000 (15:04 -0500)]
Revised opening line of perl man page

This patch was reviewed with Larry Wall via IRC.  His stipulation was
that both historical glossses be preserved to humorous effect.

14 years agorevert perl -h changes
David Golden [Thu, 11 Feb 2010 19:15:10 +0000 (14:15 -0500)]
revert perl -h changes

14 years agoBug in Safe 2.21 re propagating exceptions
Tim Bunce [Thu, 11 Feb 2010 10:29:17 +0000 (11:29 +0100)]
Bug in Safe 2.21 re propagating exceptions

An exception thrown from a closure gets lost.
I've boiled it down to this:

   perl -MSafe -e 'Safe->new->reval(q{sub { die @_ }})->(qq{ok\n})'

That should die with "ok".

The problem is that the closure that wraps any returned code ref if
threads are enabled is acting as an eval block so hiding the exception.

14 years ago[perl #72590] Panic if 'use strict' and forget 'my'
Rafael Garcia-Suarez [Thu, 11 Feb 2010 09:32:01 +0000 (10:32 +0100)]
[perl #72590] Panic if 'use strict' and forget 'my'

That bug happens when we detect a compilation error in the statement
being parsed, and when the continuation of the parsing of that same
statement needs to load the file unicore/Name.pl via charnames.pm.
In that case perl gets confused, fails to parse Name.pl because
the parser is already in error, and also fails to properly rewind
to a normal error-reporting state.

This patch does not attempt to fix the whole error-reporting process;
instead, it simply prevents perl from trying to load charnames if it has
already recorded a parse error. So, in a way, it hides the bug under
the carpet. However, this is a safe fix, suitable for a code-freeze
stage.

14 years agokeep -h to 80 characters or less
David Golden [Thu, 11 Feb 2010 03:54:43 +0000 (22:54 -0500)]
keep -h to 80 characters or less

14 years agoHelp new users learn how to get help
David Golden [Thu, 11 Feb 2010 03:13:59 +0000 (22:13 -0500)]
Help new users learn how to get help

14 years agoNote a change in warnings::register's behavior in 5.10 that wasn't documented at...
Jesse Vincent [Thu, 11 Feb 2010 02:05:08 +0000 (18:05 -0800)]
Note a change in warnings::register's behavior in 5.10 that wasn't documented at the time. Resolves [perl #62522]

14 years agoPer Jesse, ignoring the skipping the tests form threaded OpenBSD
Steve Peters [Thu, 11 Feb 2010 01:41:48 +0000 (19:41 -0600)]
Per Jesse, ignoring the skipping the tests form threaded OpenBSD
builds.  See RT #71504 for the mess that this is avoiding.

14 years agoFix for non-regexps being upgraded to SVt_REGEXP
Nicholas Clark [Tue, 9 Feb 2010 16:11:34 +0000 (08:11 -0800)]
Fix for non-regexps being upgraded to SVt_REGEXP

$ ./perl -lwe '$a = ${qr//}; $a = 2; print re::is_regexp(\$a)'
1

It is possible for arbitrary SVs (eg PAD entries) to be upgraded to
SVt_REGEXP.  (This is new with first class regexps)

Whilst the example above does not SEGV, it will be possible to write
code that will cause SEGVs (or worse) at the point when the scalar is freed,
because the code in sv_clear() assumes that all scalars of type
SVt_REGEXP *are* regexps, and passes them to pregfree2(), which assumes that
pointers within are valid.

14 years agoregenerated Configure after backport cat ../perl/Configure >Configure
H.Merijn Brand [Tue, 9 Feb 2010 15:44:30 +0000 (16:44 +0100)]
regenerated Configure after backport cat ../perl/Configure >Configure

Please keep them sorted

14 years agoMerge branch 'blead' of ssh://perl5.git.perl.org/gitroot/perl into blead
Jesse Vincent [Tue, 9 Feb 2010 15:35:19 +0000 (07:35 -0800)]
Merge branch 'blead' of ssh://perl5.git.perl.org/gitroot/perl into blead

* 'blead' of ssh://perl5.git.perl.org/gitroot/perl:
  Warn people not to set PERL_CORE in XS
  In embed.fnc the 'E' flag should imply 'X', but doesn't.
  revise perldelta note on strict and lax version rules
  expand flag descriptions in in embed.fnc
  alphabetically sort flag descriptions in embed.fnc
  [perl #72156]: substitute `less -R' for `less' for groff's new usage
  INSTALL doc fix: calling the test suite using -MTestInit changed since it moved to top level (which happened in commit 30b6e59101b252c20a6b50b95203d1e2c6016604)
  changed "an UTF..." to "a UTF..." in all Pods

14 years agoDocument unless () {} elsif () {} else {} and tell people not to use it.
Jesse Vincent [Tue, 9 Feb 2010 15:31:16 +0000 (07:31 -0800)]
Document unless () {} elsif () {} else {} and tell people not to use it.

Note to the deprecation police: this is not a language construct
deprecation. Just a bit of healthy advice about coding style.
Who knows. In a decade, this may be the lynchpin of "postmodern perl".

14 years ago"unless else" wasn't previously documented, though it was valid syntax
Reini Urban [Tue, 9 Feb 2010 15:17:00 +0000 (07:17 -0800)]
"unless else" wasn't previously documented, though it was valid syntax

14 years agoWarn people not to set PERL_CORE in XS
David Mitchell [Mon, 8 Feb 2010 21:07:56 +0000 (21:07 +0000)]
Warn people not to set PERL_CORE in XS

14 years agoIn embed.fnc the 'E' flag should imply 'X', but doesn't.
Jan Dubois [Mon, 8 Feb 2010 03:06:50 +0000 (19:06 -0800)]
In embed.fnc the 'E' flag should imply 'X', but doesn't.

14 years agorevise perldelta note on strict and lax version rules
David Golden [Mon, 8 Feb 2010 02:25:20 +0000 (21:25 -0500)]
revise perldelta note on strict and lax version rules

14 years agoexpand flag descriptions in in embed.fnc
David Mitchell [Sun, 7 Feb 2010 20:12:18 +0000 (20:12 +0000)]
expand flag descriptions in in embed.fnc

For each flag, try to list what precise effects that flag has

14 years agoalphabetically sort flag descriptions in embed.fnc
David Mitchell [Sun, 7 Feb 2010 18:44:34 +0000 (18:44 +0000)]
alphabetically sort flag descriptions in embed.fnc

14 years ago[perl #72156]: substitute `less -R' for `less' for groff's new usage
Josh ben Jore [Mon, 1 Feb 2010 16:05:13 +0000 (08:05 -0800)]
[perl #72156]: substitute `less -R' for `less' for groff's new usage
of ANSI escape codes by setting $Config{less} (and thereby
$Config{pager}).

14 years agoINSTALL doc fix: calling the test suite using -MTestInit changed since it moved to...
Slaven Rezic [Sat, 6 Feb 2010 22:14:56 +0000 (23:14 +0100)]
INSTALL doc fix: calling the test suite using -MTestInit changed since it moved to top level (which happened in commit 30b6e59101b252c20a6b50b95203d1e2c6016604)

14 years agochanged "an UTF..." to "a UTF..." in all Pods
Slaven Rezic [Sat, 6 Feb 2010 22:19:39 +0000 (23:19 +0100)]
changed "an UTF..." to "a UTF..." in all Pods

14 years agoRemoving invalid port L<> links from Version documentation updates.
Jesse Vincent [Sun, 7 Feb 2010 02:06:56 +0000 (18:06 -0800)]
Removing invalid port L<> links from Version documentation updates.

14 years agoMerge branch 'blead' of ssh://perl5.git.perl.org/gitroot/perl into blead
Jesse Vincent [Sun, 7 Feb 2010 02:02:40 +0000 (18:02 -0800)]
Merge branch 'blead' of ssh://perl5.git.perl.org/gitroot/perl into blead

* 'blead' of ssh://perl5.git.perl.org/gitroot/perl:
  move version details to version::Internals and other clean up
  document version::is_strict/is_lax
  Document usage of version regexps
  Export and document is_lax and is_strict functions
  note that delete/exists ARRAY_ELEM should be avoided
  Don't try to calculate a time over the conservative failure boundary.

14 years agoImprovements to 31c9a3 - CPAN code did depend on the previous behaviour of blessing...
Nicholas Clark [Sun, 7 Feb 2010 01:55:32 +0000 (17:55 -0800)]
Improvements to 31c9a3 - CPAN code did depend on the previous behaviour of blessing filehandles into FileHandle

It turns out that it's not quite as simple as blessing into IO::File.
If you do (just) that, then it breaks any existing code that does
C<require IO::Handle;> to allow it to call methods on file handles,
because they're blessed into IO::File, which isn't loaded. (Note this code
doesn't assume that methods in IO::Seekable are there to be called)

So, it all should work if you also set @IO::File:::ISA correctly?
That way, code that assumes that methods from IO::Handle can be called will
work. However, gv.c now starts complaining (but not failing) if IO::Handle,
IO::Seekable and Exporter aren't present, because it goes looking for
methods in them.

So the solution seems to be to set @IO::File::ISA *and* create (empty)
stashes for the other 3 packages. Patch appended, but not applied.

14 years agomove version details to version::Internals and other clean up
David Golden [Sat, 6 Feb 2010 20:09:20 +0000 (15:09 -0500)]
move version details to version::Internals and other clean up

14 years agodocument version::is_strict/is_lax
David Golden [Sat, 6 Feb 2010 19:12:21 +0000 (14:12 -0500)]
document version::is_strict/is_lax

14 years agoDocument usage of version regexps
John Peacock [Wed, 27 Jan 2010 01:47:54 +0000 (20:47 -0500)]
Document usage of version regexps

Move the discussion of what each regexp coveres to version::Internals
and limit the discussion in the main POD to just include examples.

14 years agoExport and document is_lax and is_strict functions
John Peacock [Tue, 26 Jan 2010 02:49:55 +0000 (21:49 -0500)]
Export and document is_lax and is_strict functions

Allow the is_lax and is_strict functions to be optionally
exported to the caller's namespace (without having to use Exporter).

Document the usage of is_lax and is_strict, plus nuke some trailing
spaces.

14 years agonote that delete/exists ARRAY_ELEM should be avoided
Ricardo Signes [Sat, 6 Feb 2010 18:17:01 +0000 (13:17 -0500)]
note that delete/exists ARRAY_ELEM should be avoided

addreses final determination of http://rt.perl.org/rt3/Public/Bug/Display.html?id=72064

14 years agoDon't try to calculate a time over the conservative failure boundary.
Michael G. Schwern [Sun, 31 Jan 2010 11:22:08 +0000 (03:22 -0800)]
Don't try to calculate a time over the conservative failure boundary.

Otherwise gmtime(2**66) will cause a very, very, very long loop and
DOS Perl.

Add a test that very, very large times don't send gmtime and localtime into a loop

Had to fix some revealed mistakes in op/time.t when warnings were turned on.

Fix Time::gmtime and Time::localtime tests to match the new limits of gm/localtime.

14 years agoUpgrade CPAN to 1.94_55
Steffen Mueller [Thu, 4 Feb 2010 19:18:45 +0000 (20:18 +0100)]
Upgrade CPAN to 1.94_55

14 years agoRevert "Update to MIME-Base64 3.09"
Jesse Vincent [Wed, 3 Feb 2010 20:41:13 +0000 (12:41 -0800)]
Revert "Update to MIME-Base64 3.09"

I chatted with Gisle and he confirmed that this didn't fix a
release-blocking issue. Since we're frozen for 5.12, he agreed that we
should back it out.

This reverts commit 5e58db16ffcf34442d0ba4b645757884324e35c2.

14 years agoMerge branch 'blead' of ssh://perl5.git.perl.org/gitroot/perl into blead
Jesse Vincent [Wed, 3 Feb 2010 17:44:19 +0000 (09:44 -0800)]
Merge branch 'blead' of ssh://perl5.git.perl.org/gitroot/perl into blead

* 'blead' of ssh://perl5.git.perl.org/gitroot/perl:
  Tests for RT #72432

14 years agoAllow arbitrary whitespace between NAME and VERSION in "package NAME VERSION;" statements
Jesse Vincent [Wed, 3 Feb 2010 17:43:08 +0000 (09:43 -0800)]
Allow arbitrary whitespace between NAME and VERSION in "package NAME VERSION;" statements

Fixes [perl #72432]

14 years agoTests for RT #72432
Abigail [Wed, 3 Feb 2010 17:25:46 +0000 (18:25 +0100)]
Tests for RT #72432

14 years agoadd a watchdog for schwern's time overflow tests.
Jesse Vincent [Wed, 3 Feb 2010 15:23:58 +0000 (07:23 -0800)]
add a watchdog for schwern's time overflow tests.

14 years agoAdd sanity checks for far, far distant dates.
Michael G. Schwern [Sat, 30 Jan 2010 09:41:59 +0000 (01:41 -0800)]
Add sanity checks for far, far distant dates.

Can't go beyond y2**31 because of the 32 bit year

Adds a test that we can make it to at least +/-2**52.  This is the
missing test for 455f2c6c92e42c1a9e31268cbd491ba661f99882 which kicked this
whole thing off.

Signed-off-by: Michael G. Schwern <schwern@pobox.com>
14 years agoUpdate to MIME-Base64 3.09
Gisle Aas [Tue, 2 Feb 2010 22:22:15 +0000 (23:22 +0100)]
Update to MIME-Base64 3.09

Fixes issue where the Quoted-Printable encoder would sometimes output
lines that were 77 characters long.  The max line length should be 76.

14 years agoDiagnostic improvements to better understand why lib/Benchark.t test 13 has been...
Todd Rinaldo [Tue, 2 Feb 2010 17:27:37 +0000 (09:27 -0800)]
Diagnostic improvements to better understand why lib/Benchark.t test 13 has been failing smoke randomly.

Fix 1: Original code tests for less than but not =. I think that if these values are the same, the test should pass. I don't know the code well enough to be 100% sure. D
Fix 2: convert ok() to cmp_ok() for better diagnostic messages from smoke tests when they happen.
Fix 3: convert print to diag() so it will properly print through harness.

14 years ago[PATCH] Add gcc predefined macros to $Config{cppsymbols} on GNU/Hurd.
H.Merijn Brand [Mon, 1 Feb 2010 11:58:57 +0000 (12:58 +0100)]
[PATCH] Add gcc predefined macros to $Config{cppsymbols} on GNU/Hurd.

This is needed at least by h2ph, otherwise the generated .ph files
choke on missing __LONG_MAX__ and similar definitions.

Patch by Samuel Thibault <sthibault@debian.org>.

Signed-off-by: H.Merijn Brand <h.m.brand@xs4all.nl>
14 years agogmtime/localtime are busted around 2**48
Michael G Schwern [Sun, 31 Jan 2010 10:53:43 +0000 (02:53 -0800)]
gmtime/localtime are busted around 2**48

Michael G Schwern wrote:
> Anyhow, I'm willing to let that drop, but I want figure out A) why its
> failing so early because it might be masking a bug, this is not
> predicted behavior, and most importantly B) to get it to error, or at
> least warn.
>
> I know B is possible, I did it for Time::y2038.  I'll figure that part
> out and try to dig into A.  I would like to call B a blocker for 5.12.

Found the bug, patch attached.

v_tm_tday is an NV, so casting time to an integer will cause an overflow
2**31 days after 1970 or somewhere between 2**47 and 2**48.  Not sure why the
compiler didn't warn about that.

This makes it work until the year overflows.

As for putting in a warning, there's two options:
1) A few days before the 32 bit year overflows.
2) At some reasonable point before there's too much floating point inaccuracy.

The possibility of long doubles will make #2 difficult to nail down, but I'll
be happy with +/- 2**53.

--
24. Must not tell any officer that I am smarter than they are, especially
     if it's true.
     -- The 213 Things Skippy Is No Longer Allowed To Do In The U.S. Army
            http://skippyslist.com/list/

From 9e940e610ac5b2fbb09a554f505963094a4a0745 Mon Sep 17 00:00:00 2001
From: Michael G. Schwern <schwern@pobox.com>
Date: Sun, 31 Jan 2010 02:24:50 -0800
Subject: [PATCH] Type conversion bug in gmtime64 that was causing it to crap out around 2**48

Signed-off-by: H.Merijn Brand <h.m.brand@xs4all.nl>
14 years agoClarify warning that e.g. \q is reserved
Karl Williamson [Sat, 30 Jan 2010 19:06:05 +0000 (12:06 -0700)]
Clarify warning that e.g. \q is reserved

Currently the meaning of e.g. \q is simply 'q', with a warning
generated.  Elsewhere it is documented that this means that \q is
thus a reserved term, available for Perl to co-opt in some future
release.  But the warning doesn't say that.  Clarify it.

14 years agoFix POD typo
Frank Wiegand [Sat, 30 Jan 2010 08:54:32 +0000 (09:54 +0100)]
Fix POD typo

14 years agosuggestion to use GET URL
Ricardo Signes [Fri, 29 Jan 2010 00:19:13 +0000 (19:19 -0500)]
suggestion to use GET URL

14 years agoFix a broken pod link
Jesse Vincent [Thu, 28 Jan 2010 23:39:42 +0000 (15:39 -0800)]
Fix a broken pod link

14 years ago* Fill out the docs on the yada to show it as a satand in for statements, not expressions
brian d foy [Thu, 28 Jan 2010 20:22:43 +0000 (14:22 -0600)]
* Fill out the docs on the yada to show it as a satand in for statements, not expressions

14 years agoMerge branch 'blead' of ssh://perl5.git.perl.org/gitroot/perl into blead
Abigail [Thu, 28 Jan 2010 20:16:50 +0000 (21:16 +0100)]
Merge branch 'blead' of ssh://perl5.git.perl.org/gitroot/perl into blead

14 years agoAdd a few regression tests, making sure ... is parsed as a range operator
Abigail [Thu, 28 Jan 2010 20:16:33 +0000 (21:16 +0100)]
Add a few regression tests, making sure ... is parsed as a range operator

14 years agoClean up 5.12 delta pod concerning regexes and Unicode changes
Karl Williamson [Thu, 28 Jan 2010 16:20:54 +0000 (09:20 -0700)]
Clean up 5.12 delta pod concerning regexes and Unicode changes

14 years agoResort MANIFEST.
Nicholas Clark [Thu, 28 Jan 2010 11:37:28 +0000 (11:37 +0000)]
Resort MANIFEST.

14 years agoRemove duplicate entries from MANIFEST
Steve Hay [Wed, 27 Jan 2010 22:54:16 +0000 (22:54 +0000)]
Remove duplicate entries from MANIFEST

14 years agoAdd Porting/check-cpan-pollution to MANIFEST
Steve Hay [Wed, 27 Jan 2010 22:46:23 +0000 (22:46 +0000)]
Add Porting/check-cpan-pollution to MANIFEST

14 years ago* Note that the flip-flop operator maintains state across subroutine calls
brian d foy [Wed, 27 Jan 2010 03:54:32 +0000 (21:54 -0600)]
* Note that the flip-flop operator maintains state across subroutine calls

14 years agoCheck for Maintainers.pl updates
Steffen Mueller [Tue, 26 Jan 2010 16:31:52 +0000 (17:31 +0100)]
Check for Maintainers.pl updates

Make Porting/check-cpan-pollution test whether a given, presumably safe
commit to dual-lived modules also updated Porting/Maintainers.pl.

14 years agoPorting/ tool: Check for bad commits against cpan/
Steffen Mueller [Tue, 26 Jan 2010 16:23:38 +0000 (17:23 +0100)]
Porting/ tool: Check for bad commits against cpan/

Porting/check-cpan-pollution runs a series of tests to find potentially
unsafe commits that change dual-lived modules and prints a summary.

14 years agoA small typo in perlrun, spotted by Olivier Raginel.
Vincent Pit [Tue, 26 Jan 2010 09:47:54 +0000 (10:47 +0100)]
A small typo in perlrun, spotted by Olivier Raginel.

14 years agocomment grammar, indentation
Jim Cromie [Sat, 23 Jan 2010 16:35:37 +0000 (09:35 -0700)]
comment grammar, indentation

14 years agorevise package NAME VERSION entry in perl5120delta
David Golden [Mon, 25 Jan 2010 20:55:52 +0000 (15:55 -0500)]
revise package NAME VERSION entry in perl5120delta

14 years agocorrect a typo
Ricardo Signes [Mon, 25 Jan 2010 17:00:28 +0000 (12:00 -0500)]
correct a typo

11:58 <@Zefram> "deference" is a typo
11:58 <@Zefram> (in that context)
11:58 <@rjbs> ...and it should be what?
11:58 <@Zefram> should be "dereference"

14 years agoapply a second set of eyes to perl5120delta
Ricardo Signes [Mon, 25 Jan 2010 16:31:22 +0000 (11:31 -0500)]
apply a second set of eyes to perl5120delta

* fix some grammatical and spelling errors
* adjust some usage nits
* remove irrelevant data
* reorganize some lists that became interspersed

14 years agoMerge branch 'blead' of ssh://perl5.git.perl.org/gitroot/perl into blead
Jesse Vincent [Mon, 25 Jan 2010 12:54:34 +0000 (04:54 -0800)]
Merge branch 'blead' of ssh://perl5.git.perl.org/gitroot/perl into blead

* 'blead' of ssh://perl5.git.perl.org/gitroot/perl:
  Update CPANPLUS::Dist::Build to cpan version 0.46
  Change from a hard coded temporary file name in lib/AnyDBM_File.t.

14 years agoAdd perl5120delta to pod.lst and MANIFEST
Jesse Vincent [Mon, 25 Jan 2010 12:54:15 +0000 (04:54 -0800)]
Add perl5120delta to pod.lst and MANIFEST

14 years agoUpdate CPANPLUS::Dist::Build to cpan version 0.46
Chris Williams [Mon, 25 Jan 2010 10:51:13 +0000 (10:51 +0000)]
Update CPANPLUS::Dist::Build to cpan version 0.46

  Extract from Changes file
  =========================

  0.46 Sat Jan 23 07:52:19 GMT 2010
    - actually make the prereq resolving fallback to _build/ querying
      if the 'prereq_data' action fails. *facepalm*

Resolves an issue in prereq resolution where the failure of using
'Build prereq_data' would not fallback to querying _build/ data.

Highlighted by EekBoek distribution which bundled an older version of
Module::Build.

14 years agoChange from a hard coded temporary file name in lib/AnyDBM_File.t.
Nicholas Clark [Mon, 25 Jan 2010 10:27:38 +0000 (10:27 +0000)]
Change from a hard coded temporary file name in lib/AnyDBM_File.t.

Previously lib/AnyDBM_File.t and lib/DBM_Filter/t/*t shared the same hard coded
filename for their test database, causing a race condition during parallel
testing, and some spurious test failures.

14 years agoMinor typo fix
Jesse Vincent [Sun, 24 Jan 2010 19:52:32 +0000 (11:52 -0800)]
Minor typo fix

14 years agoFirst full pass at perl5120delta
Jesse Vincent [Sun, 24 Jan 2010 19:52:05 +0000 (11:52 -0800)]
First full pass at perl5120delta

14 years agoAdded a stub of the Perl 5.12.0 delta which will be a rollup of the various perl...
Jesse Vincent [Sun, 24 Jan 2010 18:23:06 +0000 (10:23 -0800)]
Added a stub of the Perl 5.12.0 delta which will be a rollup of the various perl 5.11.x deltas

14 years agoUpdate to podlators 2.3.0
Rafael Garcia-Suarez [Fri, 22 Jan 2010 16:19:17 +0000 (17:19 +0100)]
Update to podlators 2.3.0

14 years agoClarify in INSTALL what an extension name looks like:
David Mitchell [Fri, 22 Jan 2010 13:16:27 +0000 (13:16 +0000)]
Clarify in INSTALL what an extension name looks like:

is it IPC::SysV or IPC/SysV, or... ?

14 years agofix SEGV in /\N{...}/
David Mitchell [Fri, 22 Jan 2010 12:57:27 +0000 (12:57 +0000)]
fix SEGV in /\N{...}/

A simple program like the following could coredump:

    use charnames ':full';
    /\N{LATIN SMALL LETTER E}/;

The moral being, make sure sp is synced on return from call_sv()
*before* using the stack!

(Was a regression since 5.10)

14 years agoupdate Mark Jason Dominus's name in AUTHORS
Ricardo Signes [Thu, 21 Jan 2010 20:44:56 +0000 (15:44 -0500)]
update Mark Jason Dominus's name in AUTHORS

14 years agoinitialize undefined version objects with zero, not 'undef'
David Golden [Thu, 21 Jan 2010 17:18:11 +0000 (12:18 -0500)]
initialize undefined version objects with zero, not 'undef'

14 years agoAdd USE_PERL_ATOF to the list of -V's compile-time options.
Nicholas Clark [Thu, 21 Jan 2010 16:07:59 +0000 (16:07 +0000)]
Add USE_PERL_ATOF to the list of -V's compile-time options.

14 years agoRevert "remove defunct "Changes" file step from RMG"
Ricardo Signes [Thu, 21 Jan 2010 13:43:24 +0000 (08:43 -0500)]
Revert "remove defunct "Changes" file step from RMG"

This reverts commit 6642915e130e2410e5cc7d1e00a39aa7b8774d05.

14 years agoremove defunct "Changes" file step from RMG
Ricardo Signes [Thu, 21 Jan 2010 01:23:16 +0000 (20:23 -0500)]
remove defunct "Changes" file step from RMG

14 years agoRemove CPAN's Makefile.PL; let make_ext.pl write one for us.
Nicholas Clark [Wed, 20 Jan 2010 17:22:32 +0000 (17:22 +0000)]
Remove CPAN's Makefile.PL; let make_ext.pl write one for us.

Nothing in CPAN's Makefile.PL was pertinent to building as part of the core
distribution, but code within it caused `make` after `make clean` to fail.
Resolves RT #72218

14 years agoMake perl's magic variables in gv.c grep-able
Ævar Arnfjörð Bjarmason [Wed, 20 Jan 2010 03:48:15 +0000 (03:48 +0000)]
Make perl's magic variables in gv.c grep-able

It can be hard especially for those unfamiliar with the source to find
where variables like $` and $[ are set up, now they're just a ack -Q
away.

14 years agoUpdate META.yml for Module::CoreList
Rafael Garcia-Suarez [Wed, 20 Jan 2010 17:09:54 +0000 (18:09 +0100)]
Update META.yml for Module::CoreList

14 years agocreate perl5115delta and update other versions
Ricardo Signes [Wed, 20 Jan 2010 17:04:05 +0000 (12:04 -0500)]
create perl5115delta and update other versions

14 years agomake clean deletes runtests, so add a rule and dependency to regenerate it.
Nicholas Clark [Wed, 20 Jan 2010 16:43:26 +0000 (16:43 +0000)]
make clean deletes runtests, so add a rule and dependency to regenerate it.

14 years agoadd -u to core-cpan-diffs to filter modules
Ricardo Signes [Wed, 20 Jan 2010 14:52:31 +0000 (09:52 -0500)]
add -u to core-cpan-diffs to filter modules

14 years agoperlfunc tweak for package NAME VERSION
David Golden [Wed, 20 Jan 2010 12:13:11 +0000 (07:13 -0500)]
perlfunc tweak for package NAME VERSION