Hello community, here is the log from the commit of package perl-Graph for openSUSE:Factory checked in at 2020-11-03 15:16:45 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/perl-Graph (Old) and /work/SRC/openSUSE:Factory/.perl-Graph.new.3463 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Graph" Tue Nov 3 15:16:45 2020 rev:15 rq:845644 version:0.9707 Changes: -------- --- /work/SRC/openSUSE:Factory/perl-Graph/perl-Graph.changes 2020-10-28 15:42:30.242750930 +0100 +++ /work/SRC/openSUSE:Factory/.perl-Graph.new.3463/perl-Graph.changes 2020-11-03 15:17:26.956091061 +0100 @@ -1,0 +2,9 @@ +Sun Nov 1 03:07:25 UTC 2020 - Tina Müller <timueller+p...@suse.de> + +- updated to 0.9707 + see /usr/share/doc/packages/perl-Graph/Changes + + 0.9707 2020-10-31 + - can't use Safe, ergo Storable, on 5.8 + +------------------------------------------------------------------- Old: ---- Graph-0.9706.tar.gz New: ---- Graph-0.9707.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ perl-Graph.spec ++++++ --- /var/tmp/diff_new_pack.SUj2dg/_old 2020-11-03 15:17:27.732091808 +0100 +++ /var/tmp/diff_new_pack.SUj2dg/_new 2020-11-03 15:17:27.740091816 +0100 @@ -17,7 +17,7 @@ Name: perl-Graph -Version: 0.9706 +Version: 0.9707 Release: 0 %define cpan_name Graph Summary: Graph data structures and algorithms ++++++ Graph-0.9706.tar.gz -> Graph-0.9707.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Graph-0.9706/Changes new/Graph-0.9707/Changes --- old/Graph-0.9706/Changes 2020-10-20 15:27:25.000000000 +0200 +++ new/Graph-0.9707/Changes 2020-10-31 18:50:52.000000000 +0100 @@ -1,3 +1,6 @@ +0.9707 2020-10-31 +- can't use Safe, ergo Storable, on 5.8 + 0.9706 2020-10-20 - metadata list test-deps as not runtime diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Graph-0.9706/META.json new/Graph-0.9707/META.json --- old/Graph-0.9706/META.json 2020-10-20 15:28:40.000000000 +0200 +++ new/Graph-0.9707/META.json 2020-10-31 18:51:38.000000000 +0100 @@ -58,6 +58,6 @@ "web" : "https://github.com/neilb/Graph" } }, - "version" : "0.9706", + "version" : "0.9707", "x_serialization_backend" : "JSON::PP version 4.00" } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Graph-0.9706/META.yml new/Graph-0.9707/META.yml --- old/Graph-0.9706/META.yml 2020-10-20 15:28:40.000000000 +0200 +++ new/Graph-0.9707/META.yml 2020-10-31 18:51:38.000000000 +0100 @@ -29,5 +29,5 @@ resources: bugtracker: https://github.com/neilb/Graph/issues repository: git://github.com/neilb/Graph.git -version: '0.9706' +version: '0.9707' x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Graph-0.9706/lib/Graph.pm new/Graph-0.9707/lib/Graph.pm --- old/Graph-0.9706/lib/Graph.pm 2020-10-20 15:27:12.000000000 +0200 +++ new/Graph-0.9707/lib/Graph.pm 2020-10-31 18:51:03.000000000 +0100 @@ -16,13 +16,14 @@ use Graph::AdjacencyMap qw(:flags :fields); -our $VERSION = '0.9706'; +our $VERSION = '0.9707'; require 5.006; # Weak references are absolutely required. my $can_deep_copy_Storable; sub _can_deep_copy_Storable () { return $can_deep_copy_Storable if defined $can_deep_copy_Storable; + return $can_deep_copy_Storable = 0 if $] < 5.010; # no :load tag Safe 5.8 eval { require Storable; require B::Deparse; @@ -1744,7 +1745,7 @@ sub _deep_copy_Storable { my $g = shift; require Safe; # For deep_copy(). - my $safe = new Safe; + my $safe = Safe->new; $safe->permit(qw/:load/); local $Storable::Deparse = 1; local $Storable::Eval = sub { $safe->reval($_[0]) };