Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 10 Jun 2017 03:16:45 +0000 (UTC)
From:      Ben Woods <woodsb02@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r443067 - head/security/py-cryptography
Message-ID:  <201706100316.v5A3GjVO037530@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201706100316.v5A3GjVO037530>