source: projects/specs/trunk/p/perl-Pod-Eventual/perl-Pod-Eventual-vl.spec @ 9143

Revision 9143, 3.3 KB checked in by inagaki, 9 years ago (diff)

2014-12-11 Ryoichi INAGAKI <ryo1@…>

  • perl-Apache-Htpasswd, perl-Cache-Cache, perl-MRO-Compat, perl-Parse-RecDescent?, perl-Pod-{Eventual, POM, Tests}, perl-Proc-{ProcessTable?, Simpler}: updated
  • perl-Parse-Nessus-NBE: rebuilt


Line 
1Name:           perl-Pod-Eventual
2Version:        0.094001
3Release:        1%{?_dist_release}
4Summary:        Read a POD document as a series of trivial events
5License:        GPL+ or Artistic
6Group:          Development/Libraries
7URL:            http://search.cpan.org/dist/Pod-Eventual/
8Source0:        http://www.cpan.org/authors/id/R/RJ/RJBS/Pod-Eventual-%{version}.tar.gz
9BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root
10BuildArch:      noarch
11BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.30
12BuildRequires:  perl(Mixin::Linewise::Readers) >= 0.102
13BuildRequires:  perl(Test::Deep)
14BuildRequires:  perl(Test::More) >= 0.96
15BuildRequires:  perl(Test::Pod)
16#BuildRequires:  perl(Test::Pod::Coverage)
17# causes circular builddeps
18#BuildRequires:  perl(Pod::Coverage::TrustPod)
19
20Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
21
22%{?perl_default_filter}
23
24%description
25POD is a pretty simple format to write, but it can be a big pain to deal
26with reading it and doing anything useful with it. Most existing POD
27parsers care about semantics, like whether a =item occurred after an
28=over but before a back, figuring out how to link a L<>, and other things
29like that.
30
31Pod::Eventual is much less ambitious and much more stupid. Fortunately, stupid
32is often better. (That's what I keep telling myself, anyway.)
33
34Pod::Eventual reads line-based input and produces events describing each POD
35paragraph or directive it finds. Once complete events are immediately passed to
36the handle_event method. This method should be implemented by Pod::Eventual
37subclasses. If it isn't, Pod::Eventual's own handle_event will be called, and
38will raise an exception.
39
40%prep
41%setup -q -n Pod-Eventual-%{version}
42
43%build
44%{__perl} Makefile.PL INSTALLDIRS=vendor
45make %{?_smp_mflags}
46
47%install
48rm -rf %{buildroot}
49
50make pure_install PERL_INSTALL_ROOT=%{buildroot}
51
52find %{buildroot} -type f -name .packlist -exec rm -f {} \;
53find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
54
55%{_fixperms} %{buildroot}/*
56
57%check
58make test
59
60%clean
61rm -rf %{buildroot}
62
63%files
64%defattr(-,root,root,-)
65%doc Changes LICENSE META.json README
66%{perl_vendorlib}/*
67%{_mandir}/man3/*
68
69%changelog
70* Thu Dec 11 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 0.094001-1
71- updated to 0.094001
72- built with perl 5.16.3
73
74* Mon Mar 05 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.093330-1
75- initial build for Vine Linux
76
77* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.093330-8
78- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
79
80* Mon Jul 18 2011 Petr Sabata <contyk@redhat.com> - 0.093330-7
81- Perl mass rebuild
82
83* Wed Jul 13 2011 Iain Arnell <iarnell@gmail.com> 0.093330-6
84- drop circular Pod::Coverage::TrustPod buildreq
85- don't run "release" tests
86
87* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.093330-5
88- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
89
90* Tue Dec 21 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.093330-4
91- 661697 rebuild for fixing problems with vendorach/lib
92
93* Tue May 04 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.093330-3
94- Mass rebuild with perl-5.12.0
95
96* Sat Feb 27 2010 Iain Arnell <iarnell@gmail.com> 0.093330-2
97- BR perl(Pod::Coverage::TrustPod)
98
99* Thu Jan 14 2010 Iain Arnell 0.093330-1
100- Specfile autogenerated by cpanspec 1.78.
Note: See TracBrowser for help on using the repository browser.