forked from pool/perl-Crypt-OpenSSL-Random
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Crypt-OpenSSL-Random?expand=0&rev=1
This commit is contained in:
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
## Default LFS
|
||||||
|
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.png filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
.osc
|
3
Crypt-OpenSSL-Random-0.04.tar.gz
Normal file
3
Crypt-OpenSSL-Random-0.04.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:acf7eb81023cd1f40d8c60b893096d041513df2be2aefe145cc7ae1a3dcc78c7
|
||||||
|
size 10679
|
5
perl-Crypt-OpenSSL-Random.changes
Normal file
5
perl-Crypt-OpenSSL-Random.changes
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jan 20 12:23:02 CET 2009 - varkoly@suse.de
|
||||||
|
|
||||||
|
- Initial version of perl-Crypt-OpenSSL-Random
|
||||||
|
|
74
perl-Crypt-OpenSSL-Random.spec
Normal file
74
perl-Crypt-OpenSSL-Random.spec
Normal file
@@ -0,0 +1,74 @@
|
|||||||
|
#
|
||||||
|
# spec file for package perl-Crypt-OpenSSL-Random (Version 0.04)
|
||||||
|
#
|
||||||
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
|
#
|
||||||
|
# All modifications and additions to the file contributed by third parties
|
||||||
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
|
# upon. The license for this file, and modifications and additions to the
|
||||||
|
# file, is the same license as for the pristine package itself (unless the
|
||||||
|
# license for the pristine package is not an Open Source License, in which
|
||||||
|
# case the license is the MIT License). An "Open Source License" is a
|
||||||
|
# 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/
|
||||||
|
#
|
||||||
|
|
||||||
|
# norootforbuild
|
||||||
|
|
||||||
|
Url: http://search.cpan.org/dist/Crypt-OpenSSL-Random/
|
||||||
|
|
||||||
|
Name: perl-Crypt-OpenSSL-Random
|
||||||
|
BuildRequires: openssl-devel
|
||||||
|
License: Dual GPLv2 or Artistic
|
||||||
|
Group: Development/Libraries/Perl
|
||||||
|
Requires: perl = %{perl_version}
|
||||||
|
AutoReqProv: on
|
||||||
|
Summary: Interface to OpenSSL PRNG methods
|
||||||
|
Version: 0.04
|
||||||
|
Release: 2
|
||||||
|
Source: Crypt-OpenSSL-Random-%{version}.tar.gz
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
|
%description
|
||||||
|
Crypt::OpenSSL::Random is a perl Interface to OpenSSL PRNG methods
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Authors:
|
||||||
|
--------
|
||||||
|
Ian Robertson, <iroberts@cpan.org>
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -n Crypt-OpenSSL-Random-%{version}
|
||||||
|
|
||||||
|
%build
|
||||||
|
perl Makefile.PL
|
||||||
|
make
|
||||||
|
|
||||||
|
%check
|
||||||
|
make test
|
||||||
|
|
||||||
|
%install
|
||||||
|
make DESTDIR=$RPM_BUILD_ROOT install_vendor
|
||||||
|
%perl_process_packlist
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-, root, root)
|
||||||
|
%dir %{perl_vendorarch}/Crypt
|
||||||
|
%dir %{perl_vendorarch}/Crypt/OpenSSL
|
||||||
|
%{perl_vendorarch}/Crypt/OpenSSL/Random.pm
|
||||||
|
%dir %{perl_vendorarch}/auto/Crypt
|
||||||
|
%dir %{perl_vendorarch}/auto/Crypt/OpenSSL
|
||||||
|
%dir %{perl_vendorarch}/auto/Crypt/OpenSSL/Random
|
||||||
|
%{perl_vendorarch}/auto/Crypt/OpenSSL/Random/.packlist
|
||||||
|
%{perl_vendorarch}/auto/Crypt/OpenSSL/Random/Random.bs
|
||||||
|
%{perl_vendorarch}/auto/Crypt/OpenSSL/Random/Random.so
|
||||||
|
%{perl_vendorarch}/auto/Crypt/OpenSSL/Random/autosplit.ix
|
||||||
|
%doc %{_mandir}/man3/Crypt::OpenSSL::Random.3pm.gz
|
||||||
|
/var/adm/perl-modules/perl-Crypt-OpenSSL-Random
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Tue Jan 20 2009 varkoly@suse.de
|
||||||
|
- Initial version of perl-Crypt-OpenSSL-Random
|
Reference in New Issue
Block a user