Hello community,

here is the log from the commit of package perl-Digest-MD5 for openSUSE:Factory 
checked in at 2016-03-17 16:34:03
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Digest-MD5 (Old)
 and      /work/SRC/openSUSE:Factory/.perl-Digest-MD5.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-Digest-MD5"

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-Digest-MD5/perl-Digest-MD5.changes  
2016-01-28 17:25:40.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Digest-MD5.new/perl-Digest-MD5.changes     
2016-03-17 16:47:34.000000000 +0100
@@ -1,0 +2,17 @@
+Fri Mar 11 10:01:27 UTC 2016 - co...@suse.com
+
+- updated to 2.55
+   see /usr/share/doc/packages/perl-Digest-MD5/Changes
+
+  2016-03-09   Gisle Aas <gi...@activestate.com>
+  
+     Release 2.55
+  
+     Gordon Stanton (2):
+        Make use warnings work including test cases.
+        Initial Travis config
+  
+     Gisle Aas (1):
+        Avoid warning: 'static' is not at beginning of declaration [RT#105646]
+
+-------------------------------------------------------------------

Old:
----
  Digest-MD5-2.54.tar.gz

New:
----
  Digest-MD5-2.55.tar.gz
  cpanspec.yml

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

Other differences:
------------------
++++++ perl-Digest-MD5.spec ++++++
--- /var/tmp/diff_new_pack.tMApTU/_old  2016-03-17 16:47:38.000000000 +0100
+++ /var/tmp/diff_new_pack.tMApTU/_new  2016-03-17 16:47:38.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Digest-MD5
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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,14 +17,15 @@
 
 
 Name:           perl-Digest-MD5
-Version:        2.54
+Version:        2.55
 Release:        0
 %define cpan_name Digest-MD5
 Summary:        Perl interface to the MD5 Algorithm
 License:        Artistic-1.0 or GPL-1.0+
 Group:          Development/Libraries/Perl
 Url:            http://search.cpan.org/dist/Digest-MD5/
-Source:         
http://www.cpan.org/authors/id/G/GA/GAAS/%{cpan_name}-%{version}.tar.gz
+Source0:        
http://www.cpan.org/authors/id/G/GA/GAAS/%{cpan_name}-%{version}.tar.gz
+Source1:        cpanspec.yml
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros

++++++ Digest-MD5-2.54.tar.gz -> Digest-MD5-2.55.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Digest-MD5-2.54/Changes new/Digest-MD5-2.55/Changes
--- old/Digest-MD5-2.54/Changes 2015-01-12 22:18:09.000000000 +0100
+++ new/Digest-MD5-2.55/Changes 2016-03-09 22:11:27.000000000 +0100
@@ -1,3 +1,16 @@
+2016-03-09   Gisle Aas <gi...@activestate.com>
+
+   Release 2.55
+
+   Gordon Stanton (2):
+      Make use warnings work including test cases.
+      Initial Travis config
+
+   Gisle Aas (1):
+      Avoid warning: 'static' is not at beginning of declaration [RT#105646] 
+
+
+
 2015-01-12   Gisle Aas <gi...@activestate.com>
 
    Release 2.54
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Digest-MD5-2.54/MD5.pm new/Digest-MD5-2.55/MD5.pm
--- old/Digest-MD5-2.54/MD5.pm  2015-01-12 22:10:44.000000000 +0100
+++ new/Digest-MD5-2.55/MD5.pm  2016-03-09 22:09:22.000000000 +0100
@@ -3,7 +3,7 @@
 use strict;
 use vars qw($VERSION @ISA @EXPORT_OK);
 
-$VERSION = '2.54';
+$VERSION = '2.55';
 
 require Exporter;
 *import = \&Exporter::import;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Digest-MD5-2.54/MD5.xs new/Digest-MD5-2.55/MD5.xs
--- old/Digest-MD5-2.54/MD5.xs  2015-01-12 21:56:15.000000000 +0100
+++ new/Digest-MD5-2.55/MD5.xs  2016-03-09 22:00:57.000000000 +0100
@@ -156,7 +156,7 @@
 #endif
 
 #if defined(MGf_DUP) && defined(USE_ITHREADS)
-const STATIC MGVTBL vtbl_md5 = {
+STATIC const MGVTBL vtbl_md5 = {
     NULL, /* get */
     NULL, /* set */
     NULL, /* len */
@@ -168,7 +168,7 @@
 };
 #else
 /* declare as 5 member, not normal 8 to save image space*/
-const STATIC struct {
+STATIC const struct {
        int (*svt_get)(SV* sv, MAGIC* mg);
        int (*svt_set)(SV* sv, MAGIC* mg);
        U32 (*svt_len)(SV* sv, MAGIC* mg);
@@ -788,7 +788,7 @@
     PPCODE:
        MD5Init(&ctx);
 
-       if (PL_dowarn & G_WARN_ON) {
+       if ((PL_dowarn & G_WARN_ON) || ckWARN(WARN_SYNTAX)) {
             const char *msg = 0;
            if (items == 1) {
                if (SvROK(ST(0))) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Digest-MD5-2.54/META.json 
new/Digest-MD5-2.55/META.json
--- old/Digest-MD5-2.54/META.json       2015-01-12 22:18:48.000000000 +0100
+++ new/Digest-MD5-2.55/META.json       2016-03-09 22:14:39.000000000 +0100
@@ -4,7 +4,7 @@
       "Gisle Aas <gi...@activestate.com>"
    ],
    "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter 
version 2.133380",
+   "generated_by" : "ExtUtils::MakeMaker version 7.0401, CPAN::Meta::Converter 
version 2.150001",
    "license" : [
       "perl_5"
    ],
@@ -44,5 +44,5 @@
          "url" : "https://github.com/gisle/digest-md5";
       }
    },
-   "version" : "2.54"
+   "version" : "2.55"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Digest-MD5-2.54/META.yml new/Digest-MD5-2.55/META.yml
--- old/Digest-MD5-2.54/META.yml        2015-01-12 22:18:48.000000000 +0100
+++ new/Digest-MD5-2.55/META.yml        2016-03-09 22:14:39.000000000 +0100
@@ -3,24 +3,24 @@
 author:
   - 'Gisle Aas <gi...@activestate.com>'
 build_requires:
-  ExtUtils::MakeMaker: 0
+  ExtUtils::MakeMaker: '0'
 configure_requires:
-  ExtUtils::MakeMaker: 0
+  ExtUtils::MakeMaker: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 
2.133380'
+generated_by: 'ExtUtils::MakeMaker version 7.0401, CPAN::Meta::Converter 
version 2.150001'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
-  version: 1.4
+  version: '1.4'
 name: Digest-MD5
 no_index:
   directory:
     - t
     - inc
 requires:
-  Digest::base: 1.00
-  XSLoader: 0
-  perl: 5.006
+  Digest::base: '1.00'
+  XSLoader: '0'
+  perl: '5.006'
 resources:
   repository: https://github.com/gisle/digest-md5
-version: 2.54
+version: '2.55'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Digest-MD5-2.54/t/files.t 
new/Digest-MD5-2.55/t/files.t
--- old/Digest-MD5-2.54/t/files.t       2015-01-12 22:12:40.000000000 +0100
+++ new/Digest-MD5-2.55/t/files.t       2016-03-09 22:13:00.000000000 +0100
@@ -14,14 +14,14 @@
 if (ord "A" == 193) { # EBCDIC
     $EXPECT = <<EOT;
 0956ffb4f6416082b27d6680b4cf73fc  README
-2a61dd5022b11faa35eed27d1c6c98c2  MD5.xs
+60a80f534f0017745eb755f36a946fe7  MD5.xs
 276da0aa4e9a08b7fe09430c9c5690aa  rfc1321.txt
 EOT
 } else {
     # This is the output of: 'md5sum README MD5.xs rfc1321.txt'
     $EXPECT = <<EOT;
 2f93400875dbb56f36691d5f69f3eba5  README
-0a0cf2512d18d24c6881d7d755e2b609  MD5.xs
+9572832f3628e3bebcdd54f47c43dc5a  MD5.xs
 754b9db19f79dbc4992f7166eb0f37ce  rfc1321.txt
 EOT
 }

++++++ cpanspec.yml ++++++
---
#description_paragraphs: 3
#description: |-
#  override description from CPAN
#summary: override summary from CPAN
#no_testing: broken upstream
#sources:
#  - source1
#  - source2
#patches:
#  foo.patch: -p1
#  bar.patch:
#preamble: |-
# BuildRequires:  gcc-c++
#post_prep: |-
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s,  *,,g'`
# sed -i -e "s,hunspell-X,$hunspell," t/00-prereq.t Makefile.PL 
#post_build: |-
# rm unused.files
#post_install: |-
# sed on %{name}.files
#license: SUSE-NonFree
#skip_noarch: 1
#custom_build: |-
#./Build build flags=%{?_smp_mflags} --myflag
#custom_test: |-
#startserver && make test
#ignore_requires: Bizarre::Module

Reply via email to