Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-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 221791A9217 for ; Thu, 10 Dec 2020 19:54:36 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 6634284DA9; Thu, 10 Dec 2020 19:54:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9FCC184D55 for ; Thu, 10 Dec 2020 19:54:34 +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 0jVDeLtUzO_X for ; Thu, 10 Dec 2020 19:54:34 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id F21D884CDA for ; Thu, 10 Dec 2020 19:54:33 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EB460FA9D; Thu, 10 Dec 2020 19:54:33 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1607630073180" MIME-Version: 1.0 Date: Thu, 10 Dec 2020 19:54:33 +0000 From: "Benny Siegert" Subject: CVS commit: [pkgsrc-2020Q3] pkgsrc/www/firefox78 To: pkgsrc-changes@NetBSD.org Reply-To: bsiegert@netbsd.org X-Mailer: log_accum Message-Id: <20201210195433.EB460FA9D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1607630073180 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bsiegert Date: Thu Dec 10 19:54:33 UTC 2020 Modified Files: pkgsrc/www/firefox78 [pkgsrc-2020Q3]: mozilla-common.mk Log Message: Pullup ticket #6369 - requested by riastradh www/firefox78: build fix (via patch) Add build dependency to expat Python module. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.1.2.1 pkgsrc/www/firefox78/mozilla-common.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1607630073180 Content-Disposition: inline Content-Length: 1094 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/firefox78/mozilla-common.mk diff -u pkgsrc/www/firefox78/mozilla-common.mk:1.1 pkgsrc/www/firefox78/mozilla-common.mk:1.1.2.1 --- pkgsrc/www/firefox78/mozilla-common.mk:1.1 Thu Jul 30 08:09:28 2020 +++ pkgsrc/www/firefox78/mozilla-common.mk Thu Dec 10 19:54:33 2020 @@ -1,4 +1,4 @@ -# $NetBSD: mozilla-common.mk,v 1.1 2020/07/30 08:09:28 nia Exp $ +# $NetBSD: mozilla-common.mk,v 1.1.2.1 2020/12/10 19:54:33 bsiegert Exp $ # # common Makefile fragment for mozilla packages based on gecko 2.0. # @@ -47,8 +47,10 @@ TOOL_DEPENDS+= nodejs-[0-9]*:../../lang # Depend on Python3 sqlite3 module. .if !empty(PYTHON_VERSION_DEFAULT:M3[6789]) BUILD_DEPENDS+= py${PYTHON_VERSION_DEFAULT}-sqlite3-[0-9]*:../../databases/py-sqlite3 +BUILD_DEPENDS+= py${PYTHON_VERSION_DEFAULT}-expat-[0-9]*:../../textproc/py-expat .else BUILD_DEPENDS+= py37-sqlite3-[0-9]*:../../databases/py-sqlite3 +BUILD_DEPENDS+= py37-expat-[0-9]*:../../textproc/py-expat .endif .if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64" TOOL_DEPENDS+= nasm>=2.14:../../devel/nasm --_----------=_1607630073180--