Received: by mail.netbsd.org (Postfix, from userid 605) id BE87884D57; Sat, 19 Aug 2017 13:55:21 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 528D984D37 for ; Sat, 19 Aug 2017 13:55:21 +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 11z_FoyqQVci for ; Sat, 19 Aug 2017 13:55:21 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B5F8984CDC for ; Sat, 19 Aug 2017 13:55:20 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B0BE4FAD0; Sat, 19 Aug 2017 13:55:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1503150920219740" MIME-Version: 1.0 Date: Sat, 19 Aug 2017 13:55:20 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/www/py-tornado To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20170819135520.B0BE4FAD0@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. --_----------=_1503150920219740 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sat Aug 19 13:55:20 UTC 2017 Modified Files: pkgsrc/www/py-tornado: Makefile Log Message: Re-written backports.abc condition for Python < 3.5 To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 pkgsrc/www/py-tornado/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1503150920219740 Content-Disposition: inline Content-Length: 893 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-tornado/Makefile diff -u pkgsrc/www/py-tornado/Makefile:1.22 pkgsrc/www/py-tornado/Makefile:1.23 --- pkgsrc/www/py-tornado/Makefile:1.22 Thu May 4 09:50:21 2017 +++ pkgsrc/www/py-tornado/Makefile Sat Aug 19 13:55:20 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.22 2017/05/04 09:50:21 adam Exp $ +# $NetBSD: Makefile,v 1.23 2017/08/19 13:55:20 adam Exp $ DISTNAME= tornado-4.5.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -28,7 +28,7 @@ DEPENDS+= ${PYPKGPREFIX}-backports.ssl_m DEPENDS+= ${PYPKGPREFIX}-certifi-[0-9]*:../../security/py-certifi DEPENDS+= ${PYPKGPREFIX}-singledispatch>0:../../devel/py-singledispatch .endif -.if "${PYPKGPREFIX}" != "py35" && "${PYPKGPREFIX}" != "py36" +.if "${PYPKGPREFIX}" == "py27" || "${PYPKGPREFIX}" == "py34" DEPENDS+= ${PYPKGPREFIX}-backports_abc>=0.4:../../devel/py-backports_abc PLIST.requires= yes .endif --_----------=_1503150920219740--