Skip Menu |

This queue is for tickets about the Module-Build CPAN distribution.

Report information
The Basics
Id: 65701
Status: resolved
Priority: 0/
Queue: Module-Build

People
Owner: Nobody in particular
Requestors: MSTEVENS [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.37_02
Fixed in: (no value)



Subject: fix pod warnings against podchecker
Broken in github HEAD. podchecker gives some warnings for pod files, fix them. devtools/release_instructions.pod pod syntax OK. *** WARNING: No items in =over (at line 1879) / =back list at line 1883 in file lib/Module/Build/API.pod lib/Module/Build/API.pod pod syntax OK. *** WARNING: Verbatim paragraph in NAME section at line 5 in file lib/Module/Build/Authoring.pod lib/Module/Build/Authoring.pod pod syntax OK. lib/Module/Build/Bundling.pod pod syntax OK. t/README.pod pod syntax OK. I've attached as a patch here and also sent a pull request on github.
Subject: 0001-fix-podchecker-warnings.patch
From 5b6e0944ab9c0bfdeb0c35c64729faf37a2ce9a6 Mon Sep 17 00:00:00 2001 From: Michael Stevens <mstevens@etla.org> Date: Sun, 13 Feb 2011 19:34:00 +0000 Subject: [PATCH] fix podchecker warnings --- lib/Module/Build/API.pod | 3 ++- lib/Module/Build/Authoring.pod | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Module/Build/API.pod b/lib/Module/Build/API.pod index dd051e5..50652ca 100644 --- a/lib/Module/Build/API.pod +++ b/lib/Module/Build/API.pod @@ -1878,11 +1878,12 @@ accessor methods for the following properties: =over 4 +=item * + <autogenerated_accessors> =back - =head1 MODULE METADATA If you would like to add other useful metadata, C<Module::Build> diff --git a/lib/Module/Build/Authoring.pod b/lib/Module/Build/Authoring.pod index 38fb3f0..f8a5d14 100644 --- a/lib/Module/Build/Authoring.pod +++ b/lib/Module/Build/Authoring.pod @@ -2,7 +2,6 @@ Module::Build::Authoring - Authoring Module::Build modules - =head1 DESCRIPTION When creating a C<Build.PL> script for a module, something like the -- 1.7.3.5
fixed.