Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 2E9C87A1AE for ; Mon, 29 May 2017 13:22:33 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id CC47D84DFD; Mon, 29 May 2017 13:22:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5C30284DF8 for ; Mon, 29 May 2017 13:22:32 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id pH1_kY8nM7rO for ; Mon, 29 May 2017 13:22:32 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id BB93284D74 for ; Mon, 29 May 2017 13:22:31 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B2219FBE4; Mon, 29 May 2017 13:22:31 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_149606415163790" MIME-Version: 1.0 Date: Mon, 29 May 2017 13:22:31 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/security/py-cryptography To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20170529132231.B2219FBE4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_149606415163790 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon May 29 13:22:31 UTC 2017 Modified Files: pkgsrc/security/py-cryptography: Makefile Log Message: Comment out py-requests test dependency to fix cyclic dependency with py-requests-2.16.x. To generate a diff of this commit: cvs rdiff -u -r1.54 -r1.55 pkgsrc/security/py-cryptography/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_149606415163790 Content-Disposition: inline Content-Length: 1196 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/py-cryptography/Makefile diff -u pkgsrc/security/py-cryptography/Makefile:1.54 pkgsrc/security/py-cryptography/Makefile:1.55 --- pkgsrc/security/py-cryptography/Makefile:1.54 Mon May 29 12:07:01 2017 +++ pkgsrc/security/py-cryptography/Makefile Mon May 29 13:22:31 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.54 2017/05/29 12:07:01 wiz Exp $ +# $NetBSD: Makefile,v 1.55 2017/05/29 13:22:31 wiz Exp $ DISTNAME= cryptography-1.8.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -18,10 +18,11 @@ DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../. # actually, TEST_DEPENDS BUILD_DEPENDS+= ${PYPKGPREFIX}-iso8601-[0-9]*:../../time/py-iso8601 BUILD_DEPENDS+= ${PYPKGPREFIX}-pretend-[0-9]*:../../devel/py-pretend -BUILD_DEPENDS+= ${PYPKGPREFIX}-requests>=0.8:../../devel/py-requests BUILD_DEPENDS+= ${PYPKGPREFIX}-test>=0.8:../../devel/py-test BUILD_DEPENDS+= ${PYPKGPREFIX}-pytz-[0-9]*:../../time/py-pytz BUILD_DEPENDS+= ${PYPKGPREFIX}-cryptography_vectors-[0-9]*:../../security/py-cryptography_vectors +# but py-requests depends on py-cryptography +#BUILD_DEPENDS+= ${PYPKGPREFIX}-requests>=0.8:../../devel/py-requests .include "../../lang/python/pyversion.mk" --_----------=_149606415163790--