Re: Adding a perl_version key to META.yml

2007-11-16 Thread Andreas J. Koenig
On Fri, 16 Nov 2007 10:38:30 +1100, Adam Kennedy [EMAIL PROTECTED] said: After a number of incidents, it would appear that putting the Perl version dependency into requires is just too problematic to be an appropriate solution. It also has implications from a CPAN graph

Re: Adding a perl_version key to META.yml

2007-11-16 Thread Eric Wilhelm
# from Andreas J. Koenig # on Thursday 15 November 2007 23:39:   So I'd like to propose a perl_version: key for META.yml, which would be specifically to identify the minimum Perl language version dependency of the module. +1 +1 And then the documentation must be adjusted that has the

Version parsing confused by sub version {}

2007-11-16 Thread Michael G Schwern
A bug in MakeMaker's parse_version() was found recently. Module::Build has the same bug. https://rt.cpan.org/Ticket/Display.html?id=30747 It's reproducible by getting the version from a module like this: $VERSION = 1.23; sub version { $VERSION } and then this: use version; $VERSION =