Skip Menu |

This queue is for tickets about the warnings-compat CPAN distribution.

Report information
The Basics
Id: 29654
Status: resolved
Priority: 0/
Queue: warnings-compat

People
Owner: SAPER [...] cpan.org
Requestors: CHORNY [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: 0.04
Fixed in:
  • 0.05
  • 0.06



Subject: doc for making a prerequisite
I see no documentation how to require warnings in my dist. Would simple PREREQ_PM => { warnings => 0, } be enough? -- Alexandr Ciornii, http://chorny.net
Subject: Re: [rt.cpan.org #29654] doc for making a prerequisite
Date: Sat, 29 Sep 2007 03:47:30 +0200
To: bug-warnings-compat [...] rt.cpan.org
From: Sébastien Aperghis-Tramoni <saper [...] cpan.org>
Alexandr Ciornii wrote: Show quoted text
> I see no documentation how to require warnings in my dist. > > Would simple > PREREQ_PM => { > warnings => 0, > } > be enough?
This is of no use because warnings.pm is a pure core module, not dual- lifed. If you want your module to install warnings::compat, just add it as a normal prereq: PREREQ_PM => { "warnings::compat" => 0, } I'll make this more clear in the documentation. Thanks for reporting. -- Sébastien Aperghis-Tramoni Close the world, txEn eht nepO.
Subject: Re: [rt.cpan.org #29654] doc for making a prerequisite
Date: Fri, 4 Jan 2008 03:18:39 +0100
To: bug-warnings-compat [...] rt.cpan.org
From: Sébastien Aperghis-Tramoni <saper [...] cpan.org>
Alexandr Ciornii wrote: Show quoted text
> I see no documentation how to require warnings in my dist.
This is now fixed with release 0.05. Thanks for reporting this. -- Sébastien Aperghis-Tramoni Close the world, txEn eht nepO.
On Thu Jan 03 21:18:53 2008, SAPER wrote: Show quoted text
> Alexandr Ciornii wrote: >
> > I see no documentation how to require warnings in my dist.
> > > This is now fixed with release 0.05. >
Maybe, to avoid unnecessary prerequisites with newer perls, this should be PREREQ_PM => { ($] < 5.006 ? ("warnings::compat" => 0) : ()), } Regards, Slaven
Subject: Re: [rt.cpan.org #29654] doc for making a prerequisite
Date: Sun, 13 Jan 2008 22:49:53 +0100
To: bug-warnings-compat [...] rt.cpan.org
From: Sébastien Aperghis-Tramoni <saper [...] cpan.org>
Slaven_Rezic via RT a écrit : Show quoted text
> Maybe, to avoid unnecessary prerequisites with newer perls, this > should be > > PREREQ_PM => { > ($] < 5.006 ? ("warnings::compat" => 0) : ()), > }
Done with release 0.06. -- Sébastien Aperghis-Tramoni Close the world, txEn eht nepO.