svn commit: r427533 - in head/mail/py-milter: . files

Jason Unovitch junovitch at FreeBSD.org
Thu Dec 1 23:41:26 UTC 2016


Author: junovitch
Date: Thu Dec  1 23:41:24 2016
New Revision: 427533
URL: https://svnweb.freebsd.org/changeset/ports/427533

Log:
  mail/py-milter: fix runtime crash; pass on MAINTAINER
  
  - Import patch to resolve crash during IPv6 connection handling. Submitter
    has coordinated fix with upstream; it can be removed next update.
  - Pass on MAINTAINER to from ports@ to submitter.
  - While here, move DIST_SUBDIR to appease portlint.
  
  PR:		214317
  Submitted by:	schmidt at ze.tum.de
  MFH:		2016Q4 (blanket)

Added:
  head/mail/py-milter/files/
  head/mail/py-milter/files/patch-miltermodule.c   (contents, props changed)
Modified:
  head/mail/py-milter/Makefile

Modified: head/mail/py-milter/Makefile
==============================================================================
--- head/mail/py-milter/Makefile	Thu Dec  1 23:36:56 2016	(r427532)
+++ head/mail/py-milter/Makefile	Thu Dec  1 23:41:24 2016	(r427533)
@@ -3,13 +3,14 @@
 
 PORTNAME=	milter
 PORTVERSION=	1.0
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	mail python
 MASTER_SITES=	SF/${PYPORTNAME}/${PYPORTNAME}/${DISTNAME}
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
 DISTNAME=	${PYPORTNAME}-${PORTVERSION}
+DIST_SUBDIR=	python
 
-MAINTAINER=	ports at FreeBSD.org
+MAINTAINER=	estartu at augusta.de
 COMMENT=	Python interface to Sendmail milter API
 
 LICENSE=	GPLv2+
@@ -22,7 +23,6 @@ CFLAGS+=	-I${LOCALBASE}/include
 
 PYPORTNAME=	${PKGNAMEPREFIX:C/[0-9]+-//}${PORTNAME}
 
-DIST_SUBDIR=	python
 USES=		python:2
 USE_PYTHON=	distutils autoplist
 

Added: head/mail/py-milter/files/patch-miltermodule.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/py-milter/files/patch-miltermodule.c	Thu Dec  1 23:41:24 2016	(r427533)
@@ -0,0 +1,11 @@
+--- miltermodule.c.orig 2013-03-15 20:50:01 UTC
++++ miltermodule.c
+@@ -285,7 +285,7 @@ $ python setup.py help
+  * published.  Unfortunately I know of no good way to do this
+  * other than with OS-specific tests.
+  */
+-#if defined(__FreeBSD_kernel__) || defined(__linux__)
++#if defined(__FreeBSD__) || defined(__linux__)
+ #define HAVE_IPV6_RFC2553
+ #include <arpa/inet.h>
+ #endif


More information about the svn-ports-head mailing list