From owner-svn-ports-head@freebsd.org Wed Oct 28 02:39:03 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6E91EA1FC5D; Wed, 28 Oct 2015 02:39:03 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2218713A9; Wed, 28 Oct 2015 02:39:03 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9S2d2Yi062110; Wed, 28 Oct 2015 02:39:02 GMT (envelope-from truckman@FreeBSD.org) Received: (from truckman@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9S2d297062108; Wed, 28 Oct 2015 02:39:02 GMT (envelope-from truckman@FreeBSD.org) Message-Id: <201510280239.t9S2d297062108@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: truckman set sender to truckman@FreeBSD.org using -f From: Don Lewis Date: Wed, 28 Oct 2015 02:39:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r400371 - head/dns/py-pywdns X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Oct 2015 02:39:03 -0000 Author: truckman Date: Wed Oct 28 02:39:01 2015 New Revision: 400371 URL: https://svnweb.freebsd.org/changeset/ports/400371 Log: Upgrade to pywdns revsion 0.8.0. pywdns (0.8.0) * Add str_to_rcode and str_to_name_case functions * Add str_to_name_case function * Add str_to_rcode function * Add str_to_rrclass and str_to_rdata functions from wdns * domain_to_str(): PyString_FromStringAndSize -> PyString_FromString this fixes a regression introduced in d04d3919. wdns_domain_to_str() does not return the number of bytes written to dst, it returns the number of bytes read from src. dst is guaranteed to be NUL-terminated after a call to wdns_domain_to_str(), so switch back to using PyString_FromString() to convert dst to a python string. * the comparison against WDNS_MAXLEN_NAME should be strictly greater than, not greater than or equal to. * setup.py: add back missing 'import os' Sponsored by: Farsight Security, Inc. Modified: head/dns/py-pywdns/Makefile head/dns/py-pywdns/distinfo Modified: head/dns/py-pywdns/Makefile ============================================================================== --- head/dns/py-pywdns/Makefile Wed Oct 28 02:37:51 2015 (r400370) +++ head/dns/py-pywdns/Makefile Wed Oct 28 02:39:01 2015 (r400371) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= pywdns -PORTVERSION= 0.6.0 +PORTVERSION= 0.8.0 CATEGORIES= dns python MASTER_SITES= FARSIGHT LOCAL/truckman/farsight PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/dns/py-pywdns/distinfo ============================================================================== --- head/dns/py-pywdns/distinfo Wed Oct 28 02:37:51 2015 (r400370) +++ head/dns/py-pywdns/distinfo Wed Oct 28 02:39:01 2015 (r400371) @@ -1,2 +1,2 @@ -SHA256 (pywdns-0.6.0.tar.gz) = 3e0d7b520793835c1be34a679bbbb5cefdfc28d6ef9b6e2759e175d0571e405d -SIZE (pywdns-0.6.0.tar.gz) = 60166 +SHA256 (pywdns-0.8.0.tar.gz) = f60c50e01738799465bd7569df9f81f52e5f6fe3a2be568a04acbdba72575699 +SIZE (pywdns-0.8.0.tar.gz) = 66105