[arch-commits] Commit in falkon/trunk (PKGBUILD)

Antonio Rojas arojas at archlinux.org
Mon Mar 25 11:21:14 UTC 2019


    Date: Monday, March 25, 2019 @ 11:21:13
  Author: arojas
Revision: 349175

Restore Python plugins

Modified:
  falkon/trunk/PKGBUILD

----------+
 PKGBUILD |   20 +++++++++++++-------
 1 file changed, 13 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2019-03-25 10:52:23 UTC (rev 349174)
+++ PKGBUILD	2019-03-25 11:21:13 UTC (rev 349175)
@@ -2,23 +2,28 @@
 
 pkgname=falkon
 pkgver=3.1.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Cross-platform QtWebEngine browser"
 arch=(x86_64)
 url="https://www.falkon.org/"
 license=(GPL3)
 depends=(qt5-webengine qt5-x11extras qt5-svg)
-makedepends=(extra-cmake-modules qt5-tools kio purpose libgnome-keyring) # pyside2 shiboken2 https://bugs.kde.org/show_bug.cgi?id=405833
-optdepends=('kio: KDE integration' 'purpose: KDE integration' 'libgnome-keyring: gnome keyring integration')
-#            'pyside2: Python plugins'
+makedepends=(extra-cmake-modules qt5-tools kio purpose libgnome-keyring pyside2 shiboken2)
+optdepends=('kio: KDE integration' 'purpose: KDE integration' 'libgnome-keyring: gnome keyring integration'
+            'pyside2: Python plugins')
 replaces=(qupzilla)
-source=(https://download.kde.org/stable/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig})
+source=(https://download.kde.org/stable/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig}
+        falkon-pyside-5.12.2.patch::"https://cgit.kde.org/falkon.git/patch/?id=479933e0")
 sha256sums=('ce743cd80c0e2d525a784e29c9b487f73480119b0567f9ce8ef1f44cca527587'
-            'SKIP')
+            'SKIP'
+            'ab7b8c1a8e0e53cb3db2722498f55cb39103d2138f4cf71859384549544074d6')
 validpgpkeys=(3CB7B8416EF6778B409FDC43EBC3FC294452C6D8) # David Rosca <nowrep at gmail.com>
 
 prepare() {
   mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../falkon-pyside-5.12.2.patch # Fix build with PySide 5.12.2
 }
 
 build() {
@@ -26,7 +31,8 @@
   cmake ../$pkgname-$pkgver \
     -DCMAKE_INSTALL_PREFIX=/usr \
     -DCMAKE_INSTALL_LIBDIR=lib \
-    -DBUILD_TESTING=OFF
+    -DBUILD_TESTING=OFF \
+    -DCMAKE_BUILD_TYPE=None # https://bugreports.qt.io/browse/PYSIDE-980
   make
 }
 



More information about the arch-commits mailing list