From osvaldsson@icelandic.net  Fri Sep  4 13:22:44 2009
Return-Path: <osvaldsson@icelandic.net>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 59741106566C
	for <FreeBSD-gnats-submit@freebsd.org>; Fri,  4 Sep 2009 13:22:44 +0000 (UTC)
	(envelope-from osvaldsson@icelandic.net)
Received: from home.icelandic.net (home.icelandic.net [213.181.99.32])
	by mx1.freebsd.org (Postfix) with ESMTP id 167868FC13
	for <FreeBSD-gnats-submit@freebsd.org>; Fri,  4 Sep 2009 13:22:44 +0000 (UTC)
Received: from portbuild.icelandic.net (alftaholar.icelandic.net [81.15.120.54])
	by home.icelandic.net (Postfix) with ESMTP id 07CD015EC7C
	for <FreeBSD-gnats-submit@freebsd.org>; Fri,  4 Sep 2009 13:03:33 +0000 (GMT)
Received: from portbuild.icelandic.net (localhost [127.0.0.1])
	by portbuild.icelandic.net (8.14.3/8.14.3) with ESMTP id n84Ce2O8008165
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 4 Sep 2009 12:40:02 GMT
	(envelope-from osvaldsson@portbuild.icelandic.net)
Received: (from root@localhost)
	by portbuild.icelandic.net (8.14.3/8.14.3/Submit) id n84Ce2mN008164;
	Fri, 4 Sep 2009 12:40:02 GMT
	(envelope-from osvaldsson)
Message-Id: <200909041240.n84Ce2mN008164@portbuild.icelandic.net>
Date: Fri, 4 Sep 2009 12:40:02 GMT
From: Olafur Osvaldsson <osvaldsson@icelandic.net>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: [MAINTAINER] dns/nsd: update to 3.2.3
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         138529
>Category:       ports
>Synopsis:       [MAINTAINER] dns/nsd: update to 3.2.3
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    wxs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Fri Sep 04 13:30:02 UTC 2009
>Closed-Date:    Fri Sep 04 16:45:02 UTC 2009
>Last-Modified:  Fri Sep 04 16:45:02 UTC 2009
>Originator:     Olafur Osvaldsson
>Release:        FreeBSD 7.2-STABLE i386
>Organization:
>Environment:
System: FreeBSD portbuild.icelandic.net 7.2-STABLE FreeBSD 7.2-STABLE #3: Tue May 19 05:20:19 GMT 2009
>Description:
- Update to 3.2.3

Removed file(s):
- files/patch-Makefile.in

BUGFIXES
* Bug #236: Allow RRs before the SOA in a zonefile.
* Bug #229: Remove the C99 code.
* Bug #253: Don't put NS RRs in a response with QTYPE=DNSKEY.
* Bug #263: Make TSIG algorithm comparison case insensitive.
* Bug #266: Build failed on systems without strptime.
* Fix install hickup.
* Fix to use 4096 EDNS limit for IPv6 on Linux.

>How-To-Repeat:
>Fix:

--- nsd-3.2.3.patch begins here ---
diff -ruN nsd.orig/Makefile nsd/Makefile
--- nsd.orig/Makefile	2009-09-04 12:28:55.000000000 +0000
+++ nsd/Makefile	2009-09-04 12:29:08.000000000 +0000
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	nsd
-PORTVERSION=	3.2.2
+PORTVERSION=	3.2.3
 CATEGORIES=	dns ipv6
 MASTER_SITES=	http://www.nlnetlabs.nl/downloads/nsd/	\
 		ftp://ftp.rhnet.is/pub/nsd/
diff -ruN nsd.orig/distinfo nsd/distinfo
--- nsd.orig/distinfo	2009-09-04 12:28:55.000000000 +0000
+++ nsd/distinfo	2009-09-04 12:29:44.000000000 +0000
@@ -1,3 +1,3 @@
-MD5 (nsd-3.2.2.tar.gz) = a0dcb0a3b3c1a8d386125eeafe403f58
-SHA256 (nsd-3.2.2.tar.gz) = d538600eba68c6b4c297f3a2bfc89c48427ccb5dbba0ea29b93ad258d14c4343
-SIZE (nsd-3.2.2.tar.gz) = 840917
+MD5 (nsd-3.2.3.tar.gz) = 5ddb35dfb7da0defb82cda4f7388cba2
+SHA256 (nsd-3.2.3.tar.gz) = 2a9b4cb63b002a2a63ec8243f90a9e041f08b9498faa5b35ca71ce3334d842ff
+SIZE (nsd-3.2.3.tar.gz) = 855917
diff -ruN nsd.orig/files/patch-Makefile.in nsd/files/patch-Makefile.in
--- nsd.orig/files/patch-Makefile.in	2009-09-04 12:28:55.000000000 +0000
+++ nsd/files/patch-Makefile.in	1970-01-01 00:00:00.000000000 +0000
@@ -1,11 +0,0 @@
---- Makefile.in.orig	2009-05-19 01:19:40.000000000 +0000
-+++ Makefile.in	2009-05-19 01:15:18.000000000 +0000
-@@ -318,7 +318,7 @@
- install: all
- 	$(INSTALL) -d $(DESTDIR)$(sbindir)
- 	$(INSTALL) -d $(DESTDIR)$(configdir)
--	$(INSTALL) -d $(DESTDIR)$(piddir)
-+#	$(INSTALL) -d $(DESTDIR)$(piddir)
- 	$(INSTALL) -d $(DESTDIR)$(dbdir)
- 	$(INSTALL) -d $(DESTDIR)$(mandir)
- 	$(INSTALL) -d $(DESTDIR)$(mandir)/man8
--- nsd-3.2.3.patch ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->wxs 
Responsible-Changed-By: wxs 
Responsible-Changed-When: Fri Sep 4 14:17:33 UTC 2009 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=138529 
State-Changed-From-To: open->closed 
State-Changed-By: wxs 
State-Changed-When: Fri Sep 4 16:45:01 UTC 2009 
State-Changed-Why:  
Committed. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=138529 
>Unformatted:
