Skip Menu |

This queue is for tickets about the Thread-Queue CPAN distribution.

Report information
The Basics
Id: 33340
Status: resolved
Priority: 0/
Queue: Thread-Queue

People
Owner: Nobody in particular
Requestors: imacat [...] mail.imacat.idv.tw
Cc:
AdminCc:

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



Subject: Shadowed By the Core Version
Dear Jerry D. Hedden, Hi. This is imacat from Taiwan. I found that your Thread-Queue-2.03 was shadowed from the core Thread::Queue 2.00 supplied by Perl 5.8.8. imacat@rinse ~ % find /opt/perl/5.8.8/ -name Queue.pm /opt/perl/5.8.8/lib/site_perl/5.8.8/Thread/Queue.pm /opt/perl/5.8.8/lib/5.8.8/Thread/Queue.pm imacat@rinse ~ % grep '$VERSION = ' /opt/perl/5.8.8/lib/site_perl/5.8.8/Thread/Queue.pm /opt/perl/5.8.8/lib/5.8.8/Thread/Queue.pm /opt/perl/5.8.8/lib/site_perl/5.8.8/Thread/Queue.pm:our $VERSION = '2.03'; /opt/perl/5.8.8/lib/5.8.8/Thread/Queue.pm:our $VERSION = '2.00'; imacat@rinse ~ % /opt/perl/5.8.8/bin/perl -mThread::Queue -e'print $Thread::Queue::VERSION;'; echo 2.00 imacat@rinse ~ % I tried to make a simple patch in the hope that it helps. Please tell me if you need any more information, or if I could be of any help.
Subject: Thread-Queue-2.03-installdirs.diff
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 diff -u -r Thread-Queue-2.03.orig/Makefile.PL Thread-Queue-2.03/Makefile.PL - --- Thread-Queue-2.03.orig/Makefile.PL 2008-02-15 06:07:04.000000000 +0800 +++ Thread-Queue-2.03/Makefile.PL 2008-02-18 01:25:59.000000000 +0800 @@ -21,6 +21,7 @@ 'Scalar::Util' => 1.10, 'Test::More' => 0.50, }, + 'INSTALLDIRS' => ($] >= 5.005 ? 'perl' : 'site'), ((ExtUtils::MakeMaker->VERSION() lt '6.25') ? ('PL_FILES' => { }) : ()), -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.8 (GNU/Linux) iEYEARECAAYFAke4bnoACgkQi9gubzC5S1yIXwCgpP0q5JcFip7CqDj4YkPKljm0 7iQAniuE/MiSWKNK/VfzdQkKH29N+sAO =CXXS -----END PGP SIGNATURE-----
Subject: Re: [rt.cpan.org #33340] Shadowed By the Core Version
Date: Sun, 17 Feb 2008 13:35:26 -0500
To: bug-Thread-Queue [...] rt.cpan.org
From: "Jerry D. Hedden" <jdhedden [...] cpan.org>
Thanks so much for these patches. I'll post updates to cpan right away. On Feb 17, 2008 12:50 PM, Yi Ma Mao via RT <bug-Thread-Queue@rt.cpan.org> wrote: Show quoted text
> > Sun Feb 17 12:50:48 2008: Request 33340 was acted upon. > Transaction: Ticket created by IMACAT > Queue: Thread-Queue > Subject: Shadowed By the Core Version > Broken in: 2.03 > Severity: Normal > Owner: Nobody > Requestors: imacat@mail.imacat.idv.tw > Status: new > Ticket <URL: http://rt.cpan.org/Ticket/Display.html?id=33340 > > > > Dear Jerry D. Hedden, > > Hi. This is imacat from Taiwan. I found that your > Thread-Queue-2.03 was shadowed from the core Thread::Queue 2.00 supplied > by Perl 5.8.8. > > imacat@rinse ~ % find /opt/perl/5.8.8/ -name Queue.pm > /opt/perl/5.8.8/lib/site_perl/5.8.8/Thread/Queue.pm > /opt/perl/5.8.8/lib/5.8.8/Thread/Queue.pm > imacat@rinse ~ % grep '$VERSION = ' > /opt/perl/5.8.8/lib/site_perl/5.8.8/Thread/Queue.pm > /opt/perl/5.8.8/lib/5.8.8/Thread/Queue.pm > /opt/perl/5.8.8/lib/site_perl/5.8.8/Thread/Queue.pm:our $VERSION = '2.03'; > /opt/perl/5.8.8/lib/5.8.8/Thread/Queue.pm:our $VERSION = '2.00'; > imacat@rinse ~ % /opt/perl/5.8.8/bin/perl -mThread::Queue -e'print > $Thread::Queue::VERSION;'; echo > 2.00 > imacat@rinse ~ % > > I tried to make a simple patch in the hope that it helps. Please > tell me if you need any more information, or if I could be of any help. > >
From: jdhedden [...] cpan.org
Fixed in recently uploaded version 2.04. Thanks again.