You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
174 lines
5.7 KiB
174 lines
5.7 KiB
# Perform optional tests
|
|
%bcond_without perl_Crypt_URandom_enables_optional_test
|
|
|
|
Name: perl-Crypt-URandom
|
|
Version: 0.38
|
|
Release: 1%{?dist}
|
|
Summary: Non-blocking randomness for Perl
|
|
License: GPL-1.0-or-later OR Artistic-1.0-Perl
|
|
URL: https://metacpan.org/release/Crypt-URandom
|
|
Source0: https://cpan.metacpan.org/authors/id/D/DD/DDICK/Crypt-URandom-%{version}.tar.gz
|
|
BuildArch: noarch
|
|
BuildRequires: coreutils
|
|
BuildRequires: make
|
|
BuildRequires: perl-generators
|
|
BuildRequires: perl-interpreter
|
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
|
|
BuildRequires: perl(strict)
|
|
BuildRequires: perl(warnings)
|
|
# Run-time:
|
|
BuildRequires: perl(Carp)
|
|
BuildRequires: perl(English)
|
|
BuildRequires: perl(Exporter)
|
|
BuildRequires: perl(FileHandle)
|
|
# Win32 not used
|
|
# Win32::API not used
|
|
# Win32::API::Type not used
|
|
# Tests:
|
|
BuildRequires: perl(:VERSION) >= 5.6
|
|
BuildRequires: perl(POSIX)
|
|
BuildRequires: perl(Test::More)
|
|
%if %{with perl_Crypt_URandom_enables_optional_test}
|
|
# Optional tests:
|
|
BuildRequires: perl(Encode)
|
|
BuildRequires: perl(Test::Pod) >= 1.14
|
|
%endif
|
|
Requires: perl(FileHandle)
|
|
|
|
%description
|
|
This Module is intended to provide an interface to the strongest available
|
|
source of non-blocking randomness on the current platform.
|
|
|
|
%package tests
|
|
Summary: Tests for %{name}
|
|
Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
Requires: perl-Test-Harness
|
|
%if %{with perl_Crypt_URandom_enables_optional_test}
|
|
Requires: perl(Encode)
|
|
%endif
|
|
|
|
%description tests
|
|
Tests from %{name}. Execute them
|
|
with "%{_libexecdir}/%{name}/test".
|
|
|
|
%prep
|
|
%setup -q -n Crypt-URandom-%{version}
|
|
%if !%{with perl_Crypt_URandom_enables_optional_test}
|
|
rm t/pod.t
|
|
perl -i -ne 'print $_ unless m{^t/pod.t}' MANIFEST
|
|
%endif
|
|
# Delete always skipped release tests
|
|
rm t/manifest.t
|
|
perl -i -ne 'print $_ unless m{^t/manifest.t}' MANIFEST
|
|
# Make scripts with shebangs executable
|
|
chmod a+x t/core_read.t t/core_sysopen.t
|
|
|
|
%build
|
|
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
|
|
%{make_build}
|
|
|
|
%install
|
|
%{make_install}
|
|
%{_fixperms} %{buildroot}/*
|
|
# Install tests
|
|
mkdir -p %{buildroot}%{_libexecdir}/%{name}
|
|
cp -a t %{buildroot}%{_libexecdir}/%{name}
|
|
# t/boilerplate.t expects files in source archive localtions.
|
|
rm %{buildroot}%{_libexecdir}/%{name}/t/boilerplate.t
|
|
%if %{with perl_Crypt_URandom_enables_optional_test}
|
|
rm %{buildroot}%{_libexecdir}/%{name}/t/pod.t
|
|
%endif
|
|
cat > %{buildroot}%{_libexecdir}/%{name}/test << 'EOF'
|
|
#!/bin/sh
|
|
cd %{_libexecdir}/%{name} && exec prove -I . -j "$(getconf _NPROCESSORS_ONLN)"
|
|
EOF
|
|
chmod +x %{buildroot}%{_libexecdir}/%{name}/test
|
|
|
|
%check
|
|
export HARNESS_OPTIONS=j$(perl -e 'if ($ARGV[0] =~ /.*-j([0-9][0-9]*).*/) {print $1} else {print 1}' -- '%{?_smp_mflags}')
|
|
make test
|
|
|
|
%files
|
|
# README.md is identical to README.
|
|
%doc Changes README
|
|
%dir %{perl_vendorlib}/Crypt
|
|
%{perl_vendorlib}/Crypt/URandom.pm
|
|
%{_mandir}/man3/Crypt::URandom.*
|
|
|
|
%files tests
|
|
%{_libexecdir}/%{name}
|
|
|
|
%changelog
|
|
* Thu May 11 2023 Petr Pisar <ppisar@redhat.com> - 0.38-1
|
|
- 0.38 bump
|
|
|
|
* Fri Dec 17 2021 Petr Pisar <ppisar@redhat.com> - 0.36-21
|
|
- Modernize a spec file
|
|
- Package the tests
|
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.36-20
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
* Fri May 21 2021 Jitka Plesnikova <jplesnik@redhat.com> - 0.36-19
|
|
- Perl 5.34 rebuild
|
|
|
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.36-18
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.36-17
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
* Mon Jun 22 2020 Jitka Plesnikova <jplesnik@redhat.com> - 0.36-16
|
|
- Perl 5.32 rebuild
|
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.36-15
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.36-14
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
* Thu May 30 2019 Jitka Plesnikova <jplesnik@redhat.com> - 0.36-13
|
|
- Perl 5.30 rebuild
|
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.36-12
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.36-11
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
* Thu Jun 28 2018 Jitka Plesnikova <jplesnik@redhat.com> - 0.36-10
|
|
- Perl 5.28 rebuild
|
|
|
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.36-9
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.36-8
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
* Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 0.36-7
|
|
- Perl 5.26 rebuild
|
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.36-6
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 0.36-5
|
|
- Perl 5.24 rebuild
|
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.36-4
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.36-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
* Thu Jun 11 2015 Jitka Plesnikova <jplesnik@redhat.com> - 0.36-2
|
|
- Perl 5.22 rebuild
|
|
|
|
* Thu Jun 11 2015 Petr Pisar <ppisar@redhat.com> - 0.36-1
|
|
- 0.36 bump
|
|
|
|
* Wed Jun 03 2015 Jitka Plesnikova <jplesnik@redhat.com> - 0.34-2
|
|
- Perl 5.22 rebuild
|
|
|
|
* Fri Oct 10 2014 Petr Pisar <ppisar@redhat.com> 0.34-1
|
|
- Specfile autogenerated by cpanspec 1.78.
|