public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/perl-Crypt-PBKDF2] epel8: Unretired, new version is 0.161520
@ 2026-06-24 13:39 Paul Howarth
0 siblings, 0 replies; only message in thread
From: Paul Howarth @ 2026-06-24 13:39 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/perl-Crypt-PBKDF2
Branch : epel8
Commit : dd30e157130cbc33115e50f4188cf868f25d6b55
Author : Paul Howarth <paul@city-fan.org>
Date : 2021-02-16T14:08:14+00:00
Stats : +64/-58 in 3 file(s)
URL : https://src.fedoraproject.org/rpms/perl-Crypt-PBKDF2/c/dd30e157130cbc33115e50f4188cf868f25d6b55?branch=epel8
Log:
Unretired, new version is 0.161520
Re-review request: https://bugzilla.redhat.com/show_bug.cgi?id=1928111
Releng ticket: https://pagure.io/releng/issue/10016
---
diff --git a/.gitignore b/.gitignore
index 5553214..b75100d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1 @@
-/Crypt-PBKDF2-0.140890.tar.gz
-/Crypt-PBKDF2-0.142390.tar.gz
-/Crypt-PBKDF2-0.150900.tar.gz
-/Crypt-PBKDF2-0.160410.tar.gz
-/Crypt-PBKDF2-0.161520.tar.gz
+/Crypt-PBKDF2-[0-9.]*.tar.gz
diff --git a/perl-Crypt-PBKDF2.spec b/perl-Crypt-PBKDF2.spec
index abdc086..32d06c9 100644
--- a/perl-Crypt-PBKDF2.spec
+++ b/perl-Crypt-PBKDF2.spec
@@ -1,62 +1,64 @@
-Name: perl-Crypt-PBKDF2
-Version: 0.161520
-Release: 11%{?dist}
-Summary: PBKDF2 password hashing algorithm
-License: GPL+ or Artistic
-URL: https://metacpan.org/release/Crypt-PBKDF2
-Source0: https://cpan.metacpan.org/modules/by-module/Crypt/Crypt-PBKDF2-%{version}.tar.gz
-BuildArch: noarch
-BuildRequires: findutils
-BuildRequires: make
-BuildRequires: perl-interpreter
-BuildRequires: perl-generators
-BuildRequires: perl(Carp)
-BuildRequires: perl(constant)
-BuildRequires: perl(Digest) >= 1.16
-BuildRequires: perl(Digest::HMAC) >= 1.01
-BuildRequires: perl(Digest::SHA)
-BuildRequires: perl(Digest::SHA3) >= 0.22
-BuildRequires: perl(Encode)
-BuildRequires: perl(ExtUtils::MakeMaker)
-BuildRequires: perl(MIME::Base64)
-BuildRequires: perl(Module::Runtime)
-BuildRequires: perl(Moo) >= 2
-BuildRequires: perl(Moo::Role) >= 2
-BuildRequires: perl(namespace::autoclean)
-BuildRequires: perl(Scalar::Util)
-BuildRequires: perl(strict)
-BuildRequires: perl(strictures) >= 2
-BuildRequires: perl(Test::Fatal)
-BuildRequires: perl(Test::More)
-BuildRequires: perl(Try::Tiny) >= 0.04
-BuildRequires: perl(Type::Tiny) >= 1.000005
-BuildRequires: perl(Types::Standard)
-BuildRequires: perl(warnings)
-Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+Summary: The PBKDF2 password hashing algorithm
+Name: perl-Crypt-PBKDF2
+Version: 0.161520
+Release: 12%{?dist}
+License: GPL+ or Artistic
+URL: https://metacpan.org/release/Crypt-PBKDF2
+Source0: https://cpan.metacpan.org/modules/by-module/Crypt/Crypt-PBKDF2-%{version}.tar.gz
+BuildArch: noarch
+# Module Build
+BuildRequires: coreutils
+BuildRequires: findutils
+BuildRequires: make
+BuildRequires: perl-generators
+BuildRequires: perl-interpreter
+BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
+BuildRequires: perl(strict)
+BuildRequires: perl(warnings)
+# Module Runtime
+BuildRequires: perl(Carp)
+BuildRequires: perl(Digest) >= 1.16
+BuildRequires: perl(Digest::HMAC) >= 1.01
+BuildRequires: perl(Digest::SHA)
+BuildRequires: perl(Digest::SHA3) >= 0.22
+BuildRequires: perl(MIME::Base64)
+BuildRequires: perl(Module::Runtime)
+BuildRequires: perl(Moo) >= 2
+BuildRequires: perl(Moo::Role) >= 2
+BuildRequires: perl(namespace::autoclean)
+BuildRequires: perl(Scalar::Util)
+BuildRequires: perl(strictures) >= 2
+BuildRequires: perl(Try::Tiny) >= 0.04
+BuildRequires: perl(Type::Tiny)
+BuildRequires: perl(Types::Standard) >= 1.000005
+# Test Suite
+BuildRequires: perl(constant)
+BuildRequires: perl(Encode)
+BuildRequires: perl(Test::Fatal)
+BuildRequires: perl(Test::More)
+# Runtime
+Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
%description
-PBKDF2 is a secure password hashing algorithm that uses the techniques of
-"key strengthening" to make the complexity of a brute-force attack
-arbitrarily high. PBKDF2 uses any other cryptographic hash or cipher (by
-convention, usually HMAC-SHA1, but Crypt::PBKDF2 is fully pluggable), and
-allows for an arbitrary number of iterations of the hashing function, and a
-nearly unlimited output hash size (up to 2**32 - 1 times the size of the
-output of the back-end hash). The hash is salted, as any password hash
-should be, and the salt may also be of arbitrary size.
+PBKDF2 is a secure password hashing algorithm that uses the techniques of "key
+strengthening" to make the complexity of a brute-force attack arbitrarily high.
+PBKDF2 uses any other cryptographic hash or cipher (by convention, usually
+HMAC-SHA1, but Crypt::PBKDF2 is fully pluggable), and allows for an arbitrary
+number of iterations of the hashing function, and a nearly unlimited output
+hash size (up to 2**32-1 times the size of the output of the backend hash).
+The hash is salted, as any password hash should be, and the salt may also be of
+arbitrary size.
%prep
%setup -q -n Crypt-PBKDF2-%{version}
%build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
-make %{?_smp_mflags}
+perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
+%{make_build}
%install
-make pure_install DESTDIR=$RPM_BUILD_ROOT
-
-find $RPM_BUILD_ROOT -type f -name .packlist -delete
-
-%{_fixperms} $RPM_BUILD_ROOT/*
+%{make_install}
+%{_fixperms} -c %{buildroot}
%check
make test
@@ -64,10 +66,18 @@ make test
%files
%license LICENSE
%doc Changes
-%{perl_vendorlib}/*
-%{_mandir}/man3/*
+%{perl_vendorlib}/Crypt/
+%{_mandir}/man3/Crypt::PBKDF2.3*
+%{_mandir}/man3/Crypt::PBKDF2::Hash.3*
+%{_mandir}/man3/Crypt::PBKDF2::Hash::DigestHMAC.3*
+%{_mandir}/man3/Crypt::PBKDF2::Hash::HMACSHA1.3*
+%{_mandir}/man3/Crypt::PBKDF2::Hash::HMACSHA2.3*
+%{_mandir}/man3/Crypt::PBKDF2::Hash::HMACSHA3.3*
%changelog
+* Fri Feb 12 2021 Paul Howarth <paul@city-fan.org> - 0.161520-12
+- Unretired, spec re-written and re-reviewed (#1928111)
+
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.161520-11
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
diff --git a/sources b/sources
index 5f28efa..46f209d 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-7a0c8f86ea606125971c36e1b9e21a74 Crypt-PBKDF2-0.161520.tar.gz
+SHA512 (Crypt-PBKDF2-0.161520.tar.gz) = 0f5dfd6c642fcc3b34bc96f10b6f7344a8f3bac1bda6c610e85099906545bc78953666415240e793deae6db055df6f1007f3a946973ee960921cec4069de3a0a
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-06-24 13:39 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-24 13:39 [rpms/perl-Crypt-PBKDF2] epel8: Unretired, new version is 0.161520 Paul Howarth
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox