Hello community,

here is the log from the commit of package chromium for openSUSE:Factory 
checked in at 2015-06-23 11:56:19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/chromium (Old)
 and      /work/SRC/openSUSE:Factory/.chromium.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "chromium"

Changes:
--------
--- /work/SRC/openSUSE:Factory/chromium/chromium.changes        2015-06-04 
09:05:16.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.chromium.new/chromium.changes   2015-06-23 
11:56:29.000000000 +0200
@@ -1,0 +2,17 @@
+Wed Jun 17 18:08:51 UTC 2015 - [email protected]
+
+- Add the buildflag enable_hotwording=0 to prevent that Chromium
+  downloads a binary blob for speechrecognition (boo#935022)
+  
+- Add patch gcc50-fixes.diff to enable building against GCC 5. The 
+  patch fixes the python regular expression and ensures to return 
+  a two digit value for the GCC version
+
+-------------------------------------------------------------------
+Fri Jun 12 13:51:28 UTC 2015 - [email protected]
+
+- Update to Chromium 43.0.2357.125
+  * Bug-fixes:
+    - esolved browser font magnification/scaling issue.
+
+-------------------------------------------------------------------

Old:
----
  chromium-43.0.2357.81.tar.xz

New:
----
  chromium-43.0.2357.125.tar.xz
  gcc50-fixes.diff

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ chromium.spec ++++++
--- /var/tmp/diff_new_pack.QoUCiJ/_old  2015-06-23 11:56:39.000000000 +0200
+++ /var/tmp/diff_new_pack.QoUCiJ/_new  2015-06-23 11:56:39.000000000 +0200
@@ -20,7 +20,7 @@
 %define chromium_system_libs 0
 
 Name:           chromium
-Version:        43.0.2357.81
+Version:        43.0.2357.125
 Release:        0
 Summary:        Google's opens source browser project
 License:        BSD-3-Clause and LGPL-2.1+
@@ -63,6 +63,8 @@
 Patch8:         adjust-ldflags-no-keep-memory.patch
 # PATCH-FIX-OPENSUSE no-clang-on-packman.diff - We can't use clang build flags 
on packman
 Patch9:         no-clang-on-packman.diff
+# PATCH-FIX-OPENSUSE gcc50-fixes.diff - Fix the GCC version detection
+Patch10:        gcc50-fixes.diff
 
 # archlinux arm enhancement patches
 Patch100:       arm-webrtc-fix.patch
@@ -278,6 +280,9 @@
 %if 0%{?packman_bs}
 %patch9 -p0
 %endif
+%if 0%{?suse_version} > 1320
+%patch10 -p0
+%endif
 
 #Upstream fixes
 
@@ -296,6 +301,7 @@
 
 myconf+="-Dwerror=
                      -Dlinux_sandbox_chrome_path=%{_libdir}/chromium/chromium
+                     -Denable_hotwording=0
                      -Duse_openssl=0
                      -Duse_system_ffmpeg=0
                      -Dbuild_ffmpegsumo=1
@@ -383,6 +389,9 @@
           -Dgoogle_default_client_id=4139804441.apps.googleusercontent.com 
           -Dgoogle_default_client_secret=KDTRKEZk2jwT_7CDpcmMA--P"
 
+ls -l /usr/bin/c++*
+ls -l /usr/bin/g++*
+
 build/linux/unbundle/replace_gyp_files.py $myconf
 
 %if 0%{?packman_bs}


++++++ chromium-43.0.2357.81.tar.xz -> chromium-43.0.2357.125.tar.xz ++++++
/work/SRC/openSUSE:Factory/chromium/chromium-43.0.2357.81.tar.xz 
/work/SRC/openSUSE:Factory/.chromium.new/chromium-43.0.2357.125.tar.xz differ: 
char 26, line 1


++++++ gcc50-fixes.diff ++++++
--- build/compiler_version.py   2015-06-17 21:51:42.871082412 +0200
+++ build/compiler_version.py   2015-06-17 21:51:42.871082412 +0200
@@ -56,7 +56,7 @@
     if tool == "compiler":
       compiler = compiler + " -dumpversion"
       # 4.6
-      version_re = re.compile(r"(\d+)\.(\d+)")
+      version_re = re.compile(r"(\d+)")
     elif tool == "assembler":
       compiler = compiler + " -Xassembler --version -x assembler -c /dev/null"
       # Unmodified: GNU assembler (GNU Binutils) 2.24
@@ -88,7 +88,11 @@
       raise subprocess.CalledProcessError(pipe.returncode, compiler)
 
     parsed_output = version_re.match(tool_output)
-    result = parsed_output.group(1) + parsed_output.group(2)
+    if tool == "compiler":
+      result = parsed_output.group(1) + "1"
+    else:
+      result = parsed_output.group(1) + parsed_output.group(2)
+
     compiler_version_cache[cache_key] = result
     return result
   except Exception, e:
--- native_client/build/compiler_version.py     2015-06-17 21:51:42.871082412 
+0200
+++ native_client/build/compiler_version.py     2015-06-17 21:51:42.871082412 
+0200
@@ -56,7 +56,7 @@
     if tool == "compiler":
       compiler = compiler + " -dumpversion"
       # 4.6
-      version_re = re.compile(r"(\d+)\.(\d+)")
+      version_re = re.compile(r"(\d+)")
     elif tool == "assembler":
       compiler = compiler + " -Xassembler --version -x assembler -c /dev/null"
       # Unmodified: GNU assembler (GNU Binutils) 2.24
@@ -88,7 +88,11 @@
       raise subprocess.CalledProcessError(pipe.returncode, compiler)
 
     parsed_output = version_re.match(tool_output)
-    result = parsed_output.group(1) + parsed_output.group(2)
+    if tool == "compiler":
+      result = parsed_output.group(1) + "1"
+    else:
+      result = parsed_output.group(1) + parsed_output.group(2)
+
     compiler_version_cache[cache_key] = result
     return result
   except Exception, e:

Reply via email to