From 8b8ad4a3d98729e4ab4ef3ae59c82d094e01fb91 Mon Sep 17 00:00:00 2001 From: Automatic Build System Date: Sat, 6 Jan 2024 09:38:32 +0100 Subject: [PATCH] automatic update by autodist [release 0.927-1mamba;Sat Oct 19 2013] --- README.md | 2 ++ perl-Sub-Install.spec | 67 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 69 insertions(+) create mode 100644 perl-Sub-Install.spec diff --git a/README.md b/README.md index d307382..b033680 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # perl-Sub-Install +This module makes it easy to install subroutines into packages without the unslightly mess of no strict or typeglobs lying about where just anyone can see them. + diff --git a/perl-Sub-Install.spec b/perl-Sub-Install.spec new file mode 100644 index 0000000..9cfe74d --- /dev/null +++ b/perl-Sub-Install.spec @@ -0,0 +1,67 @@ +%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0) + +Name: perl-Sub-Install +Version: 0.927 +Release: 1mamba +Summary: Sub::Install - install subroutines into packages easily +Group: System/Libraries/Perl +Vendor: openmamba +Distribution: openmamba +Packager: Automatic Build System +URL: http://www.cpan.org +Source: http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Sub-Install-%{version}.tar.gz +License: GPL, Artistic +Requires: perl >= %perl_major_ver +BuildRequires: perl-devel >= %perl_major_ver +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +This module makes it easy to install subroutines into packages without the unslightly mess of no strict or typeglobs lying about where just anyone can see them. + +%prep + +%setup -q -n Sub-Install-%{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 Oct 19 2013 Automatic Build System 0.927-1mamba +- automatic update by autodist + +* Mon Nov 12 2012 Silvan Calarco 0.926-2mamba +- perl 5.16 mass rebuild + +* Thu Mar 01 2012 Automatic Build System 0.926-1mamba +- automatic version update by autodist + +* Fri Feb 06 2009 Silvan Calarco 0.925-1mamba +- automatic update by autodist + +* Wed Nov 05 2008 Silvan Calarco 0.924-2mamba +- automatic rebuild by autodist + +* Mon Oct 20 2008 gil 0.924-1mamba +- package created by autospec