Hello community,
here is the log from the commit of package libqt5-qtwebengine for
openSUSE:Factory checked in at 2015-07-02 22:49:35
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libqt5-qtwebengine (Old)
and /work/SRC/openSUSE:Factory/.libqt5-qtwebengine.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libqt5-qtwebengine"
Changes:
--------
--- /work/SRC/openSUSE:Factory/libqt5-qtwebengine/libqt5-qtwebengine.changes
2015-06-23 12:00:07.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.libqt5-qtwebengine.new/libqt5-qtwebengine.changes
2015-07-03 00:08:50.000000000 +0200
@@ -1,0 +2,6 @@
+Mon Jun 29 15:23:43 UTC 2015 - [email protected]
+
+- gyp-arm64.patch: fix support for aarch64
+- gcc50-fixes.diff: also handle gcc < 5
+
+-------------------------------------------------------------------
New:
----
gyp-arm64.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ libqt5-qtwebengine.spec ++++++
--- /var/tmp/diff_new_pack.qLKYl0/_old 2015-07-03 00:08:53.000000000 +0200
+++ /var/tmp/diff_new_pack.qLKYl0/_new 2015-07-03 00:08:53.000000000 +0200
@@ -35,6 +35,7 @@
Patch1: gyp_conf.patch
# PATCH-FIX-OPENSUSE gcc50-fixes.diff -- Fix the detection of the Gcc 5.x
compiler
Patch2: gcc50-fixes.diff
+Patch3: gyp-arm64.patch
BuildRequires: bison
BuildRequires: fdupes
BuildRequires: flac-devel
@@ -133,9 +134,8 @@
%prep
%setup -q -n qtwebengine-opensource-src-%{real_version}
%patch1 -p1
-%if 0%{?suse_version} > 1320
%patch2 -p0
-%endif
+%patch3 -p1
sed -i 's|$(STRIP)|strip|g' src/core/core_module.pro
#pushd src/3rdparty/chromium/third_party/
++++++ gcc50-fixes.diff ++++++
--- /var/tmp/diff_new_pack.qLKYl0/_old 2015-07-03 00:08:53.000000000 +0200
+++ /var/tmp/diff_new_pack.qLKYl0/_new 2015-07-03 00:08:53.000000000 +0200
@@ -1,20 +1,22 @@
---- src/3rdparty/chromium/build/compiler_version.py 2015-06-17
21:51:42.871082412 +0200
-+++ src/3rdparty/chromium/build/compiler_version.py 2015-06-17
21:51:42.871082412 +0200
-@@ -56,7 +56,7 @@
+Index: src/3rdparty/chromium/build/compiler_version.py
+===================================================================
+--- src/3rdparty/chromium/build/compiler_version.py.orig
++++ src/3rdparty/chromium/build/compiler_version.py
+@@ -56,7 +56,7 @@ def GetVersion(compiler, tool):
if tool == "compiler":
compiler = compiler + " -dumpversion"
# 4.6
- version_re = re.compile(r"(\d+)\.(\d+)")
-+ version_re = re.compile(r"(\d+)")
++ version_re = re.compile(r"(\d+)(?:\.(\d+))?")
elif tool == "assembler":
compiler = compiler + " -Xassembler --version -x assembler -c /dev/null"
# Unmodified: GNU assembler (GNU Binutils) 2.24
-@@ -88,7 +88,11 @@
+@@ -88,7 +88,11 @@ def GetVersion(compiler, tool):
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":
++ if parsed_output.group(2) == None:
+ result = parsed_output.group(1) + "1"
+ else:
+ result = parsed_output.group(1) + parsed_output.group(2)
++++++ gyp-arm64.patch ++++++
++++ 1772 lines (skipped)