|
|
|
@ -1,6 +1,6 @@
|
|
|
|
|
Name: perl-Module-Manifest
|
|
|
|
|
Version: 0.03
|
|
|
|
|
Release: 4%{?dist}
|
|
|
|
|
Version: 0.07
|
|
|
|
|
Release: 1%{?dist}
|
|
|
|
|
Summary: Parse and examine a Perl distribution MANIFEST file
|
|
|
|
|
License: GPL+ or Artistic
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
@ -11,7 +11,10 @@ BuildArch: noarch
|
|
|
|
|
BuildRequires: perl >= 0:5.005
|
|
|
|
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
|
|
|
|
BuildRequires: perl(Params::Util) >= 0.10
|
|
|
|
|
BuildRequires: perl(Test::Exception) >= 0.27
|
|
|
|
|
BuildRequires: perl(Test::More) >= 0.42
|
|
|
|
|
BuildRequires: perl(Test::Warn) >= 0.11
|
|
|
|
|
Requires: perl(File::Spec) >= 0.80
|
|
|
|
|
Requires: perl(Params::Util) >= 0.10
|
|
|
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
|
|
|
|
|
|
|
|
@ -35,6 +38,9 @@ find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
|
|
|
|
|
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
|
|
|
|
|
|
|
|
|
|
%{_fixperms} $RPM_BUILD_ROOT/*
|
|
|
|
|
# Remove executable bit from %%doc files
|
|
|
|
|
%{__chmod} 0644 examples/*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
|
make test
|
|
|
|
@ -44,11 +50,17 @@ rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
|
%doc Changes LICENSE README
|
|
|
|
|
%doc Changes LICENSE README examples
|
|
|
|
|
%{perl_vendorlib}/*
|
|
|
|
|
%{_mandir}/man3/*
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Tue Apr 20 2010 Petr Pisar <ppisar@redhat.com> - 0.07-1
|
|
|
|
|
- version bump
|
|
|
|
|
- new Test::Exception and Test::Warn BuildRequires
|
|
|
|
|
- explicit perl-File-Spec >= 0.80 run-time dependency version
|
|
|
|
|
- add examples
|
|
|
|
|
|
|
|
|
|
* Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 0.03-4
|
|
|
|
|
- rebuild against perl 5.10.1
|
|
|
|
|
|
|
|
|
|