Received: by mail.netbsd.org (Postfix, from userid 605) id ABC6484E66; Tue, 8 Nov 2022 00:36:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DDA3B84D80 for ; Tue, 8 Nov 2022 00:36:57 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 3ZtGmWgNz2ui for ; Tue, 8 Nov 2022 00:36:57 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 33DEC84CDC for ; Tue, 8 Nov 2022 00:36:57 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 296BBFA90; Tue, 8 Nov 2022 00:36:57 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1667867817174980" MIME-Version: 1.0 Date: Tue, 8 Nov 2022 00:36:57 +0000 From: "David H. Gutteridge" Subject: CVS commit: pkgsrc/www/seamonkey To: pkgsrc-changes@NetBSD.org Reply-To: gutteridge@netbsd.org X-Mailer: log_accum Message-Id: <20221108003657.296BBFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1667867817174980 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gutteridge Date: Tue Nov 8 00:36:57 UTC 2022 Modified Files: pkgsrc/www/seamonkey: mozilla-common.mk Log Message: seamonkey: update Python 3 tool dependency To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 pkgsrc/www/seamonkey/mozilla-common.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1667867817174980 Content-Disposition: inline Content-Length: 1343 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/seamonkey/mozilla-common.mk diff -u pkgsrc/www/seamonkey/mozilla-common.mk:1.14 pkgsrc/www/seamonkey/mozilla-common.mk:1.15 --- pkgsrc/www/seamonkey/mozilla-common.mk:1.14 Thu Sep 8 20:27:32 2022 +++ pkgsrc/www/seamonkey/mozilla-common.mk Tue Nov 8 00:36:56 2022 @@ -1,4 +1,4 @@ -# $NetBSD: mozilla-common.mk,v 1.14 2022/09/08 20:27:32 ryoon Exp $ +# $NetBSD: mozilla-common.mk,v 1.15 2022/11/08 00:36:56 gutteridge Exp $ # # common Makefile fragment for mozilla packages based on gecko 2.0. # @@ -14,13 +14,13 @@ GCC_REQD+= 4.9 .include "../../mk/bsd.prefs.mk" -# Python 2.7 and Python 3.6 or later are required simultaneously. +# Python 2.7 and Python 3.8 or later are required simultaneously. PYTHON_VERSIONS_ACCEPTED= 27 PYTHON_FOR_BUILD_ONLY= tool TOOL_DEPENDS+= ${PYPKGPREFIX}-expat-[0-9]*:../../textproc/py-expat # Include pyversion.mk after setting PYTHON_* but before testing the default. .include "../../lang/python/pyversion.mk" -.if !empty(PYTHON_VERSION_DEFAULT:M3[6789]) || !empty(PYTHON_VERSION_DEFAULT:M310) +.if !empty(PYTHON_VERSION_DEFAULT:M3[89]) || !empty(PYTHON_VERSION_DEFAULT:M310) TOOL_DEPENDS+= python${PYTHON_VERSION_DEFAULT}-[0-9]*:../../lang/python${PYTHON_VERSION_DEFAULT} ALL_ENV+= PYTHON3=${PREFIX}/bin/python${PYTHON_VERSION_DEFAULT:S/3/3./} .else --_----------=_1667867817174980--