git: 9c3e1c57db67 - main - dns/wdns: Upgrade to version 0.11.0
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 12 Apr 2022 05:31:51 UTC
The branch main has been updated by truckman: URL: https://cgit.FreeBSD.org/ports/commit/?id=9c3e1c57db67d38cf0d4f2cb840a29f855a025e9 commit 9c3e1c57db67d38cf0d4f2cb840a29f855a025e9 Author: Don Lewis <truckman@FreeBSD.org> AuthorDate: 2022-04-12 05:24:26 +0000 Commit: Don Lewis <truckman@FreeBSD.org> CommitDate: 2022-04-12 05:31:39 +0000 dns/wdns: Upgrade to version 0.11.0 * Improve support for CAA records. (CAA was previously rendered as a "generic" rdata type.) * Bug fix for NSEC/NSEC3/CSYNC: do not output empty rrtype bitmaps per RFC6840 section 6.4. * Fix parsing of A6 records that ommit and address portion. Correct parsing of A6 records with prefix length 0. Correct handling of A6 address bytes. The address bytes of an A6 record are an address suffix relative to the prefix represented by the domain name, and so must be copied to and from the lower order bytes of the internal address representation. These A6 code updates were for the purposes of clearing "round trip" test errors in the existing code base. (A6 is deprecated and was moved to historic status.) * Fix bug in IPv6 prefix length processing in _wdns_str_to_rdata_ubuf(). * Add support for SVCB and HTTPS resource record types. This is based on an Internet-Draft but is widely used in the real world. https://datatracker.ietf.org/doc/html/draft-ietf-dnsop-svcb-https-08 Bump PORTREVISION of dependent ports due to shared library version change. Sponsored by: DomainTools --- dns/dnstable-convert/Makefile | 1 + dns/dnstable/Makefile | 1 + dns/py-pywdns/Makefile | 1 + dns/wdns/Makefile | 2 +- dns/wdns/distinfo | 6 +++--- dns/wdns/pkg-plist | 2 +- net/axa/Makefile | 2 +- net/nmsg/Makefile | 2 +- net/sie-nmsg/Makefile | 2 +- 9 files changed, 11 insertions(+), 8 deletions(-) diff --git a/dns/dnstable-convert/Makefile b/dns/dnstable-convert/Makefile index a604969f0a35..9ebc59359fbb 100644 --- a/dns/dnstable-convert/Makefile +++ b/dns/dnstable-convert/Makefile @@ -1,5 +1,6 @@ PORTNAME= dnstable-convert PORTVERSION= 0.11.0 +PORTREVISION= 1 CATEGORIES= dns MASTER_SITES= FARSIGHT LOCAL/truckman/farsight diff --git a/dns/dnstable/Makefile b/dns/dnstable/Makefile index 7d9b123a6e44..0a74067982ba 100644 --- a/dns/dnstable/Makefile +++ b/dns/dnstable/Makefile @@ -1,5 +1,6 @@ PORTNAME= dnstable PORTVERSION= 0.12.0 +PORTREVISION= 1 CATEGORIES= dns MASTER_SITES= FARSIGHT LOCAL/truckman/farsight diff --git a/dns/py-pywdns/Makefile b/dns/py-pywdns/Makefile index 0dd3aeeab0f5..138494313e60 100644 --- a/dns/py-pywdns/Makefile +++ b/dns/py-pywdns/Makefile @@ -1,5 +1,6 @@ PORTNAME= pywdns PORTVERSION= 0.10.1 +PORTREVISION= 1 CATEGORIES= dns python MASTER_SITES= FARSIGHT LOCAL/truckman/farsight PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/dns/wdns/Makefile b/dns/wdns/Makefile index ae643b85c716..50194ddca51e 100644 --- a/dns/wdns/Makefile +++ b/dns/wdns/Makefile @@ -1,5 +1,5 @@ PORTNAME= wdns -PORTVERSION= 0.10.0 +PORTVERSION= 0.11.0 CATEGORIES= dns MASTER_SITES= FARSIGHT LOCAL/truckman/farsight diff --git a/dns/wdns/distinfo b/dns/wdns/distinfo index 8ae8ea36d0a7..f5c3d1186d84 100644 --- a/dns/wdns/distinfo +++ b/dns/wdns/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1575500749 -SHA256 (wdns-0.10.0.tar.gz) = a51630142c3f2290df11ea0187113b3601d1537f0b04adeeb8922b0779024758 -SIZE (wdns-0.10.0.tar.gz) = 394353 +TIMESTAMP = 1649708382 +SHA256 (wdns-0.11.0.tar.gz) = 4a5928e19c6ff1d3f033748248f3671b4800fcd420c8476498b7327a49570b77 +SIZE (wdns-0.11.0.tar.gz) = 407893 diff --git a/dns/wdns/pkg-plist b/dns/wdns/pkg-plist index 68bf56f4fc52..fb71bb66d6dc 100644 --- a/dns/wdns/pkg-plist +++ b/dns/wdns/pkg-plist @@ -2,5 +2,5 @@ include/wdns.h lib/libwdns.a lib/libwdns.so lib/libwdns.so.1 -lib/libwdns.so.1.2.0 +lib/libwdns.so.1.3.0 libdata/pkgconfig/libwdns.pc diff --git a/net/axa/Makefile b/net/axa/Makefile index 825adef4abf8..379a4fbbc6c0 100644 --- a/net/axa/Makefile +++ b/net/axa/Makefile @@ -1,6 +1,6 @@ PORTNAME= axa PORTVERSION= 2.2.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net dns MASTER_SITES= FARSIGHT LOCAL/truckman/farsight diff --git a/net/nmsg/Makefile b/net/nmsg/Makefile index 0c2c32366c32..9f3dfd2fd80e 100644 --- a/net/nmsg/Makefile +++ b/net/nmsg/Makefile @@ -1,6 +1,6 @@ PORTNAME= nmsg PORTVERSION= 1.0.1 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= FARSIGHT LOCAL/truckman/farsight diff --git a/net/sie-nmsg/Makefile b/net/sie-nmsg/Makefile index 615e66b64010..9d5f1fc6460f 100644 --- a/net/sie-nmsg/Makefile +++ b/net/sie-nmsg/Makefile @@ -1,6 +1,6 @@ PORTNAME= sie-nmsg PORTVERSION= 1.2.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net dns MASTER_SITES= FARSIGHT LOCAL/truckman/farsight