Hello community,

here is the log from the commit of package perl-Clone for openSUSE:Factory 
checked in at 2013-12-12 11:19:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Clone (Old)
 and      /work/SRC/openSUSE:Factory/.perl-Clone.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-Clone"

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-Clone/perl-Clone.changes    2013-10-06 
18:37:41.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Clone.new/perl-Clone.changes       
2013-12-12 11:19:08.000000000 +0100
@@ -1,0 +2,6 @@
+Mon Dec  9 11:17:50 UTC 2013 - [email protected]
+
+- updated to 0.36
+ - fixed compilation issue on AIX and C89 (GAAS)
+
+-------------------------------------------------------------------

Old:
----
  Clone-0.35.tar.gz

New:
----
  Clone-0.36.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ perl-Clone.spec ++++++
--- /var/tmp/diff_new_pack.NfiOgN/_old  2013-12-12 11:19:08.000000000 +0100
+++ /var/tmp/diff_new_pack.NfiOgN/_new  2013-12-12 11:19:08.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           perl-Clone
-Version:        0.35
+Version:        0.36
 Release:        0
 %define cpan_name Clone
 Summary:        recursively copy Perl datatypes

++++++ Clone-0.35.tar.gz -> Clone-0.36.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Clone-0.35/Changes new/Clone-0.36/Changes
--- old/Clone-0.35/Changes      2013-09-05 18:21:41.000000000 +0200
+++ new/Clone-0.36/Changes      2013-12-07 20:30:48.000000000 +0100
@@ -1,7 +1,10 @@
 Revision history for Perl module Clone
 
+0.36 2013-12-07 17:36:04  garu
+  - fixed compilation issue on AIX and C89 (GAAS)
+
 0.35 2013-09-05 13:26:54  garu
-  - SV's can be NULL (shit happens) (fixes RT86217) (Tux)
+  - SV's can be NULL (shit happens) (fixes RT86217) (HMBRAND)
   - making tests compatible with older versions of Test::More (GARU)
 
 0.34 2012-12-09 14:46:09  garu
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Clone-0.35/Clone.pm new/Clone-0.36/Clone.pm
--- old/Clone-0.35/Clone.pm     2013-09-05 18:22:57.000000000 +0200
+++ new/Clone-0.36/Clone.pm     2013-12-07 20:33:27.000000000 +0100
@@ -9,20 +9,13 @@
 require AutoLoader;
 
 @ISA = qw(Exporter DynaLoader);
-# Items to export into callers namespace by default. Note: do not export
-# names by default without a very good reason. Use EXPORT_OK instead.
-# Do not simply export all your public functions/methods/constants.
 @EXPORT = qw();
 @EXPORT_OK = qw( clone );
 
-$VERSION = '0.35';
+$VERSION = '0.36';
 
 bootstrap Clone $VERSION;
 
-# Preloaded methods go here.
-
-# Autoload methods go after =cut, and are processed by the autosplit program.
-
 1;
 __END__
 
@@ -77,7 +70,7 @@
 
 =head1 COPYRIGHT
 
-Copyright 2001-2012 Ray Finch. All Rights Reserved.
+Copyright 2001-2013 Ray Finch. All Rights Reserved.
 
 This module is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Clone-0.35/Clone.xs new/Clone-0.36/Clone.xs
--- old/Clone-0.35/Clone.xs     2013-09-05 18:17:37.000000000 +0200
+++ new/Clone-0.36/Clone.xs     2013-12-07 19:55:17.000000000 +0100
@@ -122,6 +122,7 @@
   SV *clone = ref;
   SV **seen = NULL;
   UV visible;
+  int magic_ref = 0;
 
   if (!ref)
     {
@@ -136,7 +137,6 @@
 #else
   visible = (SvREFCNT(ref) > 1) || (SvMAGICAL(ref) && mg_find(ref, '<'));
 #endif
-  int magic_ref = 0;
 
   TRACEME(("ref = 0x%x(%d)\n", ref, SvREFCNT(ref)));
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Clone-0.35/META.json new/Clone-0.36/META.json
--- old/Clone-0.35/META.json    2013-09-05 18:25:35.000000000 +0200
+++ new/Clone-0.36/META.json    2013-12-07 20:35:51.000000000 +0100
@@ -46,5 +46,5 @@
          "url" : "http://github.com/garu/Clone";
       }
    },
-   "version" : "0.35"
+   "version" : "0.36"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Clone-0.35/META.yml new/Clone-0.36/META.yml
--- old/Clone-0.35/META.yml     2013-09-05 18:25:35.000000000 +0200
+++ new/Clone-0.36/META.yml     2013-12-07 20:35:51.000000000 +0100
@@ -22,4 +22,4 @@
   bugtracker: http://rt.cpan.org/NoAuth/Bugs.html?Dist=Clone
   license: http://dev.perl.org/licenses/
   repository: http://github.com/garu/Clone
-version: 0.35
+version: 0.36

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to