Max Maischein [Thu, 10 Sep 2009 17:26:44 +0000]
Move t/op/rt69056.t test into t/op/subst.t
Vincent Pit [Thu, 10 Sep 2009 16:50:32 +0000]
No tabs in MANIFEST
Vincent Pit [Thu, 10 Sep 2009 16:44:04 +0000]
Add missing entries to .gitignore for EU::{CBuilder,ParseXS}
Vincent Pit [Thu, 10 Sep 2009 16:20:06 +0000]
Don't modify namelen in the first half of gv_stashpvn()
As it may be needed later when the lookup failed.
This fixes [perl #69066].
However, from now, "package ::" and "package foo::" respectively introduce
the "::" and "foo::" packages. Deciding if this is the correct thing to do
ought to be addressed separately.
Abhijit Menon-Sen [Thu, 10 Sep 2009 16:36:33 +0000]
Add rt69056.t to MANIFEST
Max Maischein [Thu, 10 Sep 2009 11:15:02 +0000]
Add test for [perl #69056], 2nd try
Nicholas Clark [Thu, 10 Sep 2009 16:20:34 +0000]
b78fd7160df92414 forgot to add ExtUtils::MakeMaker's MANIFEST
(It's needed by 00compile.t)
Nicholas Clark [Thu, 10 Sep 2009 15:58:33 +0000]
Move ExtUtils::MakeMaker from lib to ext.
t/lib/TieOut.pm is now from Test::Simple.
Only the tests needed changing. The exceptions to BEGIN/PERL_CORE/INC
boilerplate removal were two instances of "../.." becoming "../../../..",
and changing an %INC test from "strict.pm" to "less.pm", as TestInit causes
strict to be loaded via a relative path, when it loads File::Spec to convert
all paths from relative to absolute.
Nicholas Clark [Thu, 10 Sep 2009 13:48:25 +0000]
Move ExtUtils::CBuilder from lib to ext.
Rafael Garcia-Suarez [Thu, 10 Sep 2009 13:32:13 +0000]
Ignore MANIFEST.SKIP once installed in lib/
Nicholas Clark [Thu, 10 Sep 2009 13:09:23 +0000]
Move ExtUtils::ParseXS from lib to ext.
Rafael Garcia-Suarez [Thu, 10 Sep 2009 12:57:57 +0000]
The "package;" syntax was removed in 5.10
Chris Williams [Thu, 10 Sep 2009 12:54:09 +0000]
Update Archive::Tar to CPAN version 1.54
* important changes in version 1.54 10/09/2009
- Apply a patch from Niko Tyni (ntyni@debian.org) that resolves RT #48879;
As seen in [rt.cpan.org #48879], although the recommended way of
retrieving the last error is to use an instance method ($tar->error),
the returned value is effectively global: an error in one Archive::Tar
instance changes the error string of another instance.
This change separates the error strings from each other while keeping
the (deprecated) global value of $Archive::Tar::error pointing to the
last error regardless of its instance.
We also support calling error() as a class method (Archive::Tar->error).
In this case it returns the global value, which matches the old behaviour.
Nicholas Clark [Thu, 10 Sep 2009 12:26:22 +0000]
Move ExtUtils::Manifest from lib to ext.
Nicholas Clark [Thu, 10 Sep 2009 10:57:00 +0000]
Add entries for ExtUtils::Command to ext and lib's .gitignore files.
Accidentally omitted from
ca2a24a91ea0f76bbbb7e7309638f99ade8d37e5, which
moved ExtUtils::Command from lib to ext.
Nicholas Clark [Thu, 10 Sep 2009 10:08:39 +0000]
Move ExtUtils::Install from lib to ext.
Nicholas Clark [Thu, 10 Sep 2009 09:56:30 +0000]
Move ExtUtils::Constant to from lib to ext.
Nicholas Clark [Thu, 10 Sep 2009 10:06:03 +0000]
Map ParseWords.pm to .../lib/Text/ParseWords.pm so that it can be used.
make_ext.pl needs to add a directory containing Text/ParseWords.pm into
$ENV{PERL5LIB} so that ExtUtils::MakeMaker can require it on Win32.
Hopefully the upstream CPAN distribution will be re-shuffled to match.
Nicholas Clark [Thu, 10 Sep 2009 09:10:24 +0000]
Redo moving Text::ParseWords from lib to ext
This reverts commit
3fcda861606b23c12f4356df2a20543dc1c1779b, but adds
ext/Text-ParseWords to the list of directories that make_ext.pl should put
into $ENV{PERL5LIB}.
Conflicts:
MANIFEST
Nicholas Clark [Thu, 10 Sep 2009 08:50:13 +0000]
Restore Text::ParseWords to the manifest, accidentally removed by
c2426eea.
Nicholas Clark [Wed, 9 Sep 2009 21:22:36 +0000]
Replace the uuencoded perlexe.ico.packd with the genuine, binary, article.
Given that git is perfectly happy to store binary files efficiently, and
serve them anonymously, we no longer need to jump through the ASCII-only hoops
of the Perforce/APC combination.
Nicholas Clark [Wed, 9 Sep 2009 18:24:01 +0000]
Move the Text::Tabs use statement to the top of the program, with the others.
Jerry D. Hedden [Wed, 9 Sep 2009 15:05:58 +0000]
Fix broken ABSTRACTs
Nicholas Clark [Wed, 9 Sep 2009 16:27:42 +0000]
Clarify what @toolchain means in the context of make_ext.pl
Nicholas Clark [Wed, 9 Sep 2009 15:41:28 +0000]
Move ExtUtils::Command from lib to ext.
Yves Orton [Wed, 9 Sep 2009 12:20:10 +0000]
Fix RT69056 - postive GPOS leads to segv on first match
http://rt.perl.org/rt3/Ticket/Display.html?id=69056
In perl 5.8 we get this:
$ perl -Mre=debug -le '$_="foo"; s/(.)\G//g; print'
Freeing REx: `","'
Compiling REx `(.)\G'
size 7 Got 60 bytes for offset annotations.
first at 3
1: OPEN1(3)
3: REG_ANY(4)
4: CLOSE1(6)
6: GPOS(7)
7: END(0)
GPOS minlen 1
Offsets: [7]
1[1] 0[0] 2[1] 3[1] 0[0] 4[2] 6[0]
Matching REx `(.)\G' against `foo'
Setting an EVAL scope, savestack=3
0 <> <foo> | 1: OPEN1
0 <> <foo> | 3: REG_ANY
1 <f> <oo> | 4: CLOSE1
1 <f> <oo> | 6: GPOS
failed...
Setting an EVAL scope, savestack=3
1 <f> <oo> | 1: OPEN1
1 <f> <oo> | 3: REG_ANY
2 <fo> <o> | 4: CLOSE1
2 <fo> <o> | 6: GPOS
failed...
Setting an EVAL scope, savestack=3
2 <fo> <o> | 1: OPEN1
2 <fo> <o> | 3: REG_ANY
3 <foo> <> | 4: CLOSE1
3 <foo> <> | 6: GPOS
failed...
Setting an EVAL scope, savestack=3
3 <foo> <> | 1: OPEN1
3 <foo> <> | 3: REG_ANY
failed...
Match failed
foo
Freeing REx: `"(.)\\G"'
In perl 5.10 we get this:
$ perl -Mre=debug -le '$_="foo"; s/(.)\G//g; print'
Compiling REx "(.)\G"
Final program:
1: OPEN1 (3)
3: REG_ANY (4)
4: CLOSE1 (6)
6: GPOS (7)
7: END (0)
anchored(GPOS) GPOS:1 minlen 1
Matching REx "(.)\G" against "foo"
-1 <> <%0foo> | 1:OPEN1(3)
-1 <> <%0foo> | 3:REG_ANY(4)
0 <> <foo> | 4:CLOSE1(6)
0 <> <foo> | 6:GPOS(7)
0 <> <foo> | 7:END(0)
Match successful!
Segmentation fault
With this patch we get:
$ ./perl -Ilib -Mre=debug -le '$_="foo"; s/(.)\G//g; print'
Compiling REx "(.)\G"
Final program:
1: OPEN1 (3)
3: REG_ANY (4)
4: CLOSE1 (6)
6: GPOS (7)
7: END (0)
anchored(GPOS) GPOS:1 minlen 1
Matching REx "(.)\G" against "foo"
Match failed
foo
Freeing REx: "(.)\G"
Which seems to me to be a net improvement.
Craig A. Berry [Wed, 9 Sep 2009 12:08:20 +0000]
Remove circular dependency of nonxsext and makeppport.
Introduced in
d1a2168615d31496c65bd27adf6b78d44834861c.
Nicholas Clark [Wed, 9 Sep 2009 10:18:15 +0000]
Redo move Text::Tabs/Text::Wrap from lib to ext.
This reverts commit
a1095a4f24eae80e3fe213e9767581fedc24e3ac,
which reverted commit
4f87fa576f174a31e6d8fdb08cae76e644395db0.
Conflicts:
MANIFEST
ext/.gitignore
lib/.gitignore
Nicholas Clark [Wed, 9 Sep 2009 09:28:57 +0000]
Build the nonxs extensions before running mktables.
Nicholas Clark [Tue, 8 Sep 2009 20:56:38 +0000]
Move constant from lib/ to ext/
This is the first step in moving dual-life toolchain modules into ext.
H.Merijn Brand [Wed, 9 Sep 2009 07:32:05 +0000]
error 1539: Cannot do arithmetic with pointers to objects of unknown size.
Nicholas Clark [Wed, 9 Sep 2009 04:15:41 +0000]
Use readdir rather than glob, beacuse perlglob.exe is unavailable at this time.
Craig A. Berry [Wed, 9 Sep 2009 00:08:10 +0000]
Disambiguate extensions, nonxs_ext, and dynamic_ext on VMS.
Nicholas Clark [Tue, 8 Sep 2009 21:38:46 +0000]
win32/FindExt.pm thought that ext/List-Util was a nonxs extension.
(It needed a change analogous to
75cdbdc152433e4b - prior to that, Configure
was looking for ext/$dir/$leaf.xs, which was no longer a valid test after the
upgrade to Scalar-List-Utils 1.21 (
2ff286160a117d4e), which renamed Utils.xs
to ListUtil.xs)
win32/FindExt.pm still considers IO-Compress as a nonxs extension.
Configure was special-cased to treat this as dynamic (ie architecture
specific) in
4cc80fc4cbbd82e2.
Nicholas Clark [Tue, 8 Sep 2009 20:48:45 +0000]
Can't build Dynamic extensions without DynaLoader.pm in place.
Add a dependency to ensure the order is correct.
Nicholas Clark [Tue, 8 Sep 2009 20:33:22 +0000]
Build the nonxs extensions before building DynaLoader.
(
d1a2168615d3 isn't enough to ensure that the toolchain is in lib/ before we
start processing XS code.)
Nicholas Clark [Tue, 8 Sep 2009 15:30:46 +0000]
Build the nonxs extensions before running mkppport.
(It requires several modules that we'd like to move from lib/ to ext/
In turn, as it runs before the dynamic extensions are built, it means that
all modules *they* require at configure and build time will already be in lib,
which simplifies things considerably. We then only need to worry about a
subset of pure-perl modules in ext/ that require each other to build.)
Chris Williams [Tue, 8 Sep 2009 13:48:31 +0000]
Move Memoize from lib/ to ext/
Chris Williams [Tue, 8 Sep 2009 12:25:04 +0000]
Moved libnet from lib/ to ext/
Chris Williams [Tue, 8 Sep 2009 10:02:09 +0000]
Move CPAN from lib/ to ext/
Rafael Garcia-Suarez [Tue, 8 Sep 2009 07:59:08 +0000]
Remove Mac OS classic instructions from perlrun
Rafael Garcia-Suarez [Tue, 8 Sep 2009 06:41:38 +0000]
Remove code specific to MacOS Classic from core tests
Nicholas Clark [Tue, 8 Sep 2009 08:46:45 +0000]
On Win32 and VMS, split building dynamic and nonxs extensions into two targets.
Craig A. Berry [Tue, 8 Sep 2009 02:15:58 +0000]
Implement nonxs_ext on VMS.
Craig A. Berry [Tue, 8 Sep 2009 01:44:41 +0000]
No longer need to look for extensions under vms/ext.
Vincent Pit [Mon, 7 Sep 2009 21:54:35 +0000]
Don't install .gitignore files
Vincent Pit [Mon, 7 Sep 2009 21:15:33 +0000]
Move Digest from lib to ext
Chris Williams [Mon, 7 Sep 2009 21:30:55 +0000]
Removed the MAP from Parse-CPAN-Meta
[22:28] <@vincent> BinGOs: I think you should also have removed the
MAP entry for Parse::CPAN::Meta in Porting/Maintainers.pl
[22:30] <@BinGOs> yarp.
Chris Williams [Mon, 7 Sep 2009 21:24:58 +0000]
Move Parse::CPAN::Meta from lib/ to ext/
Vincent Pit [Mon, 7 Sep 2009 19:29:58 +0000]
Move CGI.pm from lib to ext
Vincent Pit [Mon, 7 Sep 2009 18:09:44 +0000]
Move autodie from lib to ext
Nicholas Clark [Mon, 7 Sep 2009 14:48:18 +0000]
Use $ENV{PERL_LIB} rather than an -I argument to pass in the library location.
(This will scale to multiple library locations, and to subprocess perls, which
is necessary if we want to move build-time dual-life modules from lib to
ext/...)
Chris Williams [Mon, 7 Sep 2009 15:22:13 +0000]
Update IPC::Cmd to CPAN version 0.50
Changes for 0.50 Mon Sep 7 16:17:32 BST 2009
=================================================
* Apply patch from Steve Hay that fixes a test failure in
core since the move from lib/ to ext/ [RT #49490]
Chris Williams [Mon, 7 Sep 2009 14:19:12 +0000]
Update IPC::Cmd to CPAN version 0.48
Chris Williams [Mon, 7 Sep 2009 13:48:24 +0000]
Updated Maintainers.pl with the location of the new CPANPLUS::Dist::Build CPAN package
Yves Orton [Mon, 7 Sep 2009 13:28:50 +0000]
needed something to change
Chris Williams [Mon, 7 Sep 2009 13:23:34 +0000]
Updated CPANPLUS::Dist::Build to CPAN version 0.40
This fixes the new location of CPANPLUS' bin/ directory in the ext/ tree
under core.
Nicholas Clark [Mon, 7 Sep 2009 12:54:44 +0000]
Use an explicit case-sensitive glob, so that the patterns work everywhere.
Chris Williams [Mon, 7 Sep 2009 12:37:12 +0000]
Fix space in MANIFEST to make it a tab
Chris Williams [Mon, 7 Sep 2009 11:37:41 +0000]
Merge branch 'blead' of ssh://perl5.git.perl.org/gitroot/perl into blead
Conflicts:
MANIFEST
Chris Williams [Mon, 7 Sep 2009 11:31:13 +0000]
Move CPANPLUS from lib/ to ext/
Nicholas Clark [Mon, 7 Sep 2009 11:01:51 +0000]
Fix MANIFEST - spaces are not allowed and we have a test for that.
Chris Williams [Mon, 7 Sep 2009 09:40:32 +0000]
Merge branch 'blead' of ssh://perl5.git.perl.org/gitroot/perl into blead
Chris Williams [Mon, 7 Sep 2009 09:38:45 +0000]
Replaced the CPANPLUS::Dist::Build packed test files with their binary equivalents.
Rafael Garcia-Suarez [Mon, 7 Sep 2009 09:33:58 +0000]
Make Encode's piconv.t test run within the core
Rafael Garcia-Suarez [Mon, 7 Sep 2009 09:30:18 +0000]
Add missing files from the Encode CPAN distribution
Rafael Garcia-Suarez [Mon, 7 Sep 2009 09:27:55 +0000]
Make Encode tests work with $PERL_CORE in the environment
Chris Williams [Mon, 7 Sep 2009 09:32:22 +0000]
Move CPANPLUS::Dist::Build from lib/ to ext/
Chris Williams [Mon, 7 Sep 2009 08:50:26 +0000]
Merge branch 'blead' of ssh://perl5.git.perl.org/gitroot/perl into blead
Chris Williams [Mon, 7 Sep 2009 08:49:53 +0000]
Updated Module::Loaded to CPAN version 0.06
Rafael Garcia-Suarez [Mon, 7 Sep 2009 08:33:41 +0000]
Upgrade to Encode 2.37
(leave out the test t/piconv.t for now)
Abhijit Menon-Sen [Mon, 7 Sep 2009 07:48:45 +0000]
Revert "Remove glob for ExtUtils::MakeMaker maintainers list ..."
This reverts commit
b891574d804847cc41ef9f68116b70cf3e8ff603 because
Nick said "So I'd prefer to know *why* Win32's globbing behaves wrongly,
rather than just patching the symptoms."
George Greer [Mon, 7 Sep 2009 03:17:48 +0000]
Remove glob for ExtUtils::MakeMaker maintainers list as case-insensitive filesystems make it pick up too much.
Salvador Ortiz Garcia [Sun, 6 Sep 2009 21:41:57 +0000]
Corrupt filename when setting %INC entry in a @INC hook
The code in pp_ctl.c after calling an @INC hook blindly assumes that the
SV setted by the user in %INC is an SVPV (SvPOK true) for setting the
filename. So when the user uses other scalar types, the output of
__FILE__, warn, die, caller, etc. shows random garbage.
Nicholas Clark [Sun, 6 Sep 2009 17:50:13 +0000]
Remove redundant parameters to build_extension().
$ext isn't used. $return_dir is just $up, and $up can be calculated from
$ext_dir. $lib_dir and the default for $perl can be inferred from $up.
Nicholas Clark [Sun, 6 Sep 2009 17:19:28 +0000]
Remove support for building in vms/ext, as it's not needed post
26dd53a23187.
Zefram [Sun, 6 Sep 2009 15:29:43 +0000]
Fix [perl #66970] Incorrect coderef in MODIFY_CODE_ATTRIBUTES
Attribute handlers being applied to a temporary CV has actually been
reported as a bug, #66970. The attached patch fixes the bug, by
changing the order in which things happen: attributes are now applied
after the temporary CV has been merged into the existing CV or has
otherwise been added to the appropriate GV.
The change breaks part of Attribute::Handlers. Part of A:H searches the
package to find the name of the sub to which a :ATTR attribute is being
applied, and the correct time at which to launch that search depends
crucially on the order in which the CV construction events occur. So
this patch also includes a change to A:H, to make it detect which way
things happen. The resulting A:H works either way, which is essential
for its dual-life nature.
Rafael Garcia-Suarez [Sun, 6 Sep 2009 15:10:27 +0000]
Remove spaces in MANIFEST
Rafael Garcia-Suarez [Sun, 6 Sep 2009 14:10:37 +0000]
Add new Unicode files to MANIFEST
Rafael Garcia-Suarez [Sun, 6 Sep 2009 14:09:00 +0000]
Merge commit 'khwilliamson/U5.1' into blead
Chris Williams [Sun, 6 Sep 2009 11:44:04 +0000]
learning curves++ Had neglected to update the util generators for ptar* scripts.
Chris Williams [Sun, 6 Sep 2009 11:34:34 +0000]
Move Archive::Tar from lib/ to ext/
Chris Williams [Sun, 6 Sep 2009 10:55:03 +0000]
Neglected to rename all the changed Archive::Extract test files in the MANIFEST. Done so.
Chris Williams [Sun, 6 Sep 2009 10:51:41 +0000]
The Archive::Extract non-packed src files were ignored due to a .gitignore file. Fixed.
Chris Williams [Sun, 6 Sep 2009 10:49:21 +0000]
Move Archive::Extract from lib/ to ext/
Nicholas Clark [Sat, 5 Sep 2009 19:23:14 +0000]
Set @INC to ../lib if we're running in t, else modules can't be required.
(Either explicity, or the possible implicit require utf8; inside the regexp
engine.)
Craig A. Berry [Sat, 5 Sep 2009 19:17:28 +0000]
Rename batch log file more reliably in configure.com.
Thanks to Carl Friedberg for the suggestion.
Nicholas Clark [Sat, 5 Sep 2009 17:43:07 +0000]
In PERL_CORE under ext, the %INC path for strict changes if you reload it.
I'm guessing that it's loaded as a side effect of the "relative-to-absoulte"
code in TestInit, before paths are forced to be absolute. Changing the test to
use a module that hasn't been loaded (less) makes it pass reliably.
Yves Orton [Sat, 5 Sep 2009 12:45:50 +0000]
convert a bunch of duplicated mortalization logic in sv.c into a private file level macro
Karl Williamson [Sat, 5 Sep 2009 03:32:27 +0000]
Output failures in an always printable form
Yves Orton [Sat, 5 Sep 2009 11:23:01 +0000]
add a note about the previous patches from gfx
gfx [Sat, 5 Sep 2009 07:46:34 +0000]
call_method() uses newSVpvn_flags(), instead of sv_2mortal(newSVpv(...)), because newSVpvn_flags() is now optimized.
Signed-off-by: Yves Orton <demerphq@gemini.(none)>
gfx [Sat, 5 Sep 2009 07:33:08 +0000]
Remove an unnecessary NULL check, which is already checked other places
Signed-off-by: Yves Orton <demerphq@gemini.(none)>
gfx [Sat, 5 Sep 2009 07:26:42 +0000]
newSVpvn_flags() does mortalization in place, instead of calling sv_2mortal()
Signed-off-by: Yves Orton <demerphq@gemini.(none)>
Nicholas Clark [Fri, 4 Sep 2009 16:36:31 +0000]
Remove PERL_CORE boilerplate from IO::Zlib's tests.
(Without this they don't pass in their new location in ext.)
Nicholas Clark [Fri, 4 Sep 2009 15:33:58 +0000]
Acknowledge that Dijkmat BV funded the TPF grant.
Remove 5.10.1 specific statement that isn't right for 5.11.0.
Chris Williams [Fri, 4 Sep 2009 16:01:47 +0000]
Move IO::Zlib from lib/ to ext/
Chris Williams [Fri, 4 Sep 2009 15:16:24 +0000]
Move Params::Check from lib/ to ext/
Chris Williams [Fri, 4 Sep 2009 15:05:05 +0000]
Move Object::Accessor from lib/ to ext/
Chris Williams [Fri, 4 Sep 2009 14:52:27 +0000]
Moved Module::Load from lib/ to ext/