You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
862 B

Index: Mail-Mbox-MessageParser-1.5105/inc/Module/Install/Bugtracker.pm
--- Mail-Mbox-MessageParser-1.5105/inc/Module/Install/Bugtracker.pm.orig 2015-05-03 04:44:17.000000000 +0200
+++ Mail-Mbox-MessageParser-1.5105/inc/Module/Install/Bugtracker.pm 2015-06-05 12:22:44.895215212 +0200
@@ -3,7 +3,6 @@
use 5.006;
use strict;
use warnings;
-use URI::Escape;
use base qw(Module::Install::Base);
our $VERSION = sprintf "%d.%02d%02d", q/0.3.0/ =~ /(\d+)/g;
@@ -11,11 +10,9 @@
sub auto_set_bugtracker {
my $self = shift;
if ($self->name) {
- $self->configure_requires('URI::Escape', 0);
-
$self->bugtracker(
sprintf 'http://rt.cpan.org/Public/Dist/Display.html?Name=%s',
- uri_escape($self->name),
+ $self->name,
);
} else {
warn "can't set bugtracker if 'name' is not set\n";