r8771 - in /branches/upstream/libemail-send-perl/current: Changes META.yml lib/Email/Send.pm t/all-mailers.t

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Fri Nov 2 16:38:01 UTC 2007


Author: gregoa-guest
Date: Fri Nov  2 16:38:01 2007
New Revision: 8771

URL: http://svn.debian.org/wsvn/?sc=1&rev=8771
Log:
[svn-upgrade] Integrating new upstream version, libemail-send-perl (2.192)

Modified:
    branches/upstream/libemail-send-perl/current/Changes
    branches/upstream/libemail-send-perl/current/META.yml
    branches/upstream/libemail-send-perl/current/lib/Email/Send.pm
    branches/upstream/libemail-send-perl/current/t/all-mailers.t

Modified: branches/upstream/libemail-send-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libemail-send-perl/current/Changes?rev=8771&op=diff
==============================================================================
--- branches/upstream/libemail-send-perl/current/Changes (original)
+++ branches/upstream/libemail-send-perl/current/Changes Fri Nov  2 16:38:01 2007
@@ -1,3 +1,7 @@
+2.192     2007-11-01
+          horrible hack to fix regrettable decision in use of Module::Pluggable
+            (see https://rt.cpan.org/Ticket/Display.html?id=30183)
+
 2.191     2007-10-21
           use Test mailer, not IO::All, to test internal interfaces
             (thanks, Andreas)

Modified: branches/upstream/libemail-send-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libemail-send-perl/current/META.yml?rev=8771&op=diff
==============================================================================
--- branches/upstream/libemail-send-perl/current/META.yml (original)
+++ branches/upstream/libemail-send-perl/current/META.yml Fri Nov  2 16:38:01 2007
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                Email-Send
-version:             2.191
+version:             2.192
 abstract:            Simply Sending Email
 license:             perl
 generated_by:        ExtUtils::MakeMaker version 6.36_01

Modified: branches/upstream/libemail-send-perl/current/lib/Email/Send.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libemail-send-perl/current/lib/Email/Send.pm?rev=8771&op=diff
==============================================================================
--- branches/upstream/libemail-send-perl/current/lib/Email/Send.pm (original)
+++ branches/upstream/libemail-send-perl/current/lib/Email/Send.pm Fri Nov  2 16:38:01 2007
@@ -2,10 +2,12 @@
 use strict;
 
 use vars qw[$VERSION];
-$VERSION   = '2.191';
+$VERSION   = '2.192';
 
 use Email::Simple;
-use Module::Pluggable search_path => 'Email::Send';
+use Module::Pluggable
+  search_path => 'Email::Send',
+  except      => $Email::Send::__plugin_exclusion;
 use Return::Value;
 use Scalar::Util ();
 

Modified: branches/upstream/libemail-send-perl/current/t/all-mailers.t
URL: http://svn.debian.org/wsvn/branches/upstream/libemail-send-perl/current/t/all-mailers.t?rev=8771&op=diff
==============================================================================
--- branches/upstream/libemail-send-perl/current/t/all-mailers.t (original)
+++ branches/upstream/libemail-send-perl/current/t/all-mailers.t Fri Nov  2 16:38:01 2007
@@ -4,6 +4,8 @@
 
 use lib 't/lib';
 
+
+BEGIN { $Email::Send::__plugin_exclusion = qr/Jifty/ }
 BEGIN { use_ok('Email::Send', 'Test'); }
 
 my $sender  = Email::Send->new;




More information about the Pkg-perl-cvs-commits mailing list