From a19985083ce8b99ff7eefff311b94e1a4d720275 Mon Sep 17 00:00:00 2001 From: Automatic Build System Date: Sat, 6 Jan 2024 09:28:25 +0100 Subject: [PATCH] automatic update by autodist [release 1.106-1mamba;Sun Dec 29 2013] --- README.md | 2 ++ perl-Package-Generator.spec | 67 +++++++++++++++++++++++++++++++++++++ 2 files changed, 69 insertions(+) create mode 100644 perl-Package-Generator.spec diff --git a/README.md b/README.md index 0c7e03c..4bf0b13 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # perl-Package-Generator +This module lets you quickly and easily construct new packages. It gives them unused names and sets up their package data, if provided. + diff --git a/perl-Package-Generator.spec b/perl-Package-Generator.spec new file mode 100644 index 0000000..bd35379 --- /dev/null +++ b/perl-Package-Generator.spec @@ -0,0 +1,67 @@ +%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0) + +Name: perl-Package-Generator +Version: 1.106 +Release: 1mamba +Summary: Package::Generator - generate new packages quickly and 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/Package-Generator-%{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 lets you quickly and easily construct new packages. It gives them unused names and sets up their package data, if provided. + +%prep + +%setup -q -n Package-Generator-%{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 +* Sun Dec 29 2013 Automatic Build System 1.106-1mamba +- automatic update by autodist + +* Thu Jul 11 2013 Automatic Build System 1.105-1mamba +- automatic update by autodist + +* Tue Nov 13 2012 Silvan Calarco 0.103-2mamba +- perl 5.16 mass rebuild + +* Wed Jul 15 2009 Automatic Build System 0.103-1mamba +- automatic update by autodist + +* Wed Nov 05 2008 Silvan Calarco 0.102-2mamba +- automatic rebuild by autodist + +* Mon Oct 20 2008 gil 0.102-1mamba +- package created by autospec