Bug 9315: Bad version of String::Random reported by koha_perl_deps.pl
authorBernardo Gonzalez Kriegel <bgkriegel@gmail.com>
Fri, 21 Dec 2012 22:22:45 +0000 (19:22 -0300)
committerJared Camins-Esakov <jcamins@cpbibliography.com>
Thu, 27 Dec 2012 15:16:34 +0000 (10:16 -0500)
This patch fixes version number of String::Random as reported by
koha_perl_deps.pl

To test (on master)
1) run perl koha_perl_deps.pl -u, it will show as required String::Random version 1.4
2) apply the patch
3) run koha_perl_deps.pl -u, it will show (or not) as required String::Random version 0.22

Signed-off-by: Owen Leonard <oleonard@myacpl.org>
Patch works correctly according to the test plan.

Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com>
Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
C4/Installer/PerlDependencies.pm

index 16144f9..41fa8db 100644 (file)
@@ -632,7 +632,7 @@ our $PERL_DEPS = {
     'String::Random' => {
         'usage'    => 'OpacSelfRegistration',
         'required' => '0',
-        'min_ver'  => '1.4',
+        'min_ver'  => '0.22',
     },
 };