r37806 - in /branches/upstream/libemail-send-perl/current: Changes META.yml README lib/Email/Send.pm lib/Email/Send/NNTP.pm lib/Email/Send/Qmail.pm lib/Email/Send/SMTP.pm lib/Email/Send/Sendmail.pm lib/Email/Send/Test.pm

nhandler-guest at users.alioth.debian.org nhandler-guest at users.alioth.debian.org
Sun Jun 7 19:09:13 UTC 2009


Author: nhandler-guest
Date: Sun Jun  7 19:09:07 2009
New Revision: 37806

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

Modified:
    branches/upstream/libemail-send-perl/current/Changes
    branches/upstream/libemail-send-perl/current/META.yml
    branches/upstream/libemail-send-perl/current/README
    branches/upstream/libemail-send-perl/current/lib/Email/Send.pm
    branches/upstream/libemail-send-perl/current/lib/Email/Send/NNTP.pm
    branches/upstream/libemail-send-perl/current/lib/Email/Send/Qmail.pm
    branches/upstream/libemail-send-perl/current/lib/Email/Send/SMTP.pm
    branches/upstream/libemail-send-perl/current/lib/Email/Send/Sendmail.pm
    branches/upstream/libemail-send-perl/current/lib/Email/Send/Test.pm

Modified: branches/upstream/libemail-send-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-send-perl/current/Changes?rev=37806&op=diff
==============================================================================
--- branches/upstream/libemail-send-perl/current/Changes (original)
+++ branches/upstream/libemail-send-perl/current/Changes Sun Jun  7 19:09:07 2009
@@ -1,3 +1,10 @@
+2.195     2009-06-07
+          ** PLEASE CONSIDER USING EMAIL-SENDER INSTEAD **
+
+          add /usr/sbin/sendmail as last place to always look for sendmail
+          add /usr/lib/sendmail as last place to always look for sendmail
+          if $QMAIL variable for Qmail subclass is -x, use it
+
 2.194     2009-01-02
           ** PLEASE CONSIDER USING EMAIL-SENDER INSTEAD **
 

Modified: branches/upstream/libemail-send-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-send-perl/current/META.yml?rev=37806&op=diff
==============================================================================
--- branches/upstream/libemail-send-perl/current/META.yml (original)
+++ branches/upstream/libemail-send-perl/current/META.yml Sun Jun  7 19:09:07 2009
@@ -1,12 +1,14 @@
 --- #YAML:1.0
 name:               Email-Send
-version:            2.194
+version:            2.195
 abstract:           Simply Sending Email
 author:
     - Casey West <casey at geeknest.com>
 license:            perl
 distribution_type:  module
 configure_requires:
+    ExtUtils::MakeMaker:  0
+build_requires:
     ExtUtils::MakeMaker:  0
 requires:
     Email::Address:     1.80
@@ -21,7 +23,7 @@
     directory:
         - t
         - inc
-generated_by:       ExtUtils::MakeMaker version 6.48
+generated_by:       ExtUtils::MakeMaker version 6.50
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4

Modified: branches/upstream/libemail-send-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-send-perl/current/README?rev=37806&op=diff
==============================================================================
--- branches/upstream/libemail-send-perl/current/README (original)
+++ branches/upstream/libemail-send-perl/current/README Sun Jun  7 19:09:07 2009
@@ -2,7 +2,7 @@
     Email::Send - Simply Sending Email
 
 VERSION
-    2.194
+    2.195
 
 SYNOPSIS
       use Email::Send;

Modified: branches/upstream/libemail-send-perl/current/lib/Email/Send.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-send-perl/current/lib/Email/Send.pm?rev=37806&op=diff
==============================================================================
--- branches/upstream/libemail-send-perl/current/lib/Email/Send.pm (original)
+++ branches/upstream/libemail-send-perl/current/lib/Email/Send.pm Sun Jun  7 19:09:07 2009
@@ -2,7 +2,7 @@
 use strict;
 
 use vars qw[$VERSION];
-$VERSION   = '2.194';
+$VERSION   = '2.195';
 
 use Email::Simple;
 use Module::Pluggable

