From owner-svn-ports-all@freebsd.org Wed Mar 8 01:48:34 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E5E0DD01A72; Wed, 8 Mar 2017 01:48:34 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 C07541CCD; Wed, 8 Mar 2017 01:48:34 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v281mX85071822; Wed, 8 Mar 2017 01:48:33 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v281mXAM071818; Wed, 8 Mar 2017 01:48:33 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201703080148.v281mXAM071818@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Wed, 8 Mar 2017 01:48:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r435651 - in head/dns/unbound: . 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.23 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: Wed, 08 Mar 2017 01:48:35 -0000 Author: wen Date: Wed Mar 8 01:48:33 2017 New Revision: 435651 URL: https://svnweb.freebsd.org/changeset/ports/435651 Log: - Update to 1.6.1 PR: 217614 Submitted by: jaap@NLnetLabs.nl(maintainer) Modified: head/dns/unbound/Makefile head/dns/unbound/distinfo head/dns/unbound/files/unbound.in head/dns/unbound/pkg-plist Modified: head/dns/unbound/Makefile ============================================================================== --- head/dns/unbound/Makefile Wed Mar 8 01:24:52 2017 (r435650) +++ head/dns/unbound/Makefile Wed Mar 8 01:48:33 2017 (r435651) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= unbound -PORTVERSION= 1.6.0 -PORTREVISION= 3 +PORTVERSION= 1.6.1 CATEGORIES= dns MASTER_SITES= http://unbound.net/downloads/ @@ -16,8 +15,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libexpat.so:textproc/expat2 \ libldns.so:dns/ldns -BROKEN_aarch64= Fails to link: missing sbrk - USES= autoreconf cpe libtool ssl CPE_VENDOR= nlnetlabs GNU_CONFIGURE= yes @@ -61,7 +58,7 @@ LIBEVENT_LIB_DEPENDS= libevent.so:devel/ LIBEVENT_LDFLAGS+= $$(pkg-config libevent --libs-only-L) LIBEVENT_USES= pkgconfig MUNIN_PLUGIN_SUB_FILES= pkg-message -PYTHON_BUILD_DEPENDS= swig:devel/swig13 +PYTHON_BUILD_DEPENDS= swig:devel/swig30 PYTHON_CONFIGURE_ON= --with-pyunbound=yes --with-pythonmodule=yes LDFLAGS="-L${LOCALBASE}/lib" PYTHON_USES= python:2 PYTHON_VARS= STRIP_FILES+=.libs/_unbound.so Modified: head/dns/unbound/distinfo ============================================================================== --- head/dns/unbound/distinfo Wed Mar 8 01:24:52 2017 (r435650) +++ head/dns/unbound/distinfo Wed Mar 8 01:48:33 2017 (r435651) @@ -1,3 +1,3 @@ -TIMESTAMP = 1481819504 -SHA256 (unbound-1.6.0.tar.gz) = 6b7db874e6debda742fee8869d722e5a17faf1086e93c911b8564532aeeffab7 -SIZE (unbound-1.6.0.tar.gz) = 5063253 +TIMESTAMP = 1487712193 +SHA256 (unbound-1.6.1.tar.gz) = 42df63f743c0fe8424aeafcf003ad4b880b46c14149d696057313f5c1ef51400 +SIZE (unbound-1.6.1.tar.gz) = 5074713 Modified: head/dns/unbound/files/unbound.in ============================================================================== --- head/dns/unbound/files/unbound.in Wed Mar 8 01:24:52 2017 (r435650) +++ head/dns/unbound/files/unbound.in Wed Mar 8 01:48:33 2017 (r435651) @@ -33,15 +33,15 @@ unbound_anchorflags=${unbound_anchorflag start_precmd() { - %%PREFIX%%/sbin/unbound-checkconf > /dev/null && \ - echo -n "Obtaining a trust anchor:" && \ - if [ "${unbound_anchorflags}T" = "T" ]; then \ - su -m unbound -c %%PREFIX%%/sbin/unbound-anchor; \ + echo -n "Obtaining a trust anchor:" + if [ "${unbound_anchorflags}T" = "T" ]; then + su -m unbound -c %%PREFIX%%/sbin/unbound-anchor else - su -m unbound -c "%%PREFIX%%/sbin/unbound-anchor ${unbound_anchorflags}"; \ - fi && + su -m unbound -c "%%PREFIX%%/sbin/unbound-anchor ${unbound_anchorflags}" + fi echo . - return 0 + %%PREFIX%%/sbin/unbound-checkconf > /dev/null + return $? } run_rc_command "$1" Modified: head/dns/unbound/pkg-plist ============================================================================== --- head/dns/unbound/pkg-plist Wed Mar 8 01:24:52 2017 (r435650) +++ head/dns/unbound/pkg-plist Wed Mar 8 01:48:33 2017 (r435651) @@ -3,7 +3,7 @@ include/unbound.h lib/libunbound.a lib/libunbound.so lib/libunbound.so.2 -lib/libunbound.so.2.4.3 +lib/libunbound.so.2.4.4 %%PYTHON%%%%PYTHON_SITELIBDIR%%/_unbound.so %%PYTHON%%%%PYTHON_SITELIBDIR%%/unbound.py %%PYTHON%%%%PYTHON_SITELIBDIR%%/unboundmodule.py