Accepting request 177373 from devel:languages: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. (forwarded request 177292 from coolo)

OBS-URL: https://build.opensuse.org/request/show/177373
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Crypt-Rijndael?expand=0&rev=10
This commit is contained in:
Stephan Kulow 2013-06-05 11:33:39 +00:00 committed by Git OBS Bridge
commit 0f4b5e39fe
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

View File

@ -1,7 +1,7 @@
#
# 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
# remain the property of their copyright owners, unless otherwise agreed
@ -15,45 +15,46 @@
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
%bcond_with pod
Name: perl-Crypt-Rijndael
Version: 1.11
Release: 0
%define cpan_name Crypt-Rijndael
Summary: Crypt::CBC compliant Rijndael encryption module
Version: 1.09
Release: 2
License: LGPL-2.1+
License: LGPL-3.0
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/Crypt-Rijndael/
#Source: http://www.cpan.org/modules/by-module/Crypt/Crypt-Rijndael-%{version}.tar.gz
Source: %{cpan_name}-%{version}.tar.gz
Source: http://www.cpan.org/authors/id/B/BD/BDFOY/%{cpan_name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%{perl_requires}
BuildRequires: perl
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(Crypt::Rijndael)
Requires: perl(Test::Manifest) >= 1.14
%{perl_requires}
%description
This module implements the Rijndael cipher, which has just been selected as
the Advanced Encryption Standard.
Authors:
--------
Rafael R. Sevilla
brian d foy, <bdfoy@cpan.org>
* keysize
Returns the keysize, which is 32 (bytes). The Rijndael cipher actually
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
%setup -q -n %{cpan_name}-%{version}
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS"
%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
%{__make} %{?_smp_mflags}
%check
@ -64,11 +65,8 @@ Authors:
%perl_process_packlist
%perl_gen_filelist
%clean
%{__rm} -rf $RPM_BUILD_ROOT
%files -f %{name}.files
%defattr(-,root,root,-)
%doc Changes COPYING LICENSE NEWS README
%defattr(-,root,root,755)
%doc Changes COPYING examples LICENSE MYMETA.yml NEWS README
%changelog