svn commit: r347937 - in head/www/chromium: . files
Rene Ladan
rene at FreeBSD.org
Tue Mar 11 21:53:40 UTC 2014
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<size_t>(std::numeric_limits<ssize_t>::max()),
+ kSSizeMax_is_the_max_value_of_an_ssize_t);
More information about the svn-ports-all
mailing list