[arch-commits] Commit in qt5-webengine/repos (3 files)
Antonio Rojas
arojas at archlinux.org
Mon Jul 6 20:34:19 UTC 2020
Date: Monday, July 6, 2020 @ 20:34:18
Author: arojas
Revision: 390922
archrelease: copy trunk to testing-x86_64
Added:
qt5-webengine/repos/testing-x86_64/
qt5-webengine/repos/testing-x86_64/PKGBUILD
(from rev 390921, qt5-webengine/trunk/PKGBUILD)
qt5-webengine/repos/testing-x86_64/qt5-webengine-gcc10.patch
(from rev 390921, qt5-webengine/trunk/qt5-webengine-gcc10.patch)
---------------------------+
PKGBUILD | 73 ++++++++++++++++++++++++++++++++++++++++++++
qt5-webengine-gcc10.patch | 12 +++++++
2 files changed, 85 insertions(+)
Copied: qt5-webengine/repos/testing-x86_64/PKGBUILD (from rev 390921, qt5-webengine/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-07-06 20:34:18 UTC (rev 390922)
@@ -0,0 +1,73 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+
+pkgname=qt5-webengine
+_qtver=5.15.0
+pkgver=${_qtver/-/}
+pkgrel=3
+arch=('x86_64')
+url='https://www.qt.io'
+license=('LGPL3' 'LGPL2.1' 'BSD')
+pkgdesc='Provides support for web applications using the Chromium browser project'
+depends=('qt5-webchannel' 'qt5-location' 'libxcomposite' 'libxrandr' 'pciutils' 'libxss'
+ 'libevent' 'snappy' 'nss' 'libxslt' 'minizip' 'ffmpeg' 're2' 'libvpx' 'krb5' 'ttf-font')
+makedepends=('python2' 'gperf' 'jsoncpp' 'ninja' 'qt5-tools' 'poppler')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz"
+ qt5-webengine-icu67.patch::"https://code.qt.io/cgit/qt/qtwebengine-chromium.git/patch/?id=e941f2bd"
+ qt5-webengine-gcc10.patch
+ dark-mode-crash.patch::"https://code.qt.io/cgit/qt/qtwebengine-chromium.git/patch/?id=4e8ca195"
+ qtbug-85119.patch::"https://code.qt.io/cgit/qt/qtwebengine-chromium.git/patch/?id=c91f4d20"
+ qtbug-85120.patch::"https://code.qt.io/cgit/qt/qtwebengine-chromium.git/patch/?id=242802ab"
+ qtbug-85118.patch::"https://code.qt.io/cgit/qt/qtwebengine.git/patch/?id=e42ccdad"
+ qtbug-62957.patch::"https://code.qt.io/cgit/qt/qtwebengine.git/patch/?id=f341988f"
+ qtbug-62957-pre.patch::"https://code.qt.io/cgit/qt/qtwebengine.git/patch?id=75412200"
+ )
+sha256sums=('c38e2fda7ed1b7d5a90f26abf231ec0715d78a5bc39a94673d8e39d75f04c5df'
+ '22a2265c81bc73dba6843279407ccaec9f192d0987c54a0d9533be7c49b37f29'
+ '8a6e0c41f708d6a8f1febb751157642ab985b58c07ada1447b73b71cd31b4d99'
+ '7ea054a95045635fcee9ee50a6a28e9aedf182ca97a76cc6dd680fb1a91748e1'
+ '758561a5bd52feca16751c37def8e7cd3388073bf5bd072eb0862830c174decc'
+ '4bb12a72d40e69052946a6b66fff621f28e40c3d3c11ddeec155133a9204f352'
+ 'fc976a6a7198121a4c1b6026318098de278412d73634db31b1815a3cc7502657'
+ '1a07ab59daa9552ad1a70abd03b00d40e542d9dd64fa6d7404d31c9a51e5eeba'
+ 'd47ec2111c9713312158f800c01ca9358400b4e11273e470d57a53c36b7565c0')
+
+prepare() {
+ mkdir -p build
+
+ cd $_pkgfqn
+ patch -d src/3rdparty -p1 -i "$srcdir"/qt5-webengine-icu67.patch # Fix build with ICU 67
+ patch -d src/3rdparty -p1 -i "$srcdir"/qt5-webengine-gcc10.patch
+ patch -d src/3rdparty -p1 -i "$srcdir"/dark-mode-crash.patch # Fix crash in qutebrowser when using dark mode
+ patch -d src/3rdparty -p1 -i "$srcdir"/qtbug-85119.patch # Extend url library for WebEngine custom schemes
+ patch -d src/3rdparty -p1 -i "$srcdir"/qtbug-85120.patch # Make XScrnSaver optional
+
+ patch -p1 -i ../qtbug-85118.patch # Fix recentlyAudible signal
+ patch -p1 -i ../qtbug-62957-pre.patch # Avoid the network context reset during http cache clear
+ patch -p1 -i ../qtbug-62957.patch # Return valid path in Profile::GetPath() for incognito profiles
+}
+
+build() {
+ cd build
+ qmake ../${_pkgfqn} -- \
+ -proprietary-codecs \
+ -system-ffmpeg \
+ -webp \
+ -spellchecker \
+ -webengine-icu \
+ -webengine-kerberos
+ make
+}
+
+package() {
+ cd build
+ make INSTALL_ROOT="$pkgdir" install
+
+ # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+ find "$pkgdir/usr/lib" -type f -name '*.prl' \
+ -exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+ install -Dm644 "$srcdir"/${_pkgfqn}/src/3rdparty/chromium/LICENSE "$pkgdir"/usr/share/licenses/${pkgname}/LICENSE.chromium
+}
Copied: qt5-webengine/repos/testing-x86_64/qt5-webengine-gcc10.patch (from rev 390921, qt5-webengine/trunk/qt5-webengine-gcc10.patch)
===================================================================
--- testing-x86_64/qt5-webengine-gcc10.patch (rev 0)
+++ testing-x86_64/qt5-webengine-gcc10.patch 2020-07-06 20:34:18 UTC (rev 390922)
@@ -0,0 +1,12 @@
+diff --git a/base/trace_event/trace_event_memory_overhead.h b/base/trace_event/trace_event_memory_overhead.h
+index 69468d4..3f5b786 100644
+--- a/chromium/base/trace_event/trace_event_memory_overhead.h
++++ b/chromium/base/trace_event/trace_event_memory_overhead.h
+@@ -9,6 +9,7 @@
+ #include <stdint.h>
+
+ #include <unordered_map>
++#include <string>
+
+ #include "base/base_export.h"
+ #include "base/macros.h"
More information about the arch-commits
mailing list