2006-05-02 12:38:07 +00:00
|
|
|
Name: perl-PPI
|
2009-10-07 16:30:06 +00:00
|
|
|
Version: 1.206
|
2010-07-30 20:23:09 +00:00
|
|
|
Release: 6%{?dist}
|
2006-05-02 12:38:07 +00:00
|
|
|
Summary: Parse, Analyze and Manipulate Perl
|
|
|
|
Group: Development/Libraries
|
2007-11-28 18:33:04 +00:00
|
|
|
License: GPL+ or Artistic
|
2006-05-02 12:38:07 +00:00
|
|
|
URL: http://search.cpan.org/dist/PPI/
|
|
|
|
Source0: http://www.cpan.org/authors/id/A/AD/ADAMK/PPI-%{version}.tar.gz
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
BuildArch: noarch
|
2009-10-07 16:30:06 +00:00
|
|
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
2006-05-02 12:38:07 +00:00
|
|
|
# Perl core modules
|
2009-10-07 16:30:06 +00:00
|
|
|
BuildRequires: perl(List::Util) >= 1.20
|
|
|
|
BuildRequires: perl(Storable) >= 2.17
|
|
|
|
BuildRequires: perl(Test::More) >= 0.86
|
|
|
|
BuildRequires: perl(Digest::MD5) >= 2.35
|
2006-05-02 12:38:07 +00:00
|
|
|
# CPAN modules
|
2009-10-07 16:30:06 +00:00
|
|
|
BuildRequires: perl(Clone) >= 0.30
|
|
|
|
BuildRequires: perl(File::Remove) >= 1.42
|
2006-06-04 17:31:33 +00:00
|
|
|
BuildRequires: perl(IO::String) >= 1.07
|
2009-10-07 16:30:06 +00:00
|
|
|
BuildRequires: perl(List::MoreUtils) >= 0.16
|
|
|
|
BuildRequires: perl(Params::Util) >= 1.00
|
2010-07-30 20:23:09 +00:00
|
|
|
BuildRequires: perl(Task::Weaken)
|
2009-10-07 16:30:06 +00:00
|
|
|
BuildRequires: perl(Test::ClassAPI) >= 1.04
|
2010-07-30 20:23:09 +00:00
|
|
|
BuildRequires: perl(Test::CPAN::Meta)
|
2009-10-07 16:30:06 +00:00
|
|
|
BuildRequires: perl(Test::Object) >= 0.07
|
2010-07-30 20:23:09 +00:00
|
|
|
BuildRequires: perl(Test::NoWarnings) >= 0.084
|
2006-05-02 12:38:07 +00:00
|
|
|
BuildRequires: perl(Test::Pod) >= 1.00
|
2009-10-07 16:30:06 +00:00
|
|
|
BuildRequires: perl(Test::SubCalls) >= 1.07
|
2006-05-02 12:38:07 +00:00
|
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
|
|
|
|
|
|
|
%description
|
|
|
|
Parse, Analyze and Manipulate Perl (without perl).
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n PPI-%{version}
|
2010-02-10 14:56:14 +00:00
|
|
|
%{?filter_setup:
|
2010-02-11 14:05:41 +00:00
|
|
|
%filter_from_provides /^perl(PPI::.*)$/d
|
2010-02-10 14:56:14 +00:00
|
|
|
%?perl_default_filter
|
|
|
|
}
|
|
|
|
iconv -f iso8859-1 -t utf-8 < Changes > Changes.1
|
|
|
|
mv Changes.1 Changes
|
2006-09-10 18:23:51 +00:00
|
|
|
chmod -c 644 lib/PPI/Document/File.pm
|
2006-05-02 12:38:07 +00:00
|
|
|
|
2010-07-30 20:23:09 +00:00
|
|
|
|
2006-05-02 12:38:07 +00:00
|
|
|
%build
|
|
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
2010-07-30 20:23:09 +00:00
|
|
|
make pure_install DESTDIR=$RPM_BUILD_ROOT
|
2006-05-02 12:38:07 +00:00
|
|
|
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
|
|
|
|
find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2>/dev/null ';'
|
2010-07-30 20:23:09 +00:00
|
|
|
chmod -R u+w $RPM_BUILD_ROOT
|
2006-05-02 12:38:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
%check
|
2010-07-30 20:23:09 +00:00
|
|
|
make test AUTOMATED_TESTING=1
|
2006-05-02 12:38:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc Changes LICENSE README inline2test.conf inline2test.tpl
|
2010-07-30 20:23:09 +00:00
|
|
|
%{perl_vendorlib}/PPI/
|
|
|
|
%{perl_vendorlib}/PPI.pm
|
|
|
|
%{_mandir}/man3/PPI*.3pm*
|
2006-05-02 12:38:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2010-07-30 20:23:09 +00:00
|
|
|
* Fri Jul 30 2010 Paul Howarth <paul@city-fan.org> - 1.206-6
|
|
|
|
- BR: perl(Task::Weaken) and perl(Test::CPAN::Meta) for improved test coverage
|
|
|
|
- enable AUTOMATED_TESTING
|
|
|
|
- use DESTDIR rather than PERL_INSTALL_ROOT
|
|
|
|
|
2010-05-06 08:56:21 +00:00
|
|
|
* Thu May 06 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.206-5
|
|
|
|
- Mass rebuild with perl-5.12.0
|
|
|
|
|
2010-02-11 14:05:41 +00:00
|
|
|
* Thu Feb 11 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.206-4
|
|
|
|
- fix filtering, provide versioned provides
|
|
|
|
|
2010-02-10 14:56:14 +00:00
|
|
|
* Wed Feb 10 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.206-3
|
|
|
|
- make rpmlint happy
|
|
|
|
|
2009-12-07 07:32:26 +00:00
|
|
|
* Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 1.206-2
|
|
|
|
- rebuild against perl 5.10.1
|
|
|
|
|
2009-10-07 16:30:06 +00:00
|
|
|
* Wed Oct 7 2009 Stepan Kasal <skasal@redhat.com> - 1.206-1
|
|
|
|
- new upstream version
|
|
|
|
- update build requires
|
|
|
|
|
2009-07-26 14:02:53 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.203-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-02-27 00:08:06 +00:00
|
|
|
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.203-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-09-09 19:40:13 +00:00
|
|
|
* Tue Sep 9 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.203-1
|
|
|
|
- update to 1.203
|
|
|
|
|
2008-02-27 21:45:14 +00:00
|
|
|
* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.201-3
|
|
|
|
- Rebuild for perl 5.10 (again)
|
|
|
|
|
2008-01-13 16:46:32 +00:00
|
|
|
* Sun Jan 13 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.201-2
|
2008-01-13 16:44:48 +00:00
|
|
|
- rebuild for new perl
|
|
|
|
|
2007-12-19 18:53:25 +00:00
|
|
|
* Wed Dec 19 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 1.201-1
|
|
|
|
- bump to 1.201
|
|
|
|
|
2006-09-23 09:48:29 +00:00
|
|
|
* Sat Sep 23 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.118-1
|
|
|
|
- Update to 1.118.
|
|
|
|
|
2006-09-10 18:23:51 +00:00
|
|
|
* Wed Sep 6 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.117-1
|
|
|
|
- Update to 1.117.
|
|
|
|
|
2006-06-04 17:43:48 +00:00
|
|
|
* Sun Jun 4 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.115-2
|
|
|
|
- Removed the perl(IO::Scalar) build requirement.
|
|
|
|
|
2006-06-04 17:31:33 +00:00
|
|
|
* Sun Jun 4 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.115-1
|
|
|
|
- Update to 1.115.
|
|
|
|
|
2006-05-10 12:00:03 +00:00
|
|
|
* Wed May 10 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.113-1
|
|
|
|
- Update to 1.113.
|
|
|
|
|
2006-05-02 12:38:07 +00:00
|
|
|
* Tue Apr 25 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.112-1
|
|
|
|
- Update to 1.112.
|
|
|
|
|
|
|
|
* Sat Apr 22 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.111-1
|
|
|
|
- First build.
|