Accepting request 177292 from home:coolo:update-perl

- updated to 1.11
      * Clarify the license as LGPL v3 (29 June 2007) (RT 78629)
      * Add MirBSD support. It's the same options as Sun stuff.

OBS-URL: https://build.opensuse.org/request/show/177292
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Crypt-Rijndael?expand=0&rev=13
This commit is contained in:
Stephan Kulow 2013-06-04 08:42:11 +00:00 committed by Git OBS Bridge
parent 5c6d659e3a
commit 477a2dec73
4 changed files with 33 additions and 28 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:922c74fb29157d440f585e7c28bb6767edef15a1bd86c25c5053c543c644ae18
size 28994

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8f8833bc8839e0d4aa3c26d86d2f39ceb9b13e52a9f5e4fd928da2e71989d3b4
size 23536

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Mon Jun 3 16:01:22 UTC 2013 - coolo@suse.com
- updated to 1.11
* Clarify the license as LGPL v3 (29 June 2007) (RT 78629)
* Add MirBSD support. It's the same options as Sun stuff.
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Nov 18 11:08:45 UTC 2011 - coolo@suse.com Fri Nov 18 11:08:45 UTC 2011 - coolo@suse.com

View File

@ -1,7 +1,7 @@
# #
# spec file for package perl-Crypt-Rijndael # spec file for package perl-Crypt-Rijndael
# #
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@ -15,45 +15,46 @@
# Please submit bugfixes or comments via http://bugs.opensuse.org/ # Please submit bugfixes or comments via http://bugs.opensuse.org/
# #
# norootforbuild
%bcond_with pod
Name: perl-Crypt-Rijndael Name: perl-Crypt-Rijndael
Version: 1.11
Release: 0
%define cpan_name Crypt-Rijndael %define cpan_name Crypt-Rijndael
Summary: Crypt::CBC compliant Rijndael encryption module Summary: Crypt::CBC compliant Rijndael encryption module
Version: 1.09 License: LGPL-3.0
Release: 2
License: LGPLv2+
Group: Development/Libraries/Perl Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/Crypt-Rijndael/ Url: http://search.cpan.org/dist/Crypt-Rijndael/
#Source: http://www.cpan.org/modules/by-module/Crypt/Crypt-Rijndael-%{version}.tar.gz Source: http://www.cpan.org/authors/id/B/BD/BDFOY/%{cpan_name}-%{version}.tar.gz
Source: %{cpan_name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
%{perl_requires}
BuildRequires: perl BuildRequires: perl
BuildRequires: perl-macros BuildRequires: perl-macros
%if %{with pod}
BuildRequires: perl(Test::Pod) >= 1.00
BuildRequires: perl(Test::Pod::Coverage) >= 1.00
%endif
BuildRequires: perl(Test::More)
BuildRequires: perl(Test::Manifest) >= 1.14 BuildRequires: perl(Test::Manifest) >= 1.14
#BuildRequires: perl(Crypt::Rijndael)
Requires: perl(Test::Manifest) >= 1.14
%{perl_requires}
%description %description
This module implements the Rijndael cipher, which has just been selected as This module implements the Rijndael cipher, which has just been selected as
the Advanced Encryption Standard. the Advanced Encryption Standard.
Authors: * keysize
--------
Rafael R. Sevilla Returns the keysize, which is 32 (bytes). The Rijndael cipher actually
brian d foy, <bdfoy@cpan.org> supports keylengths of 16, 24 or 32 bytes, but there is no way to
communicate this to 'Crypt::CBC'.
* blocksize
The blocksize for Rijndael is 16 bytes (128 bits), although the algorithm
actually supports any blocksize that is any multiple of our bytes. 128
bits, is however, the AES-specified block size, so this is all we
support.
%prep %prep
%setup -q -n %{cpan_name}-%{version} %setup -q -n %{cpan_name}-%{version}
%build %build
%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS" %{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
%{__make} %{?_smp_mflags} %{__make} %{?_smp_mflags}
%check %check
@ -64,11 +65,8 @@ Authors:
%perl_process_packlist %perl_process_packlist
%perl_gen_filelist %perl_gen_filelist
%clean
%{__rm} -rf $RPM_BUILD_ROOT
%files -f %{name}.files %files -f %{name}.files
%defattr(-,root,root,-) %defattr(-,root,root,755)
%doc Changes COPYING LICENSE NEWS README %doc Changes COPYING examples LICENSE MYMETA.yml NEWS README
%changelog %changelog