Revision history for B-RecDeparse
+0.05 2011-02-27 21:15 UTC
+ + Chg : perl 5.8.1 is required.
+ + Fix : [RT #63842] : Breakage on some imported subs.
+ This was actually a problem with how undeclared subroutines
+ or @_ were deparsed.
+ Thanks Kent Fredric for reporting and suggesting a fix.
+ + Fix : Empty or XS subroutines won't be (wrongly) deparsed anymore.
+ + Fix : Recursive subroutines won't be deparsed more than one level.
+ + Fix : Work around Kwalitee test misfailures.
+ + Upd : Resources in META.yml.
+
0.04 2008-11-12 19:50 UTC
+ Fix : Compatibility with 5.8.9.
+ Fix : Only fool single_delim when we're coming from B::RecDeparse.
--- #YAML:1.0
name: B-RecDeparse
-version: 0.04
+version: 0.05
abstract: Deparse recursively into subroutines.
author:
- Vincent Pit <perl@profvince.com>
distribution_type: module
configure_requires:
ExtUtils::MakeMaker: 0
+build_requires:
+ B::Deparse: 0
+ base: 0
+ Carp: 0
+ Config: 0
+ ExtUtils::MakeMaker: 0
+ Test::More: 0
requires:
B::Deparse: 0
+ base: 0
Carp: 0
Config: 0
+ perl: 5.008001
+resources:
+ bugtracker: http://rt.cpan.org/NoAuth/ReportBug.html?Queue=B-RecDeparse
+ homepage: http://search.cpan.org/dist/B-RecDeparse/
+ license: http://dev.perl.org/licenses/
+ repository: http://git.profvince.com/?p=perl%2Fmodules%2FB-RecDeparse.git
no_index:
directory:
- t
- inc
-generated_by: ExtUtils::MakeMaker version 6.48
+generated_by: ExtUtils::MakeMaker version 6.56
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
-build_requires:
- ExtUtils::MakeMaker: 0
- Test::More: 0
+dynamic_config: 0
B::RecDeparse - Deparse recursively into subroutines.
VERSION
- Version 0.04
+ Version 0.05
SYNOPSIS
perl -MO=RecDeparse,deparse,[@B__Deparse_opts],level,-1 [ -e '...' | bleh.pl ]
"compile"
"init"
+ "deparse_sub"
"pp_entersub"
"pp_refgen"
"pp_gv"
this one.
DEPENDENCIES
+ perl 5.8.1.
+
Carp (standard since perl 5), Config (since perl 5.00307) and B::Deparse
(since perl 5.005).
<http://www.profvince.com/perl/cover/B-RecDeparse>.
COPYRIGHT & LICENSE
- Copyright 2008 Vincent Pit, all rights reserved.
+ Copyright 2008,2009,2010,2011 Vincent Pit, all rights reserved.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=head1 VERSION
-Version 0.04
+Version 0.05
=cut
-our $VERSION = '0.04';
+our $VERSION = '0.05';
=head1 SYNOPSIS