Skip Menu |

This queue is for tickets about the HTML-GoogleMapsV3 CPAN distribution.

Report information
The Basics
Id: 73218
Status: rejected
Priority: 0/
Queue: HTML-GoogleMapsV3

People
Owner: Nobody in particular
Requestors: ivan-pause [...] 420.am
Cc:
AdminCc:

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



Subject: [patch] Incorrect dependency declaration
This package declares a dependency on Geo::Google (which is old and unmaintained) but actually depends on Geo::Coder::Google (which is not). The package is also missing dependencies on XML::Simple and GPS::Point. The following patch fixes the dependencies in META.yml and Makefile.PL. --- HTML-GoogleMapsV3-0.01/Makefile.PL 2011-03-25 22:30:02.000000000 -0700 +++ HTML-GoogleMapsV3-0.01-updated/Makefile.PL 2011-12-12 17:52:14.000000000 -0800 @@ -10,6 +10,8 @@ ABSTRACT => 'Draw Maps using the Google V3 API', PREREQ_PM => { 'Test::Simple' => 0.44, - 'Geo::Google' => 0.05, + 'Geo::Coder::Google' => 0, + 'XML::Simple' => 0, + 'GPS::Point' => 0, }, ); --- HTML-GoogleMapsV3-0.01/META.yml 2011-04-29 16:46:34.000000000 -0700 +++ HTML-GoogleMapsV3-0.01-updated/META.yml 2011-12-12 17:52:05.000000000 -0800 @@ -11,8 +11,10 @@ build_requires: ExtUtils::MakeMaker: 0 requires: - Geo::Google: 0.05 Test::Simple: 0.44 + Geo::Coder::Google: 0 + XML::Simple: 0 + GPS::Point: 0 no_index: directory: - t
It appears the author has withdrawn this module from CPAN entirely.