From owner-svn-ports-all@FreeBSD.ORG Sun May 25 13:39:44 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 00AEB982; Sun, 25 May 2014 13:39:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C831820FC; Sun, 25 May 2014 13:39:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4PDdhcH062692; Sun, 25 May 2014 13:39:43 GMT (envelope-from ohauer@svn.freebsd.org) Received: (from ohauer@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4PDdhJw062690; Sun, 25 May 2014 13:39:43 GMT (envelope-from ohauer@svn.freebsd.org) Message-Id: <201405251339.s4PDdhJw062690@svn.freebsd.org> From: Olli Hauer Date: Sun, 25 May 2014 13:39:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r355245 - in head/mail/postfix-policyd-weight: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2014 13:39:44 -0000 Author: ohauer Date: Sun May 25 13:39:43 2014 New Revision: 355245 URL: http://svnweb.freebsd.org/changeset/ports/355245 QAT: https://qat.redports.org/buildarchive/r355245/ Log: - fix for new Net::DNS>=0.72 - bump required Net::DNS to >=0.72 - bump PORTREVISION Modified: head/mail/postfix-policyd-weight/Makefile head/mail/postfix-policyd-weight/files/patch-policyd-weight Modified: head/mail/postfix-policyd-weight/Makefile ============================================================================== --- head/mail/postfix-policyd-weight/Makefile Sun May 25 13:39:16 2014 (r355244) +++ head/mail/postfix-policyd-weight/Makefile Sun May 25 13:39:43 2014 (r355245) @@ -3,7 +3,7 @@ PORTNAME= policyd-weight PORTVERSION= 0.1.15.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail MASTER_SITES= http://www.policyd-weight.org/releases/ \ LOCAL/ohauer @@ -14,7 +14,7 @@ COMMENT= Weighted policy daemon for post LICENSE= GPLv2 -RUN_DEPENDS= p5-Net-DNS>=0.52:${PORTSDIR}/dns/p5-Net-DNS \ +RUN_DEPENDS= p5-Net-DNS>=0.72:${PORTSDIR}/dns/p5-Net-DNS \ p5-Net-IP>0:${PORTSDIR}/net-mgmt/p5-Net-IP SUB_FILES= pkg-message Modified: head/mail/postfix-policyd-weight/files/patch-policyd-weight ============================================================================== --- head/mail/postfix-policyd-weight/files/patch-policyd-weight Sun May 25 13:39:16 2014 (r355244) +++ head/mail/postfix-policyd-weight/files/patch-policyd-weight Sun May 25 13:39:43 2014 (r355245) @@ -1,14 +1,5 @@ --- ./policyd-weight.orig 2011-09-03 15:55:02.000000000 +0200 -+++ ./policyd-weight 2014-05-24 07:46:02.000000000 +0200 -@@ -69,7 +69,7 @@ - use Sys::Syslog qw(:DEFAULT setlogsock); - use Net::DNS; - use Net::IP; --use Net::DNS::Packet qw(dn_expand); -+use Net::DNS::Packet qw(netdns_dn_expand); - use IO::Socket::INET; - use IO::Socket::UNIX; - use IO::Select; ++++ ./policyd-weight 2014-05-25 14:34:09.000000000 +0200 @@ -320,7 +320,7 @@ my $DEBUG = 0; # 1 or 0 - don't comment @@ -147,7 +138,7 @@ unpack('n n n n n n a*', $buf); - my ($dn, $offset) = dn_expand(\$qb, 0); -+ my ($dn, $offset) = netdns_dn_expand(\$qb, 0); ++ my ($dn, $offset) = Net::DNS::Packet::dn_expand(\$qb, 0); if(($id && $anc) && ($id == $oid) && ($query eq $dn)) {