From owner-svn-ports-all@FreeBSD.ORG Tue Mar 11 21:53:40 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B1760132; Tue, 11 Mar 2014 21:53:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9D842885; Tue, 11 Mar 2014 21:53:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s2BLrePr009453; Tue, 11 Mar 2014 21:53:40 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s2BLrebX009450; Tue, 11 Mar 2014 21:53:40 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201403112153.s2BLrebX009450@svn.freebsd.org> From: Rene Ladan Date: Tue, 11 Mar 2014 21:53:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r347937 - 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.17 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: Tue, 11 Mar 2014 21:53:40 -0000 Author: rene Date: Tue Mar 11 21:53:39 2014 New Revision: 347937 URL: http://svnweb.freebsd.org/changeset/ports/347937 QAT: https://qat.redports.org/buildarchive/r347937/ Log: - Update to 33.0.1750.149 [1] - Add a patch to fix build on FreeBSD < 10 [2] Obtained from: http://crbug.com/347123 [2] Security: http://vuxml.org/freebsd/24cefa4b-a940-11e3-91f2-00262d5ed8ee.html [1] MFH: 2014Q1 Added: head/www/chromium/files/patch-base__strings__safe_sprintf.cc (contents, props changed) Modified: head/www/chromium/Makefile head/www/chromium/distinfo Modified: head/www/chromium/Makefile ============================================================================== --- head/www/chromium/Makefile Tue Mar 11 21:49:40 2014 (r347936) +++ head/www/chromium/Makefile Tue Mar 11 21:53:39 2014 (r347937) @@ -4,8 +4,7 @@ #TODO eadler: s/python/python2/g on a number of files, chromium does not build with python3 PORTNAME= chromium -PORTVERSION= 33.0.1750.146 -PORTREVISION= 1 +PORTVERSION= 33.0.1750.149 CATEGORIES= www MASTER_SITES= http://commondatastorage.googleapis.com/chromium-browser-official/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} Modified: head/www/chromium/distinfo ============================================================================== --- head/www/chromium/distinfo Tue Mar 11 21:49:40 2014 (r347936) +++ head/www/chromium/distinfo Tue Mar 11 21:53:39 2014 (r347937) @@ -1,4 +1,4 @@ -SHA256 (chromium-33.0.1750.146.tar.xz) = d5b0e7a0f086aac200493fe4e5849ca84e9e21f7770c5d5830060da9fc2c4a74 -SIZE (chromium-33.0.1750.146.tar.xz) = 185394896 -SHA256 (chromium-33.0.1750.146-testdata.tar.xz) = 918ccc080788ea9b8eba2e479b521c22b37b14c62d4bc0906d7f15a88f12c84c -SIZE (chromium-33.0.1750.146-testdata.tar.xz) = 112429020 +SHA256 (chromium-33.0.1750.149.tar.xz) = 165f6d3dd4cf936faf615f743baf2e668a259f970ceed654d2f73b390dad3084 +SIZE (chromium-33.0.1750.149.tar.xz) = 185397612 +SHA256 (chromium-33.0.1750.149-testdata.tar.xz) = f18a5f3199f2e370ffdc1e49b2860e3653341c64d30c7e42268835cde7458354 +SIZE (chromium-33.0.1750.149-testdata.tar.xz) = 112422500 Added: head/www/chromium/files/patch-base__strings__safe_sprintf.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/chromium/files/patch-base__strings__safe_sprintf.cc Tue Mar 11 21:53:39 2014 (r347937) @@ -0,0 +1,19 @@ +--- ./base/strings/safe_sprintf.cc.orig 2014-03-04 03:16:26.000000000 +0100 ++++ ./base/strings/safe_sprintf.cc 2014-03-07 14:14:55.000000000 +0100 +@@ -107,11 +107,11 @@ + : buffer_(buffer), + size_(size - 1), // Account for trailing NUL byte + count_(0) { +-// The following assertion does not build on Mac and Android. This is because +-// static_assert only works with compile-time constants, but mac uses +-// libstdc++4.2 and android uses stlport, which both don't mark +-// numeric_limits::max() as constexp. +-#if __cplusplus >= 201103 && !defined(OS_ANDROID) && !defined(OS_MACOSX) && !defined(OS_IOS) ++// The following assertion does not build on Mac and Android and older FreeBSD. ++// This is because static_assert only works with compile-time constants, but ++// mac and FreeBSD < 10 use libstdc++4.2 and android uses stlport, which both ++// don't mark numeric_limits::max() as constexp. ++#if __cplusplus >= 201103 && !defined(OS_ANDROID) && !defined(OS_MACOSX) && !defined(OS_IOS) && !(defined(OS_FREEBSD) && __FreeBSD_version > 1000054) + COMPILE_ASSERT(kSSizeMaxConst == \ + static_cast(std::numeric_limits::max()), + kSSizeMax_is_the_max_value_of_an_ssize_t);