forked from pool/perl-Digest-Perl-MD5
Automatic update to Digest-Perl-MD5-1.91.tar.gz #1
BIN
Digest-Perl-MD5-1.9.tar.gz
LFS
BIN
Digest-Perl-MD5-1.9.tar.gz
LFS
Binary file not shown.
BIN
Digest-Perl-MD5-1.91.tar.gz
LFS
Normal file
BIN
Digest-Perl-MD5-1.91.tar.gz
LFS
Normal file
Binary file not shown.
@@ -1,3 +1,19 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 1 06:12:09 UTC 2026 - Tina Müller <timueller+perl@suse.de>
|
||||
|
||||
- updated to 1.910.0 (1.91)
|
||||
see /usr/share/doc/packages/perl-Digest-Perl-MD5/CHANGES
|
||||
|
||||
1.91: Performance and maintenance release:
|
||||
- ~11% performance improvement on 64-bit systems (reduced masking overhead)
|
||||
- Added GitHub Actions CI workflows
|
||||
- Code reformatted with perltidy
|
||||
|
||||
1.9: Bug fix release:
|
||||
- RT#78392: Localize $_ to protect calling modules from clobbering
|
||||
- RT#85872: Fixed /usr/bin/false shebang in tools/md5
|
||||
- RT#86853: Fixed typos in documentation
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 6 22:23:44 UTC 2025 - Tina Müller <tina.mueller@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package perl-Digest-Perl-MD5
|
||||
#
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
# Copyright (c) 2026 SUSE LLC and contributors
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -18,10 +18,10 @@
|
||||
|
||||
%define cpan_name Digest-Perl-MD5
|
||||
Name: perl-Digest-Perl-MD5
|
||||
Version: 1.900.0
|
||||
Version: 1.910.0
|
||||
Release: 0
|
||||
# 1.9 -> normalize -> 1.900.0
|
||||
%define cpan_version 1.9
|
||||
# 1.91 -> normalize -> 1.910.0
|
||||
%define cpan_version 1.91
|
||||
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||
Summary: Perl Implementation of Rivest's MD5 algorithm
|
||||
URL: https://metacpan.org/release/%{cpan_name}
|
||||
@@ -36,15 +36,15 @@ Provides: perl(Digest::Perl::MD5) = %{version}
|
||||
%{perl_requires}
|
||||
|
||||
%description
|
||||
This modules has the same interface as the much faster 'Digest::MD5'. So
|
||||
you can easily exchange them, e.g.
|
||||
This module has the same interface as the much faster 'Digest::MD5'. So you
|
||||
can easily exchange them, e.g.
|
||||
|
||||
BEGIN {
|
||||
eval {
|
||||
require Digest::MD5;
|
||||
import Digest::MD5 'md5_hex'
|
||||
};
|
||||
if ($@) { # ups, no Digest::MD5
|
||||
if ($@) { # oops, no Digest::MD5
|
||||
require Digest::Perl::MD5;
|
||||
import Digest::Perl::MD5 'md5_hex'
|
||||
}
|
||||
@@ -57,10 +57,10 @@ You can also install the Perl part of Digest::MD5 together with
|
||||
Digest::Perl::MD5 and use Digest::MD5 as normal, it falls back to
|
||||
Digest::Perl::MD5 if it cannot load its object files.
|
||||
|
||||
For a detailed Documentation see the 'Digest::MD5' module.
|
||||
For detailed documentation see the 'Digest::MD5' module.
|
||||
|
||||
%prep
|
||||
%autosetup -n %{cpan_name}-%{cpan_version} -p1
|
||||
%autosetup -n %{cpan_name}-%{cpan_version} -p1
|
||||
|
||||
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -path "*/scripts/*" ! -name "configure" -print0 | xargs -0 chmod 644
|
||||
|
||||
@@ -77,6 +77,6 @@ make test
|
||||
%perl_gen_filelist
|
||||
|
||||
%files -f %{name}.files
|
||||
%doc CHANGES rand.f
|
||||
%doc CHANGES rand.f README.md
|
||||
|
||||
%changelog
|
||||
|
||||
Reference in New Issue
Block a user