Skip Menu |

This queue is for tickets about the MusicBrainz-DiscID CPAN distribution.

Report information
The Basics
Id: 85212
Status: open
Priority: 0/
Queue: MusicBrainz-DiscID

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

Bug Information
Severity: (no value)
Broken in: 0.03
Fixed in: (no value)



Subject: POD syntax errors (=encoding)
As of perl 5.18, this test now fails: # Failed test 'POD test for blib/lib/MusicBrainz/DiscID.pm' # at /usr/share/perl5/Test/Pod.pm line 182. # blib/lib/MusicBrainz/DiscID.pm (159): Non-ASCII character seen before =encoding in 'don<D4>t'. Assuming ISO8859-1 # Looks like you failed 1 test of 1. t/05pod.t .....
Replacing the interesting apostrophe with a plain ASCII one is enough. Alternatively deciding on an encoding and adding "=encoding FOO" should help. Cheers, gregor, Debian Perl Group
Subject: pod-encoding.diff
Description: add encoding information to POD Origin: vendor Bug: https://rt.cpan.org/Public/Bug/Display.html?id=78940 Bug-Debian: http://bugs.debian.org/708012 Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=78940 Author: gregor herrmann <gregoa@debian.org> Last-Update: 2013-05-12 --- a/lib/Device/USB.pm +++ b/lib/Device/USB.pm @@ -39,6 +39,8 @@ use constant CLASS_DATA => 10; use constant CLASS_VENDOR_SPEC => 0xff; +=encoding utf8 + =head1 NAME Device::USB - Use libusb to access USB devices. --- a/lib/Device/USB/Bus.pm +++ b/lib/Device/USB/Bus.pm @@ -5,6 +5,7 @@ use strict; use Carp; +=encoding utf8 =head1 NAME
And now the right patch for _this_ module; sorry.
Subject: pod-encoding.patch
Description: use plain ascii apostrophe Origin: vendor Bug: https://rt.cpan.org/Ticket/Display.html?id=85212 Bug-Debian: http://bugs.debian.org/708079 Forwarded: https://rt.cpan.org/Ticket/Display.html?id=85212 Author: gregor herrmann <gregoa@debian.org> Last-Update: 2013-05-13 --- a/lib/MusicBrainz/DiscID.pm +++ b/lib/MusicBrainz/DiscID.pm @@ -156,7 +156,7 @@ Construct a new DiscID object. As an optional argument the name of the device to read the ID from may -be given. If you don\xD4t specify a device here you can later read the ID with +be given. If you don't specify a device here you can later read the ID with the read method. =item $discid->error_msg()