r67570 - in /branches/upstream/libdata-dump-streamer-perl/current: Changes META.yml lib/Data/Dump/Streamer.pm
angelabad-guest at users.alioth.debian.org
angelabad-guest at users.alioth.debian.org
Thu Jan 20 16:37:00 UTC 2011
Author: angelabad-guest
Date: Thu Jan 20 16:36:39 2011
New Revision: 67570
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=67570
Log:
[svn-upgrade] new version libdata-dump-streamer-perl (2.23)
Modified:
branches/upstream/libdata-dump-streamer-perl/current/Changes
branches/upstream/libdata-dump-streamer-perl/current/META.yml
branches/upstream/libdata-dump-streamer-perl/current/lib/Data/Dump/Streamer.pm
Modified: branches/upstream/libdata-dump-streamer-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdata-dump-streamer-perl/current/Changes?rev=67570&op=diff
==============================================================================
--- branches/upstream/libdata-dump-streamer-perl/current/Changes (original)
+++ branches/upstream/libdata-dump-streamer-perl/current/Changes Thu Jan 20 16:36:39 2011
@@ -1,3 +1,6 @@
+2.23 (2011-01-18)
+Fix DumpLex for bug #44621
+
2.22 (2010-07-11)
Build.PL fixed to accept DDS and NODDS again
Modified: branches/upstream/libdata-dump-streamer-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdata-dump-streamer-perl/current/META.yml?rev=67570&op=diff
==============================================================================
--- branches/upstream/libdata-dump-streamer-perl/current/META.yml (original)
+++ branches/upstream/libdata-dump-streamer-perl/current/META.yml Thu Jan 20 16:36:39 2011
@@ -31,10 +31,10 @@
provides:
Data::Dump::Streamer:
file: lib/Data/Dump/Streamer.pm
- version: 2.22
+ version: 2.23
Data::Dump::Streamer::Deparser:
file: lib/Data/Dump/Streamer.pm
- version: 2.22
+ version: 2.23
recommends:
Algorithm::Diff: 0
Compress::Zlib: 0
@@ -60,4 +60,4 @@
warnings::register: 0
resources:
license: http://dev.perl.org/licenses/
-version: 2.22
+version: 2.23
Modified: branches/upstream/libdata-dump-streamer-perl/current/lib/Data/Dump/Streamer.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdata-dump-streamer-perl/current/lib/Data/Dump/Streamer.pm?rev=67570&op=diff
==============================================================================
--- branches/upstream/libdata-dump-streamer-perl/current/lib/Data/Dump/Streamer.pm (original)
+++ branches/upstream/libdata-dump-streamer-perl/current/lib/Data/Dump/Streamer.pm Thu Jan 20 16:36:39 2011
@@ -34,7 +34,7 @@
BEGIN {
#$Id: Streamer.pm 40 2007-12-22 00:37:55Z demerphq $#
- $VERSION ='2.22';
+ $VERSION ='2.23';
$VERSION = eval $VERSION; # used for beta stuff.
@ISA = qw(Exporter DynaLoader);
@EXPORT=qw(Dump DumpLex DumpVars);
@@ -232,6 +232,8 @@
# Anyway, its terribly ugly, but for anything I can think to throw at it it works.
# demerphq
+=encoding utf8
+
=head1 NAME
Data::Dump::Streamer - Accurately serialize a data structure as Perl code.
@@ -1171,7 +1173,7 @@
return $obj;
} else {
$obj||=__PACKAGE__;
- return $obj->Data(@_)->Names(@names)->Out();
+ return $obj->Names(@names)->Data(@_)->Out();
}
}
@@ -3004,7 +3006,7 @@
Carp::confess "Bad name '$_'"
if $s && $s!~/^\*?\w+$/;
$s
- } @$v ];
+ } grep {defined} @$v ];
return $self;
} elsif (! defined wantarray ) {
$self->{unames}=[];
@@ -3669,7 +3671,7 @@
our @ISA=qw(B::Deparse);
my %cache;
-our $VERSION = '2.22';
+our $VERSION = '2.23';
if ( $VERSION ne $Data::Dump::Streamer::VERSION ) {
die "Incompatible Data::Dump::Streamer::Deparser v$VERSION vs Data::Dump::Streamer v$Data::Dump::Streamer::VERSION";
}
@@ -3862,9 +3864,9 @@
Contains code derived from works by Gisle Aas, Graham Barr, Jeff Pinyan,
Richard Clamp, and Gurusamy Sarathy.
-Thanks to Dan Brook, Yitzchak Scott-Thoennes, eric256, Joshua ben Jore,
-Jim Cromie, Curtis "Ovid" Poe and anybody that I've forgotten for patches,
-feedback and ideas.
+Thanks to Dan Brook, Yitzchak Scott-Thoennes, eric256, Joshua ben
+Jore, Jim Cromie, Curtis "Ovid" Poe, Lars Dɪá´á´á´á´á´¡, and anybody that
+I've forgotten for patches, feedback and ideas.
=head1 SEE ALSO (its a crowded space, isn't it!)
More information about the Pkg-perl-cvs-commits
mailing list