123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- Name: perl-Pod-Coverage
- Version: 0.19
- Release: 1%{?_dist_release}
- Summary: Checks if the documentation of a module is comprehensive
- Summary(ja): Checks if the documentation of a module is comprehensive
- License: GPL+ or Artistic
- Group: Development/Libraries
- URL: http://search.cpan.org/dist/Pod-Coverage/
- Source0: http://www.cpan.org/authors/id/R/RC/RCLAMP/Pod-Coverage-%{version}.tar.gz
- BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
- BuildArch: noarch
- BuildRequires: perl(Devel::Symdump) >= 2.01
- BuildRequires: perl(Module::Build)
- BuildRequires: perl(Test::Pod)
- Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
- %description
- Developers hate writing documentation. They'd hate it even more if their
- computer tattled on them, but maybe they'll be even more thankful in the
- long run. Even if not, perlmodstyle tells you to, so you must obey.
- This module provides a mechanism for determining if the pod for a given
- module is comprehensive.
- %prep
- %setup -q -n Pod-Coverage-%{version}
- %build
- %{__perl} Build.PL installdirs=vendor
- ./Build
- %install
- rm -rf $RPM_BUILD_ROOT
- ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0
- find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
- %{_fixperms} $RPM_BUILD_ROOT/*
- %check
- ./Build test
- %clean
- rm -rf $RPM_BUILD_ROOT
- %files
- %defattr(-,root,root,-)
- %doc Changes README examples/
- %{_bindir}/*
- %{perl_vendorlib}/*
- %{_mandir}/man3/*
- %changelog
- * Mon Jul 07 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.19-1
- - initial build for Vine Linux
- * Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.19-3
- - Rebuild for perl 5.10 (again), second pass with tests enabled
- * Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.19-2
- - Rebuild for perl 5.10 (again), first pass without Test::Pod, tests
- * Sat Jan 12 2008 Steven Pritchard <steve@kspei.com> 0.19-1
- - Update to 0.19.
- - Use fixperms macro instead of our own chmod incantation.
- - Reformat to match cpanspec output.
- * Thu Jan 10 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 0.18-3
- - rebuild 2, enable Test::Pod, tests
- * Thu Jan 10 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 0.18-2.1
- - rebuild (first pass, no tests, no Test::Pod)
- * Wed Aug 9 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.18-2
- - Version 0.18 is now a noarch package.
- * Wed Aug 9 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.18-1
- - Update to 0.18.
- * Fri Feb 17 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.17-5
- - Rebuild for FC5 (perl 5.8.8).
- * Thu May 12 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.17-4
- - Add dist tag.
- * Wed Apr 20 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.17-3
- - Avoid .packlist creation with Module::Build >= 0.2609.
- - Trust that %%{perl_vendorlib} is defined.
- * Fri Apr 7 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
- - rebuilt
- * Sat Nov 27 2004 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:0.17-1
- - Update to 0.17.
- * Wed Oct 20 2004 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:0.16-0.fdr.1
- - Update to 0.16.
- * Thu May 20 2004 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:0.14-0.fdr.1
- - First build.
|