| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
| |
[DELTA]
The attached patch makes the CPAN distribution of 'threads'
compatible with with v5.13.2 and later.
|
|
|
|
| |
This reverts commit 213a5d2cb3aa3b5c246b024e7e9c9903eba9decf.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Locale::Maketext - Import dev changes from CPAN
This patch imports the changes which are on CPAN but not already
pulled into blead for Locale::Maketext.
1. New test file t/70_fail_auto.t - Test for CPAN RT #25877
2. Convert t/30_local.t to Test::More (the other files were already
done in blead. This one was missed.
3. Add a cookbook pod file.
4. Changelog entries which were on CPAN but not in blead.
|
| |
|
|
|
|
|
|
|
| |
Bus error
Same in 5.11.4.
This is related to bug 71254. It turns out that globs *can* stringify
emptily (see bug 65582). This patch makes DD more resilient.
|
|
|
|
|
|
| |
[DELTA]
Change to the documented email address
|
| |
|
|
|
|
|
|
|
|
|
| |
nite loop during _compile when working with tainted values. The issue
was triggered by perlbugs 60378,27344. Both have been resolved but
they are still broken in perl 5.12.x and earlier.
The patch simply assigns $_[1] to a variable and uses that
from then on.
|
| |
|
|
|
|
|
|
| |
Attached is a revised patch to upgrade to v1.79. I needed to fix
the tests in the newly added t/kill2.t file. The blead version will
be 1.79_01.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
With the previous commit:
$ ./perl -Ilib -MO=Deparse -e'"foo" =~ (1?/foo/:/bar/)'
'foo' =~ /foo/;
-e syntax OK
So the Deparse output no longer matches what perl does. With
this commit:
$ ./perl -Ilib -MO=Deparse -e'"foo" =~ (1?/foo/:/bar/)'
'foo' =~ ($_ =~ /foo/);
-e syntax OK
|
|
|
|
|
| |
This is just a version bump to make the versions in blead and CPAN
match.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This adds (?^...) to signify to use the default regex modifiers for the
cluster or embedded pattern-match modifier change. The major purpose of
this is to simplify regex stringification, so that "^" is output in
place of "-xism". As a result, the stringification will not change in
the future when new regex modifiers are added, so tests, etc. that rely
on a particular stringification will have to change now, but never
again.
Code that needs to work properly with both old- and new-style regexes
can use something like the following:
# Accept both old and new-style stringification
my $modifiers = (qr/foobar/ =~ /\Q(?^/) ? '^' : '-xism';
This construct is Ben Morrow's idea.
|
| |
|
| |
|
| |
|
|
|
|
| |
The XS file has been changed since 5.13.4
|
| |
|
|
|
|
| |
I wish it would just be deleted. Apparently no one ever uses the one in blead.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
It has been broken on 5.6.1 and earlier for quite some time now, and it isn't
clear why. If anyone wants 5.6.2 support back, patches are welcome.
|
| |
|
|
|
|
| |
Patch by Yasushi Nakajima (rt.cpan.org #61262)
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
This was only needed for testing in the core, when the core's tests all ran
the top level t/ directory. Without this getting in the way, we don't need
t/TEST and t/harness to run the tests with absolute paths in @INC. Testing in
the CPAN distribution is unaffected.
|
| |
|
| |
|
|
|
|
|
|
|
| |
This was only needed for testing in the core, when the core's tests all ran in
the top level t/ directory. Without this getting in the way, we don't need
t/TEST and t/harness to run the tests with absolute paths in @INC. Testing in
the CPAN distribution is unaffected.
|
| |
|
|
|
|
| |
The 1.91 upload to CPAN was broken, so we have to bump $VERSION again.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Closes CPANRT#51824.
|
|
|
|
| |
Closes CPANRT#61204.
|
|
|
|
|
|
|
|
|
| |
Commit e5c69c9b added the test to dist/constant/t/constant.t, probably because
the bug was initially reported in combination with constant.pm. However, it was
a core bug in gv_init and can be reproduced easily without constant.pm.
With this change dist/constant can be safely synced back to CPAN without having
to SKIP or TODO this particular test.
|
| |
|
| |
|
|
|
|
|
| |
Based on work by Father Chrysostomos <sprout@cpan.org>, but all
my fault.
|
|
|
|
| |
Purely maintenance. No functional changes.
|
| |
|
|
|
|
|
| |
There is no reason (I can think of) to track and ship the PathTools CPAN
change log in core perl.
|
|
|
|
|
| |
It's there for Rafael's convenience when doing CPAN releases, as there's no
separate base repository.
|