diff --git a/README.md b/README.md index 736835c..177eab6 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # perl-Crypt-OpenSSL-Random +RSA encoding and decoding, using the openSSL libraries. + diff --git a/perl-Crypt-OpenSSL-Random.spec b/perl-Crypt-OpenSSL-Random.spec new file mode 100644 index 0000000..e39933f --- /dev/null +++ b/perl-Crypt-OpenSSL-Random.spec @@ -0,0 +1,65 @@ +%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0) + +Name: perl-Crypt-OpenSSL-Random +Version: 0.04 +Release: 4mamba +Summary: Crypt::OpenSSL::Random - RSA encoding and decoding, using the openSSL libraries +Group: System/Libraries/Perl +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://www.cpan.org +Source: http://search.cpan.org/CPAN/authors/id/I/IR/IROBERTS/Crypt-OpenSSL-Random-%{version}.tar.gz +License: GPL, Artistic +Requires: perl >= %perl_major_ver +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libopenssl-devel +BuildRequires: perl-devel +## AUTOBUILDREQ-END +BuildRequires: perl-devel >= %perl_major_ver +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +RSA encoding and decoding, using the openSSL libraries. + +%prep +%setup -q -n Crypt-OpenSSL-Random-%{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 0.04-4mamba +- perl 5.16 mass rebuild + +* Wed Nov 24 2010 Silvan Calarco 0.04-3mamba +- rebuilt with libopenssl 1.0 + +* Tue Nov 04 2008 Silvan Calarco 0.04-2mamba +- automatic rebuild by autodist + +* Thu Nov 08 2007 Silvan Calarco 0.04-1mamba +- package created by autospec