svn commit: r517539 - in head/mail/py-pyspf: . files

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Wed Nov 13 23:47:39 UTC 2019


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 at 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)


More information about the svn-ports-all mailing list