Hello community,

here is the log from the commit of package perl-Clone for openSUSE:Factory 
checked in at 2020-05-02 22:14:49
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Clone (Old)
 and      /work/SRC/openSUSE:Factory/.perl-Clone.new.2738 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-Clone"

Sat May  2 22:14:49 2020 rev:31 rq:798891 version:0.45

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-Clone/perl-Clone.changes    2020-04-25 
20:17:35.904695040 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Clone.new.2738/perl-Clone.changes  
2020-05-02 22:14:51.848225169 +0200
@@ -1,0 +2,9 @@
+Fri Apr 24 03:08:49 UTC 2020 -  <[email protected]>
+
+- updated to 0.45
+   see /usr/share/doc/packages/perl-Clone/Changes
+
+  0.45 2020-04-23 14:46:00 atoomic
+    - bump B::COW requirement to fix big-endian issue
+
+-------------------------------------------------------------------

Old:
----
  Clone-0.44.tar.gz

New:
----
  Clone-0.45.tar.gz

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

Other differences:
------------------
++++++ perl-Clone.spec ++++++
--- /var/tmp/diff_new_pack.lkUEAL/_old  2020-05-02 22:14:52.416226358 +0200
+++ /var/tmp/diff_new_pack.lkUEAL/_new  2020-05-02 22:14:52.420226367 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           perl-Clone
-Version:        0.44
+Version:        0.45
 Release:        0
 %define cpan_name Clone
 Summary:        Recursively copy Perl datatypes
@@ -29,7 +29,7 @@
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(B::COW) >= 0.003
+BuildRequires:  perl(B::COW) >= 0.004
 %{perl_requires}
 
 %description

++++++ Clone-0.44.tar.gz -> Clone-0.45.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Clone-0.44/Changes new/Clone-0.45/Changes
--- old/Clone-0.44/Changes      2020-04-20 19:32:34.030379252 +0200
+++ new/Clone-0.45/Changes      2020-04-23 22:46:58.000000000 +0200
@@ -1,5 +1,8 @@
 Revision history for Perl module Clone
 
+0.45 2020-04-23 14:46:00 atoomic
+  - bump B::COW requirement to fix big-endian issue
+
 0.44 2020-04-20 11:30:00 atoomic
   - support Perls with COW disabled (plicease)
   - bump B::COW requirement for testing
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Clone-0.44/Clone.pm new/Clone-0.45/Clone.pm
--- old/Clone-0.44/Clone.pm     2020-04-20 19:32:57.000000000 +0200
+++ new/Clone-0.45/Clone.pm     2020-04-23 22:46:00.000000000 +0200
@@ -11,7 +11,7 @@
 @EXPORT    = qw();
 @EXPORT_OK = qw( clone );
 
-$VERSION = '0.44';
+$VERSION = '0.45';
 
 bootstrap Clone $VERSION;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Clone-0.44/META.json new/Clone-0.45/META.json
--- old/Clone-0.44/META.json    2020-04-20 19:44:59.000000000 +0200
+++ new/Clone-0.45/META.json    2020-04-23 23:02:21.000000000 +0200
@@ -32,7 +32,7 @@
       },
       "test" : {
          "requires" : {
-            "B::COW" : "0.003",
+            "B::COW" : "0.004",
             "Test::More" : "0"
          }
       }
@@ -49,6 +49,6 @@
          "url" : "http://github.com/garu/Clone";
       }
    },
-   "version" : "0.44",
+   "version" : "0.45",
    "x_serialization_backend" : "JSON::PP version 4.04"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Clone-0.44/META.yml new/Clone-0.45/META.yml
--- old/Clone-0.44/META.yml     2020-04-20 19:44:59.000000000 +0200
+++ new/Clone-0.45/META.yml     2020-04-23 23:02:21.000000000 +0200
@@ -3,7 +3,7 @@
 author:
   - 'Ray Finch <[email protected]>'
 build_requires:
-  B::COW: '0.003'
+  B::COW: '0.004'
   ExtUtils::MakeMaker: '0'
   Test::More: '0'
 configure_requires:
@@ -23,5 +23,5 @@
   bugtracker: https://github.com/garu/Clone/issues
   license: http://dev.perl.org/licenses/
   repository: http://github.com/garu/Clone
-version: '0.44'
+version: '0.45'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Clone-0.44/Makefile.PL new/Clone-0.45/Makefile.PL
--- old/Clone-0.44/Makefile.PL  2020-04-20 18:43:46.000000000 +0200
+++ new/Clone-0.45/Makefile.PL  2020-04-23 22:44:33.000000000 +0200
@@ -9,7 +9,7 @@
     'PL_FILES'      => {},
     'TEST_REQUIRES' => {
       'Test::More' => 0,
-      'B::COW'     => '0.003',
+      'B::COW'     => '0.004',
     },
     'LIBS'          => [''],     # e.g., '-lm'
     'DEFINE'        => '',       # e.g., '-DHAVE_SOMETHING'


Reply via email to