Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 64AE91A9217 for ; Tue, 5 Jan 2021 15:08:45 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 0D6D584DC9; Tue, 5 Jan 2021 15:08:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 48A9D84DC7 for ; Tue, 5 Jan 2021 15:08:44 +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 RvK3X5ljaGYj for ; Tue, 5 Jan 2021 15:08:43 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 99BAD84CDF for ; Tue, 5 Jan 2021 15:08:43 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 92F22FA9D; Tue, 5 Jan 2021 15:08:43 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1609859323143870" MIME-Version: 1.0 Date: Tue, 5 Jan 2021 15:08:43 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/x11/qt5-qtwebkit To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20210105150843.92F22FA9D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1609859323143870 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Tue Jan 5 15:08:43 UTC 2021 Modified Files: pkgsrc/x11/qt5-qtwebkit: Makefile Log Message: qt5-qtwebkit: Mark as not for python 3.9 There's a mysterious error with 3.9, but it builds fine with 3.8. This is a build dependency only, so it isn't particularly important which version is used. Assume/hope that this is an upstream bug that will be fixed before we change the defautl python to 3.9. Reported by Aymeric Vincent. To generate a diff of this commit: cvs rdiff -u -r1.85 -r1.86 pkgsrc/x11/qt5-qtwebkit/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1609859323143870 Content-Disposition: inline Content-Length: 880 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/qt5-qtwebkit/Makefile diff -u pkgsrc/x11/qt5-qtwebkit/Makefile:1.85 pkgsrc/x11/qt5-qtwebkit/Makefile:1.86 --- pkgsrc/x11/qt5-qtwebkit/Makefile:1.85 Thu Dec 31 20:04:14 2020 +++ pkgsrc/x11/qt5-qtwebkit/Makefile Tue Jan 5 15:08:43 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.85 2020/12/31 20:04:14 nia Exp $ +# $NetBSD: Makefile,v 1.86 2021/01/05 15:08:43 gdt Exp $ QTWKVERSION= 5.212.0-alpha4 DISTNAME= qtwebkit-${QTWKVERSION} @@ -96,6 +96,8 @@ post-install: .include "../../x11/qt5-qtlocation/buildlink3.mk" .include "../../x11/qt5-qtsensors/buildlink3.mk" .include "../../x11/qt5-qtwebchannel/buildlink3.mk" +# Source/JavaScriptCore/bytecode/BytecodeList.json unexpected keyword 'encoding' +PYTHON_VERSIONS_INCOMPATIBLE= 39 PYTHON_FOR_BUILD_ONLY= tool .include "../../lang/python/tool.mk" .include "../../lang/ruby/buildlink3.mk" --_----------=_1609859323143870--