Accepting request 690981 from devel:languages:perl:autoupdate
automatic update OBS-URL: https://build.opensuse.org/request/show/690981 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Crypt-Random?expand=0&rev=12
This commit is contained in:
committed by
Git OBS Bridge
parent
9182e84db1
commit
a3ce01b51c
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package perl-Crypt-Random
|
||||
#
|
||||
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2019 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
|
||||
@@ -12,71 +12,58 @@
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
%define modname Crypt-Random
|
||||
|
||||
Name: perl-%{modname}
|
||||
Version: 1.25
|
||||
Release: 1
|
||||
Name: perl-Crypt-Random
|
||||
Version: 1.52
|
||||
Release: 0
|
||||
%define cpan_name Crypt-Random
|
||||
Summary: Cryptographically Secure, True Random Number Generator
|
||||
Requires: perl-Class-Loader perl-Math-Pari
|
||||
BuildRequires: perl perl-Class-Loader perl-Math-Pari
|
||||
BuildRequires: perl-macros
|
||||
License: GPL/Artistic
|
||||
License: CHECK(Artistic-1.0 OR GPL-1.0-or-later)
|
||||
Group: Development/Libraries/Perl
|
||||
Source: %{modname}-%{version}.tar.gz
|
||||
Patch0: %{modname}-%{version}.diff
|
||||
Url: https://metacpan.org/release/%{cpan_name}
|
||||
Source0: https://cpan.metacpan.org/authors/id/V/VI/VIPUL/%{cpan_name}-%{version}.tar.gz
|
||||
Source1: cpanspec.yml
|
||||
BuildArch: noarch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl-macros
|
||||
BuildRequires: perl(Class::Loader) >= 2.00
|
||||
BuildRequires: perl(Math::Pari) >= 2.001804
|
||||
BuildRequires: perl(Statistics::ChiSquare) >= 1.0000
|
||||
Requires: perl(Class::Loader) >= 2.00
|
||||
Requires: perl(Math::Pari) >= 2.001804
|
||||
Requires: perl(Statistics::ChiSquare) >= 1.0000
|
||||
%{perl_requires}
|
||||
|
||||
%description
|
||||
Crypt::Random is an interface module to the /dev/random device found on most
|
||||
modern Unix systems. The /dev/random driver gathers environmental noise from
|
||||
various non-deterministic sources including inter-keyboard timings and inter-
|
||||
interrupt timings that occur within the operating system environment.
|
||||
|
||||
The /dev/random driver maintains an estimate of true randomness in the pool and
|
||||
decreases it every time random strings are requested for use. When the estimate
|
||||
goes down to zero, the routine blocks and waits for the occurrence of non-
|
||||
deterministic events to refresh the pool.
|
||||
|
||||
The /dev/random kernel module also provides another interface, /dev/urandom,
|
||||
that does not wait for the entropy-pool to recharge and returns as many bytes
|
||||
as requested. /dev/urandom is considerably faster at generation compared to
|
||||
/dev/random, which should be used only when very high quality randomness is
|
||||
desired.
|
||||
|
||||
Authors:
|
||||
--------
|
||||
Vipul Ved Prakash <mail@vipul.net>
|
||||
Crypt::Random is an interface module to the /dev/random device found on
|
||||
most modern unix systems. It also interfaces with egd, a user space entropy
|
||||
gathering daemon, available for systems where /dev/random (or similar)
|
||||
devices are not available. When Math::Pari is installed, Crypt::Random can
|
||||
generate random integers of arbitrary size of a given bitsize or in a
|
||||
specified interval.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{modname}-%{version}
|
||||
%patch0 -p1
|
||||
%setup -q -n %{cpan_name}-%{version}
|
||||
find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644
|
||||
|
||||
%build
|
||||
perl Makefile.PL OPTIMIZE="$RPM_OPT_FLAGS -Wall"
|
||||
make
|
||||
perl Makefile.PL INSTALLDIRS=vendor
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%check
|
||||
make test
|
||||
|
||||
%install
|
||||
make DESTDIR=$RPM_BUILD_ROOT install_vendor
|
||||
%perl_make_install
|
||||
%perl_process_packlist
|
||||
%perl_gen_filelist
|
||||
|
||||
%clean
|
||||
rm -rf %{buildroot}
|
||||
|
||||
%files
|
||||
%defattr(-, root, root)
|
||||
%doc README Changes
|
||||
%doc %{_mandir}/man?/*
|
||||
/usr/bin/makerandom
|
||||
%{perl_vendorlib}/Crypt
|
||||
%{perl_vendorarch}/auto/Crypt
|
||||
%files -f %{name}.files
|
||||
%defattr(-,root,root,755)
|
||||
%doc Changes README
|
||||
|
||||
%changelog
|
||||
|
Reference in New Issue
Block a user