ports/161133: [MAINTAINER] dns/ldns: update to 1.6.11

Jaap Akkerhuis jaap at NLnetLabs.nl
Thu Sep 29 21:10:18 UTC 2011


>Number:         161133
>Category:       ports
>Synopsis:       [MAINTAINER] dns/ldns: update to 1.6.11
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Thu Sep 29 21:10:17 UTC 2011
>Closed-Date:
>Last-Modified:
>Originator:     Jaap Akkerhuis
>Release:        FreeBSD 8.2-STABLE i386
>Organization:
NLnet Labs
>Environment:
System: FreeBSD bartok.nlnetlabs.nl 8.2-STABLE FreeBSD 8.2-STABLE #214: Mon Sep 26 01:47:10 CEST 2011
>Description:
- Update to 1.6.11

Release Notes:
1.6.112011-09-29
* bugfix #394: Fix socket leak on errors
* bugfix #392: Apex only and percentage checks for ldns-verify-zone
  (thanks Miek Gieben)
* bugfix #398: Allow NSEC RRSIGs before the NSEC3 in ldns-verify-zone
* Fix python site package path from sitelib to sitearch for pyldns.
* Fix python api to support python2 and python3 (thanks Karel Slany).
* bugfix #401: Correction of date/time functions algorithm and
  prevention of an infinite loop therein
* bugfix #402: Correct the minimum and maximum number of rdata fields
  in TSIG. (thanks David Keeler)
* bugfix #403: Fix heap overflow (thanks David Keeler)
* bugfix #404: Make parsing APL strings more robust
  (thanks David Keeler)
* bugfix #391: Complete library assessment to prevent assertion errors
  through ldns_rdf_size usage.
* Slightly more specific error messaging on wrong number of rdata
  fields with the LDNS_STATUS_MISSING_RDATA_FIELDS_RRSIG and
  LDNS_STATUS_MISSING_RDATA_FIELDS_KEY result codes.
* bugfix #406: More rigorous openssl result code handling to prevent
  future crashes within openssl.
* Fix ldns_fetch_valid_domain_keys to search deeper than just one level
  for a DNSKEY that signed a DS RR. (this function was used in the
  check_dnssec_trace nagios module)
* bugfix #407: Canonicalize TSIG dnames and algorithm fields
* A new output specifier to accommodate configuration of what to show
  in comment texts when converting host and/or wire-format data to
  string. All conversion to string and printing functions have a new
  version that have such a format specifier as an extra argument.
  The default is changed so that only DNSKEY RR's are annotated with
  an comment show the Key Tag of the DNSKEY.
* Fixed the ldns resolver to not mark a nameserver unreachable when
  edns0 is tried unsuccessfully with size 4096 (no return packet came),
  but to still try TCP. A big UDP packet might have been corrupted by
  fragments dropping firewalls.
* Update of libdns.vim (thanks Miek Gieben)
* Added the ldnsx Python module to our contrib section, which adds even
  more pythonisticism to the usage of ldns with  Python. (Many thanks
  to Christpher Olah and Paul Wouters)
  The ldnsx module is automatically installed when --with-pyldns is
  used with configuring, but may explicitly be excluded with the
  --without-pyldnsx option to configure.
* bugfix #410: Fix clearing out temporary data on stack in sha2.c
* bugfix #411: Don't let empty non-terminal NSEC3s cause assertion
  failure.


Also, change in the port Makefile to satisfy portlint

Generated with FreeBSD Port Tools 0.99
>How-To-Repeat:
>Fix:

--- ldns-1.6.11.patch begins here ---
diff -ruN --exclude=CVS /space/portstrees/AFreeBSD/ports/dns/ldns.orig/Makefile /space/portstrees/AFreeBSD/ports/dns/ldns/Makefile
--- /space/portstrees/AFreeBSD/ports/dns/ldns.orig/Makefile	2011-09-29 22:14:47.000000000 +0200
+++ /space/portstrees/AFreeBSD/ports/dns/ldns/Makefile	2011-09-29 22:42:45.000000000 +0200
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	ldns
-PORTVERSION=	1.6.10
+PORTVERSION=	1.6.11
 CATEGORIES=	dns
 MASTER_SITES=	http://www.nlnetlabs.nl/downloads/ldns/ \
 		CRITICAL
@@ -28,6 +28,17 @@
 		ECDSA "With highly experimental ECDSA support" Off \
 		PYLDNS "Build python bindings" Off
 
+.if defined(WITH_PYLDNS)
+USE_PYTHON=		yes
+.include "${PORTSDIR}/Mk/bsd.python.mk"
+CONFIGURE_ARGS+=	--with-pyldns
+BUILD_DEPENDS+=		${LOCALBASE}/bin/swig:${PORTSDIR}/devel/swig13
+INSTALL_TARGET+=	install-pyldns
+PLIST_SUB+=		PYLDNS=""
+.else
+PLIST_SUB+=		PYLDNS="@comment "
+.endif
+
 .include <bsd.port.pre.mk>
 
 ALL_TARGET=	all
@@ -223,6 +234,7 @@
 	ldns_zone_print.3 ldns_zone_push_rr.3 ldns_zone_push_rr_list.3 \
 	ldns_zone_rr_count.3 ldns_zone_rrs.3 ldns_zone_set_rrs.3 \
 	ldns_zone_set_soa.3 ldns_zone_soa.3 ldns_zone_sort.3
+MAN1+=	ldns-config.1
 .endif
 
 .if defined(WITH_GOST)
@@ -258,17 +270,6 @@
 CONFIGURE_ARGS+=	--enable-ecdsa
 .endif
 
-.if defined(WITH_PYLDNS)
-USE_PYTHON=		yes
-.include "${PORTSDIR}/Mk/bsd.python.mk"
-CONFIGURE_ARGS+=	--with-pyldns
-BUILD_DEPENDS+=		${LOCALBASE}/bin/swig:${PORTSDIR}/devel/swig13
-INSTALL_TARGET+=	install-pyldns
-PLIST_SUB+=		PYLDNS=""
-.else
-PLIST_SUB+=		PYLDNS="@comment "
-.endif
-
 .if ${OSVERSION} < 700000
 NO_SHA2=		--disable-sha2
 CONFIGURE_ARGS+=	${NO_SHA2}
diff -ruN --exclude=CVS /space/portstrees/AFreeBSD/ports/dns/ldns.orig/distinfo /space/portstrees/AFreeBSD/ports/dns/ldns/distinfo
--- /space/portstrees/AFreeBSD/ports/dns/ldns.orig/distinfo	2011-09-29 22:14:47.000000000 +0200
+++ /space/portstrees/AFreeBSD/ports/dns/ldns/distinfo	2011-09-29 21:43:06.000000000 +0200
@@ -1,2 +1,2 @@
-SHA256 (ldns-1.6.10.tar.gz) = a421aa71230045e0d22a97db8c4ffbc049ee06b064de141912da270db7217a8f
-SIZE (ldns-1.6.10.tar.gz) = 999717
+SHA256 (ldns-1.6.11.tar.gz) = 6891b8ea8e9ded3e7d2caaaf494a8c2459bab729cdd1716f6db2ba375f628888
+SIZE (ldns-1.6.11.tar.gz) = 1018369
--- ldns-1.6.11.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list