diff --git a/README.md b/README.md index 72bfd45..98c52d9 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # perl-Data-Section +Data::Section provides an easy way to access multiple named chunks of line-oriented data in your module's DATA section. It was written to allow modules to store their own templates, but probably has other uses. + diff --git a/perl-Data-Section.spec b/perl-Data-Section.spec new file mode 100644 index 0000000..beff530 --- /dev/null +++ b/perl-Data-Section.spec @@ -0,0 +1,69 @@ +%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0) + +Name: perl-Data-Section +Version: 0.200004 +Release: 1mamba +Summary: Data::Section - read multiple hunks of data out of your DATA section +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/Data-Section-%{version}.tar.gz +License: GPL, Artistic +Requires: perl >= %perl_major_ver +## AUTOBUILDREQ-BEGIN +BuildRequires: perl-devel +BuildRequires: perl-Sub-Exporter +## AUTOBUILDREQ-END +BuildRequires: perl-MRO-Compat +BuildRequires: perl-Test-FailWarnings +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +Data::Section provides an easy way to access multiple named chunks of line-oriented data in your module's DATA section. It was written to allow modules to store their own templates, but probably has other uses. + +%prep + +%setup -q -n Data-Section-%{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 Dec 07 2013 Automatic Build System 0.200004-1mamba +- automatic update by autodist + +* Thu Jun 20 2013 Automatic Build System 0.101622-1mamba +- automatic version update by autodist + +* Mon Nov 12 2012 Automatic Build System 0.101621-1mamba +- automatic version update by autodist + +* Tue Nov 04 2008 Silvan Calarco 0.005-2mamba +- automatic rebuild by autodist + +* Mon Oct 20 2008 gil 0.005-1mamba +- package created by autospec