David Golden [Wed, 22 Jul 2009 21:20:56 +0000]
v-strings are not deprecated
With version objects, we need them for use MODULE VERSION syntax. This
patch removes the deprecation note.
Michael G. Schwern [Sun, 12 Jul 2009 09:33:47 +0000]
This is a test for rt.cpan.org 60508 which I can't figure out where else to put it or what the underlying problem is, but it has to go somewhere.
Michael G. Schwern [Sun, 12 Jul 2009 09:30:26 +0000]
Make fresh_perl_is() strip newlines off the expected result just like it does the result so tests don't weirdly fail just because the author didn't realize it was normalizing newlines.
David Mitchell [Wed, 22 Jul 2009 12:52:11 +0000]
ExtUtils::ParseXS 2.2002
Vincent Pit [Wed, 22 Jul 2009 12:35:49 +0000]
Teach goto how to cross given/when blocks
Rafael Garcia-Suarez [Wed, 22 Jul 2009 09:55:18 +0000]
Merge branch 'nobangs' into blead
Vincent Pit [Wed, 22 Jul 2009 09:48:22 +0000]
Ignore t/op/require.t byproducts
Rafael Garcia-Suarez [Wed, 22 Jul 2009 09:24:12 +0000]
Document the yada yada operator in perldelta
Rafael Garcia-Suarez [Wed, 22 Jul 2009 09:20:35 +0000]
Remove !!! and ??? operators
Those were adding non backwards compatible syntax, unlike "...",
as pointed out in bug #67646.
Niko Tyni [Wed, 22 Jul 2009 09:22:44 +0000]
Fix File::Copy::copy with pipes on GNU/kFreeBSD
Quoting Petr Salinger in http://bugs.debian.org/537555:
The Copy tries to detect whether source and dest are the same files.
Unfortunately, on the GNU/kFreeBSD the kernel returns for all pipes
as device and inode numbers just zero. See pipe_stat() in
http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/kern/sys_pipe.c
Patch by Petr Salinger, tests by Niko Tyni.
Rafael Garcia-Suarez [Tue, 21 Jul 2009 12:02:25 +0000]
Simplify the code that sets $_ in given()
$_ is guaranteed to be lexical here, because the parser did an allocmy
when parsing the given() statement.
Rafael Garcia-Suarez [Tue, 21 Jul 2009 08:44:57 +0000]
perltodo: truncate() prototype
Rafael Garcia-Suarez [Tue, 21 Jul 2009 08:38:55 +0000]
perltodo: forbid labels with keyword names
Abigail [Mon, 20 Jul 2009 20:23:04 +0000]
Another typo, as spotted by Offer Kaye <offer.kaye@gmail.com>.
chromatic [Mon, 20 Jul 2009 20:14:29 +0000]
Typo Fixes in Diagnostic
Signed-off-by: Abigail <abigail@abigail.be>
Josh ben Jore [Mon, 20 Jul 2009 18:05:51 +0000]
Revert "Test that `use feature' doesn't leak a scalar during s///ee"
This reverts commit
cda5e2ec34321ed347095f583f979be84943ec52 which
duplicated something already commited in
fa13de9435b2f7be1099b9202ae6e26021b00ba8.
Josh ben Jore [Mon, 20 Jul 2009 14:39:25 +0000]
Test that `use feature' doesn't leak a scalar during s///ee
David Mitchell [Mon, 20 Jul 2009 12:59:35 +0000]
minor updates to release_managers_guide.pod
David Mitchell [Mon, 20 Jul 2009 12:51:56 +0000]
Mention DTrace in INSTALL.
Also explain that a debugging build is slower
Yves Orton [Sun, 19 Jul 2009 23:21:15 +0000]
forgot the version Bump - sigh
Yves Orton [Sun, 19 Jul 2009 23:18:06 +0000]
sync to 1.52_03 (hopefully properly this time)
David Mitchell [Sun, 19 Jul 2009 21:56:20 +0000]
(mostly) sync blead with ExtUtils::Install 1.52_02
(Installed.t still divergent)
Craig A. Berry [Sun, 19 Jul 2009 20:46:31 +0000]
Be sure to find the vmsish pragma for one-liners in exit.t.
Already in upstream at:
http://github.com/schwern/test-more/commit/
c842e916e4aa2e34c36afb3a930979d363121236
Yves Orton [Sun, 19 Jul 2009 20:40:14 +0000]
bring up to date with ExtUtils-Install v1.52_02
Tony Cook [Sat, 18 Jul 2009 19:49:04 +0000]
mro::method_changed_in(..) ignores AUTOLOAD (RT #60220)
Patch modified to use a boolean rather than an integer for tracking
mro changes in S_glob_assign_ref and test fixed not to warn.
URL: http://rt.perl.org/rt3/Ticket/Display.html?id=60220
From the bug report:
-----------------------------------------------------------------
When creating a subclass dynamically, and when adding
AUTOLOAD dynamically into the parent class, then that
AUTOLOAD is not seen in the method cache, even after
a call to "mro::method_changed_in('Parent')".
It only appears in the method cache after a call
to mro::invalidate_all_method_caches().
The attached test file demonstrates the problem.
This was detected while trying to solve bug 40159 in DBIx::DataModel.
-----------------------------------------------------------------
Message-ID: <
20081031132021.GA21341@mars.tony.develop-help.com>
Vincent Pit [Sat, 18 Jul 2009 21:31:25 +0000]
Fix some nits in release_managers_guide.pod
David Mitchell [Sat, 18 Jul 2009 21:06:38 +0000]
add extra note about CoreList to release_managers_guide.pod:
David Mitchell [Sat, 18 Jul 2009 20:58:43 +0000]
add info on updating CoreList and tags to release_managers_guide.pod
David Mitchell [Sat, 18 Jul 2009 20:57:08 +0000]
Provisional update of CoreList for 5.10.1
(this will be done again just prior to RC1, but I wanted to try it out.
$VERSION has been bumped to what it will be for the final release.
David Mitchell [Sat, 18 Jul 2009 20:36:14 +0000]
add basic usage info to Porting/corelist.pl
Andy Dougherty [Thu, 16 Jul 2009 20:52:39 +0000]
Configure should sort inc_version_list
In searching for previous versions of perl, Configure
forgets to sort the directories according to version number,
so 5.10 sorts later than 5.8.
Specifically, without this patch, you'd get something like:
inc_version_list='5.8.9 5.8.8 5.10.0/i686-linux 5.10.0'
i.e. 5.10.0 would be searched *after* 5.8.8.
With this patch, you get something like:
inc_version_list='5.10.0/i686-linux 5.10.0 5.8.9 5.8.8'
Craig A. Berry [Sat, 18 Jul 2009 15:38:02 +0000]
Some of the TODOs in switches.t actually work on VMS.
David Mitchell [Sat, 18 Jul 2009 00:10:20 +0000]
fix pod2usage2 test for all case-insensitive systems
This test, when run from core in t/, finds pod/usage.pod before
../lib/Pod/Usage.pm. Remove '.' from the search path for all core
platforms, not just cygwin.
David E. Wheeler [Fri, 10 Jul 2009 17:14:39 +0000]
Fix ExtUtils::Installed failure with -Duserelocatableinc
This patch fixes an issue with ExtUtils::Installed when Perl is compiled with
userelocatableinc. It looks a though the issue is that `%Config` contains
local paths when built with -Duserelocatableinc, some, at least, with a
leading "./". The solution is to use `File::Spec->canonpath()` to clean up the
path before comparing two paths that are otherwise the same. A better solution
might be to use some sort of other utility function that checks that paths are
the same even if they're not spelled the same. I didn't notice such a function
in File::Spec, alas.
Also, I'm not sure what effects this change might have on VMS; it deserves
further testing there.
David Mitchell [Fri, 17 Jul 2009 20:38:44 +0000]
document why SQLite tests are exlcuded
Nicholas Clark [Fri, 17 Jul 2009 16:35:57 +0000]
Allocate XPV* memory using sizeof() and the offset of the first real member.
This avoids tripping over alignment differences between X* and x*_allocated,
because x*_allocated doesn't have a double in it.
Tidy up the documentation in comments. Eliminate relative_STRUCT_OFFSET() as
it is no longer used. Eliminate use of xpv_allocated, xpviv_allocated,
xpvav_allocated, xpvcv_allocated and xpvfm_allocated, but leave them in the
headers as they are publicly visible.
Nicholas Clark [Fri, 17 Jul 2009 15:17:58 +0000]
Eliminate struct regexp_allocated and xpvio_allocated.
Calculate memory allocation using regexp and XPVIO, and the offset of the first
real structure member. This avoids tripping over alignment differences between
X* and x*_allocated, because x*_allocated doesn't have a double in it.
Rainer Tammer [Fri, 17 Jul 2009 08:23:43 +0000]
hints/aix.sh remove libgdbm from wanted libs - dbm_store() is defective in the AIX Toolbox
Rainer Tammer [Fri, 17 Jul 2009 08:22:42 +0000]
README.aix for Perl 5.10.1
Rafael Garcia-Suarez [Thu, 16 Jul 2009 21:46:45 +0000]
Describe changes to Carp and Carp::Heavy
Rafael Garcia-Suarez [Thu, 16 Jul 2009 21:46:16 +0000]
Add a version number to B::Lint::Debug
Craig A. Berry [Thu, 16 Jul 2009 20:52:57 +0000]
No whitespace before comment allowed in VMS make utilities.
All extension building was broken without this.
Craig A. Berry [Thu, 16 Jul 2009 14:11:55 +0000]
Additional perlvms.pod updates related to POSIX exit handling.
Craig A. Berry [Thu, 16 Jul 2009 13:27:05 +0000]
URL and other fix-ups for README.vms
David Mitchell [Thu, 16 Jul 2009 12:46:50 +0000]
bump Encode version in Maintainers.pl
David Mitchell [Thu, 16 Jul 2009 12:27:46 +0000]
overloading.pm will work with 5.10.1
Nicholas Clark [Thu, 16 Jul 2009 12:07:45 +0000]
Note that editing pod.list then running pod/buildtoc automates these tasks.
Adam Russell [Wed, 15 Jul 2009 05:16:23 +0000]
patch submission(AUTHORS)
Re-submitting this patch.
Adding myself and Osvaldo Villalon.
Best Regards,
Adam
----- Original Message -----
From: "Jonathan Stowe" <jns@integration-house.com>
To: "Adam Russell" <arussell@cs.uml.edu>
Cc: <perl5-porters@perl.org>
Sent: Friday, July 03, 2009 8:14 AM
Subject: Re: patch submission(AUTHORS)
> Hi,
> that patch appears to made against a really old
> version of the AUTHORS
> file as it seems to be reverting some changes made
> last year (my
> e-mail address for instance :-)
>
> 2009/7/3 Adam Russell <arussell@cs.uml.edu>:
>> Added myself(Adam Russell) and Osvaldo Villalon.
>
>
>
> --
> http://rabidgravy.com/ - Music
> http://gellyfish.co.uk/ - Everything else
>
>From
a3b77323290dc0da9da193cb5ac3178c1f6708db Mon Sep 17 00:00:00 2001
From: Adam Russell <arussell@cs.uml.edu>
Date: Wed, 15 Jul 2009 00:59:35 -0400
Subject: [PATCH] Adding Adam Russell and Osvaldo Villalon(recent Symbian contributors).
Adam Russell [Wed, 15 Jul 2009 05:27:26 +0000]
patch submisson(symbian/symbian_utils.cpp)
This patch adds some compatibility for older Symbian
SDKs.
>From
146c431f9030e275fcf9aca35d79a72eece128c2 Mon Sep 17 00:00:00 2001
From: Osvaldo Villalon <ovillalon@dextratech.com>
Date: Fri, 3 Jul 2009 01:26:33 -0400
Subject: [PATCH 1690/1692] Osvaldo Villalon's changes to symbian_utils.cpp.
David Mitchell [Thu, 16 Jul 2009 09:53:04 +0000]
ExtUtils::MakeMaker 6.55_01
John E. Malmberg [Thu, 16 Jul 2009 02:45:57 +0000]
An update to the pod is in order for the PERL_VMS_POSIX_EXIT logical
name. That should help you with what to put in the delta file.
I forgot to indicate in the file that the DECC$FILENAME_UNIX_REPORT
feature also activates the PERL_VMS_POSIX_EXIT mode.
David Mitchell [Wed, 15 Jul 2009 22:59:21 +0000]
expand Porting/release_managers_guide.pod
and remove some similar or out-of-date stuff from Porting/pumpkin.pod
Vincent Pit [Wed, 15 Jul 2009 20:32:36 +0000]
Document PL_opfreehook
Vincent Pit [Wed, 15 Jul 2009 20:08:39 +0000]
The op_free() hook doesn't need to return an OP*, so introduce a new typedef for OP hooks
Moritz Lenz [Wed, 15 Jul 2009 14:53:37 +0000]
document given/when in perltrap
David Mitchell [Wed, 15 Jul 2009 10:51:23 +0000]
add Porting/bump-perl-version to MANIFEST
Craig A. Berry [Tue, 14 Jul 2009 23:53:27 +0000]
test_harness, not just test, needs unpack_files on VMS.
David Mitchell [Tue, 14 Jul 2009 22:22:37 +0000]
add Porting/bump-perl-version
utility for bumping the value of the perl version in lots of files
David Mitchell [Tue, 14 Jul 2009 18:20:06 +0000]
fix some perl version numbers
Abhijit Menon-Sen [Tue, 14 Jul 2009 14:44:43 +0000]
Update my address.
David Golden [Tue, 14 Jul 2009 03:16:35 +0000]
Explain camel and dromedary repository servers
Patch provided by Dennis Kaarsemaker.
Rafael Garcia-Suarez [Tue, 14 Jul 2009 07:41:42 +0000]
Don't preload Carp::Heavy in warnings.pm
Use only Carp, now that all the machinery is in it.
Rafael Garcia-Suarez [Tue, 14 Jul 2009 07:16:17 +0000]
Merge Carp::Heavy into Carp
David Golden [Mon, 13 Jul 2009 13:03:47 +0000]
upate pumpking list
Stepan Kasal [Mon, 13 Jul 2009 08:26:27 +0000]
Cosmetic change
Rafael Garcia-Suarez [Mon, 13 Jul 2009 07:40:04 +0000]
Upgrade to Encode 2.35
Michael G. Schwern [Sat, 11 Jul 2009 07:34:31 +0000]
Clean up t/op/sort.t to constrain tests which use a particular package.
Also make use of is() instead of a home rolled conflicting Test.pm style ok().
Paul Fenwick [Mon, 13 Jul 2009 01:30:28 +0000]
Better flock detection for autodie tests
G'day p5p,
Craig A. Berry discovered that autodie's tests which attempt to detect
flock() support can cause bogus test failures on older VMS systems:
https://rt.cpan.org/Ticket/Display.html?id=47812
Attached is a trivial patch from Craig that fixes this issue. It's already
been applied to my upstream repository.
Dave - I have no idea if this would be an issue for people building Perl
5.10.1 on old VMS systems. You may wish to consider it for inclusion into
maint-5.10 just in case.
All the very best,
Paul
--
Paul Fenwick <pjf@perltraining.com.au> | http://perltraining.com.au/
Director of Training | Ph: +61 3 9354 6001
Perl Training Australia | Fax: +61 3 9354 2681
Signed-off-by: H.Merijn Brand <h.m.brand@xs4all.nl>
Stepan Kasal [Thu, 9 Jul 2009 13:49:57 +0000]
h2ph: handle "#if defined SYMBOL" better
expr() contains a code to handle "defined(SYM)" in #if directives.
Unfortunately, this code is not executed for "defined SYM", without
parentheses. This patch fixes it.
Craig A. Berry [Sun, 12 Jul 2009 14:27:48 +0000]
Some missing realclean items for VMS.
Michael G Schwern [Sun, 12 Jul 2009 09:38:42 +0000]
Wrong skip count in t/op/stash.t
stash.t has the wrong number of tests to skip when dynamic loading is not
available breaking minitest.
David Mitchell [Sat, 11 Jul 2009 16:56:06 +0000]
[perl #61520] Segfault in debugger with tr// and UTF8
commit
043e41b8 (29765), which made tr// threadsafe by moving the
swash into the pad, didn't mark the pad SV as read-only, so it was getting
removed from anon sub prototypes
H.Merijn Brand [Sat, 11 Jul 2009 15:54:40 +0000]
Subject: [PATCH] Have add-package.pl include the Changes file
From: David Golden <dagolden@cpan.org>
Date: Fri, 10 Jul 2009 08:20:06 -0400
Message-Id: <
1247228406-29001-1-git-send-email-dagolden@cpan.org>
Also adds a "-c FILE" option for an alternate change log name
I've extended it With additional support for ChangeLog and open for more
David Mitchell [Fri, 10 Jul 2009 15:58:58 +0000]
Maintainers.pl: bump Term::ANSIColor version
David Mitchell [Fri, 10 Jul 2009 14:16:14 +0000]
ExtUtils::MakeMaker 6.54
Rafael Garcia-Suarez [Fri, 10 Jul 2009 14:00:37 +0000]
Remove %patchlevel hash
(as the perforce repository has been decomissionned, this information
is no longer useful and can be retrieved by other means. Every release
listed here has a tag in git)
David Mitchell [Fri, 10 Jul 2009 13:33:57 +0000]
Encode 2.34
H.Merijn Brand [Fri, 10 Jul 2009 10:49:24 +0000]
add lib/ExtUtils/ParseXS/Changes to MANIFEST
Jerry D. Hedden [Thu, 9 Jul 2009 20:29:23 +0000]
Fix compiler warning in doio.c
Gisle Aas [Thu, 9 Jul 2009 17:27:12 +0000]
Avoid test failure on Linux when STDIN is /dev/null
sysseek($fh, -1, 0) succeed on Linux when $fh is a handle to /dev/null.
In our build environment the perl test suite runs with STDIN redirected
from /dev/null and without a /dev/tty. The hope is that the same seek
on a regular file will always fail.
Rafael Garcia-Suarez [Thu, 9 Jul 2009 13:41:34 +0000]
Upgrade to Term::ANSIColor 2.01
David Golden [Wed, 8 Jul 2009 17:28:54 +0000]
Make kill() fatal for non-numeric pids
As the debate over the best way to deal with floating point
pids stalled, this is just for non-numeric, which at least
squashes the bug even if it's not the Platonic ideal for
everyone.
It also doesn't address overloaded objects that might not have
IV, NV or PV appropriately set, but the approach mirrors what is
done elsewhere in doio.c so I recommend applying this patch now and
fixing the problem of overloaded objects at some other time when
it can be done more globally, either through an improvement or
replacement of looks_like_number
Also updated POD for kill when process is 0 or negative and
fixed Test-Harness tests that used kill with a string pid.
(Test-Harness test fix also submitted upstream)
nperez [Wed, 24 Jun 2009 01:32:31 +0000]
Make INSTALL -Duserelocatableinc aware
Chip Salzenberg [Thu, 9 Jul 2009 07:44:18 +0000]
Chip Salzenberg [Thu, 9 Jul 2009 07:39:41 +0000]
fix segfault in -Dx without threads
Paul Fenwick [Thu, 9 Jul 2009 04:04:35 +0000]
Skip File::Copy return tests on Windows and VMS
Many thanks to Craig Berry for tracking this down.
Signed-off-by: H.Merijn Brand <h.m.brand@xs4all.nl>
Rafael Garcia-Suarez [Wed, 8 Jul 2009 22:03:47 +0000]
Modify the return value of Gv_AMupdate to indicate a compilation error
This way we'll restore most of the performance on object desctruction
lost by the previous commit
Rafael Garcia-Suarez [Wed, 8 Jul 2009 14:56:50 +0000]
Add a parameter "destructing" to Gv_AMupdate()
This boolean parameter indicates if the function has been called
to update the overload magic table while looking up the DESTROY
method. In this case, it's probably best to avoid croaking if
those tables could not be updated (for example due to a method
that could not be loaded.)
David Golden [Wed, 8 Jul 2009 17:13:56 +0000]
Update ExtUtils::ParseXS to 2.20_01
2.20_01 - Wed Jul 8 12:12:47 EDT 2009
- Fix XSUsage prototypes for testing [Jan Dubois]
Signed-off-by: H.Merijn Brand <h.m.brand@xs4all.nl>
Vincent Pit [Wed, 8 Jul 2009 14:49:36 +0000]
Add a pluggable hook in op_free()
Rafael Garcia-Suarez [Wed, 8 Jul 2009 09:58:41 +0000]
Mention in perldelta that "use 5.011" enables strictures
Florian Ragwitz [Wed, 8 Jul 2009 09:23:26 +0000]
Ignore libperl.so.
Tim Jenness [Tue, 7 Jul 2009 21:49:11 +0000]
Fix compiler warning when cuserid is absent and sizeof(int) != sizeof(pointer)
The attached patch fixes a compilation warning from POSIX.xs when cuserid
is missing and ints and pointers have different size. eg on Mac OSX when
using 64-bit mode.
gcc-4.2 -c -fno-common -DPERL_DARWIN -no-cpp-precomp -arch x86_64 -DDEBUGGING -fno-strict-aliasing -pipe -fstack-protector
-I/usr/local/include -I/opt/local/include -O3 -g -DVERSION=\"1.17\"
-DXS_VERSION=\"1.17\" "-I../.." POSIX.c
POSIX.c: In function 'XS_POSIX_cuserid':
POSIX.c:4096: warning: cast to pointer from integer of different size
Running Mkbootstrap for POSIX ()
chmod 644 POSIX.bs
rm -f ../../lib/auto/POSIX/POSIX.bundle
Also relevant for 5.10.1.
Signed-off-by: H.Merijn Brand <h.m.brand@xs4all.nl>
David Golden [Wed, 8 Jul 2009 02:15:59 +0000]
Updating Module::Build to 0.34
0.34 - Tue Jul 7 16:56:47 EDT 2009
No changes from 0.33_06
Signed-off-by: H.Merijn Brand <h.m.brand@xs4all.nl>
Craig A. Berry [Wed, 8 Jul 2009 03:29:10 +0000]
Make File::Copy::rmscopy return the documented values.
These were always supposed to be 0 for failure and 1 for success,
not booleans. On VMS, rmscopy implements syscopy.
Rafael Garcia-Suarez [Tue, 7 Jul 2009 20:32:39 +0000]
Merge branch 'strict-by-default' into blead
David Mitchell [Tue, 7 Jul 2009 17:48:36 +0000]
some fixes to makerel:
* add cmd-line switches
* make ExtUtils::Manifest silent
* remove some autogenerated files from the fixup list
David Mitchell [Tue, 7 Jul 2009 16:06:43 +0000]
update to CPANPLUS 0.88
David Mitchell [Tue, 7 Jul 2009 14:40:58 +0000]
rebump Hash::Util::FieldHash from 1.03_01 to 1.04
(it's not dual-lived so there's no need for a devel version number)
Rafael Garcia-Suarez [Tue, 7 Jul 2009 09:04:13 +0000]
Fast enabling of strictures when version 5.11.0 is required
We don't load strict.pm, we just manipulate the hint bits.
Plus more tests.