From owner-svn-ports-all@freebsd.org Thu May 18 10:10:38 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 24529D70346; Thu, 18 May 2017 10:10:38 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C80DB11A6; Thu, 18 May 2017 10:10:37 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v4IAAaaB052332; Thu, 18 May 2017 10:10:36 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v4IAAaGk052330; Thu, 18 May 2017 10:10:36 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201705181010.v4IAAaGk052330@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Thu, 18 May 2017 10:10:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r441138 - in head/www/chromium: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 May 2017 10:10:38 -0000 Author: cpm Date: Thu May 18 10:10:36 2017 New Revision: 441138 URL: https://svnweb.freebsd.org/changeset/ports/441138 Log: - Switch from devel/llvm39 to devel/llvm40 Submitted by: rakuco Approved by: rene, cpm Modified: head/www/chromium/Makefile head/www/chromium/files/patch-build_toolchain_gcc__toolchain.gni Modified: head/www/chromium/Makefile ============================================================================== --- head/www/chromium/Makefile Thu May 18 09:32:38 2017 (r441137) +++ head/www/chromium/Makefile Thu May 18 10:10:36 2017 (r441138) @@ -3,6 +3,7 @@ PORTNAME= chromium PORTVERSION= 58.0.3029.110 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://commondatastorage.googleapis.com/chromium-browser-official/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} # default, but needed to get distinfo correct if TEST is on @@ -14,7 +15,7 @@ LICENSE= BSD3CLAUSE LGPL21 MPL LICENSE_COMB= multi BUILD_DEPENDS= gperf:devel/gperf \ - clang39:devel/llvm39 \ + clang40:devel/llvm40 \ yasm:devel/yasm \ python:lang/python \ ffmpeg>=3.2.2,1:multimedia/ffmpeg \ @@ -188,8 +189,8 @@ ALL_TARGET+= ${TEST_TARGETS} .include -CC= clang39 -CXX= clang++39 +CC= clang40 +CXX= clang++40 #optionally set AR, LD, NM, READELF ? # TODO: -isystem, would be just as ugly as this approach, but more reliably Modified: head/www/chromium/files/patch-build_toolchain_gcc__toolchain.gni ============================================================================== --- head/www/chromium/files/patch-build_toolchain_gcc__toolchain.gni Thu May 18 09:32:38 2017 (r441137) +++ head/www/chromium/files/patch-build_toolchain_gcc__toolchain.gni Thu May 18 10:10:36 2017 (r441138) @@ -21,12 +21,12 @@ - cxx = "$prefix/clang++" - ld = cxx + if (is_bsd) { -+ cc = "${toolprefix}clang39" -+ cxx = "${toolprefix}clang++39" ++ cc = "${toolprefix}clang40" ++ cxx = "${toolprefix}clang++40" + ld = cxx + readelf = "readelf" -+ ar = "${toolprefix}llvm-ar39" -+ nm = "${toolprefix}llvm-nm39" ++ ar = "${toolprefix}llvm-ar40" ++ nm = "${toolprefix}llvm-nm40" + } else { + prefix = rebase_path("$clang_base_path/bin", root_build_dir) + cc = "$prefix/clang"