Skip Menu |

This queue is for tickets about the Lingua-AR-Db CPAN distribution.

Report information
The Basics
Id: 22794
Status: open
Priority: 0/
Queue: Lingua-AR-Db

People
Owner: Nobody in particular
Requestors: stro [...] cpan.org
Cc:
AdminCc:

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



Subject: Wrong PREREQ_PM in Makefile.PL
Dist name/version: Lingua-AR-Db-2.12 PREREQ_PM in Makefile.PL is wrong. Now it looks this way: PREREQ_PM => {'Lingua::AR::Word' => 1.5.4, MLDBM, DB_File}, Should be something like this: PREREQ_PM => {'Lingua::AR::Word' => 1.5.4, MLDBM => 0, DB_File => 0}, This is a hash in list context, with MLDBM used as key, and DB_File used as value for this key. -- Serguei Trouchelle
From: andy [...] qitty.net
closed with new version 2.15. Thanks On Fri Nov 03 11:10:37 2006, STRO wrote: Show quoted text
> Dist name/version: Lingua-AR-Db-2.12 > > PREREQ_PM in Makefile.PL is wrong. Now it looks this way: > > PREREQ_PM => {'Lingua::AR::Word' => 1.5.4, MLDBM, DB_File}, > > Should be something like this: > > PREREQ_PM => {'Lingua::AR::Word' => 1.5.4, MLDBM => 0, > DB_File => 0}, > > This is a hash in list context, with MLDBM used as key, and DB_File used > as value for this key.
Sorry, I missed that there's another problem: ExtUtils::MakeMaker cannot use v-style versions, so it should be '1.5.4' in quotes: PREREQ_PM => {'Lingua::AR::Word' => '1.5.4', MLDBM => 0, DB_File => 0}, Show quoted text
> closed with new version 2.15.
Show quoted text
> > Should be something like this: > > > > PREREQ_PM => {'Lingua::AR::Word' => 1.5.4, MLDBM => 0, > > DB_File => 0}, > > > > This is a hash in list context, with MLDBM used as key, and DB_File used > > as value for this key.
> >
-- Serguei Trouchelle