Skip Menu |

This queue is for tickets about the Tree-Simple CPAN distribution.

Report information
The Basics
Id: 17095
Status: resolved
Priority: 0/
Queue: Tree-Simple

People
Owner: stevan.little [...] gmail.com
Requestors: jns [...] gellyfish.com
Cc:
AdminCc:

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



Subject: Unchecked dependency in Tree::Simple
Date: Mon, 16 Jan 2006 20:49:02 +0000
To: bug-Tree-Simple [...] rt.cpan.org
From: Jonathan Stowe <jns [...] gellyfish.com>
Hi, I was just trying to install Tree::Simple and it was failing its tests horribly with "Error: Weak references are not implemented in the version of perl" - it seems that it does actually depend on a particular version of Scalar::Util, I have just upgraded the version of Scalar-List-Utils and it seems to work fine. You might want to stick the dependency in the Makefile.PL /J\ -- This e-mail is sponsored by http://www.integration-house.com/
On Mon Jan 16 15:50:26 2006, jns@gellyfish.com wrote: Show quoted text
> Hi, > I was just trying to install Tree::Simple and it was failing its tests > horribly with "Error: Weak references are not implemented in the > version of perl" - it seems that it does actually depend on a particular > version of Scalar::Util, I have just upgraded the version of > Scalar-List-Utils and it seems to work fine. You might want to stick > the dependency in the Makefile.PL > > /J\
Tree-Simple-1.16/META.yml lists Scalar::Util 1.18 as requirement. But 1.18 isn't actually required, as any version of Scalar::Util will work, provided it was compiled with weak reference support.
Subject: Re: [rt.cpan.org #17095] Unchecked dependency in Tree::Simple
Date: Fri, 24 Mar 2006 15:50:39 +0000
To: bug-Tree-Simple [...] rt.cpan.org
From: Jonathan Stowe <jns [...] gellyfish.com>
On Fri, 2006-03-24 at 15:29, Guest via RT wrote: Show quoted text
> <URL: http://rt.cpan.org/Ticket/Display.html?id=17095 > > > On Mon Jan 16 15:50:26 2006, jns@gellyfish.com wrote:
> > Hi, > > I was just trying to install Tree::Simple and it was failing its tests > > horribly with "Error: Weak references are not implemented in the > > version of perl" - it seems that it does actually depend on a particular > > version of Scalar::Util, I have just upgraded the version of > > Scalar-List-Utils and it seems to work fine. You might want to stick > > the dependency in the Makefile.PL > > > > /J\
> > Tree-Simple-1.16/META.yml lists > Scalar::Util 1.18 as requirement. > But 1.18 isn't actually required, > as any version of Scalar::Util will work, > provided it was compiled with weak reference support.
Er, then it should check for this at build time rather than letting it be built and failing tests. However the report I made predates the release of Tree-Simple-1.16 by three weeks. /J\ -- This e-mail is sponsored by http://www.integration-house.com/
From: CHORNY [...] cpan.org
On Mar 24 10:29:14 2006, guest wrote: Show quoted text
> Tree-Simple-1.16/META.yml lists > Scalar::Util 1.18 as requirement. > But 1.18 isn't actually required, > as any version of Scalar::Util will work, > provided it was compiled with weak reference support.
requirement of Task::Weaken will help. -- Alexandr Ciornii, http://chorny.net
Version 1.17 on CPAN makes loading of Scalar::Util::weaken, completely optional. THis should take care of your issue. - Stevan