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.
32 lines
1.0 KiB
32 lines
1.0 KiB
Index: Benchmark-Timer-0.7107/inc/Module/Install/Bugtracker.pm |
|
--- Benchmark-Timer-0.7107/inc/Module/Install/Bugtracker.pm.orig 2015-05-03 04:31:50.000000000 +0200 |
|
+++ Benchmark-Timer-0.7107/inc/Module/Install/Bugtracker.pm 2015-05-03 14:20:15.111645714 +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; |
|
@@ -15,7 +14,7 @@ |
|
|
|
$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"; |
|
Index: Time-Duration-1.1/Makefile.PL |
|
--- Time-Duration-1.1/Makefile.PL.orig 2013-03-27 18:05:02.000000000 +0100 |
|
+++ Time-Duration-1.1/Makefile.PL 2015-05-03 14:19:11.201720291 +0200 |
|
@@ -3,8 +3,5 @@ |
|
name 'Time-Duration'; |
|
all_from 'Duration.pm'; |
|
|
|
-build_requires('Test::Pod'); |
|
-build_requires('Test::Pod::Coverage'); |
|
- |
|
auto_install; |
|
WriteAll;
|
|
|