diff options
author | fhajny <fhajny@pkgsrc.org> | 2014-06-12 13:31:44 +0000 |
---|---|---|
committer | fhajny <fhajny@pkgsrc.org> | 2014-06-12 13:31:44 +0000 |
commit | 01a567f639a6fa365d24af0f29be065c4090440b (patch) | |
tree | d4101610c785e010767effb300609319c73bcddf /mail/postgrey | |
parent | 313d335b4728b01e658433bdef9ebfe5a42f2c2c (diff) | |
download | pkgsrc-01a567f639a6fa365d24af0f29be065c4090440b.tar.gz |
Update postgrey to 1.35.
* 2014-06-11: version 1.35
- use just 'postgrey' as process name, instead of '/usr/sbin/postgrey',
because Linux tools are limited to 15 characters (#5)
- Make postgrey work with Perl 5.18 (Yasuhiro KIMURA, #4)
- updated whitelist
Diffstat (limited to 'mail/postgrey')
-rw-r--r-- | mail/postgrey/Makefile | 7 | ||||
-rw-r--r-- | mail/postgrey/distinfo | 9 | ||||
-rw-r--r-- | mail/postgrey/patches/patch-postgrey | 23 |
3 files changed, 7 insertions, 32 deletions
diff --git a/mail/postgrey/Makefile b/mail/postgrey/Makefile index 6d14c7f55b9..11f72a8b267 100644 --- a/mail/postgrey/Makefile +++ b/mail/postgrey/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.41 2014/05/29 23:36:51 wiz Exp $ +# $NetBSD: Makefile,v 1.42 2014/06/12 13:31:44 fhajny Exp $ -DISTNAME= postgrey-1.34 -PKGREVISION= 1 +DISTNAME= postgrey-1.35 CATEGORIES= mail MASTER_SITES= http://postgrey.schweikert.ch/pub/ @@ -71,7 +70,7 @@ SUBST_SED.postgrey+= -e 's,/etc/postfix,${PKG_SYSCONFDIR},g' # SUBST_MESSAGE.postgrey= Fixing defaults. -INSTALLATION_DIRS= sbin ${DOCDIR} ${EGDIR} +INSTALLATION_DIRS+= sbin ${DOCDIR} ${EGDIR} do-build: diff --git a/mail/postgrey/distinfo b/mail/postgrey/distinfo index 7161ba144c9..fc43470b144 100644 --- a/mail/postgrey/distinfo +++ b/mail/postgrey/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.11 2013/08/21 15:57:29 adam Exp $ +$NetBSD: distinfo,v 1.12 2014/06/12 13:31:44 fhajny Exp $ -SHA1 (postgrey-1.34.tar.gz) = 62529cd6232dc68c724548b476b89cda863b75ea -RMD160 (postgrey-1.34.tar.gz) = 7c40d68009e57d56517f0d962dbd3ca2989931ea -Size (postgrey-1.34.tar.gz) = 36399 bytes -SHA1 (patch-postgrey) = 72592aab8b209da85c736fcdf8ed7f22422d5777 +SHA1 (postgrey-1.35.tar.gz) = 8dde06a3016f2362af0ca0ba16686b45cf1e397b +RMD160 (postgrey-1.35.tar.gz) = 7dc67fb3df37094da3039297d3885ccde5f08c06 +Size (postgrey-1.35.tar.gz) = 36610 bytes diff --git a/mail/postgrey/patches/patch-postgrey b/mail/postgrey/patches/patch-postgrey deleted file mode 100644 index 0edfe2af48e..00000000000 --- a/mail/postgrey/patches/patch-postgrey +++ /dev/null @@ -1,23 +0,0 @@ -$NetBSD: patch-postgrey,v 1.2 2013/08/21 09:20:16 wiz Exp $ - -Fix postgrey with perl-5.18. - ---- postgrey.orig 2010-05-04 20:51:52.000000000 +0000 -+++ postgrey -@@ -552,6 +552,16 @@ sub main() - if($opt{dbdir}) { - $opt{dbdir} =~ /^(.*)$/; $opt{dbdir} = $1; - } -+ # untaint what is given on --pidfile. It is not security sensitive since -+ # it is provided by the admin -+ if($opt{pidfile}) { -+ $opt{pidfile} =~ /^(.*)$/; $opt{pidfile} = $1; -+ } -+ # untaint what is given on --inet. It is not security sensitive since -+ # it is provided by the admin -+ if($opt{inet}) { -+ $opt{inet} =~ /^(.*)$/; $opt{inet} = $1; -+ } - - # determine proper "logsock" for Sys::Syslog - my $syslog_logsock; |