Received: by mail.netbsd.org (Postfix, from userid 605) id 5538884DE4; Thu, 17 Jan 2019 13:59:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A773E84DD9 for ; Thu, 17 Jan 2019 13:59:38 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id cORhxBgYTibC for ; Thu, 17 Jan 2019 13:59:38 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id BEC9D84DAA for ; Thu, 17 Jan 2019 13:59:37 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B31ECFB16; Thu, 17 Jan 2019 13:59:37 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_154773357798780" MIME-Version: 1.0 Date: Thu, 17 Jan 2019 13:59:37 +0000 From: "Patrick Welche" Subject: CVS commit: pkgsrc/net/nsd To: pkgsrc-changes@NetBSD.org Reply-To: prlw1@netbsd.org X-Mailer: log_accum Message-Id: <20190117135937.B31ECFB16@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_154773357798780 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: prlw1 Date: Thu Jan 17 13:59:37 UTC 2019 Modified Files: pkgsrc/net/nsd: Makefile distinfo Log Message: Update nsd to 4.1.26 XXX Remove MESSAGE as nsd 4.0.0 came out in October 2013? XXX Did not add dnstap support to pkg. 29 November 2018: Wouter - Tag for 4.1.26rc1. 27 November 2018: Wouter - Fix parsezone failure in 4194 fix. 26 November 2018: Wouter - Fix to not set GLOB_NOSORT so the nsd.conf include: files are sorted and in a predictable order. - Added nsd-control changezone. nsd-control changezone name pattern allows the change of a zone pattern option without downtime for the zone, in one operation. - Fix #3433: document that reconfig does not change per-zone stats. 20 November 2018: Wouter - Fix #4205: enable-recvmmsg in mixed IPv4/IPv6 environment fails. This sets the msg_hdr.msg_namelen correctly after receipt. 19 November 2018: Wouter - Support SO_REUSEPORT_LB in FreeBSD 12 with the reuseport: yes option in nsd.conf. - Fix #4202: nsd-control delzone incorrect exit code on error. - Tab style fix to use tab for 8 spaces, from Xiaobo Liu. 25 October 2018: Wouter - Adjust dnstap socket path for chroot. 22 October 2018: Wouter - Fix #4194: Zone file parser derailed by non-FQDN names in RHS of DNSSEC RRs. - Fix some more, neater code and checks for domain length limit. - check that the dnstap socket file can be opened and exists, print error if not. 4 October 2018: Wouter - dnstap work, the dnstap.proto is a copy of the file from Unbound, also dnstap.m4 configure include file. - dnstap collector: free eventbase and memclean nicer. - dnstap collector: send data and read it in collector. - dnstap/dnstap.c and .h from Unbound's contribution from Farsight Security, added to then adapt it for dnstap logging in NSD. - dnstap.c with auth query and auth response, and called from the collector. - dnstap work, config nsd.conf parse. - dnstap example config. 25 September 2018: Wouter - NSD 4.1.25 released, trunk has 4.1.26 in development. 18 September 2018: Wouter - tag for NSD 4.1.25rc1. 17 September 2018: Wouter - Fix #4156: Fix systemd service manager state change notification 14 September 2018: Wouter - Remove unused if clause during server service startup. 13 September 2018: Wouter - Fix typo in clang analysis test. - Annotate exit functions with noreturn. - nsd-control prints neater errors for file failures. 12 September 2018: Wouter - clang analysis test. 11 September 2018: Wouter - Fix to combine the same error function into one, from Xiaobo Liu. - Fix initialisation in remote.c. - please clang analyzer and fix parse of IPSECKEY with bad gateway. - Fix unit test code for clang analyzer. - Fix nsd-checkconf fail on bad zone name. 10 September 2018: Wouter - Fix coding style in nsd.c 7 September 2018: Wouter - append_trailing_slash has one implementation and is not repeated differently. 4 September 2018: Wouter - Fix codingstyle in nsd-checkconf.c in patch from Sharp Liu. 15 August 2018: Wouter - Fix use_systemd typo/leftover in remote.c. 13 August 2018: Wouter - tag for 4.1.24 release. - trunk is 4.1.25 in development. - Fix that nsec3 precompile deletion happens before the RRs of the zone are deleted. - Fix printout of accepted remote control connection for unix sockets. 6 August 2018: Wouter - tag for 4.1.24rc1 release. To generate a diff of this commit: cvs rdiff -u -r1.99 -r1.100 pkgsrc/net/nsd/Makefile cvs rdiff -u -r1.64 -r1.65 pkgsrc/net/nsd/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_154773357798780 Content-Disposition: inline Content-Length: 1857 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/nsd/Makefile diff -u pkgsrc/net/nsd/Makefile:1.99 pkgsrc/net/nsd/Makefile:1.100 --- pkgsrc/net/nsd/Makefile:1.99 Tue Sep 4 11:24:34 2018 +++ pkgsrc/net/nsd/Makefile Thu Jan 17 13:59:37 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.99 2018/09/04 11:24:34 prlw1 Exp $ +# $NetBSD: Makefile,v 1.100 2019/01/17 13:59:37 prlw1 Exp $ -DISTNAME= nsd-4.1.24 +DISTNAME= nsd-4.1.26 CATEGORIES= net MASTER_SITES= http://www.nlnetlabs.nl/downloads/nsd/ @@ -41,6 +41,8 @@ CONFIGURE_ARGS+=--enable-ratelimit CONFIGURE_ARGS+=--disable-ratelimit .endif +CONFIGURE_ARGS+=--disable-dnstap + CONFIGURE_ARGS+=--with-pidfile=${VARBASE}/run/nsd/nsd.pid CONFIGURE_ARGS+=--with-user=${NSD_USER} CONFIGURE_ARGS+=--with-dbfile=${VARBASE}/nsd/nsd.db Index: pkgsrc/net/nsd/distinfo diff -u pkgsrc/net/nsd/distinfo:1.64 pkgsrc/net/nsd/distinfo:1.65 --- pkgsrc/net/nsd/distinfo:1.64 Tue Sep 4 11:24:34 2018 +++ pkgsrc/net/nsd/distinfo Thu Jan 17 13:59:37 2019 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.64 2018/09/04 11:24:34 prlw1 Exp $ +$NetBSD: distinfo,v 1.65 2019/01/17 13:59:37 prlw1 Exp $ -SHA1 (nsd-4.1.24.tar.gz) = e3413cd3e657f366764b90343ce33c9415347008 -RMD160 (nsd-4.1.24.tar.gz) = 8c37949e1eb0ecd7963a68371c8a4cbbdd1fa118 -SHA512 (nsd-4.1.24.tar.gz) = 68f7f62c740e5a73d1b9da4b6d593ff1b728bc398ad126a75febaa523a2117c80315bf90ca6a60aabf38539181e00524cedb106a32b4883aa8ed021462d47762 -Size (nsd-4.1.24.tar.gz) = 1107574 bytes +SHA1 (nsd-4.1.26.tar.gz) = 9e81f0dc5118153fbfb29fd056aeb19bbd7da9da +RMD160 (nsd-4.1.26.tar.gz) = 902c19e2b2b12a55724bbf8b4ea813e453ecd301 +SHA512 (nsd-4.1.26.tar.gz) = 49c07ad79e4e056bd519dad157a44d5cc55cd9a28723fd910159dc761d4ba56ef86cb7bf289dc5d1b363a49b999232bb7ec1afa737ca5c2659c4c9893e93494b +Size (nsd-4.1.26.tar.gz) = 1127895 bytes SHA1 (patch-aa) = d9a423d5faa8da9a213b21fd2712225ac9645091 --_----------=_154773357798780--