perl 5.16 mass rebuild [release 0.05-3mamba;Sat Nov 10 2012]

This commit is contained in:
Silvan Calarco 2024-01-06 08:44:38 +01:00
parent 2c98c5b810
commit 094019106f
2 changed files with 62 additions and 0 deletions

View File

@ -1,2 +1,5 @@
# perl-Crypt-CAST5
This module implements the CAST5 block cipher using compiled C code for increased speed.
See RFC 2114.

59
perl-Crypt-CAST5.spec Normal file
View File

@ -0,0 +1,59 @@
%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0)
Name: perl-Crypt-CAST5
Version: 0.05
Release: 3mamba
Summary: Crypt::CAST5 - The CAST5 block cipher
Group: System/Libraries/Perl
Vendor: openmamba
Distribution: openmamba
Packager: Aleph0 <aleph0@openmamba.org>
URL: http://www.cpan.org
Source: http://www.cpan.org/modules/by-module/Crypt/Crypt-CAST5-%{version}.tar.gz
License: Artistic
Requires(post):%{__install_info}
Requires: perl >= %perl_major_ver
BuildRequires: perl-devel >= %perl_major_ver
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
This module implements the CAST5 block cipher using compiled C code for increased speed.
See RFC 2114.
%prep
%setup -q -n Crypt-CAST5-%{version}
%build
perl Makefile.PL PREFIX=%{_prefix} INSTALLDIRS=vendor
%make
%make test
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall_perl
packlist=`find %{buildroot} -name .packlist`
[ -z "$packlist" ] && exit 1 || cat $packlist | \
sed "s,%buildroot,,g;s,.*/man/.*,&.gz,g" | \
sort -u > .packlist && rm $packlist
strid=`echo $packlist | sed 's,.*auto\(.*\)/.packlist,\1,'`
for dir in `find %{buildroot} -type d | grep $strid`; do
echo "%dir ${dir#%buildroot}" >> .packlist
done
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
rm -f .packlist
%files -f .packlist
%defattr(-,root,root)
%changelog
* Sat Nov 10 2012 Silvan Calarco <silvan.calarco@mambasoft.it> 0.05-3mamba
- perl 5.16 mass rebuild
* Tue Nov 04 2008 Silvan Calarco <silvan.calarco@mambasoft.it> 0.05-2mamba
- automatic rebuild by autodist
* Tue Nov 13 2007 Aleph0 <aleph0@openmamba.org> 0.05-1mamba
- package created by autospec