Hello community,

here is the log from the commit of package perl-Encode for openSUSE:Factory 
checked in at 2020-03-04 09:46:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Encode (Old)
 and      /work/SRC/openSUSE:Factory/.perl-Encode.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-Encode"

Wed Mar  4 09:46:07 2020 rev:10 rq:781237 version:3.03

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-Encode/perl-Encode.changes  2019-12-30 
12:35:07.075813758 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Encode.new.26092/perl-Encode.changes       
2020-03-04 09:46:35.450150228 +0100
@@ -1,0 +2,6 @@
+Tue Mar  3 03:14:44 UTC 2020 -  <timueller+p...@suse.de>
+
+- updated to 3.03
+   see /usr/share/doc/packages/perl-Encode/Changes
+
+-------------------------------------------------------------------

Old:
----
  Encode-3.02.tar.gz

New:
----
  Encode-3.03.tar.gz

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

Other differences:
------------------
++++++ perl-Encode.spec ++++++
--- /var/tmp/diff_new_pack.1S7OmX/_old  2020-03-04 09:46:38.566152095 +0100
+++ /var/tmp/diff_new_pack.1S7OmX/_new  2020-03-04 09:46:38.574152100 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Encode
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           perl-Encode
-Version:        3.02
+Version:        3.03
 Release:        0
 %define cpan_name Encode
 Summary:        Character encodings in Perl

++++++ Encode-3.02.tar.gz -> Encode-3.03.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Encode-3.02/Changes new/Encode-3.03/Changes
--- old/Encode-3.02/Changes     2019-12-25 10:25:39.000000000 +0100
+++ new/Encode-3.03/Changes     2020-03-02 05:37:26.000000000 +0100
@@ -1,8 +1,16 @@
 # Revision history for Perl extension Encode.
 #
-# $Id: Changes,v 3.02 2019/12/25 09:23:21 dankogai Exp $
+# $Id: Changes,v 3.03 2020/03/02 04:34:34 dankogai Exp $
 #
-$Revision: 3.02 $ $Date: 2019/12/25 09:23:21 $
+$Revision: 3.03 $ $Date: 2020/03/02 04:34:34 $
+! Encode.pm Encode.xs
+  pulled: Stop using deprecated function
+  https://github.com/dankogai/p5-encode/pull/148
+! Encode.xs
+  pulled: Silence unused var warnings from Encode
+  https://github.com/dankogai/p5-encode/pull/147
+
+3.02 2019/12/25 09:23:21
 ! t/whatwg-aliases.t
   drop RELEASE_TESTING since Pumpking also uses it.
   https://github.com/Perl/perl5/issues/17382
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Encode-3.02/Encode.pm new/Encode-3.03/Encode.pm
--- old/Encode-3.02/Encode.pm   2019-12-25 10:25:39.000000000 +0100
+++ new/Encode-3.03/Encode.pm   2020-03-02 05:37:26.000000000 +0100
@@ -1,5 +1,5 @@
 #
-# $Id: Encode.pm,v 3.02 2019/12/25 09:25:17 dankogai Exp $
+# $Id: Encode.pm,v 3.03 2020/03/02 04:36:39 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.02 $ =~ /(\d+)/g;
+    $VERSION = sprintf "%d.%02d", q$Revision: 3.03 $ =~ /(\d+)/g;
     require XSLoader;
     XSLoader::load( __PACKAGE__, $VERSION );
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Encode-3.02/Encode.xs new/Encode-3.03/Encode.xs
--- old/Encode-3.02/Encode.xs   2019-12-25 10:25:39.000000000 +0100
+++ new/Encode-3.03/Encode.xs   2020-03-02 05:37:26.000000000 +0100
@@ -1,5 +1,5 @@
 /*
- $Id: Encode.xs,v 2.47 2019/03/13 00:26:18 dankogai Exp $
+ $Id: Encode.xs,v 2.48 2020/03/02 04:34:34 dankogai Exp $
  */
 
 #define PERL_NO_GET_CONTEXT
@@ -231,7 +231,7 @@
         if (dir == enc->f_utf8) {
         STRLEN clen;
         UV ch =
-            utf8n_to_uvuni(s+slen, (tlen-sdone-slen),
+            utf8n_to_uvchr(s+slen, (tlen-sdone-slen),
                    &clen, UTF8_ALLOW_ANY|UTF8_CHECK_ONLY);
         /* if non-representable multibyte prefix at end of current buffer - 
break*/
         if (clen > tlen - sdone - slen) break;
@@ -982,6 +982,7 @@
 PREINIT:
     SV *obj;
 INIT:
+    PERL_UNUSED_VAR(ix);
     SvGETMAGIC(encoding);
 CODE:
     if (!SvOK(encoding))
@@ -1003,6 +1004,7 @@
 PREINIT:
     SV *obj;
 INIT:
+    PERL_UNUSED_VAR(ix);
     SvGETMAGIC(encoding);
 CODE:
     if (!SvOK(encoding))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Encode-3.02/META.json new/Encode-3.03/META.json
--- old/Encode-3.02/META.json   2019-12-25 10:41:49.000000000 +0100
+++ new/Encode-3.03/META.json   2020-03-02 05:38:12.000000000 +0100
@@ -4,13 +4,13 @@
       "Dan Kogai <danko...@dan.co.jp>"
    ],
    "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 7.1002, CPAN::Meta::Converter 
version 2.150005",
+   "generated_by" : "ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter 
version 2.150010",
    "license" : [
       "perl_5"
    ],
    "meta-spec" : {
       "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec";,
-      "version" : "2"
+      "version" : 2
    },
    "name" : "Encode",
    "no_index" : {
@@ -22,8 +22,7 @@
    "prereqs" : {
       "build" : {
          "requires" : {
-            "ExtUtils::MakeMaker" : "0",
-            "Test::More" : "0.81_01"
+            "ExtUtils::MakeMaker" : "0"
          }
       },
       "configure" : {
@@ -37,6 +36,11 @@
             "Storable" : "0",
             "parent" : "0.221"
          }
+      },
+      "test" : {
+         "requires" : {
+            "Test::More" : "0.81_01"
+         }
       }
    },
    "release_status" : "stable",
@@ -45,7 +49,7 @@
          "url" : "https://github.com/dankogai/p5-encode";
       }
    },
-   "version" : "3.02",
+   "version" : "3.03",
    "x_contributors" : [
       "Alex Davies <alex.dav...@talktalk.net>",
       "Alex Kapranoff <a...@kapranoff.ru>",
@@ -131,5 +135,5 @@
       "Vincent van Dam <vvan...@sandvine.com>",
       "Yitzchak Scott-Thoennes <sthoe...@efn.org>"
    ],
-   "x_serialization_backend" : "JSON::PP version 2.27300_01"
+   "x_serialization_backend" : "JSON::PP version 4.02"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Encode-3.02/META.yml new/Encode-3.03/META.yml
--- old/Encode-3.02/META.yml    2019-12-25 10:41:49.000000000 +0100
+++ new/Encode-3.03/META.yml    2020-03-02 05:38:12.000000000 +0100
@@ -8,7 +8,7 @@
 configure_requires:
   ExtUtils::MakeMaker: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 7.1002, CPAN::Meta::Converter 
version 2.150005'
+generated_by: 'ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter version 
2.150010'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -24,7 +24,7 @@
   parent: '0.221'
 resources:
   repository: https://github.com/dankogai/p5-encode
-version: '3.02'
+version: '3.03'
 x_contributors:
   - 'Alex Davies <alex.dav...@talktalk.net>'
   - 'Alex Kapranoff <a...@kapranoff.ru>'


Reply via email to