Received: by mail.netbsd.org (Postfix, from userid 605) id 4C4B084D56; Sun, 29 Oct 2017 09:47:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CB29584D63 for ; Sun, 29 Oct 2017 09:47:58 +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 dsDDBnfLN-Pl for ; Sun, 29 Oct 2017 09:47:58 +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 2F7E484D47 for ; Sun, 29 Oct 2017 09:47:58 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 26250FBDE; Sun, 29 Oct 2017 09:47:58 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1509270478150090" MIME-Version: 1.0 Date: Sun, 29 Oct 2017 09:47:58 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/www/firefox To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20171029094758.26250FBDE@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1509270478150090 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Sun Oct 29 09:47:58 UTC 2017 Modified Files: pkgsrc/www/firefox: Makefile mozilla-common.mk Log Message: Make clang and rust as build dependencies. Fix PR pkg/52668 Bump PKGREVISION To generate a diff of this commit: cvs rdiff -u -r1.308 -r1.309 pkgsrc/www/firefox/Makefile cvs rdiff -u -r1.99 -r1.100 pkgsrc/www/firefox/mozilla-common.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1509270478150090 Content-Disposition: inline Content-Length: 1802 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/firefox/Makefile diff -u pkgsrc/www/firefox/Makefile:1.308 pkgsrc/www/firefox/Makefile:1.309 --- pkgsrc/www/firefox/Makefile:1.308 Fri Oct 27 13:21:28 2017 +++ pkgsrc/www/firefox/Makefile Sun Oct 29 09:47:57 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.308 2017/10/27 13:21:28 ryoon Exp $ +# $NetBSD: Makefile,v 1.309 2017/10/29 09:47:57 ryoon Exp $ FIREFOX_VER= ${MOZ_BRANCH}${MOZ_BRANCH_MINOR} MOZ_BRANCH= 56.0 @@ -6,6 +6,7 @@ MOZ_BRANCH_MINOR= .2 DISTNAME= firefox-${FIREFOX_VER}.source PKGNAME= firefox-${MOZ_BRANCH}${MOZ_BRANCH_MINOR:S/b/beta/:S/esr//} +PKGREVISION= 1 CATEGORIES= www MASTER_SITES+= ${MASTER_SITE_MOZILLA:=firefox/releases/${FIREFOX_VER}/source/} MASTER_SITES+= ${MASTER_SITE_MOZILLA_ALL:=firefox/releases/${FIREFOX_VER}/source/} Index: pkgsrc/www/firefox/mozilla-common.mk diff -u pkgsrc/www/firefox/mozilla-common.mk:1.99 pkgsrc/www/firefox/mozilla-common.mk:1.100 --- pkgsrc/www/firefox/mozilla-common.mk:1.99 Tue Oct 3 13:17:37 2017 +++ pkgsrc/www/firefox/mozilla-common.mk Sun Oct 29 09:47:57 2017 @@ -1,4 +1,4 @@ -# $NetBSD: mozilla-common.mk,v 1.99 2017/10/03 13:17:37 maya Exp $ +# $NetBSD: mozilla-common.mk,v 1.100 2017/10/29 09:47:57 ryoon Exp $ # # common Makefile fragment for mozilla packages based on gecko 2.0. # @@ -189,8 +189,10 @@ BUILDLINK_API_DEPENDS.nss+= nss>=3.32.1 .include "../../graphics/MesaLib/buildlink3.mk" BUILDLINK_API_DEPENDS.cairo+= cairo>=1.10.2nb4 .include "../../graphics/cairo/buildlink3.mk" +BUILDLINK_DEPMETHOD.clang= build .include "../../lang/clang/buildlink3.mk" BUILDLINK_API_DEPENDS.rust+= rust>=1.20.0 +BUILDLINK_DEPMETHOD.rust= build .include "../../lang/rust/buildlink3.mk" BUILDLINK_API_DEPENDS.libvpx+= libvpx>=1.3.0 .include "../../multimedia/libvpx/buildlink3.mk" --_----------=_1509270478150090--