Received: by mail.netbsd.org (Postfix, from userid 605) id 9847C84D86; Thu, 5 Oct 2017 06:49:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 29C1584D6D for ; Thu, 5 Oct 2017 06:49:17 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 4_NEgNPD4ye2 for ; Thu, 5 Oct 2017 06:49:16 +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 894A084CE1 for ; Thu, 5 Oct 2017 06:49:16 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 82E9BFBC7; Thu, 5 Oct 2017 06:49:16 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_150718615657480" MIME-Version: 1.0 Date: Thu, 5 Oct 2017 06:49:16 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-attrs To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20171005064916.82E9BFBC7@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. --_----------=_150718615657480 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Oct 5 06:49:16 UTC 2017 Modified Files: pkgsrc/devel/py-attrs: Makefile Log Message: Disabled BUILD_DEPENDS: hypothesis now requires attrs To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/py-attrs/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_150718615657480 Content-Disposition: inline Content-Length: 938 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-attrs/Makefile diff -u pkgsrc/devel/py-attrs/Makefile:1.6 pkgsrc/devel/py-attrs/Makefile:1.7 --- pkgsrc/devel/py-attrs/Makefile:1.6 Sun Sep 3 08:36:53 2017 +++ pkgsrc/devel/py-attrs/Makefile Thu Oct 5 06:49:16 2017 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.6 2017/09/03 08:36:53 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2017/10/05 06:49:16 adam Exp $ DISTNAME= attrs-17.2.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -CATEGORIES= devel +CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=a/attrs/} MAINTAINER= pkgsrc-users@NetBSD.org @@ -12,7 +12,8 @@ LICENSE= mit USE_LANGUAGES= # none -BUILD_DEPENDS+= ${PYPKGPREFIX}-hypothesis-[0-9]*:../../devel/py-hypothesis +# This is a test dependency; disabled because hypothesis requires attrs +#BUILD_DEPENDS+= ${PYPKGPREFIX}-hypothesis-[0-9]*:../../devel/py-hypothesis .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" --_----------=_150718615657480--