Subject: | failure to install under cpanminus |
Hello,
FindBin::libs 1.63 fails to install under cpanminus 1.5007 with the error message:
Invalid version format (non-numeric data) at
/loader/0x100834ea8/App/cpanminus/script.pm line 1134.
It appears that cpanminus does not like the '>0' syntax used in the requires key. I checked
out the Module::Build docs and though '>0' does not seem to be prohibited, a straight '0'
seems to be the preferred way of expressing it. Attached is a patch that removes the '>' from
the version strings. With this patch, FinBin::libs installed successfully on my system.
Thank you for your work on this module and have a great day!
Cheers,
Fitz Elliott
Subject: | fix_build_pl_requires_versions.patch |
diff --git a/Build.PL b/Build.PL
index 7f4a15b..c716288 100644
--- a/Build.PL
+++ b/Build.PL
@@ -42,14 +42,14 @@ my @build_argz =
{
qw
(
- strict >0
+ strict 0
- Carp >0
- Cwd >0
- FindBin >0
- Symbol >0
- File::Spec >0
- Test::More >0
+ Carp 0
+ Cwd 0
+ FindBin 0
+ Symbol 0
+ File::Spec 0
+ Test::More 0
)
},