diff options
author | prlw1 <prlw1@pkgsrc.org> | 2016-02-05 16:08:54 +0000 |
---|---|---|
committer | prlw1 <prlw1@pkgsrc.org> | 2016-02-05 16:08:54 +0000 |
commit | 327875123ae92e3ba0e9886470e9e06405e818a3 (patch) | |
tree | a52c3066d9ca206e013753f6538b721d57480908 | |
parent | fa258d6252d8509a77103071496b5cef6482259f (diff) | |
download | pkgsrc-327875123ae92e3ba0e9886470e9e06405e818a3.tar.gz |
Fixed in 3.4
http://bz.apache.org/SpamAssassin/show_bug.cgi?id=6937
-rw-r--r-- | mail/spamassassin/Makefile | 4 | ||||
-rw-r--r-- | mail/spamassassin/distinfo | 3 | ||||
-rw-r--r-- | mail/spamassassin/patches/patch-lib_Mail_SpamAssassin_Message.pm | 15 |
3 files changed, 3 insertions, 19 deletions
diff --git a/mail/spamassassin/Makefile b/mail/spamassassin/Makefile index 1750b688691..34a371cceb0 100644 --- a/mail/spamassassin/Makefile +++ b/mail/spamassassin/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.122 2016/02/05 16:06:08 prlw1 Exp $ +# $NetBSD: Makefile,v 1.123 2016/02/05 16:08:54 prlw1 Exp $ DISTNAME= Mail-SpamAssassin-3.4.1 PKGNAME= spamassassin-3.4.1 -#PKGREVISION= +PKGREVISION= 1 CATEGORIES= mail perl5 MASTER_SITES= ${MASTER_SITE_APACHE:=spamassassin/source/} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} diff --git a/mail/spamassassin/distinfo b/mail/spamassassin/distinfo index f095e7bcf40..11ffa21c616 100644 --- a/mail/spamassassin/distinfo +++ b/mail/spamassassin/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.67 2016/02/05 16:06:08 prlw1 Exp $ +$NetBSD: distinfo,v 1.68 2016/02/05 16:08:54 prlw1 Exp $ SHA1 (Mail-SpamAssassin-3.4.1.tar.gz) = e7b342d30f4983f70f4234480b489ccc7d2aa615 RMD160 (Mail-SpamAssassin-3.4.1.tar.gz) = 4b7d6a6def068eb015e8d4699db410ade76b28f3 @@ -11,7 +11,6 @@ Size (Mail-SpamAssassin-rules-3.4.1.r1675274.tgz) = 270622 bytes SHA1 (patch-Makefile.PL) = d322d7fb7286d5cf87ca775f9c381db32626e060 SHA1 (patch-README) = 5d2aaecc4791e4f76df1078c17036cc23a39a8d0 SHA1 (patch-ae) = d46b1d8f56c8c61936c307f74b39a49da1b1f353 -SHA1 (patch-lib_Mail_SpamAssassin_Message.pm) = 402b9769df65ae87c3beebcc9441e29619eed367 SHA1 (patch-sa-compile) = e8a92060eefbc1c95b7b2c674fc69686a66f230b SHA1 (patch-sa-update) = 59cba1287051042fc7f510f5e5ef462e2ee8d034 SHA1 (patch-spamd_netbsd-rc-script.sh) = 192fc1876ee30a4475c0efd9be6340e87d9fa2f4 diff --git a/mail/spamassassin/patches/patch-lib_Mail_SpamAssassin_Message.pm b/mail/spamassassin/patches/patch-lib_Mail_SpamAssassin_Message.pm deleted file mode 100644 index 6a71d7648e9..00000000000 --- a/mail/spamassassin/patches/patch-lib_Mail_SpamAssassin_Message.pm +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-lib_Mail_SpamAssassin_Message.pm,v 1.1 2013/12/04 15:14:19 jperkin Exp $ - -Part of backport of bug#6937 - ---- lib/Mail/SpamAssassin/Message.pm.orig 2011-06-06 23:59:17.000000000 +0000 -+++ lib/Mail/SpamAssassin/Message.pm -@@ -566,7 +566,7 @@ sub finish { - while (my $part = shift @toclean) { - # bug 5557: windows requires tmp file be closed before it can be rm'd - if (ref $part->{'raw'} eq 'GLOB') { -- close($part->{'raw'}) or die "error closing input file: $!"; -+ close($part->{'raw'}) or warn "error closing input file: $!"; - } - - # bug 5858: avoid memory leak with deep MIME structure |