Skip Menu |

This queue is for tickets about the ExtUtils-MakeMaker CPAN distribution.

Report information
The Basics
Id: 49777
Status: rejected
Priority: 0/
Queue: ExtUtils-MakeMaker

People
Owner: Nobody in particular
Requestors: leon [...] astray.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 6.55_02
Fixed in: (no value)



Subject: Fix URLs
Hello, I'm trying to update various URLs in the Perl source code. Here's a quick patch. Thanks! Leon
Subject: extutils_makemaker_urls.patch
diff --git a/ext/ExtUtils-MakeMaker/t/metafile_file.t b/ext/ExtUtils-MakeMaker/t/metafile_file.t index ca8a412..1f7fa16 100644 --- a/ext/ExtUtils-MakeMaker/t/metafile_file.t +++ b/ext/ExtUtils-MakeMaker/t/metafile_file.t @@ -119,7 +119,7 @@ YAML }, 'meta-spec' => { version => '1.1', - url => 'http://module-build.sourceforge.net/META-spec-new.html', + url => 'http://module-build.sourceforge.net/META-spec-v1.4.html', }, ); my $expected = <<'YAML'; @@ -137,7 +137,7 @@ requires: My::Module::Helper: 0 Your::Module: 1.5 meta-spec: - url: http://module-build.sourceforge.net/META-spec-new.html + url: http://module-build.sourceforge.net/META-spec-v1.4.html version: 1.1 YAML @@ -166,7 +166,7 @@ YAML }, 'meta-spec' => { version => '1.1', - url => 'http://module-build.sourceforge.net/META-spec-new.html', + url => 'http://module-build.sourceforge.net/META-spec-v1.4.html', }, ); my $expected = <<'YAML'; @@ -188,7 +188,7 @@ recommends: Test::Pod: 1.18 Test::Pod::Coverage: 1 meta-spec: - url: http://module-build.sourceforge.net/META-spec-new.html + url: http://module-build.sourceforge.net/META-spec-v1.4.html version: 1.1 YAML @@ -221,7 +221,7 @@ YAML }, 'meta-spec' => { version => '1.1', - url => 'http://module-build.sourceforge.net/META-spec-new.html', + url => 'http://module-build.sourceforge.net/META-spec-v1.4.html', }, ); my $expected = <<'YAML'; @@ -249,7 +249,7 @@ no_index: - TODO - NOTES meta-spec: - url: http://module-build.sourceforge.net/META-spec-new.html + url: http://module-build.sourceforge.net/META-spec-v1.4.html version: 1.1 YAML
I'm going to guess this was automated, because those URLs are just test data and keeping them up to date is kinda silly. Thanks for the effort!