[arch-commits] Commit in deepin-qt-dbus-factory/repos (3 files)
Felix Yan
felixonmars at archlinux.org
Thu Jan 25 20:32:22 UTC 2018
Date: Thursday, January 25, 2018 @ 20:32:15
Author: felixonmars
Revision: 286890
archrelease: copy trunk to community-testing-x86_64
Added:
deepin-qt-dbus-factory/repos/community-testing-x86_64/
deepin-qt-dbus-factory/repos/community-testing-x86_64/PKGBUILD
(from rev 286889, deepin-qt-dbus-factory/trunk/PKGBUILD)
deepin-qt-dbus-factory/repos/community-testing-x86_64/rename-xmousearea.patch
(from rev 286889, deepin-qt-dbus-factory/trunk/rename-xmousearea.patch)
-------------------------+
PKGBUILD | 34 ++++++++++
rename-xmousearea.patch | 149 ++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 183 insertions(+)
Copied: deepin-qt-dbus-factory/repos/community-testing-x86_64/PKGBUILD (from rev 286889, deepin-qt-dbus-factory/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2018-01-25 20:32:15 UTC (rev 286890)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Josip Ponjavic <josipponjavic at gmail dot com>
+# Contributor: Xu Fasheng <fasheng.xu[AT]gmail.com>
+
+pkgname=deepin-qt-dbus-factory
+pkgver=0.4.2
+pkgrel=2
+pkgdesc='A repository stores auto-generated Qt5 dbus code'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/dde-qt-dbus-factory"
+license=('GPL3')
+depends=('qt5-base')
+makedepends=('python')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-qt-dbus-factory/archive/$pkgver.tar.gz"
+ rename-xmousearea.patch)
+sha512sums=('bd1ebf8e41bfc20afdc6defef3929cd5fa4d972346928899dedaa9f5105dbd8f28d37191cf083ef95e279364e3ef0e384f633d75f3a0e3119aebd2bd244feffe'
+ '635eacdb4b7db70eb4b310047a7aa4e06391f054f63368234e066bbb4dee897709e12c954610ed59ea84b0acdd65cd521cede74389c48fa171b0e0bdfd9aabca')
+
+prepare() {
+ cd dde-qt-dbus-factory-$pkgver
+ patch -p1 -i ../rename-xmousearea.patch
+}
+
+build() {
+ cd dde-qt-dbus-factory-$pkgver
+ qmake-qt5 PREFIX=/usr
+ make
+}
+
+package() {
+ cd dde-qt-dbus-factory-$pkgver
+ make INSTALL_ROOT="$pkgdir" install
+}
Copied: deepin-qt-dbus-factory/repos/community-testing-x86_64/rename-xmousearea.patch (from rev 286889, deepin-qt-dbus-factory/trunk/rename-xmousearea.patch)
===================================================================
--- community-testing-x86_64/rename-xmousearea.patch (rev 0)
+++ community-testing-x86_64/rename-xmousearea.patch 2018-01-25 20:32:15 UTC (rev 286890)
@@ -0,0 +1,149 @@
+From 36744c67e49a2a8de0a70e07f6e5aa80e77e7418 Mon Sep 17 00:00:00 2001
+From: kirigaya <kirigaya at mkacg.com>
+Date: Mon, 04 Dec 2017 18:12:29 +0800
+Subject: [PATCH] feat(rename): rename xmousearea to XEventMonitor
+
+Change-Id: I7065a77fe46ecf2b268fef71e990f8390b04e99d
+---
+
+diff --git a/xml/com.deepin.api.XEventMonitor.xml b/xml/com.deepin.api.XEventMonitor.xml
+new file mode 100644
+index 0000000..149a52b
+--- /dev/null
++++ b/xml/com.deepin.api.XEventMonitor.xml
+@@ -0,0 +1,63 @@
++<interface name="com.deepin.api.XEventMonitor">
++ <method name="RegisterArea">
++ <arg type="i" direction="in"/>
++ <arg type="i" direction="in"/>
++ <arg type="i" direction="in"/>
++ <arg type="i" direction="in"/>
++ <arg type="i" direction="in"/>
++ <arg type="s" direction="out"/>
++ </method>
++ <method name="RegisterAreas">
++ <arg type="a(iiii)" direction="in"/>
++ <arg type="i" direction="in"/>
++ <arg type="s" direction="out"/>
++ <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="AreaList"/>
++ </method>
++ <method name="RegisterFullScreen">
++ <arg type="s" direction="out"/>
++ </method>
++ <method name="UnregisterArea">
++ <arg type="s" direction="in"/>
++ <arg type="b" direction="out"/>
++ </method>
++ <signal name="CursorInto">
++ <arg type="i"/>
++ <arg type="i"/>
++ <arg type="s"/>
++ </signal>
++ <signal name="CursorOut">
++ <arg type="i"/>
++ <arg type="i"/>
++ <arg type="s"/>
++ </signal>
++ <signal name="CursorMove">
++ <arg type="i"/>
++ <arg type="i"/>
++ <arg type="s"/>
++ </signal>
++ <signal name="ButtonPress">
++ <arg type="i"/>
++ <arg type="i"/>
++ <arg type="i"/>
++ <arg type="s"/>
++ </signal>
++ <signal name="ButtonRelease">
++ <arg type="i"/>
++ <arg type="i"/>
++ <arg type="i"/>
++ <arg type="s"/>
++ </signal>
++ <signal name="KeyPress">
++ <arg type="s"/>
++ <arg type="i"/>
++ <arg type="i"/>
++ <arg type="s"/>
++ </signal>
++ <signal name="KeyRelease">
++ <arg type="s"/>
++ <arg type="i"/>
++ <arg type="i"/>
++ <arg type="s"/>
++ </signal>
++ <signal name="CancelAllArea"/>
++</interface>
+\ No newline at end of file
+diff --git a/xml/com.deepin.api.XMouseArea.xml b/xml/com.deepin.api.XMouseArea.xml
+deleted file mode 100644
+index 791795e..0000000
+--- a/xml/com.deepin.api.XMouseArea.xml
++++ /dev/null
+@@ -1,65 +0,0 @@
+- <interface name="com.deepin.api.XMouseArea">
+- <method name="RegisterArea">
+- <arg type="i" direction="in"></arg>
+- <arg type="i" direction="in"></arg>
+- <arg type="i" direction="in"></arg>
+- <arg type="i" direction="in"></arg>
+- <arg type="i" direction="in"></arg>
+- <arg type="s" direction="out"></arg>
+- </method>
+- <method name="RegisterAreas">
+- <arg type="a(iiii)" direction="in"></arg>
+- <arg type="i" direction="in"></arg>
+- <arg type="s" direction="out"></arg>
+- <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="AreaList"/>
+- </method>
+- <method name="RegisterFullScreen">
+- <arg type="s" direction="out"></arg>
+- </method>
+- <method name="UnregisterArea">
+- <arg type="s" direction="in"></arg>
+- </method>
+- <signal name="CursorInto">
+- <arg type="i"></arg>
+- <arg type="i"></arg>
+- <arg type="s"></arg>
+- </signal>
+- <signal name="CursorOut">
+- <arg type="i"></arg>
+- <arg type="i"></arg>
+- <arg type="s"></arg>
+- </signal>
+- <signal name="CursorMove">
+- <arg type="i"></arg>
+- <arg type="i"></arg>
+- <arg type="s"></arg>
+- </signal>
+- <signal name="ButtonPress">
+- <arg type="i"></arg>
+- <arg type="i"></arg>
+- <arg type="i"></arg>
+- <arg type="s"></arg>
+- </signal>
+- <signal name="ButtonRelease">
+- <arg type="i"></arg>
+- <arg type="i"></arg>
+- <arg type="i"></arg>
+- <arg type="s"></arg>
+- </signal>
+- <signal name="KeyPress">
+- <arg type="s"></arg>
+- <arg type="i"></arg>
+- <arg type="i"></arg>
+- <arg type="s"></arg>
+- </signal>
+- <signal name="KeyRelease">
+- <arg type="s"></arg>
+- <arg type="i"></arg>
+- <arg type="i"></arg>
+- <arg type="s"></arg>
+- </signal>
+- <signal name="CancelArea">
+- <arg type="s"></arg>
+- </signal>
+- <signal name="CancelAllArea"></signal>
+- </interface>
More information about the arch-commits
mailing list