Received: by mail.netbsd.org (Postfix, from userid 605) id EF1F784E31; Thu, 13 Feb 2020 13:48:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7720884CD8 for ; Thu, 13 Feb 2020 13:48:39 +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 5ResZFvFz-HO for ; Thu, 13 Feb 2020 13:48:39 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0203A84C8B for ; Thu, 13 Feb 2020 13:48:39 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id F0034FBF4; Thu, 13 Feb 2020 13:48:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1581601718225690" MIME-Version: 1.0 Date: Thu, 13 Feb 2020 13:48:38 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/sysutils/py-watchdog To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20200213134838.F0034FBF4@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. --_----------=_1581601718225690 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Thu Feb 13 13:48:38 UTC 2020 Modified Files: pkgsrc/sysutils/py-watchdog: Makefile Removed Files: pkgsrc/sysutils/py-watchdog: PLIST.Darwin Log Message: py-watchdog: Temporarily disable fsevents on macOS. The python27 incompatibility from pyobjc creates huge problems as now every recursive dependency of this package would also need to manually handle this only on Darwin. That's too much work to fix for now when we just need bulk builds to not be broken. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/sysutils/py-watchdog/Makefile cvs rdiff -u -r1.1 -r0 pkgsrc/sysutils/py-watchdog/PLIST.Darwin Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1581601718225690 Content-Disposition: inline Content-Length: 1288 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/py-watchdog/Makefile diff -u pkgsrc/sysutils/py-watchdog/Makefile:1.8 pkgsrc/sysutils/py-watchdog/Makefile:1.9 --- pkgsrc/sysutils/py-watchdog/Makefile:1.8 Wed Feb 12 22:26:30 2020 +++ pkgsrc/sysutils/py-watchdog/Makefile Thu Feb 13 13:48:38 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2020/02/12 22:26:30 jperkin Exp $ +# $NetBSD: Makefile,v 1.9 2020/02/13 13:48:38 jperkin Exp $ DISTNAME= watchdog-0.10.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -18,11 +18,13 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[ TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner TEST_DEPENDS+= ${PYPKGPREFIX}-test-timeout>=0.3:../../devel/py-test-timeout -.include "../../mk/bsd.prefs.mk" -.if ${OPSYS} == "Darwin" -PYTHON_VERSIONS_INCOMPATIBLE= 27 -DEPENDS+= ${PYPKGPREFIX}-pyobjc-framework-FSEvents>=4.2.2:../../devel/py-pyobjc-framework-FSEvents -.endif +# This creates huge issues as every recursive dependency of this package would +# also need a conditional exclusion of python27 on macOS. +#.include "../../mk/bsd.prefs.mk" +#.if ${OPSYS} == "Darwin" +#PYTHON_VERSIONS_INCOMPATIBLE= 27 +#DEPENDS+= ${PYPKGPREFIX}-pyobjc-framework-FSEvents>=4.2.2:../../devel/py-pyobjc-framework-FSEvents +#.endif PYSETUPTESTTARGET= pytest --_----------=_1581601718225690--