[arch-commits] Commit in kexi/repos (3 files)

Felix Yan felixonmars at archlinux.org
Wed Jan 16 16:44:56 UTC 2019


    Date: Wednesday, January 16, 2019 @ 16:44:55
  Author: felixonmars
Revision: 344286

archrelease: copy trunk to staging-x86_64

Added:
  kexi/repos/staging-x86_64/
  kexi/repos/staging-x86_64/0001-fix-build-with-qt-5-11.patch
    (from rev 344285, kexi/trunk/0001-fix-build-with-qt-5-11.patch)
  kexi/repos/staging-x86_64/PKGBUILD
    (from rev 344285, kexi/trunk/PKGBUILD)

-----------------------------------+
 0001-fix-build-with-qt-5-11.patch |   28 ++++++++++++++++++++++
 PKGBUILD                          |   44 ++++++++++++++++++++++++++++++++++++
 2 files changed, 72 insertions(+)

Copied: kexi/repos/staging-x86_64/0001-fix-build-with-qt-5-11.patch (from rev 344285, kexi/trunk/0001-fix-build-with-qt-5-11.patch)
===================================================================
--- staging-x86_64/0001-fix-build-with-qt-5-11.patch	                        (rev 0)
+++ staging-x86_64/0001-fix-build-with-qt-5-11.patch	2019-01-16 16:44:55 UTC (rev 344286)
@@ -0,0 +1,28 @@
+commit 1578fcb4a0407cf368edb6ee4605c4ef9e77b6ed
+Author: Andreas Sturmlechner <andreas.sturmlechner at gmail.com>
+Date:   Tue Mar 20 00:06:46 2018 +0100
+
+    Fix build with Qt 5.11 (missing headers)
+    
+    Reviewers: #kexi, staniek
+    
+    Reviewed By: #kexi, staniek
+    
+    Subscribers: staniek
+    
+    Tags: #kexi
+    
+    Differential Revision: https://phabricator.kde.org/D11503
+
+diff --git a/src/main/startup/KexiNewProjectAssistant.cpp b/src/main/startup/KexiNewProjectAssistant.cpp
+index 59e819acc..6568f1b5c 100644
+--- a/src/main/startup/KexiNewProjectAssistant.cpp
++++ b/src/main/startup/KexiNewProjectAssistant.cpp
+@@ -48,6 +48,7 @@
+ #include <KIconLoader>
+ #include <KStandardGuiItem>
+ 
++#include <QAction>
+ #include <QDebug>
+ #include <QLayout>
+ #include <QCheckBox>

Copied: kexi/repos/staging-x86_64/PKGBUILD (from rev 344285, kexi/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD	                        (rev 0)
+++ staging-x86_64/PKGBUILD	2019-01-16 16:44:55 UTC (rev 344286)
@@ -0,0 +1,44 @@
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+
+pkgname=kexi
+pkgver=3.1.0
+pkgrel=2
+pkgdesc="A visual database applications creator"
+arch=(x86_64)
+url="http://www.kexi-project.org/"
+license=(GPL2)
+depends=(kdb kreport ktexteditor breeze-icons)
+makedepends=(extra-cmake-modules qt5-tools kdoctools mariadb-libs postgresql qt5-webkit doxygen)
+optdepends=('qt5-webkit: Web browser plugin')
+conflicts=(calligra-kexi)
+replaces=(calligra-kexi)
+source=("https://download.kde.org/stable/$pkgname/src/$pkgname-$pkgver.tar.xz"{,.sig}
+        '0001-fix-build-with-qt-5-11.patch')
+sha256sums=('6d55cd4af177bcb060673a0977d52bc91cc2dd1b1420d008a78f9783312152fb'
+            'SKIP'
+            'f8daf1f5c366bb5a01be20f81b86bb5081d4355fecd81b90e4c5016a8e97c106')
+validpgpkeys=(4866BAF713B465677A4059643C7C0E201B6524DB) # Jarosław Staniek <staniek at kde.org>
+
+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+
+  patch -Np1 < ../0001-fix-build-with-qt-5-11.patch
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_INSTALL_LIBDIR=lib \
+    -DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}



More information about the arch-commits mailing list