Skip Menu |

This queue is for tickets about the CPANPLUS CPAN distribution.

Report information
The Basics
Id: 4097
Status: resolved
Priority: 0/
Queue: CPANPLUS

People
Owner: Nobody in particular
Requestors: schwern [...] pobox.com
Cc:
AdminCc:

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



Subject: Seems to be ignoring module versions in Bundles
Looking at the implementation of _bundle_files() it doesn't look like its reading the version number in the CONTENTS list at all. if ($flag && /^(?!=)(\S+)/) { my ($name, $modobj) = $self->_parse_module( mod => $1 ); This means CPANPLUS will not honor bundles that set their minimum versions, such as: =head1 CONTENTS Foo::Bar 1.34 - its foo but its bar, too! That should be considered the equivalent of: PREREQ_PM => { "Foo::Bar" => 1.34 };