Fri Sep 28 17:02:37 2007CHORNY [...] cpan.org - Ticket created
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
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.
Fri Sep 28 21:48:03 2007The RT System itself - Status changed from 'new' to 'open'
Thu Jan 03 20:26:54 2008SAPER [...] cpan.org - Taken
Thu Jan 03 21:18:53 2008SAPER [...] cpan.org - Correspondence added
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.
Fri Jan 04 10:17:08 2008SAPER [...] cpan.org - Fixed in 0.05 added
Fri Jan 04 10:17:23 2008SAPER [...] cpan.org - Status changed from 'open' to 'resolved'
Sat Jan 05 14:20:15 2008SREZIC [...] cpan.org - Correspondence added
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
Sat Jan 05 14:20:21 2008The RT System itself - Status changed from 'resolved' to 'open'
Sun Jan 13 16:49:59 2008SAPER [...] cpan.org - Correspondence added
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.
Fri Feb 08 08:26:44 2008SAPER [...] cpan.org - Status changed from 'open' to 'resolved'
Fri Feb 08 08:26:46 2008SAPER [...] cpan.org - Fixed in 0.06 added