Skip Menu |

This queue is for tickets about the Test-MockClass CPAN distribution.

Report information
The Basics
Id: 41159
Status: open
Priority: 0/
Queue: Test-MockClass

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

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



Subject: ExtUtils::AutoInstall
Please don't use ExtUtils::AutoInstall automatically, only when asked. It is very inconvenient when run under CPAN or CPANPLUS shells. It also means that dependencies are not listed in META.yml, it is better remove META.yml than generate broken one. -- Alexandr Ciornii, http://chorny.net
Created better Makefile.PL. -- Alexandr Ciornii, http://chorny.net
#!/usr/bin/perl WriteMakefile( NAME => 'MockClass', DISTNAME => 'Test-MockClass', VERSION_FROM => 'lib/Test/MockClass.pm', AUTHOR => 'Jeremiah Jordan <jjordan@perlreason.com>', ABSTRACT => 'A class to create mock classes and object for testing purposes', PREREQ_PM => { 'Hook::WrapSub' => 0.03, 'Scalar::Util' => 1.14, 'Task::Weaken' => 0, #correct weaken support 'Test::SimpleUnit' => 1.21, 'Tie::Watch' => 1.1, }, dist => { TARFLAGS => 'cvf', CI => "cvs commit", RCS_LABEL => 'cvs tag r$(VERSION_SYM)', SUFFIX => ".gz", DIST_CP => 'ln', DIST_DEFAULT => 'all tardist', COMPRESS => "gzip", }, clean => { FILES => "*.tar.bz2 *.tar.gz" }, );