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.
30 lines
1.0 KiB
30 lines
1.0 KiB
Index: Benchmark-Timer-0.7112/inc/Module/Install/Bugtracker.pm |
|
--- Benchmark-Timer-0.7112/inc/Module/Install/Bugtracker.pm.orig 2018-07-12 04:55:38.000000000 +0200 |
|
+++ Benchmark-Timer-0.7112/inc/Module/Install/Bugtracker.pm 2018-07-12 17:45:54.986119000 +0200 |
|
@@ -10,13 +10,9 @@ |
|
sub auto_set_bugtracker { |
|
my $self = shift; |
|
if ($self->name) { |
|
- $self->include_deps('URI::Escape'); |
|
- |
|
- require URI::Escape; |
|
- |
|
$self->bugtracker( |
|
sprintf 'http://rt.cpan.org/Public/Dist/Display.html?Name=%s', |
|
- URI::Escape::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 2018-07-12 07:44:51.644131000 +0200 |
|
@@ -3,8 +3,5 @@ |
|
name 'Time-Duration'; |
|
all_from 'Duration.pm'; |
|
|
|
-build_requires('Test::Pod'); |
|
-build_requires('Test::Pod::Coverage'); |
|
- |
|
auto_install; |
|
WriteAll;
|
|
|