Skip Menu |

This queue is for tickets about the Image-Magick-Thumbnail-Simple CPAN distribution.

Report information
The Basics
Id: 95982
Status: open
Priority: 0/
Queue: Image-Magick-Thumbnail-Simple

People
Owner: Nobody in particular
Requestors: ANDK [...] cpan.org
Cc:
AdminCc:

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



Subject: Undeclared dependency on Image::Magick
As per subject. Grep: http://search.cpan.org/grep?release=Image-Magick-Thumbnail-Simple-0.12;string=Image::Magick;n=1;C=0 Sample fail report: http://www.cpantesters.org/cpan/report/1254916 HTH&&Thanks, (Disclaimer: this was discovered by statistical analysis, I'm not speaking as a user)
From: mcgrath.martin [...] gmail.com
Patch attached.
Subject: Makefile.PL.patch
--- Makefile.PL 2014-05-27 10:16:28.377362942 +0100 +++ Makefile.PL.orig 2014-05-27 10:13:42.990719640 +0100 @@ -5,10 +5,8 @@ WriteMakefile( NAME => 'Image::Magick::Thumbnail::Simple', VERSION_FROM => 'lib/Image/Magick/Thumbnail/Simple.pm', # finds $VERSION - PREREQ_PM => { - 'Image::Magick' => 0 - }, + PREREQ_PM => {}, # e.g., Module::Name => 1.1 ($] >= 5.005 ? ## Add these new keywords supported since 5.005 (ABSTRACT_FROM => 'lib/Image/Magick/Thumbnail/Simple.pm', # retrieve abstract from module - AUTHOR => 'Satoshi Ishikawa <cpan@penlabo.net>') : ()), + AUTHOR => 'root <root@localdomain>') : ()), );