Hello community, here is the log from the commit of package perl-String-CRC32 for openSUSE:Factory checked in at 2018-07-28 12:39:39 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/perl-String-CRC32 (Old) and /work/SRC/openSUSE:Factory/.perl-String-CRC32.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-String-CRC32" Sat Jul 28 12:39:39 2018 rev:2 rq:623044 version:1.7 Changes: -------- --- /work/SRC/openSUSE:Factory/perl-String-CRC32/perl-String-CRC32.changes 2017-10-09 19:46:56.798944836 +0200 +++ /work/SRC/openSUSE:Factory/.perl-String-CRC32.new/perl-String-CRC32.changes 2018-07-28 12:39:43.532347727 +0200 @@ -1,0 +2,6 @@ +Sat Jul 7 06:04:35 UTC 2018 - [email protected] + +- updated to 1.7 + see /usr/share/doc/packages/perl-String-CRC32/Changes + +------------------------------------------------------------------- Old: ---- String-CRC32-1.6.tar.gz New: ---- String-CRC32-1.7.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ perl-String-CRC32.spec ++++++ --- /var/tmp/diff_new_pack.RJ5RYT/_old 2018-07-28 12:39:44.172348956 +0200 +++ /var/tmp/diff_new_pack.RJ5RYT/_new 2018-07-28 12:39:44.172348956 +0200 @@ -1,7 +1,7 @@ # # spec file for package perl-String-CRC32 # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2018 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-String-CRC32 -Version: 1.6 +Version: 1.7 Release: 0 #Upstream: SUSE-Public-Domain %define cpan_name String-CRC32 ++++++ String-CRC32-1.6.tar.gz -> String-CRC32-1.7.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/String-CRC32-1.6/CRC32.pm new/String-CRC32-1.7/CRC32.pm --- old/String-CRC32-1.6/CRC32.pm 2017-06-26 17:25:37.000000000 +0200 +++ new/String-CRC32-1.7/CRC32.pm 2018-07-02 14:54:41.000000000 +0200 @@ -11,7 +11,7 @@ @ISA = qw(Exporter DynaLoader); -$VERSION = 1.600; +$VERSION = 1.700; # 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.6/CRC32.pod new/String-CRC32-1.7/CRC32.pod --- old/String-CRC32-1.6/CRC32.pod 2017-06-26 17:25:01.000000000 +0200 +++ new/String-CRC32-1.7/CRC32.pod 2018-07-02 14:54:21.000000000 +0200 @@ -12,10 +12,10 @@ $somestring = "some string"; $crc = crc32($somestring); - open(SOMEFILE, "location/of/some.file"); - binmode SOMEFILE; - $crc = crc32(*SOMEFILE); - close(SOMEFILE); + open my $fh, '<', 'location/of/some.file' or die $!; + binmode $fh; + $crc = crc32($fh); + close $fh; =head1 DESCRIPTION @@ -38,10 +38,10 @@ You may even check files: - open(SOMEFILE, "location/of/some.file"); - binmode SOMEFILE; - $crc = crc32(*SOMEFILE); - close(SOMEFILE); + open my $fh, '<', 'location/of/some.file' or die $!; + binmode $fh; + $crc = crc32($fh); + close $fh; A init value may also have been supplied in the above example. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/String-CRC32-1.6/Changes new/String-CRC32-1.7/Changes --- old/String-CRC32-1.6/Changes 2017-06-26 17:25:24.000000000 +0200 +++ new/String-CRC32-1.7/Changes 2018-07-02 14:55:56.000000000 +0200 @@ -1,5 +1,8 @@ Revision history for String::CRC32 +1.700 2017-07-02 + - Perldoc tweaks, GH #2, thanks to choroba + 1.600 2017-06-23 - New maintainer: LEEJO - Add Changes file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/String-CRC32-1.6/META.json new/String-CRC32-1.7/META.json --- old/String-CRC32-1.6/META.json 2017-06-26 17:25:53.000000000 +0200 +++ new/String-CRC32-1.7/META.json 2018-07-02 14:56:20.000000000 +0200 @@ -4,7 +4,7 @@ "unknown" ], "dynamic_config" : 1, - "generated_by" : "ExtUtils::MakeMaker version 7.1, CPAN::Meta::Converter version 2.143240", + "generated_by" : "ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter version 2.150010", "license" : [ "unrestricted" ], @@ -29,9 +29,6 @@ "requires" : { "ExtUtils::MakeMaker" : "0" } - }, - "runtime" : { - "requires" : {} } }, "release_status" : "stable", @@ -47,5 +44,6 @@ "url" : "https://github.com/leejo/string-crc32" } }, - "version" : "1.6" + "version" : 1.7, + "x_serialization_backend" : "JSON::PP version 2.27400_02" } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/String-CRC32-1.6/META.yml new/String-CRC32-1.7/META.yml --- old/String-CRC32-1.6/META.yml 2017-06-26 17:25:53.000000000 +0200 +++ new/String-CRC32-1.7/META.yml 2018-07-02 14:56:20.000000000 +0200 @@ -7,7 +7,7 @@ configure_requires: ExtUtils::MakeMaker: '0' dynamic_config: 1 -generated_by: 'ExtUtils::MakeMaker version 7.1, CPAN::Meta::Converter version 2.143240' +generated_by: 'ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter version 2.150010' license: unrestricted meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -17,10 +17,10 @@ directory: - t - inc -requires: {} resources: bugtracker: https://github.com/leejo/string-crc32/issues homepage: https://metacpan.org/module/String::CRC32 license: https://wiki.creativecommons.org/wiki/Public_domain repository: https://github.com/leejo/string-crc32 -version: '1.6' +version: 1.7 +x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
