Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package perl-Digest-CRC for openSUSE:Factory
checked in at 2022-07-26 19:45:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Digest-CRC (Old)
and /work/SRC/openSUSE:Factory/.perl-Digest-CRC.new.1533 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Digest-CRC"
Tue Jul 26 19:45:22 2022 rev:16 rq:991167 version:0.24
Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-Digest-CRC/perl-Digest-CRC.changes
2021-04-22 18:06:28.534745425 +0200
+++
/work/SRC/openSUSE:Factory/.perl-Digest-CRC.new.1533/perl-Digest-CRC.changes
2022-07-26 19:45:32.837394285 +0200
@@ -1,0 +2,11 @@
+Wed Jul 13 03:06:56 UTC 2022 - Tina M??ller <[email protected]>
+
+- updated to 0.24
+ see /usr/share/doc/packages/perl-Digest-CRC/Changes
+
+
+ 0.24 Tue Jul 12 12:42:41 2021
+ - fixed issue with clone-method and addfile
+ Thanks to Dirk Joos <[email protected]>
+
+-------------------------------------------------------------------
Old:
----
Digest-CRC-0.23.tar.gz
New:
----
Digest-CRC-0.24.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-Digest-CRC.spec ++++++
--- /var/tmp/diff_new_pack.dScK1h/_old 2022-07-26 19:45:33.441300967 +0200
+++ /var/tmp/diff_new_pack.dScK1h/_new 2022-07-26 19:45:33.445300349 +0200
@@ -1,7 +1,7 @@
#
# spec file for package perl-Digest-CRC
#
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,11 +18,11 @@
%define cpan_name Digest-CRC
Name: perl-Digest-CRC
-Version: 0.23
+Version: 0.24
Release: 0
#Upstream: CRC algorithm code taken from "A PAINLESS GUIDE TO CRC ERROR
DETECTION ALGORITHMS". the public domain.
-Summary: Generic CRC functions
License: SUSE-Public-Domain
+Summary: Generic CRC functions
URL: https://metacpan.org/release/%{cpan_name}
Source0:
https://cpan.metacpan.org/authors/id/O/OL/OLIMAUL/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
++++++ Digest-CRC-0.23.tar.gz -> Digest-CRC-0.24.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Digest-CRC-0.23/Changes new/Digest-CRC-0.24/Changes
--- old/Digest-CRC-0.23/Changes 2021-04-15 13:44:34.000000000 +0200
+++ new/Digest-CRC-0.24/Changes 2022-07-12 12:44:05.000000000 +0200
@@ -74,3 +74,8 @@
0.23 Thu Apr 15 13:02:04 2021
- added wrapper for CRC-SAE-J1850
+
+0.24 Tue Jul 12 12:42:41 2021
+ - fixed issue with clone-method and addfile
+ Thanks to Dirk Joos <[email protected]>
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Digest-CRC-0.23/META.yml new/Digest-CRC-0.24/META.yml
--- old/Digest-CRC-0.23/META.yml 2021-04-15 13:28:19.000000000 +0200
+++ new/Digest-CRC-0.24/META.yml 2022-07-12 12:40:48.000000000 +0200
@@ -1,7 +1,7 @@
# http://module-build.sourceforge.net/META-spec.html
#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
name: Digest-CRC
-version: 0.23
+version: 0.24
version_from: lib/Digest/CRC.pm
installdirs: site
requires:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Digest-CRC-0.23/README new/Digest-CRC-0.24/README
--- old/Digest-CRC-0.23/README 2021-04-15 13:28:09.000000000 +0200
+++ new/Digest-CRC-0.24/README 2022-07-12 12:40:10.000000000 +0200
@@ -1,4 +1,4 @@
-Digest::CRC version 0.23
+Digest::CRC version 0.24
========================
NAME
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Digest-CRC-0.23/lib/Digest/CRC.pm
new/Digest-CRC-0.24/lib/Digest/CRC.pm
--- old/Digest-CRC-0.23/lib/Digest/CRC.pm 2021-04-15 13:32:28.000000000
+0200
+++ new/Digest-CRC-0.24/lib/Digest/CRC.pm 2022-07-12 12:46:53.000000000
+0200
@@ -18,7 +18,7 @@
crc64_hex crc64_base64
);
-$VERSION = '0.23';
+$VERSION = '0.24';
$XS_VERSION = $VERSION;
#$VERSION = eval $VERSION;
@@ -260,7 +260,8 @@
refout => $self->{refout},
_data => $self->{_data},
cont => $self->{cont},
- _tab => $self->{_tab}
+ _tab => $self->{_tab},
+ _crc => $self->{_crc}
};
bless $clone, ref $self || $self;
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Digest-CRC-0.23/t/crc.t new/Digest-CRC-0.24/t/crc.t
--- old/Digest-CRC-0.23/t/crc.t 2021-04-15 13:38:39.000000000 +0200
+++ new/Digest-CRC-0.24/t/crc.t 2022-07-12 12:48:31.000000000 +0200
@@ -59,7 +59,7 @@
$ctx->addfile(F);
close(F);
my $y = $ctx->digest;
-ok($y == 2682625271, 'OO crc32 with addfile '.$y);
+ok($y == 2527249122, 'OO crc32 with addfile '.$y);
# start at offset >0 with previous checksum result
$ctx = Digest::CRC->new(type=>"crc32",cont=>1,init=>460478609);