Date: Wed, 13 Nov 2019 23:47:38 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r517539 - in head/mail/py-pyspf: . files Message-ID: <201911132347.xADNlchw060124@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Wed Nov 13 23:47:38 2019 New Revision: 517539 URL: https://svnweb.freebsd.org/changeset/ports/517539 Log: Restore DNSLookup API for pydnsv(DNS) for tcp fallback works again - Bump PORTREVISION for package change PR: 241755 Submitted by: Kamigishi Rei <spambox@haruhiism.net> Obtained from: https://github.com/sdgathman/pyspf/commit/4744deeec4a2c10987aae72989d7137156ed4151 Added: head/mail/py-pyspf/files/patch-spf.py (contents, props changed) Modified: head/mail/py-pyspf/Makefile Modified: head/mail/py-pyspf/Makefile ============================================================================== --- head/mail/py-pyspf/Makefile Wed Nov 13 23:47:33 2019 (r517538) +++ head/mail/py-pyspf/Makefile Wed Nov 13 23:47:38 2019 (r517539) @@ -3,6 +3,7 @@ PORTNAME= pyspf PORTVERSION= 2.0.13 +PORTREVISION= 1 CATEGORIES= mail python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Added: head/mail/py-pyspf/files/patch-spf.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/py-pyspf/files/patch-spf.py Wed Nov 13 23:47:38 2019 (r517539) @@ -0,0 +1,13 @@ +Obtained from: https://github.com/sdgathman/pyspf/commit/4744deeec4a2c10987aae72989d7137156ed4151 + +--- spf.py.orig ++++ spf.py +@@ -91,7 +91,7 @@ + print('ipaddr module required: http://code.google.com/p/ipaddr-py/') + + +-def DNSLookup_pydns(name, qtype, tcpfallback=True, timeout=30): ++def DNSLookup_pydns(name, qtype, strict=True, timeout=20): + + try: + req = DNS.DnsRequest(name, qtype=qtype, timeout=timeout)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201911132347.xADNlchw060124>