fu: Close-up of Fu, bringing a scoop of water to her mouth (Default)
fu ([personal profile] fu) wrote in [site community profile] changelog2011-03-03 06:16 am

[dw-free] enforce minimum version for Test::More & HTML::TokeParser

[commit: http://hg.dwscoalition.org/dw-free/rev/543e7334dcbf]

http://bugs.dwscoalition.org/show_bug.cgi?id=3554

Specify a minimum version for these perl modules.

Patch by [personal profile] kareila.

Files modified:
  • bin/checkconfig.pl
--------------------------------------------------------------------------------
diff -r b097a4f441a9 -r 543e7334dcbf bin/checkconfig.pl
--- a/bin/checkconfig.pl	Thu Mar 03 14:09:21 2011 +0800
+++ b/bin/checkconfig.pl	Thu Mar 03 14:15:44 2011 +0800
@@ -192,7 +192,17 @@ my %modules = (
                    'deb' => "libapache2-request-perl",
                    'opt' => "Required for Apache2",
                },
-               );
+               "Test::More" => {
+                   'deb' => "libtest-simple-perl",
+                   'opt' => "Required for subtest support.",
+                   'ver' => '0.96',
+               },
+               "HTML::TokeParser" => {
+                   'deb' => "libhtml-parser-perl",
+                   'opt' => "Required for clean-embed.t.",
+                   'ver' => '3.56',
+               },
+              );
 
 
 sub check_modules {
--------------------------------------------------------------------------------