author | Antonio Rojas
<arojas@archlinux.org> 2019-10-31 08:40:32 UTC |
committer | Antonio Rojas
<arojas@archlinux.org> 2019-10-31 08:40:32 UTC |
parent | 8c027cdb37bab834bc5b4ba39aeeb8fdf2e179eb |
PKGBUILD | +4 | -8 |
qtbug-77364.patch | +0 | -12 |
diff --git a/PKGBUILD b/PKGBUILD index 29dd723..f50bc2b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,9 +3,9 @@ pkgbase=qt5-base pkgname=(qt5-base qt5-xcb-private-headers) -_qtver=5.13.1 +_qtver=5.13.2 pkgver=${_qtver/-/} -pkgrel=2 +pkgrel=1 arch=('x86_64') url='https://www.qt.io' license=('GPL3' 'LGPL3' 'FDL' 'custom') @@ -26,10 +26,8 @@ optdepends=('qt5-svg: to use SVG icon themes' conflicts=('qtchooser') groups=('qt' 'qt5') _pkgfqn="${pkgbase/5-/}-everywhere-src-${_qtver}" -source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz" - qtbug-77364.patch) -sha256sums=('110cd08cdacab26274bf2519d3508046616c0b638f0d2f5e00bc8bad87469eab' - 'dc742814ab0c1b63da5916d96e3ef01fa96007c385ed033ae5b3a8cd8608c119') +source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz") +sha256sums=('26b6b686d66a7ad28eaca349e55e2894e5a735f3831e45f2049e93b1daa92121') prepare() { cd ${_pkgfqn} @@ -40,8 +38,6 @@ prepare() { mkspecs/common/gcc-base.conf sed -i -e "s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}|" \ mkspecs/common/g++-unix.conf - - patch -p1 -i ../qtbug-77364.patch # Fix keyboard input in webengine } build() { diff --git a/qtbug-77364.patch b/qtbug-77364.patch deleted file mode 100644 index fd28481..0000000 --- a/qtbug-77364.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff --git a/src/widgets/kernel/qwidget.cpp b/src/widgets/kernel/qwidget.cpp -index 04290a4ce1..27773d5762 100644 ---- a/src/widgets/kernel/qwidget.cpp -+++ b/src/widgets/kernel/qwidget.cpp -@@ -6446,7 +6446,7 @@ void QWidget::setFocusProxy(QWidget * w) - - if (changingAppFocusWidget) { - QWidget *newDeepestFocusProxy = d_func()->deepestFocusProxy(); -- QApplicationPrivate::focus_widget = newDeepestFocusProxy ? newDeepestFocusProxy : this; -+ QApplicationPrivate::setFocusWidget(newDeepestFocusProxy ? newDeepestFocusProxy : this, Qt::NoFocusReason); - } - }