Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Data-Paginator CPAN distribution.

Report information
The Basics
Id: 99767
Status: resolved
Priority: 0/
Queue: Data-Paginator

People
Owner: gphat [...] cpan.org
Requestors: robin [...] catalyst.net.nz
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.05
Fixed in: (no value)



Subject: Documentation errors in the module
I'm trying to build a Debian package of this, and get the following warnings: W: libdata-paginator-perl: manpage-has-errors-from-pod2man usr/share/man/man3/Data::Paginator.3pm.gz:258 N: N: This man page contains a section "POD ERRORS" generated by pod2man. This N: sections lists errors in the POD syntax found by pod2man during the N: generation of the man page. and W: libdata-paginator-perl: manpage-has-bad-whatis-entry usr/share/man/man3/Data::Paginator::Types.3pm.gz N: N: Each manual page should start with a "NAME" section, which lists the N: name and a brief description of the page separated by "\-". The "NAME" N: section is parsed by lexgrog and used to generate a database that's N: queried by commands like apropos and whatis. This tag indicates that N: lexgrog was unable to parse the NAME section of this manual page. They're just documentation things, so not the end of the world, but good to fix.
Some patches that fix these are attached.
Subject: add-whatis-to-pod.patch
Index: libdata-paginator-perl/lib/Data/Paginator/Types.pm =================================================================== --- libdata-paginator-perl.orig/lib/Data/Paginator/Types.pm 2011-11-23 16:31:54.000000000 +1300 +++ libdata-paginator-perl/lib/Data/Paginator/Types.pm 2014-10-25 12:45:29.141032329 +1300 @@ -19,7 +19,7 @@ =head1 NAME -Data::Paginator::Types +Data::Paginator::Types - defines types used by Data::Paginator =head1 VERSION
Subject: add-pod-encoding.patch
Index: libdata-paginator-perl/lib/Data/Paginator.pm =================================================================== --- libdata-paginator-perl.orig/lib/Data/Paginator.pm 2011-11-23 16:31:54.000000000 +1300 +++ libdata-paginator-perl/lib/Data/Paginator.pm 2014-10-25 12:40:36.793521417 +1300 @@ -244,6 +244,8 @@ __END__ =pod +=encoding utf8 + =head1 NAME Data::Paginator - Pagination with Moose
Done in 0.07. Since this module uses Pod::Weaver the patch was different than suggested. Thanks for the heads up!