summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-perl/MIME-Lite')
-rw-r--r--dev-perl/MIME-Lite/ChangeLog8
-rw-r--r--dev-perl/MIME-Lite/files/3.021-no_sendmail.patch26
2 files changed, 6 insertions, 28 deletions
diff --git a/dev-perl/MIME-Lite/ChangeLog b/dev-perl/MIME-Lite/ChangeLog
index 139c410aae86..c30676a59d9c 100644
--- a/dev-perl/MIME-Lite/ChangeLog
+++ b/dev-perl/MIME-Lite/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-perl/MIME-Lite
-# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/MIME-Lite/ChangeLog,v 1.22 2009/03/13 12:49:01 tove Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/MIME-Lite/ChangeLog,v 1.23 2009/08/16 09:25:39 tove Exp $
+
+ 16 Aug 2009; Torsten Veller <tove@gentoo.org>
+ -files/3.021-no_sendmail.patch:
+ Remove unused patch
13 Mar 2009; Torsten Veller <tove@gentoo.org> -MIME-Lite-3.021.ebuild,
-MIME-Lite-3.023.ebuild:
diff --git a/dev-perl/MIME-Lite/files/3.021-no_sendmail.patch b/dev-perl/MIME-Lite/files/3.021-no_sendmail.patch
deleted file mode 100644
index 3294e7239c4e..000000000000
--- a/dev-perl/MIME-Lite/files/3.021-no_sendmail.patch
+++ /dev/null
@@ -1,26 +0,0 @@
---- a/lib/MIME/Lite.pm
-+++ b/lib/MIME/Lite.pm
-@@ -401,13 +401,13 @@ if ( $^O =~ /win32/i ) {
- }
- }
- unless (-x $SENDMAIL) {
-- Carp::croak "can't find an executable sendmail"
-+ undef $SENDMAIL;
- }
- }
-
- ### Our sending facilities:
- my %SenderArgs = (
-- sendmail => ["$SENDMAIL -t -oi -oem"],
-+ sendmail => [$SENDMAIL ? "$SENDMAIL -t -oi -oem" : undef],
- smtp => [],
- sub => [],
- );
-@@ -2666,6 +2666,7 @@ sub send_by_sendmail {
- if ( @_ == 1 and !ref $_[0] ) {
- ### Use the given command...
- my $sendmailcmd = shift @_;
-+ Carp::croak "No sendmail command available" unless $sendmailcmd;
-
- ### Do it:
- local *SENDMAIL;