From 2f7301579453513f4ff27f9fdf56ea1897a6b70b Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 08:45:13 +0100 Subject: [PATCH] perl 5.16 mass rebuild [release 0.06-3mamba;Tue Nov 13 2012] --- README.md | 2 ++ perl-Crypt-DH.spec | 63 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 65 insertions(+) create mode 100644 perl-Crypt-DH.spec diff --git a/README.md b/README.md index 4e647d0..f58d074 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # perl-Crypt-DH +This is Crypt::DH, a module implementing the Diffie-Hellman key exchange system. + diff --git a/perl-Crypt-DH.spec b/perl-Crypt-DH.spec new file mode 100644 index 0000000..6819815 --- /dev/null +++ b/perl-Crypt-DH.spec @@ -0,0 +1,63 @@ +%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0) + +Name: perl-Crypt-DH +Version: 0.06 +Release: 3mamba +Summary: Crypt::DH - A module implementing the Diffie-Hellman key exchange system +Group: System/Libraries/Perl +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://www.cpan.org +Source: http://www.cpan.org/authors/id/B/BT/BTROTT/Crypt-DH-%{version}.tar.gz +License: GPL +BuildRequires: perl-devel >= %perl_major_ver +BuildRequires: perl-Crypt-Random +Requires: perl >= %perl_major_ver +BuildRoot: %{_tmppath}/perl-root + +%description +This is Crypt::DH, a module implementing the Diffie-Hellman key exchange system. + +%prep +%setup -q -n Crypt-DH-%{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 +* Tue Nov 13 2012 Silvan Calarco 0.06-3mamba +- perl 5.16 mass rebuild + +* Tue Nov 04 2008 Silvan Calarco 0.06-2mamba +- automatic rebuild by autodist + +* Wed Sep 12 2007 Aleph0 0.06-1mamba +- update to 0.06 +- spec file fixed and updated + +* Thu May 06 2004 Silvan Calarco 0.03-1qilnx +- first build