r64545 - in /trunk/libxml-feedpp-perl: Changes META.yml README debian/changelog lib/XML/FeedPP.pm

periapt-guest at users.alioth.debian.org periapt-guest at users.alioth.debian.org
Thu Nov 4 13:41:31 UTC 2010


Author: periapt-guest
Date: Thu Nov  4 13:41:15 2010
New Revision: 64545

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=64545
Log:
New upstream release

Modified:
    trunk/libxml-feedpp-perl/Changes
    trunk/libxml-feedpp-perl/META.yml
    trunk/libxml-feedpp-perl/README
    trunk/libxml-feedpp-perl/debian/changelog
    trunk/libxml-feedpp-perl/lib/XML/FeedPP.pm

Modified: trunk/libxml-feedpp-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-feedpp-perl/Changes?rev=64545&op=diff
==============================================================================
--- trunk/libxml-feedpp-perl/Changes (original)
+++ trunk/libxml-feedpp-perl/Changes Thu Nov  4 13:41:15 2010
@@ -1,4 +1,9 @@
 # XML::FeedPP Changes
+
+2010/10/31 (0.42)
+    * fixed #55197: Not a HASH reference at XML/FeedPP.pm line 2260
+      https://rt.cpan.org/Ticket/Display.html?id=55197
+      (thanks to MDOM)
 
 2009/11/21 (0.41)
     * supports generating CDATA section by setting SCALAR ref value like XML::TreePP.

Modified: trunk/libxml-feedpp-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-feedpp-perl/META.yml?rev=64545&op=diff
==============================================================================
--- trunk/libxml-feedpp-perl/META.yml (original)
+++ trunk/libxml-feedpp-perl/META.yml Thu Nov  4 13:41:15 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               XML-FeedPP
-version:            0.41
+version:            0.42
 abstract:           ~
 author:  []
 license:            perl

Modified: trunk/libxml-feedpp-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-feedpp-perl/README?rev=64545&op=diff
==============================================================================
--- trunk/libxml-feedpp-perl/README (original)
+++ trunk/libxml-feedpp-perl/README Thu Nov  4 13:41:15 2010
@@ -305,8 +305,13 @@
 AUTHOR
     Yusuke Kawasaki, http://www.kawa.net/
 
-COPYRIGHT AND LICENSE
-    Copyright (c) 2006-2009 Yusuke Kawasaki. All rights reserved. This
-    program is free software; you can redistribute it and/or modify it under
-    the same terms as Perl itself.
-
+COPYRIGHT
+    The following copyright notice applies to all the files provided in this
+    distribution, including binary files, unless explicitly noted otherwise.
+
+    Copyright 2006-2010 Yusuke Kawasaki
+
+LICENSE
+    This library is free software; you can redistribute it and/or modify it
+    under the same terms as Perl itself.
+

Modified: trunk/libxml-feedpp-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-feedpp-perl/debian/changelog?rev=64545&op=diff
==============================================================================
--- trunk/libxml-feedpp-perl/debian/changelog (original)
+++ trunk/libxml-feedpp-perl/debian/changelog Thu Nov  4 13:41:15 2010
@@ -1,8 +1,9 @@
-libxml-feedpp-perl (0.41-2) UNRELEASED; urgency=low
+libxml-feedpp-perl (0.42-1) UNRELEASED; urgency=low
 
   * Added myself to Uploaders 
+  * New upstream release
 
- -- Nicholas Bamber <nicholas at periapt.co.uk>  Thu, 04 Nov 2010 13:38:56 +0000
+ -- Nicholas Bamber <nicholas at periapt.co.uk>  Thu, 04 Nov 2010 13:41:53 +0000
 
 libxml-feedpp-perl (0.41-1) unstable; urgency=low
 

Modified: trunk/libxml-feedpp-perl/lib/XML/FeedPP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-feedpp-perl/lib/XML/FeedPP.pm?rev=64545&op=diff
==============================================================================
--- trunk/libxml-feedpp-perl/lib/XML/FeedPP.pm (original)
+++ trunk/libxml-feedpp-perl/lib/XML/FeedPP.pm Thu Nov  4 13:41:15 2010
@@ -377,11 +377,18 @@
 
 Yusuke Kawasaki, http://www.kawa.net/
 
-=head1 COPYRIGHT AND LICENSE
-
-Copyright (c) 2006-2009 Yusuke Kawasaki. All rights reserved.
-This program is free software; you can redistribute it and/or
-modify it under the same terms as Perl itself.
+=head1 COPYRIGHT
+
+The following copyright notice applies to all the files provided in
+this distribution, including binary files, unless explicitly noted
+otherwise.
+
+Copyright 2006-2010 Yusuke Kawasaki
+
+=head1 LICENSE
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself.
 
 =cut
 
@@ -400,7 +407,7 @@
     $XMLNS_ATOM10
 );
 
-$VERSION = "0.41";
+$VERSION = "0.42";
 
 $RSS20_VERSION  = '2.0';
 $ATOM03_VERSION = '0.3';
@@ -2256,7 +2263,7 @@
     my $elem = shift;
     my $text = shift;
     my $attr = \@_;
-    if ( ref $self->{$elem} ) {
+    if ( UNIVERSAL::isa( $self->{$elem}, 'HASH' )) {
         $self->{$elem}->{'#text'} = $text;
     }
     else {




More information about the Pkg-perl-cvs-commits mailing list