Hello community, here is the log from the commit of package perl-Moo for openSUSE:Factory checked in at 2020-11-26 23:15:08 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/perl-Moo (Old) and /work/SRC/openSUSE:Factory/.perl-Moo.new.5913 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Moo" Thu Nov 26 23:15:08 2020 rev:25 rq:850927 version:2.004004 Changes: -------- --- /work/SRC/openSUSE:Factory/perl-Moo/perl-Moo.changes 2020-11-23 18:55:27.297669293 +0100 +++ /work/SRC/openSUSE:Factory/.perl-Moo.new.5913/perl-Moo.changes 2020-11-26 23:16:06.877071178 +0100 @@ -1,0 +2,9 @@ +Wed Nov 25 03:07:22 UTC 2020 - Tina Müller <timueller+p...@suse.de> + +- updated to 2.004004 + see /usr/share/doc/packages/perl-Moo/Changes + + 2.004004 - 2020-11-25 + - fix error location test when using core Carp on perl 5.8.9 - 5.10.1 + +------------------------------------------------------------------- Old: ---- Moo-2.004003.tar.gz New: ---- Moo-2.004004.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ perl-Moo.spec ++++++ --- /var/tmp/diff_new_pack.RfELCA/_old 2020-11-26 23:16:07.425071603 +0100 +++ /var/tmp/diff_new_pack.RfELCA/_new 2020-11-26 23:16:07.429071607 +0100 @@ -17,7 +17,7 @@ Name: perl-Moo -Version: 2.004003 +Version: 2.004004 Release: 0 %define cpan_name Moo Summary: Minimalist Object Orientation (with Moose compatibility) ++++++ Moo-2.004003.tar.gz -> Moo-2.004004.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Moo-2.004003/Changes new/Moo-2.004004/Changes --- old/Moo-2.004003/Changes 2020-11-21 05:04:25.000000000 +0100 +++ new/Moo-2.004004/Changes 2020-11-25 01:58:12.000000000 +0100 @@ -1,5 +1,8 @@ Revision history for Moo +2.004004 - 2020-11-25 + - fix error location test when using core Carp on perl 5.8.9 - 5.10.1 + 2.004003 - 2020-11-21 - fix extraneous MANIFEST entry diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Moo-2.004003/META.json new/Moo-2.004004/META.json --- old/Moo-2.004003/META.json 2020-11-21 05:05:20.000000000 +0100 +++ new/Moo-2.004004/META.json 2020-11-25 01:59:02.000000000 +0100 @@ -86,7 +86,7 @@ }, "x_IRC" : "irc://irc.perl.org/#moose" }, - "version" : "2.004003", + "version" : "2.004004", "x_authority" : "cpan:MSTROUT", "x_breaks" : { "App::Commando" : "<= 0.012", diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Moo-2.004003/META.yml new/Moo-2.004004/META.yml --- old/Moo-2.004003/META.yml 2020-11-21 05:05:17.000000000 +0100 +++ new/Moo-2.004004/META.yml 2020-11-25 01:59:01.000000000 +0100 @@ -35,7 +35,7 @@ bugtracker: https://rt.cpan.org/Public/Dist/Display.html?Name=Moo license: https://dev.perl.org/licenses/ repository: https://github.com/moose/Moo.git -version: '2.004003' +version: '2.004004' x_authority: cpan:MSTROUT x_breaks: App::Commando: '<= 0.012' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Moo-2.004003/lib/Moo/Role.pm new/Moo-2.004004/lib/Moo/Role.pm --- old/Moo-2.004003/lib/Moo/Role.pm 2020-11-21 05:03:06.000000000 +0100 +++ new/Moo-2.004004/lib/Moo/Role.pm 2020-11-25 01:58:08.000000000 +0100 @@ -25,7 +25,7 @@ ); } -our $VERSION = '2.004003'; +our $VERSION = '2.004004'; $VERSION =~ tr/_//d; require Moo::sification; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Moo-2.004003/lib/Moo.pm new/Moo-2.004004/lib/Moo.pm --- old/Moo-2.004003/lib/Moo.pm 2020-11-21 05:03:06.000000000 +0100 +++ new/Moo-2.004004/lib/Moo.pm 2020-11-25 01:58:08.000000000 +0100 @@ -24,7 +24,7 @@ ); } -our $VERSION = '2.004003'; +our $VERSION = '2.004004'; $VERSION =~ tr/_//d; require Moo::sification; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Moo-2.004003/t/lib/ErrorLocation.pm new/Moo-2.004004/t/lib/ErrorLocation.pm --- old/Moo-2.004003/t/lib/ErrorLocation.pm 2020-09-02 12:16:19.000000000 +0200 +++ new/Moo-2.004004/t/lib/ErrorLocation.pm 2020-11-24 16:49:23.000000000 +0100 @@ -3,6 +3,7 @@ use Test::Builder; use Carp qw(croak); use Exporter 'import'; +use Carp::Heavy (); our @EXPORT = qw(location_ok); _______________________________________________ openSUSE Commits mailing list -- commit@lists.opensuse.org To unsubscribe, email commit-le...@lists.opensuse.org List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette List Archives: https://lists.opensuse.org/archives/list/commit@lists.opensuse.org