Received: by mail.netbsd.org (Postfix, from userid 605) id 231FD84D9B; Thu, 26 Sep 2019 10:30:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9C10484D61 for ; Thu, 26 Sep 2019 10:30:34 +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 QpHDbgU4p93a for ; Thu, 26 Sep 2019 10:30:34 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id E823484CE9 for ; Thu, 26 Sep 2019 10:30:33 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E5A2FFBF4; Thu, 26 Sep 2019 10:30:33 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1569493833102140" MIME-Version: 1.0 Date: Thu, 26 Sep 2019 10:30:33 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/py-buildbot To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20190926103033.E5A2FFBF4@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. --_----------=_1569493833102140 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Sep 26 10:30:33 UTC 2019 Modified Files: pkgsrc/devel/py-buildbot: Makefile Log Message: py-buildbot: forbid python 2.7 due to py-autobahn To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 pkgsrc/devel/py-buildbot/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1569493833102140 Content-Disposition: inline Content-Length: 907 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-buildbot/Makefile diff -u pkgsrc/devel/py-buildbot/Makefile:1.21 pkgsrc/devel/py-buildbot/Makefile:1.22 --- pkgsrc/devel/py-buildbot/Makefile:1.21 Fri May 3 10:54:38 2019 +++ pkgsrc/devel/py-buildbot/Makefile Thu Sep 26 10:30:33 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 2019/05/03 10:54:38 adam Exp $ +# $NetBSD: Makefile,v 1.22 2019/09/26 10:30:33 wiz Exp $ DISTNAME= buildbot-1.5.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -30,10 +30,7 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-treq-[0-9] TEST_DEPENDS+= ${PYPKGPREFIX}-txgithub-[0-9]*:../../devel/py-txgithub TEST_DEPENDS+= ${PYPKGPREFIX}-txrequests-[0-9]*:../../devel/py-txrequests -.include "../../lang/python/pyversion.mk" -.if ${_PYTHON_VERSION} == 27 -TEST_DEPENDS+= ${PYPKGPREFIX}-scandir-[0-9]*:../../devel/py-scandir -.endif +PYTHON_VERSIONS_INCOMPATIBLE= 27 # py-autobahn USE_LANGUAGES= # none --_----------=_1569493833102140--