Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Email-MessageID CPAN distribution.

Report information
The Basics
Id: 17615
Status: resolved
Priority: 0/
Queue: Email-MessageID

People
Owner: Nobody in particular
Requestors: BARBIE [...] cpan.org
Cc:
AdminCc:

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



Subject: 5.8.x dependancy on Sys::Hotname
The latest release of Email-MessageID requires Sys::Hostname v1.11. However, this only exists in perl-5.8.x releases. ActivePerl 5.6.1 contains Sys::Hostname v1.1. Is there a significant bug fix between releases that Email-MessageID relies on, as with the lesser version, all test pass? As Email-MessageID doesn't pass tests on Windows/5.6.1, it also means that Email-MIME-Modifier, Email-MIME-Attachment-Stripper, Email-Store, Email-Stuff and others now fail to test too :(
Oops New => Open was me accidentally clicking the wrong button. Sorry. (insert emoticon to look suitably embarrassed here)
Subject: Re: [rt.cpan.org #17615] 5.8.x dependancy on Sys::Hotname
Date: Mon, 13 Feb 2006 09:43:08 -0500
To: bug-Email-MessageID [...] rt.cpan.org
From: Casey West <casey [...] geeknest.com>
On Feb 13, 2006, at 9:21 AM, Barbie via RT wrote: Show quoted text
> The latest release of Email-MessageID requires Sys::Hostname v1.11. > However, this only exists in perl-5.8.x releases. ActivePerl 5.6.1 > contains Sys::Hostname v1.1. Is there a significant bug fix between > releases that Email-MessageID relies on, as with the lesser > version, all > test pass?
I'll update the dist. This is simply an artifact of my configuration for building makefiles, combined with my poor memory about what packages exist in the Perl core. Thanks for mentioning it (I'm sure you sent this before and I forgot about it then.... so thanks again). -- Casey West
From: rjbs [...] cpan.org
Patch attached.
diff -Nur Email-MessageID-1.31/Changes Email-MessageID-1.32/Changes --- Email-MessageID-1.31/Changes 2004-12-22 20:53:06.000000000 -0500 +++ Email-MessageID-1.32/Changes 2006-07-03 20:04:51.000000000 -0400 @@ -1,3 +1,7 @@ +1.32 2006-07-03 + + - Fixed version required for Sys::Hostname (thanks BARBIE) + 1.31 2004-12-22 - Stopped using Time::HiRes. Instead, we generate a pseudo- diff -Nur Email-MessageID-1.31/Makefile.PL Email-MessageID-1.32/Makefile.PL --- Email-MessageID-1.31/Makefile.PL 2004-12-22 20:54:45.000000000 -0500 +++ Email-MessageID-1.32/Makefile.PL 2006-07-03 20:05:03.000000000 -0400 @@ -6,7 +6,7 @@ NAME => 'Email::MessageID', PREREQ_PM => { 'Email::Address' => '1.80', - 'Sys::Hostname' => '1.11', + 'Sys::Hostname' => '1.1', 'Test::More' => '0.47', }, VERSION_FROM => 'lib/Email/MessageID.pm', diff -Nur Email-MessageID-1.31/lib/Email/MessageID.pm Email-MessageID-1.32/lib/Email/MessageID.pm --- Email-MessageID-1.31/lib/Email/MessageID.pm 2004-12-22 21:01:43.000000000 -0500 +++ Email-MessageID-1.32/lib/Email/MessageID.pm 2006-07-03 20:05:56.000000000 -0400 @@ -1,9 +1,8 @@ package Email::MessageID; -# $Id: MessageID.pm,v 1.3 2004/12/23 02:01:43 cwest Exp $ use strict; use vars qw[$VERSION]; -$VERSION = '1.31'; +$VERSION = '1.32'; use Email::Address;
fixed and released -- rjbs