Hello community, here is the log from the commit of package perl-Encode for openSUSE:Factory checked in at 2020-03-20 23:56:48 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/perl-Encode (Old) and /work/SRC/openSUSE:Factory/.perl-Encode.new.3160 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Encode" Fri Mar 20 23:56:48 2020 rev:12 rq:786609 version:3.05 Changes: -------- --- /work/SRC/openSUSE:Factory/perl-Encode/perl-Encode.changes 2020-03-16 10:18:15.655585344 +0100 +++ /work/SRC/openSUSE:Factory/.perl-Encode.new.3160/perl-Encode.changes 2020-03-21 00:01:36.273105867 +0100 @@ -1,0 +2,6 @@ +Thu Mar 19 03:09:45 UTC 2020 - <[email protected]> + +- updated to 3.05 + see /usr/share/doc/packages/perl-Encode/Changes + +------------------------------------------------------------------- Old: ---- Encode-3.04.tar.gz New: ---- Encode-3.05.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ perl-Encode.spec ++++++ --- /var/tmp/diff_new_pack.cIJFHJ/_old 2020-03-21 00:01:39.685107914 +0100 +++ /var/tmp/diff_new_pack.cIJFHJ/_new 2020-03-21 00:01:39.697107921 +0100 @@ -17,7 +17,7 @@ Name: perl-Encode -Version: 3.04 +Version: 3.05 Release: 0 %define cpan_name Encode Summary: Character encodings in Perl ++++++ Encode-3.04.tar.gz -> Encode-3.05.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Encode-3.04/Changes new/Encode-3.05/Changes --- old/Encode-3.04/Changes 2020-03-10 23:29:52.000000000 +0100 +++ new/Encode-3.05/Changes 2020-03-18 05:56:14.000000000 +0100 @@ -1,13 +1,23 @@ # Revision history for Perl extension Encode. # -# $Id: Changes,v 3.04 2020/03/10 22:29:50 dankogai Exp dankogai $ +# $Id: Changes,v 3.05 2020/03/18 04:56:12 dankogai Exp dankogai $ # -$Revision: 3.04 $ $Date: 2020/03/10 22:29:50 $ +$Revision: 3.05 $ $Date: 2020/03/18 04:56:12 $ +! Encode.pm + Address Tiny change for Encode.pm from David Levine + We do some compiled perl, and @INC is not always defined, + so it throws a warning. + <bn8pr12mb3153aeaf99ec08db1e69a458a4...@bn8pr12mb3153.namprd12.prod.outlook.com> +! lib/Encode/Guess.pm + fix RT#131359: Encode::Guess: incomplete error messsage + https://rt.cpan.org/Public/Bug/Display.html?id=131359 + +3.04 2020/03/10 22:29:50 ! Encode.pm Bump version to make bleadperl happy <[email protected]> -3.03 $ 2020/03/02 04:34:34 +3.03 2020/03/02 04:34:34 ! Encode.pm Encode.xs pulled: Stop using deprecated function https://github.com/dankogai/p5-encode/pull/148 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Encode-3.04/Encode.pm new/Encode-3.05/Encode.pm --- old/Encode-3.04/Encode.pm 2020-03-10 23:29:52.000000000 +0100 +++ new/Encode-3.05/Encode.pm 2020-03-18 05:56:14.000000000 +0100 @@ -1,5 +1,5 @@ # -# $Id: Encode.pm,v 3.04 2020/03/10 22:26:29 dankogai Exp $ +# $Id: Encode.pm,v 3.05 2020/03/18 04:55:37 dankogai Exp $ # package Encode; use strict; @@ -7,7 +7,7 @@ use constant DEBUG => !!$ENV{PERL_ENCODE_DEBUG}; our $VERSION; BEGIN { - $VERSION = sprintf "%d.%02d", q$Revision: 3.04 $ =~ /(\d+)/g; + $VERSION = sprintf "%d.%02d", q$Revision: 3.05 $ =~ /(\d+)/g; require XSLoader; XSLoader::load( __PACKAGE__, $VERSION ); } @@ -65,7 +65,7 @@ eval { local $SIG{__DIE__}; local $SIG{__WARN__}; - local @INC = @INC; + local @INC = @INC || (); pop @INC if $INC[-1] eq '.'; require Encode::ConfigLocal; }; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Encode-3.04/META.json new/Encode-3.05/META.json --- old/Encode-3.04/META.json 2020-03-10 23:31:00.000000000 +0100 +++ new/Encode-3.05/META.json 2020-03-18 05:57:10.000000000 +0100 @@ -49,7 +49,7 @@ "url" : "https://github.com/dankogai/p5-encode" } }, - "version" : "3.04", + "version" : "3.05", "x_contributors" : [ "Alex Davies <[email protected]>", "Alex Kapranoff <[email protected]>", diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Encode-3.04/META.yml new/Encode-3.05/META.yml --- old/Encode-3.04/META.yml 2020-03-10 23:31:00.000000000 +0100 +++ new/Encode-3.05/META.yml 2020-03-18 05:57:10.000000000 +0100 @@ -24,7 +24,7 @@ parent: '0.221' resources: repository: https://github.com/dankogai/p5-encode -version: '3.04' +version: '3.05' x_contributors: - 'Alex Davies <[email protected]>' - 'Alex Kapranoff <[email protected]>' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Encode-3.04/lib/Encode/Guess.pm new/Encode-3.05/lib/Encode/Guess.pm --- old/Encode-3.04/lib/Encode/Guess.pm 2020-03-10 23:29:52.000000000 +0100 +++ new/Encode-3.05/lib/Encode/Guess.pm 2020-03-18 05:56:17.000000000 +0100 @@ -2,7 +2,7 @@ use strict; use warnings; use Encode qw(:fallbacks find_encoding); -our $VERSION = do { my @r = ( q$Revision: 2.7 $ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r }; +our $VERSION = do { my @r = ( q$Revision: 2.8 $ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r }; my $Canon = 'Guess'; use constant DEBUG => !!$ENV{PERL_ENCODE_DEBUG}; @@ -158,7 +158,7 @@ $nline++; } $try{ascii} - or return "Encodings too ambiguous: ", join( " or ", keys %try ); + or return "Encodings too ambiguous: " . join( " or ", keys %try ); return $try{ascii}; }
