Received: by mail.netbsd.org (Postfix, from userid 605) id A73E184E6F; Thu, 4 May 2023 07:47:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D880484E6D for ; Thu, 4 May 2023 07:47:38 +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 eDhTwgQ86AeT for ; Thu, 4 May 2023 07:47:38 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 5789784D50 for ; Thu, 4 May 2023 07:47:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 51294FA87; Thu, 4 May 2023 07:47:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1683186458161970" MIME-Version: 1.0 Date: Thu, 4 May 2023 07:47:38 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/x11/qt5-qtwebengine To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230504074738.51294FA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1683186458161970 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu May 4 07:47:38 UTC 2023 Modified Files: pkgsrc/x11/qt5-qtwebengine: Makefile Log Message: qt5-qtwebengine: it needs Python 2, otherwise: gmake[2]: Entering directory '/x11/qt5-qtwebengine/work/qtwebengine-everywhere-src-5.15.9/src/pdf' gmake[2]: Entering directory '/x11/qt5-qtwebengine/work/qtwebengine-everywhere-src-5.15.9/src/core' QtPdf will not be built. Python version 2 (2.7.5 or later) is required to build QtPdf. gmake[2]: Leaving directory '/x11/qt5-qtwebengine/work/qtwebengine-everywhere-src-5.15.9/src/pdf' QtWebEngineCore module will not be built. Python version 2 (2.7.5 or later) is required to build QtWebEngine. gmake[2]: Leaving directory '/x11/qt5-qtwebengine/work/qtwebengine-everywhere-src-5.15.9/src/core' gmake[1]: Leaving directory '/x11/qt5-qtwebengine/work/qtwebengine-everywhere-src-5.15.9/src' To generate a diff of this commit: cvs rdiff -u -r1.38 -r1.39 pkgsrc/x11/qt5-qtwebengine/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1683186458161970 Content-Disposition: inline Content-Length: 960 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/qt5-qtwebengine/Makefile diff -u pkgsrc/x11/qt5-qtwebengine/Makefile:1.38 pkgsrc/x11/qt5-qtwebengine/Makefile:1.39 --- pkgsrc/x11/qt5-qtwebengine/Makefile:1.38 Wed May 3 12:22:11 2023 +++ pkgsrc/x11/qt5-qtwebengine/Makefile Thu May 4 07:47:38 2023 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.38 2023/05/03 12:22:11 markd Exp $ +# $NetBSD: Makefile,v 1.39 2023/05/04 07:47:38 wiz Exp $ DISTNAME= qtwebengine-everywhere-opensource-src-${QTVERSION} PKGNAME= qt5-qtwebengine-${QTVERSION} -PKGREVISION= 2 +PKGREVISION= 3 COMMENT= Chromium-based web engine for Qt5 MAKE_ENV+= QTDIR=${QTDIR} @@ -96,6 +96,7 @@ MAKE_ENV+= OSX_VERSION=${OSX_VERSION} #.include "../../mk/jpeg.buildlink3.mk" .include "../../graphics/lcms2/buildlink3.mk" .include "../../graphics/libwebp/buildlink3.mk" +PYTHON_VERSIONS_ACCEPTED= 27 PYTHON_FOR_BUILD_ONLY= tool .include "../../lang/python/tool.mk" # does not support ffmpeg5 as of 5.15.4 --_----------=_1683186458161970--