Received: by mail.netbsd.org (Postfix, from userid 605) id 6280D84E7B; Fri, 8 Dec 2017 20:39:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E250084D73 for ; Fri, 8 Dec 2017 20:38:59 +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 DvuRRvUjlJKe for ; Fri, 8 Dec 2017 20:38:59 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 6F26184C2E for ; Fri, 8 Dec 2017 20:38:59 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6A23CFB40; Fri, 8 Dec 2017 20:38:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1512765539287260" MIME-Version: 1.0 Date: Fri, 8 Dec 2017 20:38:59 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/www To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20171208203859.6A23CFB40@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. --_----------=_1512765539287260 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Fri Dec 8 20:38:59 UTC 2017 Modified Files: pkgsrc/www/py-channels: Makefile pkgsrc/www/py-daphne: Makefile Log Message: Restrict Python support as py-asgiref doesn't support 2.7 and 3.4. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/www/py-channels/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/www/py-daphne/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1512765539287260 Content-Disposition: inline Content-Length: 1548 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-channels/Makefile diff -u pkgsrc/www/py-channels/Makefile:1.5 pkgsrc/www/py-channels/Makefile:1.6 --- pkgsrc/www/py-channels/Makefile:1.5 Sat Sep 16 06:51:54 2017 +++ pkgsrc/www/py-channels/Makefile Fri Dec 8 20:38:59 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2017/09/16 06:51:54 adam Exp $ +# $NetBSD: Makefile,v 1.6 2017/12/08 20:38:59 joerg Exp $ DISTNAME= channels-1.1.8 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -16,5 +16,8 @@ DEPENDS+= ${PYPKGPREFIX}-django>=1.8:../ DEPENDS+= ${PYPKGPREFIX}-asgiref>=1.1:../../www/py-asgiref DEPENDS+= ${PYPKGPREFIX}-daphne>=1.3:../../www/py-daphne +# py-asgiref +PYTHON_VERSIONS_INCOMPATIBLE= 27 34 + .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/www/py-daphne/Makefile diff -u pkgsrc/www/py-daphne/Makefile:1.2 pkgsrc/www/py-daphne/Makefile:1.3 --- pkgsrc/www/py-daphne/Makefile:1.2 Sun Jul 30 22:32:26 2017 +++ pkgsrc/www/py-daphne/Makefile Fri Dec 8 20:38:59 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2017/07/30 22:32:26 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2017/12/08 20:38:59 joerg Exp $ DISTNAME= daphne-1.3.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -16,6 +16,9 @@ DEPENDS+= ${PYPKGPREFIX}-asgiref-[0-9]*: DEPENDS+= ${PYPKGPREFIX}-autobahn>=0.18:../../www/py-autobahn DEPENDS+= ${PYPKGPREFIX}-twisted>=17.1:../../net/py-twisted +# py-asgiref +PYTHON_VERSIONS_INCOMPATIBLE= 27 34 + post-install: ${MV} ${DESTDIR}${PREFIX}/bin/daphne \ ${DESTDIR}${PREFIX}/bin/daphne-${PYVERSSUFFIX} || ${TRUE} --_----------=_1512765539287260--