Skip Menu |

This queue is for tickets about the HPSG-Mason CPAN distribution.

Report information
The Basics
Id: 51025
Status: open
Worked: 20 min
Priority: 0/
Queue: HPSG-Mason

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

Bug Information
Severity: Normal
Broken in: 0.03
Fixed in: 0.04



Subject: Undeclared dependency on File::ShareDir
First I saw it only on cpantesters, then I verified it myself on my smoker. Test fails without File::ShareDir installed and passes with it. Let me know if you need further information. Thanks,
RT-Send-CC: cjac [...] f5.com
On Sun Nov 01 12:01:10 2009, ANDK wrote: Show quoted text
> First I saw it only on cpantesters, then I verified it myself on my > smoker. Test fails without File::ShareDir installed and passes with it. > > Let me know if you need further information. > > Thanks,
Hey there. I think I fixed this. Have I published the change yet, I wonder...? I am looking at the source here on the other monitor and it says that I released 0.04 on 20091122T1725. The primary changes were to add a dependency on File::ShareDir and to add version back in to HPSG::Mason::Interp. I don't remember what the second one was, but I think the first one fixes your bug. If you agree, pleased to be closinged. 0.04 does look published: http://search.cpan.org/CPAN/authors/id/C/CJ/CJCOLLIER/HPSG/HPSG-Mason-0.04.tar.gz diff --git a/Makefile.PL b/Makefile.PL index 79c1904..d132de8 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,15 +1,16 @@ use inc::Module::Install; use strict; use warnings; - + # Define metadata -name 'HPSG-Mason'; -all_from 'lib/HPSG/Mason.pm'; - +name 'HPSG-Mason'; +all_from 'lib/HPSG/Mason.pm'; + # Specific dependencies -requires 'HTML::Mason' => 1.39; -test_requires 'Test::More' => '0.42'; +requires 'HTML::Mason' => '1.39'; +requires 'File::ShareDir' => '1.0'; +test_requires 'Test::More' => '0.42'; install_share 'share'; sign; - + WriteAll;