rpms/perl-Test-Pod/devel .cvsignore, 1.5, 1.6 perl-Test-Pod.spec, 1.17, 1.18 sources, 1.5, 1.6

Paul Howarth pghmcfc at fedoraproject.org
Thu Mar 11 10:43:17 UTC 2010


Author: pghmcfc

Update of /cvs/pkgs/rpms/perl-Test-Pod/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17738

Modified Files:
	.cvsignore perl-Test-Pod.spec sources 
Log Message:
* Thu Mar 11 2010 Paul Howarth <paul at city-fan.org> - 1.42-1
- update to 1.42
- new upstream maintainer
- use Module::Build flow
- include README
- use less generic %description and %summary
- use _fixperms macro instead of our own chmod incantation
- bump Test::More build requirement to 0.70
- add versioned requires for Pod::Simple, Test::Builder::Tester and Test::More



Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/perl-Test-Pod/devel/.cvsignore,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -p -r1.5 -r1.6
--- .cvsignore	30 Oct 2009 14:42:56 -0000	1.5
+++ .cvsignore	11 Mar 2010 10:43:16 -0000	1.6
@@ -1 +1 @@
-Test-Pod-1.40.tar.gz
+Test-Pod-1.42.tar.gz


Index: perl-Test-Pod.spec
===================================================================
RCS file: /cvs/pkgs/rpms/perl-Test-Pod/devel/perl-Test-Pod.spec,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -p -r1.17 -r1.18
--- perl-Test-Pod.spec	4 Dec 2009 02:12:51 -0000	1.17
+++ perl-Test-Pod.spec	11 Mar 2010 10:43:16 -0000	1.18
@@ -1,22 +1,28 @@
 Name:           perl-Test-Pod
-Version:        1.40
-Release:        2%{?dist}
-Summary:        Perl module for checking for POD errors in files
+Version:        1.42
+Release:        1%{?dist}
+Summary:        Test POD files for correctness
 
 Group:          Development/Libraries
 License:        GPL+ or Artistic
 URL:            http://search.cpan.org/dist/Test-Pod/
-Source0:        http://www.cpan.org/authors/id/P/PE/PETDANCE/Test-Pod-%{version}.tar.gz
+Source0:        http://search.cpan.org/CPAN/authors/id/D/DW/DWHEELER/Test-Pod-%{version}.tar.gz
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 BuildArch:      noarch
+BuildRequires:  perl(File::Spec)
+BuildRequires:  perl(Module::Build) >= 0.30
 BuildRequires:  perl(Pod::Simple) >= 3.07
 BuildRequires:  perl(Test::Builder::Tester) >= 1.02
-BuildRequires:  perl(Test::More) >= 0.62
+BuildRequires:  perl(Test::More) >= 0.70
 Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+Requires:       perl(Pod::Simple) >= 3.07
+Requires:       perl(Test::Builder::Tester) >= 1.02
+Requires:       perl(Test::More) >= 0.70
 
 %description
-%{summary}.
+Check POD files for errors or warnings in a test file, using Pod::Simple to do
+the heavy lifting.
 
 
 %prep
@@ -24,20 +30,19 @@ Requires:       perl(:MODULE_COMPAT_%(ev
 
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
-make %{?_smp_mflags}
+%{__perl} Build.PL installdirs=vendor
+./Build
 
 
 %install
 rm -rf $RPM_BUILD_ROOT
-make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
-find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
-find $RPM_BUILD_ROOT -depth -type d -empty -exec rmdir {} ';'
-chmod -R u+w $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
-make test
+LC_ALL=C ./Build test
 
 
 %clean
@@ -46,12 +51,22 @@ rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root,-)
-%doc Changes
+%doc Changes README
 %{perl_vendorlib}/Test/
-%{_mandir}/man3/*.3pm*
+%{_mandir}/man3/Test::Pod.3pm*
 
 
 %changelog
+* Thu Mar 11 2010 Paul Howarth <paul at city-fan.org> - 1.42-1
+- update to 1.42
+- new upstream maintainer
+- use Module::Build flow
+- include README
+- use less generic %%description and %%summary
+- use _fixperms macro instead of our own chmod incantation
+- bump Test::More build requirement to 0.70
+- add versioned requires for Pod::Simple, Test::Builder::Tester and Test::More
+
 * Fri Dec  4 2009 Stepan Kasal <skasal at redhat.com> - 1.40-2
 - rebuild against perl 5.10.1
 
@@ -59,13 +74,13 @@ rm -rf $RPM_BUILD_ROOT
 - new upstream version
 
 * Sun Jul 26 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 1.26-6
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+- rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
 
 * Thu Feb 26 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 1.26-5
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+- rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
 
 * Wed Feb 27 2008 Tom "spot" Callaway <tcallawa at redhat.com> - 1.26-4
-- Rebuild for perl 5.10 (again)
+- rebuild for perl 5.10 (again)
 
 * Thu Jan 10 2008 Tom "spot" Callaway <tcallawa at redhat.com> - 1.26-3
 - rebuild for new perl


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/perl-Test-Pod/devel/sources,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -p -r1.5 -r1.6
--- sources	30 Oct 2009 14:42:56 -0000	1.5
+++ sources	11 Mar 2010 10:43:16 -0000	1.6
@@ -1 +1 @@
-de975155ed1afb430b70456e2db00b29  Test-Pod-1.40.tar.gz
+9c9b7ff52ea339aecbf247cd573df238  Test-Pod-1.42.tar.gz



More information about the scm-commits mailing list