Hello community,

here is the log from the commit of package perl-Encode for openSUSE:Factory 
checked in at 2018-02-27 16:57:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Encode (Old)
 and      /work/SRC/openSUSE:Factory/.perl-Encode.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-Encode"

Tue Feb 27 16:57:41 2018 rev:4 rq:579750 version:2.97

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-Encode/perl-Encode.changes  2018-02-16 
21:45:25.989441264 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Encode.new/perl-Encode.changes     
2018-02-27 16:57:48.376370678 +0100
@@ -1,0 +2,6 @@
+Thu Feb 22 06:18:23 UTC 2018 - [email protected]
+
+- updated to 2.97
+   see /usr/share/doc/packages/perl-Encode/Changes
+
+-------------------------------------------------------------------

Old:
----
  Encode-2.96.tar.gz

New:
----
  Encode-2.97.tar.gz

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

Other differences:
------------------
++++++ perl-Encode.spec ++++++
--- /var/tmp/diff_new_pack.z4gfsW/_old  2018-02-27 16:57:49.660324286 +0100
+++ /var/tmp/diff_new_pack.z4gfsW/_new  2018-02-27 16:57:49.664324142 +0100
@@ -17,11 +17,11 @@
 
 
 Name:           perl-Encode
-Version:        2.96
+Version:        2.97
 Release:        0
 %define cpan_name Encode
 Summary:        Character Encodings in Perl
-License:        Artistic-1.0 or GPL-1.0+
+License:        Artistic-1.0 OR GPL-1.0-or-later
 Group:          Development/Libraries/Perl
 Url:            http://search.cpan.org/dist/Encode/
 Source0:        
https://cpan.metacpan.org/authors/id/D/DA/DANKOGAI/%{cpan_name}-%{version}.tar.gz

++++++ Encode-2.96.tar.gz -> Encode-2.97.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Encode-2.96/Changes new/Encode-2.97/Changes
--- old/Encode-2.96/Changes     2018-02-11 06:35:28.000000000 +0100
+++ new/Encode-2.97/Changes     2018-02-21 13:14:35.000000000 +0100
@@ -1,8 +1,15 @@
 # Revision history for Perl extension Encode.
 #
-# $Id: Changes,v 2.96 2018/02/11 05:35:26 dankogai Exp dankogai $
+# $Id: Changes,v 2.97 2018/02/21 12:14:33 dankogai Exp dankogai $
 #
-$Revision: 2.96 $ $Date: 2018/02/11 05:35:26 $
+$Revision: 2.97 $ $Date: 2018/02/21 12:14:33 $
+! Encode.xs
+  Pulled: New perls that fixes
+    https://github.com/dankogai/p5-encode/issues/129
+    https://rt.cpan.org/Ticket/Display.html?id=124399
+  https://github.com/dankogai/p5-encode/pull/130
+
+2.96 2018/02/11 05:35:26
 ! Encode.pm encoding.pm Unicode/Unicode.pm
   VERSION++ to make bleadperl happy
   <CADED=K4v5WQ3R7+aTu1xV4q2RcZFT=jrizubqfrhe7pzrgr...@mail.gmail.com>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Encode-2.96/Encode.pm new/Encode-2.97/Encode.pm
--- old/Encode-2.96/Encode.pm   2018-02-11 06:35:28.000000000 +0100
+++ new/Encode-2.97/Encode.pm   2018-02-21 13:14:35.000000000 +0100
@@ -1,5 +1,5 @@
 #
