From owner-svn-ports-all@FreeBSD.ORG Sat Mar 8 09:12:35 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 21FD8548; Sat, 8 Mar 2014 09:12:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0F907CF9; Sat, 8 Mar 2014 09:12:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s289CYPA047493; Sat, 8 Mar 2014 09:12:34 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s289CY9F047492; Sat, 8 Mar 2014 09:12:34 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201403080912.s289CY9F047492@svn.freebsd.org> From: Kubilay Kocak Date: Sat, 8 Mar 2014 09:12:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r347460 - 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.17 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, 08 Mar 2014 09:12:35 -0000 Author: koobs Date: Sat Mar 8 09:12:34 2014 New Revision: 347460 URL: http://svnweb.freebsd.org/changeset/ports/347460 QAT: https://qat.redports.org/buildarchive/r347460/ Log: security/py-cryptography: BUILD_DEPENDS are also RUN_DEPENDS Add BUILD_DEPENDS (cffi and six) to RUN_DEPENDS as they are needed at run time Reported by: antoine Modified: head/security/py-cryptography/Makefile Modified: head/security/py-cryptography/Makefile ============================================================================== --- head/security/py-cryptography/Makefile Sat Mar 8 09:09:30 2014 (r347459) +++ head/security/py-cryptography/Makefile Sat Mar 8 09:12:34 2014 (r347460) @@ -3,6 +3,7 @@ PORTNAME= cryptography PORTVERSION= 0.2.2 +PORTREVISION= 1 CATEGORIES= security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,6 +15,7 @@ LICENSE= APACHE20 BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>=0.8:${PORTSDIR}/devel/py-cffi \ ${PYTHON_PKGNAMEPREFIX}six>=1.4.1:${PORTSDIR}/devel/py-six +RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:${PORTSDIR}/devel/py-pytest USE_OPENSSL= yes