svn commit: r443067 - head/security/py-cryptography
Ben Woods
woodsb02 at FreeBSD.org
Sat Jun 10 03:16:46 UTC 2017
Author: woodsb02
Date: Sat Jun 10 03:16:44 2017
New Revision: 443067
URL: https://svnweb.freebsd.org/changeset/ports/443067
Log:
security/py-cryptography: Fix build with Python 3.3
PR: 219833
Reported by: koobs
Approved by: portmgr blanket
Modified:
head/security/py-cryptography/Makefile
Modified: head/security/py-cryptography/Makefile
==============================================================================
--- head/security/py-cryptography/Makefile Sat Jun 10 03:13:28 2017 (r443066)
+++ head/security/py-cryptography/Makefile Sat Jun 10 03:16:44 2017 (r443067)
@@ -33,8 +33,10 @@ LDFLAGS+= -L${OPENSSLLIB}
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}ipaddress>0:net/py-ipaddress
.endif
-.if ${PYTHON_REL} < 3400
+.if ${PYTHON_REL} < 3300
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}enum34>0:devel/py-enum34
+.elif ${PYTHON_REL} < 3400
+RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}enum34>0:devel/py3-enum34
.endif
post-install:
More information about the svn-ports-head
mailing list