[arch-commits] Commit in kcm-wacomtablet/repos/community-x86_64 (4 files)
Antonio Rojas
arojas at archlinux.org
Fri Oct 11 20:10:08 UTC 2019
Date: Friday, October 11, 2019 @ 20:10:07
Author: arojas
Revision: 515168
archrelease: copy trunk to community-x86_64
Added:
kcm-wacomtablet/repos/community-x86_64/PKGBUILD
(from rev 515167, kcm-wacomtablet/trunk/PKGBUILD)
kcm-wacomtablet/repos/community-x86_64/add_missing_includes.diff
(from rev 515167, kcm-wacomtablet/trunk/add_missing_includes.diff)
Deleted:
kcm-wacomtablet/repos/community-x86_64/PKGBUILD
kcm-wacomtablet/repos/community-x86_64/add_missing_includes.diff
---------------------------+
PKGBUILD | 81 +++++++++++++++++++++-----------------------
add_missing_includes.diff | 22 +++++------
2 files changed, 51 insertions(+), 52 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2019-10-11 20:09:44 UTC (rev 515167)
+++ PKGBUILD 2019-10-11 20:10:07 UTC (rev 515168)
@@ -1,41 +0,0 @@
-# Maintainer: Lukas Jirkovsky <l.jirkovsky at gmail.com>
-# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Contributor: Dany Martineau <dany.luc.martineau at gmail.com>
-# Contributor: Dylon Edwards <deltaecho at archlinux.us>
-pkgname=kcm-wacomtablet
-pkgver=3.2.0
-pkgrel=2
-epoch=1
-pkgdesc="KDE GUI for the Wacom Linux Drivers"
-arch=('i686' 'x86_64')
-url="https://cgit.kde.org/wacomtablet.git"
-license=('GPL')
-depends=('plasma-framework' 'xf86-input-wacom')
-makedepends=('git' 'cmake' 'extra-cmake-modules' 'kdoctools')
-source=("https://download.kde.org/stable/wacomtablet/$pkgver/wacomtablet-$pkgver.tar.xz"{,.sig}
- "add_missing_includes.diff")
-sha256sums=('c80ce63a41f6fcbb50ac4c2130ed2f8273c4b744e62e33d4b714bf83e8e5f7a4'
- 'SKIP'
- '143b2e81e5152c2f1db6e03089b32d9b9fdf1e61739743179b0efb299eb5b44d')
-validpgpkeys=('E6E4C916590026E45836A12EA8896AFDFEF5DF53') # Valeriy Malov
-
-prepare() {
- cd "$srcdir/wacomtablet-$pkgver"
- patch -Np1 < "$srcdir/add_missing_includes.diff"
-}
-
-build() {
- cd "$srcdir/wacomtablet-$pkgver"
-
- cmake . \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DCMAKE_BUILD_TYPE=Release
- make
-}
-
-package() {
- cd "$srcdir/wacomtablet-$pkgver"
-
- make DESTDIR="$pkgdir" install
-}
-
Copied: kcm-wacomtablet/repos/community-x86_64/PKGBUILD (from rev 515167, kcm-wacomtablet/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2019-10-11 20:10:07 UTC (rev 515168)
@@ -0,0 +1,40 @@
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Contributor: Lukas Jirkovsky <l.jirkovsky at gmail.com>
+# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Contributor: Dany Martineau <dany.luc.martineau at gmail.com>
+# Contributor: Dylon Edwards <deltaecho at archlinux.us>
+
+pkgname=kcm-wacomtablet
+pkgver=3.2.0
+pkgrel=3
+epoch=1
+pkgdesc="KDE GUI for the Wacom Linux Drivers"
+arch=(x86_64)
+url="https://cgit.kde.org/wacomtablet.git"
+license=(GPL)
+depends=(xf86-input-wacom plasma-workspace)
+makedepends=(extra-cmake-modules kdoctools)
+source=("https://download.kde.org/stable/wacomtablet/$pkgver/wacomtablet-$pkgver.tar.xz"{,.sig}
+ "add_missing_includes.diff")
+sha256sums=('c80ce63a41f6fcbb50ac4c2130ed2f8273c4b744e62e33d4b714bf83e8e5f7a4'
+ 'SKIP'
+ '143b2e81e5152c2f1db6e03089b32d9b9fdf1e61739743179b0efb299eb5b44d')
+validpgpkeys=('E6E4C916590026E45836A12EA8896AFDFEF5DF53') # Valeriy Malov
+
+prepare() {
+ mkdir -p build
+
+ cd wacomtablet-$pkgver
+ patch -Np1 < "$srcdir/add_missing_includes.diff"
+}
+
+build() {
+ cd build
+ cmake ../wacomtablet-$pkgver
+ make
+}
+
+package() {
+ cd build
+ make DESTDIR="$pkgdir" install
+}
Deleted: add_missing_includes.diff
===================================================================
--- add_missing_includes.diff 2019-10-11 20:09:44 UTC (rev 515167)
+++ add_missing_includes.diff 2019-10-11 20:10:07 UTC (rev 515168)
@@ -1,11 +0,0 @@
-diff -rup wacomtablet-3.1.0/src/kcmodule/styluspagewidget.cpp wacomtablet-3.1.0.new/src/kcmodule/styluspagewidget.cpp
---- wacomtablet-3.1.0/src/kcmodule/styluspagewidget.cpp 2018-06-22 15:07:58.000000000 +0200
-+++ wacomtablet-3.1.0.new/src/kcmodule/styluspagewidget.cpp 2018-07-10 17:38:09.239242847 +0200
-@@ -25,6 +25,7 @@
- #include "profilemanagement.h"
-
- // common includes
-+#include "logging.h"
- #include "property.h"
- #include "deviceprofile.h"
- #include "dbustabletinterface.h"
Copied: kcm-wacomtablet/repos/community-x86_64/add_missing_includes.diff (from rev 515167, kcm-wacomtablet/trunk/add_missing_includes.diff)
===================================================================
--- add_missing_includes.diff (rev 0)
+++ add_missing_includes.diff 2019-10-11 20:10:07 UTC (rev 515168)
@@ -0,0 +1,11 @@
+diff -rup wacomtablet-3.1.0/src/kcmodule/styluspagewidget.cpp wacomtablet-3.1.0.new/src/kcmodule/styluspagewidget.cpp
+--- wacomtablet-3.1.0/src/kcmodule/styluspagewidget.cpp 2018-06-22 15:07:58.000000000 +0200
++++ wacomtablet-3.1.0.new/src/kcmodule/styluspagewidget.cpp 2018-07-10 17:38:09.239242847 +0200
+@@ -25,6 +25,7 @@
+ #include "profilemanagement.h"
+
+ // common includes
++#include "logging.h"
+ #include "property.h"
+ #include "deviceprofile.h"
+ #include "dbustabletinterface.h"
More information about the arch-commits
mailing list