Received: by mail.netbsd.org (Postfix, from userid 605) id 87C0784ED1; Mon, 11 Jul 2022 22:36:38 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C1B9684D0E for ; Mon, 11 Jul 2022 22:36:37 +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 8MKGJDQd-KR8 for ; Mon, 11 Jul 2022 22:36:37 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 1C55584CE3 for ; Mon, 11 Jul 2022 22:36:37 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 14973FB1A; Mon, 11 Jul 2022 22:36:37 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_165757899767990" MIME-Version: 1.0 Date: Mon, 11 Jul 2022 22:36:37 +0000 From: "David A. Holland" Subject: CVS commit: pkgsrc/www/seamonkey To: pkgsrc-changes@NetBSD.org Reply-To: dholland@netbsd.org X-Mailer: log_accum Message-Id: <20220711223637.14973FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_165757899767990 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: dholland Date: Mon Jul 11 22:36:37 UTC 2022 Modified Files: pkgsrc/www/seamonkey: mozilla-common.mk Log Message: www/seamonkey: accept python310 as well as python3[6789] To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 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. --_----------=_165757899767990 Content-Disposition: inline Content-Length: 1086 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.12 pkgsrc/www/seamonkey/mozilla-common.mk:1.13 --- pkgsrc/www/seamonkey/mozilla-common.mk:1.12 Sun May 15 00:37:26 2022 +++ pkgsrc/www/seamonkey/mozilla-common.mk Mon Jul 11 22:36:36 2022 @@ -1,4 +1,4 @@ -# $NetBSD: mozilla-common.mk,v 1.12 2022/05/15 00:37:26 dholland Exp $ +# $NetBSD: mozilla-common.mk,v 1.13 2022/07/11 22:36:36 dholland Exp $ # # common Makefile fragment for mozilla packages based on gecko 2.0. # @@ -20,7 +20,7 @@ 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]) +.if !empty(PYTHON_VERSION_DEFAULT:M3[6789]) || !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 --_----------=_165757899767990--