From 5bcb5c02ca893c1ca8cfc1efadd6aa2e2a34a2b7 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 09:21:16 +0100 Subject: [PATCH] perl 5.16 mass rebuild [release 0.68-2mamba;Mon Nov 12 2012] --- README.md | 2 + perl-Module-Signature.spec | 77 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 79 insertions(+) create mode 100644 perl-Module-Signature.spec diff --git a/README.md b/README.md index 78d8b22..536d6a3 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # perl-Module-Signature +A module to check and create SIGNATURE files for CPAN distributions. + diff --git a/perl-Module-Signature.spec b/perl-Module-Signature.spec new file mode 100644 index 0000000..5667afb --- /dev/null +++ b/perl-Module-Signature.spec @@ -0,0 +1,77 @@ +%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0) + +Name: perl-Module-Signature +Version: 0.68 +Release: 2mamba +Summary: A module to check and create SIGNATURE files for CPAN distributions +Group: Development/Libraries/Perl +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://www.cpan.org +Source: http://cpan.panu.it/authors/id/F/FL/FLORA/Module-Signature-%{version}.tar.gz +License: GPL +BuildRequires: perl-devel >= %perl_major_ver, gnupg >= 1.2.6 +Requires: perl >= %perl_major_ver +BuildRoot: %{_tmppath}/%{name}-%{version}-root +BuildArch: noarch +## AUTOBUILDREQ-BEGIN +BuildRequires: perl-devel +## AUTOBUILDREQ-END +BuildRequires: perl-IPC-Run + +%description +A module to check and create SIGNATURE files for CPAN distributions. + +%prep +%setup -q -n Module-Signature-%{version} + +%build +perl Makefile.PL PREFIX=%{_prefix} INSTALLDIRS=vendor << _EOF + +_EOF + +%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}" + +%files -f .packlist +%defattr(-,root,root) + +%changelog +* Mon Nov 12 2012 Silvan Calarco 0.68-2mamba +- perl 5.16 mass rebuild + +* Sun Jul 01 2012 Silvan Calarco 0.68-1mamba +- update to 0.68 +- updated specfile and maintainer + +* Tue Jan 12 2010 Automatic Build System 0.61-1mamba +- automatic update by autodist + +* Wed Nov 05 2008 Silvan Calarco 0.55-2mamba +- automatic rebuild by autodist + +* Wed Jun 18 2008 Tiziana Ferro 0.55-1mamba +- update to 0.55 +- switch to noarch +- add buildrequirements + +* Fri Nov 19 2004 Alessandro Ramazzina 0.41-1qilnx +- package created by autospec