svn commit: r519111 - head/dns/wdns

Don Lewis truckman at FreeBSD.org
Thu Dec 5 23:09:11 UTC 2019


Author: truckman
Date: Thu Dec  5 23:09:10 2019
New Revision: 519111
URL: https://svnweb.freebsd.org/changeset/ports/519111

Log:
  Upgrade dns/wdns to version 0.10.0:
  
    * Handle corner case of NSEC3 hash field with length zero.
  
    * Preserve name case when parsing rdata strings.
  
    * Fix printing of bitmap entries for rrtypes larger than 255.
      Improve rrtype sorting.
  
    * Preserve character-string boundaries when formatting TXT rdata.
  
    * Add ./configure --with-coverage option to build with code coverage
      and make targets: clean-coverage to remove the coverage data and results
      and report-coverage to generate report (after running the code such as
      with "make check").
  
    * Configure check for python which is used to generate some of the C code.
  
    * Lots of compiler warning cleanups.
  
    * Unit testing improvements and additional tests added.
  
    * Added library versioning API:  wdns_get_version() and
      wdns_get_version_number() available at run-time and WDNS_LIBRARY_VERSION
      and WDNS_LIBRARY_VERSION_NUMBER for compile-time.
  
  Add python as a build dependency.
  
  Pet portlint (USES vs. USE ordering).
  
  Sponsored by:	Farsight Security Inc.

Modified:
  head/dns/wdns/Makefile
  head/dns/wdns/distinfo
  head/dns/wdns/pkg-plist

Modified: head/dns/wdns/Makefile
==============================================================================
--- head/dns/wdns/Makefile	Thu Dec  5 22:31:00 2019	(r519110)
+++ head/dns/wdns/Makefile	Thu Dec  5 23:09:10 2019	(r519111)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	wdns
-PORTVERSION=	0.9.1
+PORTVERSION=	0.10.0
 CATEGORIES=	dns
 MASTER_SITES=	FARSIGHT LOCAL/truckman/farsight
 
@@ -11,9 +11,9 @@ COMMENT=	Low-level DNS library
 LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/COPYRIGHT
 
+USES=		gmake libtool pathfix pkgconfig python:build
 GNU_CONFIGURE=	yes
 USE_LDCONFIG=	yes
-USES=		gmake libtool pathfix pkgconfig
 INSTALL_TARGET=	install-strip
 TEST_TARGET=	check
 

Modified: head/dns/wdns/distinfo
==============================================================================
--- head/dns/wdns/distinfo	Thu Dec  5 22:31:00 2019	(r519110)
+++ head/dns/wdns/distinfo	Thu Dec  5 23:09:10 2019	(r519111)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1483493909
-SHA256 (wdns-0.9.1.tar.gz) = 2b75d231c001869b4d139a8c66997a7ebc69ef1df510eeee61b3947208ae7419
-SIZE (wdns-0.9.1.tar.gz) = 364921
+TIMESTAMP = 1575500749
+SHA256 (wdns-0.10.0.tar.gz) = a51630142c3f2290df11ea0187113b3601d1537f0b04adeeb8922b0779024758
+SIZE (wdns-0.10.0.tar.gz) = 394353

Modified: head/dns/wdns/pkg-plist
==============================================================================
--- head/dns/wdns/pkg-plist	Thu Dec  5 22:31:00 2019	(r519110)
+++ head/dns/wdns/pkg-plist	Thu Dec  5 23:09:10 2019	(r519111)
@@ -2,5 +2,5 @@ include/wdns.h
 lib/libwdns.a
 lib/libwdns.so
 lib/libwdns.so.1
-lib/libwdns.so.1.0.0
+lib/libwdns.so.1.2.0
 libdata/pkgconfig/libwdns.pc


More information about the svn-ports-all mailing list