From owner-svn-ports-all@freebsd.org Sat Jun 10 03:16:46 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 25535C77EA5; Sat, 10 Jun 2017 03:16:46 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E824F32E2; Sat, 10 Jun 2017 03:16:45 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5A3GjHr037531; Sat, 10 Jun 2017 03:16:45 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5A3GjVO037530; Sat, 10 Jun 2017 03:16:45 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201706100316.v5A3GjVO037530@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Sat, 10 Jun 2017 03:16:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443067 - head/security/py-cryptography X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Jun 2017 03:16:46 -0000 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: