Hello community,

here is the log from the commit of package perl-String-CRC32 for 
openSUSE:Factory checked in at 2019-11-06 14:04:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-String-CRC32 (Old)
 and      /work/SRC/openSUSE:Factory/.perl-String-CRC32.new.2990 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-String-CRC32"

Wed Nov  6 14:04:29 2019 rev:3 rq:745271 version:1.8

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-String-CRC32/perl-String-CRC32.changes      
2018-07-28 12:39:43.532347727 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-String-CRC32.new.2990/perl-String-CRC32.changes
    2019-11-06 14:04:30.512685709 +0100
@@ -1,0 +2,9 @@
+Mon Nov  4 11:28:31 UTC 2019 -  <timueller+p...@suse.de>
+
+- updated to 1.8
+   see /usr/share/doc/packages/perl-String-CRC32/Changes
+
+  1.800     2019-11-01
+          - Perldoc tweaks, GH #3, thanks to mattias-p
+
+-------------------------------------------------------------------

Old:
----
  String-CRC32-1.7.tar.gz

New:
----
  String-CRC32-1.8.tar.gz

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

Other differences:
------------------
++++++ perl-String-CRC32.spec ++++++
--- /var/tmp/diff_new_pack.73QQOw/_old  2019-11-06 14:04:31.172686400 +0100
+++ /var/tmp/diff_new_pack.73QQOw/_new  2019-11-06 14:04:31.176686404 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-String-CRC32
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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
@@ -12,19 +12,18 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:           perl-String-CRC32
-Version:        1.7
+Version:        1.8
 Release:        0
-#Upstream: SUSE-Public-Domain
 %define cpan_name String-CRC32
 Summary:        Perl interface for cyclic redundancy check generation
 License:        SUSE-Public-Domain
 Group:          Development/Libraries/Perl
-Url:            http://search.cpan.org/dist/String-CRC32/
+Url:            https://metacpan.org/release/%{cpan_name}
 Source0:        
https://cpan.metacpan.org/authors/id/L/LE/LEEJO/%{cpan_name}-%{version}.tar.gz
 Source1:        cpanspec.yml
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
@@ -33,8 +32,8 @@
 %{perl_requires}
 
 %description
-The *CRC32* module calculates CRC sums of 32 bit lengths. It generates the
-same CRC values as ZMODEM, PKZIP, PICCHECK and many others.
+The *CRC32* module calculates CRC sums of 32 bit lengths as integers. It
+generates the same CRC values as ZMODEM, PKZIP, PICCHECK and many others.
 
 Despite its name, this module is able to compute the checksum of files as
 well as strings.
@@ -43,11 +42,11 @@
 %setup -q -n %{cpan_name}-%{version}
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
-%{__make} %{?_smp_mflags}
+perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
+make %{?_smp_mflags}
 
 %check
-%{__make} test
+make test
 
 %install
 %perl_make_install

++++++ String-CRC32-1.7.tar.gz -> String-CRC32-1.8.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/String-CRC32-1.7/CRC32.pm 
new/String-CRC32-1.8/CRC32.pm
--- old/String-CRC32-1.7/CRC32.pm       2018-07-02 14:54:41.000000000 +0200
+++ new/String-CRC32-1.8/CRC32.pm       2019-11-01 08:58:46.000000000 +0100
@@ -11,7 +11,7 @@
 
 @ISA = qw(Exporter DynaLoader);
 
-$VERSION = 1.700;
+$VERSION = 1.800;
 
 # Items to export into caller's namespace by default
 @EXPORT = qw(crc32);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/String-CRC32-1.7/CRC32.pod 
new/String-CRC32-1.8/CRC32.pod
--- old/String-CRC32-1.7/CRC32.pod      2018-07-02 14:54:21.000000000 +0200
+++ new/String-CRC32-1.8/CRC32.pod      2019-11-01 08:54:23.000000000 +0100
@@ -11,6 +11,7 @@
 
     $somestring = "some string";
     $crc = crc32($somestring);
+    printf "%08x\n", $crc;
 
     open my $fh, '<', 'location/of/some.file' or die $!;
     binmode $fh;
@@ -19,7 +20,7 @@
 
 =head1 DESCRIPTION
 
-The B<CRC32> module calculates CRC sums of 32 bit lengths.
+The B<CRC32> module calculates CRC sums of 32 bit lengths as integers.
 It generates the same CRC values as ZMODEM, PKZIP, PICCHECK and
 many others.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/String-CRC32-1.7/Changes new/String-CRC32-1.8/Changes
--- old/String-CRC32-1.7/Changes        2018-07-02 14:55:56.000000000 +0200
+++ new/String-CRC32-1.8/Changes        2019-11-01 08:58:46.000000000 +0100
@@ -1,5 +1,8 @@
 Revision history for String::CRC32
 
+1.800     2019-11-01
+        - Perldoc tweaks, GH #3, thanks to mattias-p
+
 1.700     2017-07-02
         - Perldoc tweaks, GH #2, thanks to choroba
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/String-CRC32-1.7/META.json 
new/String-CRC32-1.8/META.json
--- old/String-CRC32-1.7/META.json      2018-07-02 14:56:20.000000000 +0200
+++ new/String-CRC32-1.8/META.json      2019-11-01 08:59:35.000000000 +0100
@@ -4,13 +4,13 @@
       "unknown"
    ],
    "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter 
version 2.150010",
+   "generated_by" : "ExtUtils::MakeMaker version 7.36, CPAN::Meta::Converter 
version 2.150010",
    "license" : [
       "unrestricted"
    ],
    "meta-spec" : {
       "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec";,
-      "version" : "2"
+      "version" : 2
    },
    "name" : "String-CRC32",
    "no_index" : {
@@ -44,6 +44,6 @@
          "url" : "https://github.com/leejo/string-crc32";
       }
    },
-   "version" : 1.7,
-   "x_serialization_backend" : "JSON::PP version 2.27400_02"
+   "version" : 1.8,
+   "x_serialization_backend" : "JSON::PP version 4.02"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/String-CRC32-1.7/META.yml 
new/String-CRC32-1.8/META.yml
--- old/String-CRC32-1.7/META.yml       2018-07-02 14:56:20.000000000 +0200
+++ new/String-CRC32-1.8/META.yml       2019-11-01 08:59:35.000000000 +0100
@@ -7,7 +7,7 @@
 configure_requires:
   ExtUtils::MakeMaker: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter version 
2.150010'
+generated_by: 'ExtUtils::MakeMaker version 7.36, CPAN::Meta::Converter version 
2.150010'
 license: unrestricted
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -22,5 +22,5 @@
   homepage: https://metacpan.org/module/String::CRC32
   license: https://wiki.creativecommons.org/wiki/Public_domain
   repository: https://github.com/leejo/string-crc32
-version: 1.7
+version: 1.8
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'


Reply via email to