-# $Id: Encode.pm,v 2.96 2018/02/11 05:32:30 dankogai Exp $
+# $Id: Encode.pm,v 2.97 2018/02/21 12:14:24 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: 2.96 $ =~ /(\d+)/g;
+    $VERSION = sprintf "%d.%02d", q$Revision: 2.97 $ =~ /(\d+)/g;
     require XSLoader;
     XSLoader::load( __PACKAGE__, $VERSION );
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Encode-2.96/Encode.xs new/Encode-2.97/Encode.xs
--- old/Encode-2.96/Encode.xs   2018-02-11 06:35:28.000000000 +0100
+++ new/Encode-2.97/Encode.xs   2018-02-21 13:14:37.000000000 +0100
@@ -1,5 +1,5 @@
 /*
- $Id: Encode.xs,v 2.42 2018/02/08 00:26:15 dankogai Exp $
+ $Id: Encode.xs,v 2.43 2018/02/21 12:14:33 dankogai Exp dankogai $
  */
 
 #define PERL_NO_GET_CONTEXT
@@ -387,7 +387,7 @@
 }
 
 /* Modern perls have the capability to do this more efficiently and portably */
-#ifdef is_utf8_string_loc_flags
+#ifdef utf8n_to_uvchr_msgs
 # define CAN_USE_BASE_PERL
 #endif
 
@@ -533,7 +533,7 @@
 
 #else   /* Use code for earlier perls */
 
-        PERL_UNUSED_VAR(flags);
+        ((void)sizeof(flags));  /* Avoid compiler warning */
 
         if (UTF8_IS_INVARIANT(*s)) {
             *d++ = *s++;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Encode-2.96/META.json new/Encode-2.97/META.json
--- old/Encode-2.96/META.json   2018-02-11 06:36:26.000000000 +0100
+++ new/Encode-2.97/META.json   2018-02-21 13:15:13.000000000 +0100
@@ -4,13 +4,13 @@
       "Dan Kogai <[email protected]>"
    ],
    "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 7.3, CPAN::Meta::Converter 
version 2.150010",
+   "generated_by" : "ExtUtils::MakeMaker version 7.1002, CPAN::Meta::Converter 
version 2.150005",
    "license" : [
       "perl_5"
    ],
    "meta-spec" : {
       "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec";,
-      "version" : 2
+      "version" : "2"
    },
    "name" : "Encode",
    "no_index" : {
@@ -22,7 +22,8 @@
    "prereqs" : {
       "build" : {
          "requires" : {
-            "ExtUtils::MakeMaker" : "0"
+            "ExtUtils::MakeMaker" : "0",
+            "Test::More" : "0.81_01"
          }
       },
       "configure" : {
@@ -36,11 +37,6 @@
             "Storable" : "0",
             "parent" : "0.221"
          }
-      },
-      "test" : {
-         "requires" : {
-            "Test::More" : "0.81_01"
-         }
       }
    },
    "release_status" : "stable",
@@ -49,7 +45,7 @@
          "url" : "https://github.com/dankogai/p5-encode";
       }
    },
-   "version" : "2.96",
+   "version" : "2.97",
    "x_contributors" : [
       "Alex Davies <[email protected]>",
       "Alex Kapranoff <[email protected]>",
@@ -135,5 +131,5 @@
       "Vincent van Dam <[email protected]>",
       "Yitzchak Scott-Thoennes <[email protected]>"
    ],
-   "x_serialization_backend" : "JSON::PP version 2.94"
+   "x_serialization_backend" : "JSON::PP version 2.27300_01"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Encode-2.96/META.yml new/Encode-2.97/META.yml
--- old/Encode-2.96/META.yml    2018-02-11 06:36:25.000000000 +0100
+++ new/Encode-2.97/META.yml    2018-02-21 13:15:13.000000000 +0100
@@ -8,7 +8,7 @@
 configure_requires:
   ExtUtils::MakeMaker: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 7.3, CPAN::Meta::Converter version 
2.150010'
+generated_by: 'ExtUtils::MakeMaker version 7.1002, CPAN::Meta::Converter 
version 2.150005'
 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: '2.96'
+version: '2.97'
 x_contributors:
   - 'Alex Davies <[email protected]>'
   - 'Alex Kapranoff <[email protected]>'


Reply via email to