Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id F36607A13F for ; Sun, 6 Mar 2016 16:58:39 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 6F27885E5E; Sun, 6 Mar 2016 16:58:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id F026985E5B for ; Sun, 6 Mar 2016 16:58:38 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id hx3t6yOmZD7K for ; Sun, 6 Mar 2016 16:58:38 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 80EAF84CE8 for ; Sun, 6 Mar 2016 16:58:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 77B0EFBB7; Sun, 6 Mar 2016 16:58:38 +0000 (UTC) Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" MIME-Version: 1.0 Date: Sun, 6 Mar 2016 16:58:38 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/net To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20160306165838.77B0EFBB7@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk Module Name: pkgsrc Committed By: adam Date: Sun Mar 6 16:58:38 UTC 2016 Modified Files: pkgsrc/net/py-dns: Makefile distinfo pkgsrc/net/py-dns3: Makefile distinfo Log Message: Changes 1.12.0: * The test system can now run the tests without requiring dnspython to be installed. * The 64-bit version of Python on Windows has sys.maxint set to 2^31-1, yet passes 2^63-1 as the "unspecified bound" value in slices. This is a bug in Python as the documentation says the unspecified bound value should be sys.maxint. We now cope with this. * When reading from a masterfile, if the first content line started with leading whitespace, we raised an ugly exception instead of doing the right thing, namely using the zone origin as the name. * Added dns.zone.to_text() convenience method. * The /etc/resolv.conf setting "options rotate" is now understood by the resolver. If present, the resolver will shuffle the nameserver list each time dns.resolver.query() is called. Thanks to underrun for the patch. Note that you don't want to add "options rotate" to your /etc/resolv.conf if your system's resolver library does not understand it. In this case, just set resolver.rotate = True by hand. * Escaping of Unicode has been corrected. Previously we escaped and then converted to Unicode, but the right thing to do is convert to Unicode, then escape. Also, characters > 0x7f should NOT be escaped in Unicode mode. * dns.rdtypes.ANY.DNSKEY now has helpers functions to convert between the numeric form of the flags and a set of human-friendly strings. * RRSIGs did not respect relativization settings in to_text(). * dns/rdtypes/IN/APL.py: The APL from_wire() method did not accept an rdata length of 0 as valid. * dns/ipv6.py: Add is_mapped() * dns/reversename.py: Lookup IPv6 mapped IPv4 addresses in the v4 reverse namespace. * dns/zone.py: Do not put back an unescaped token. This was causing escape processing for domain names to break. * dns/message.py: Making a response didn't work correctly if the query was signed with TSIG and we knew the key. * dns/query.py: Fix problems with the IXFR state machine which caused long diffs to fail. To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 pkgsrc/net/py-dns/Makefile cvs rdiff -u -r1.13 -r1.14 pkgsrc/net/py-dns/distinfo cvs rdiff -u -r1.4 -r1.5 pkgsrc/net/py-dns3/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/net/py-dns3/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.