Skip Menu |

This queue is for tickets about the Dios CPAN distribution.

Report information
The Basics
Id: 106376
Status: open
Priority: 0/
Queue: Dios

People
Owner: Nobody in particular
Requestors: me [...] peter-r.co.uk
Cc:
AdminCc:

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



Subject: Installing Under Perl 5.22 Tries To Build Data::Alias And Fails
Date: Tue, 11 Aug 2015 21:57:28 +0100
To: bug-Dios [...] rt.cpan.org
From: Peter Roberts <me [...] peter-r.co.uk>
Using 5.20.0 built with perlbrew defaults. It's a bit strange because I thought this version of Perl didn't need Data::Alias for Dios and I can see a successful run for it on CPAN Testers -- Thanks Peter Roberts
Subject: Re: [rt.cpan.org #106376] Installing Under Perl 5.22 Tries To Build Data::Alias And Fails
Date: Wed, 12 Aug 2015 07:10:25 +1000
To: bug-Dios [...] rt.cpan.org
From: Damian Conway <damian [...] conway.org>
Hi Peter, I'm a little confused by your report. Your subject indicates a failure under 5.22, but your message says: Show quoted text
> Using 5.20.0 built with perlbrew defaults.
Did you mean: "Using 5.22.0 built with perlbrew defaults"? Damian
On 2015-08-11 13:57:42, me@peter-r.co.uk wrote: Show quoted text
> I > thought this version of Perl didn't need Data::Alias for Dios
Data::Alias is specified as a prerequisite in META.json as well as Makefile.PL (and the entries in Makefile.PL take precedence, since the metadata specifies dynamic_config => 1). probably Makefile.PL should do: PREREQ_PM => { $] < '5.022' ? ( 'Data::Alias' => '0' ) : (), ..., }
Subject: Re: [rt.cpan.org #106376] Installing Under Perl 5.22 Tries To Build Data::Alias And Fails
Date: Wed, 12 Aug 2015 07:18:32 +1000
To: bug-Dios [...] rt.cpan.org
From: Damian Conway <damian [...] conway.org>
Show quoted text
> probably Makefile.PL should do: > > PREREQ_PM => { > $] < '5.022' ? ( 'Data::Alias' => '0' ) : (), > ..., > }
Agreed. I have indeed changed it in that way for the next release. However, I still need to confirm what Peter was actually reporting (i.e. is there some other 5.20 vs 5.22 issue?) Thanks, Karen. Damian
Subject: Re: [rt.cpan.org #106376] Installing Under Perl 5.22 Tries To Build Data::Alias And Fails
Date: Tue, 11 Aug 2015 22:55:07 +0100
To: bug-Dios [...] rt.cpan.org
From: Peter Roberts <me [...] peter-r.co.uk>
Yes, I meant as you surmised, sorry wrote the wrong version in the description Peter On 11 Aug 2015 22:19, "damian@conway.org via RT" <bug-Dios@rt.cpan.org> wrote: Show quoted text
> <URL: https://rt.cpan.org/Ticket/Display.html?id=106376 > >
> > probably Makefile.PL should do: > > > > PREREQ_PM => { > > $] < '5.022' ? ( 'Data::Alias' => '0' ) : (), > > ..., > > }
> > Agreed. I have indeed changed it in that way for the next release. > > However, I still need to confirm what Peter was actually reporting > (i.e. is there some other 5.20 vs 5.22 issue?) > > Thanks, Karen. > > Damian > >
Subject: Re: [rt.cpan.org #106376] Installing Under Perl 5.22 Tries To Build Data::Alias And Fails
Date: Wed, 12 Aug 2015 07:59:13 +1000
To: bug-Dios [...] rt.cpan.org
From: Damian Conway <damian [...] conway.org>
Show quoted text
> Yes, I meant as you surmised, sorry wrote the wrong version in the > description
Thanks, Peter. The issue will be fixed in the next release. Much appreciated, Damian