Modified: branches/upstream/libemail-send-perl/current/lib/Email/Send/NNTP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-send-perl/current/lib/Email/Send/NNTP.pm?rev=37806&op=diff
==============================================================================
--- branches/upstream/libemail-send-perl/current/lib/Email/Send/NNTP.pm (original)
+++ branches/upstream/libemail-send-perl/current/lib/Email/Send/NNTP.pm Sun Jun  7 19:09:07 2009
@@ -5,7 +5,7 @@
 use Net::NNTP;
 use Return::Value;
 
-$VERSION   = '2.194';
+$VERSION   = '2.195';
 
 sub is_available {
     return   eval { require Net::NNTP }

Modified: branches/upstream/libemail-send-perl/current/lib/Email/Send/Qmail.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-send-perl/current/lib/Email/Send/Qmail.pm?rev=37806&op=diff
==============================================================================
--- branches/upstream/libemail-send-perl/current/lib/Email/Send/Qmail.pm (original)
+++ branches/upstream/libemail-send-perl/current/lib/Email/Send/Qmail.pm Sun Jun  7 19:09:07 2009
@@ -7,7 +7,7 @@
 
 use vars qw[$QMAIL $VERSION];
 $QMAIL   ||= q[qmail-inject];
-$VERSION   = '2.194';
+$VERSION   = '2.195';
 
 sub is_available {
     my $class = shift;
@@ -21,6 +21,11 @@
     my $class = shift;
 
     my $sendmail;
+
+    if (-x $QMAIL) {
+      return $QMAIL;
+    }
+
     for my $dir (File::Spec->path) {
         if ( -x "$dir/$QMAIL" ) {
             $sendmail = "$dir/$QMAIL";

Modified: branches/upstream/libemail-send-perl/current/lib/Email/Send/SMTP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-send-perl/current/lib/Email/Send/SMTP.pm?rev=37806&op=diff
==============================================================================
--- branches/upstream/libemail-send-perl/current/lib/Email/Send/SMTP.pm (original)
+++ branches/upstream/libemail-send-perl/current/lib/Email/Send/SMTP.pm Sun Jun  7 19:09:07 2009
@@ -5,7 +5,7 @@
 use Email::Address;
 use Return::Value;
 
-$VERSION = '2.194';
+$VERSION = '2.195';
 
 sub is_available {
     my ($class, %args) = @_;

Modified: branches/upstream/libemail-send-perl/current/lib/Email/Send/Sendmail.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-send-perl/current/lib/Email/Send/Sendmail.pm?rev=37806&op=diff
==============================================================================
--- branches/upstream/libemail-send-perl/current/lib/Email/Send/Sendmail.pm (original)
+++ branches/upstream/libemail-send-perl/current/lib/Email/Send/Sendmail.pm Sun Jun  7 19:09:07 2009
@@ -7,7 +7,7 @@
 
 use vars qw[$SENDMAIL $VERSION];
 
-$VERSION   = '2.194';
+$VERSION   = '2.195';
 
 sub is_available {
     my $class = shift;
@@ -23,12 +23,17 @@
     return $SENDMAIL if defined $SENDMAIL;
 
     my $sendmail;
-    for my $dir (File::Spec->path) {
+    for my $dir (
+      File::Spec->path,
+      File::Spec->catfile('', qw(usr sbin sendmail)),
+      File::Spec->catfile('', qw(usr lib sendmail)),
+    ) {
         if ( -x "$dir/sendmail" ) {
             $sendmail = "$dir/sendmail";
             last;
         }
     }
+
     return $sendmail;
 }
 

Modified: branches/upstream/libemail-send-perl/current/lib/Email/Send/Test.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-send-perl/current/lib/Email/Send/Test.pm?rev=37806&op=diff
==============================================================================
--- branches/upstream/libemail-send-perl/current/lib/Email/Send/Test.pm (original)
+++ branches/upstream/libemail-send-perl/current/lib/Email/Send/Test.pm Sun Jun  7 19:09:07 2009
@@ -70,7 +70,7 @@
 
 use vars qw{$VERSION};
 BEGIN {
-	$VERSION = '2.194';
+	$VERSION = '2.195';
 }
 
 # No longer allow direct access to the array




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