Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 12 Mar 2014 07:06:57 +0000 (UTC)
From:      Rene Ladan <rene@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r347962 - in branches/2014Q1/www/chromium: . files
Message-ID:  <201403120706.s2C76v3F034945@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rene
Date: Wed Mar 12 07:06:57 2014
New Revision: 347962
URL: http://svnweb.freebsd.org/changeset/ports/347962
QAT: https://qat.redports.org/buildarchive/r347962/

Log:
  MFH: r347937
  
  - 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]
  
  Approved by:	portmgr (erwin)

Added:
  branches/2014Q1/www/chromium/files/patch-base__strings__safe_sprintf.cc
     - copied unchanged from r347937, head/www/chromium/files/patch-base__strings__safe_sprintf.cc
Modified:
  branches/2014Q1/www/chromium/Makefile
  branches/2014Q1/www/chromium/distinfo
Directory Properties:
  branches/2014Q1/   (props changed)

Modified: branches/2014Q1/www/chromium/Makefile
==============================================================================
--- branches/2014Q1/www/chromium/Makefile	Wed Mar 12 05:46:33 2014	(r347961)
+++ branches/2014Q1/www/chromium/Makefile	Wed Mar 12 07:06:57 2014	(r347962)
@@ -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: branches/2014Q1/www/chromium/distinfo
==============================================================================
--- branches/2014Q1/www/chromium/distinfo	Wed Mar 12 05:46:33 2014	(r347961)
+++ branches/2014Q1/www/chromium/distinfo	Wed Mar 12 07:06:57 2014	(r347962)
@@ -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

Copied: branches/2014Q1/www/chromium/files/patch-base__strings__safe_sprintf.cc (from r347937, head/www/chromium/files/patch-base__strings__safe_sprintf.cc)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2014Q1/www/chromium/files/patch-base__strings__safe_sprintf.cc	Wed Mar 12 07:06:57 2014	(r347962, copy of r347937, head/www/chromium/files/patch-base__strings__safe_sprintf.cc)
@@ -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<size_t>(std::numeric_limits<ssize_t>::max()),
+                    kSSizeMax_is_the_max_value_of_an_ssize_t);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201403120706.s2C76v3F034945>