From e5fbf4a9d4948c1587d0e782c7794456c891e61a Mon Sep 17 00:00:00 2001 From: Automatic Build System Date: Sat, 6 Jan 2024 09:20:46 +0100 Subject: [PATCH] automatic rebuild by autodist [release 3.8-3mamba;Thu Aug 29 2013] --- README.md | 2 ++ perl-Module-Pluggable.spec | 60 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+) create mode 100644 perl-Module-Pluggable.spec diff --git a/README.md b/README.md index 8fdade5..caeb1f3 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # perl-Module-Pluggable +Module::Pluggable - automatically give your module the ability to have plugins. + diff --git a/perl-Module-Pluggable.spec b/perl-Module-Pluggable.spec new file mode 100644 index 0000000..662bebb --- /dev/null +++ b/perl-Module-Pluggable.spec @@ -0,0 +1,60 @@ +%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0) + +Name: perl-Module-Pluggable +Version: 3.8 +Release: 3mamba +Summary: Module::Pluggable - automatically give your module the ability to have plugins +Group: System/Libraries/Perl +Vendor: openmamba +Distribution: openmamba +Packager: Aleph0 +URL: http://www.cpan.org +Source: http://www.cpan.org/modules/by-module/Module/Module-Pluggable-3.8.tar.gz +License: GPL, Artistic +Requires: perl >= %perl_major_ver +BuildRequires: perl-devel >= %perl_major_ver +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +Module::Pluggable - automatically give your module the ability to have plugins. + +%prep +%setup -q -n Module-Pluggable-%{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 +* Thu Aug 29 2013 Automatic Build System 3.8-3mamba +- automatic rebuild by autodist + +* Wed Nov 05 2008 Silvan Calarco 3.8-2mamba +- automatic rebuild by autodist + +* Mon Oct 20 2008 gil 3.8-1mamba +- update to 3.8 + +* Mon Nov 12 2007 Aleph0 3.6-1mamba +- package created by autospec