[arch-commits] Commit in tasque/repos/community-any (7 files)
Balló György
bgyorgy at archlinux.org
Tue Jul 12 19:55:35 UTC 2016
Date: Tuesday, July 12, 2016 @ 19:55:35
Author: bgyorgy
Revision: 182719
archrelease: copy trunk to community-any
Added:
tasque/repos/community-any/PKGBUILD
(from rev 182718, tasque/trunk/PKGBUILD)
tasque/repos/community-any/dbus-sharp-2-porting.patch
(from rev 182718, tasque/trunk/dbus-sharp-2-porting.patch)
tasque/repos/community-any/use_dbussharp_2.patch
(from rev 182718, tasque/trunk/use_dbussharp_2.patch)
Deleted:
tasque/repos/community-any/PKGBUILD
tasque/repos/community-any/dbus-sharp-2-porting.patch
tasque/repos/community-any/tasque.install
tasque/repos/community-any/use_dbussharp_2.patch
----------------------------+
PKGBUILD | 75 +++++++++++++++++++++----------------------
dbus-sharp-2-porting.patch | 44 ++++++++++++-------------
tasque.install | 11 ------
use_dbussharp_2.patch | 64 ++++++++++++++++++------------------
4 files changed, 91 insertions(+), 103 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2016-07-12 19:55:31 UTC (rev 182718)
+++ PKGBUILD 2016-07-12 19:55:35 UTC (rev 182719)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Balló György <ballogyor+arch at gmail dot com>
-
-pkgname=tasque
-pkgver=0.1.12
-pkgrel=3
-pkgdesc="Easy quick task management app written in C Sharp"
-arch=('any')
-url="https://wiki.gnome.org/Apps/Tasque"
-license=('MIT')
-depends=('notify-sharp' 'sqlite' 'hicolor-icon-theme' 'xdg-utils')
-makedepends=('intltool')
-install=$pkgname.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
- dbus-sharp-2-porting.patch
- use_dbussharp_2.patch)
-sha256sums=('db4d4a822cfa87ce8cf311189e17fa8fbda37e7c943874b6bf62c6a84b2d824d'
- '9bcd0f2e854ade96203a44ca7e322d20e0a197057ea2c2271099720a211006b1'
- 'b75cdba593bcd28beef7e55212511f5ebedda38a25c210b16226d9db4b180ef6')
-
-prepare() {
- cd $pkgname-$pkgver
- patch -Np1 -i ../dbus-sharp-2-porting.patch
- patch -Np1 -i ../use_dbussharp_2.patch
-}
-build() {
- cd "$srcdir/$pkgname-$pkgver"
- autoreconf -fi
- ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
- --disable-static --disable-appindicator
- make
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
- make DESTDIR="$pkgdir" install
- install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
Copied: tasque/repos/community-any/PKGBUILD (from rev 182718, tasque/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2016-07-12 19:55:35 UTC (rev 182719)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+
+pkgname=tasque
+pkgver=0.1.12
+pkgrel=4
+pkgdesc="Easy quick task management app written in C Sharp"
+arch=('any')
+url="https://wiki.gnome.org/Apps/Tasque"
+license=('MIT')
+depends=('notify-sharp' 'sqlite')
+makedepends=('intltool')
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+ dbus-sharp-2-porting.patch
+ use_dbussharp_2.patch)
+sha256sums=('db4d4a822cfa87ce8cf311189e17fa8fbda37e7c943874b6bf62c6a84b2d824d'
+ '9bcd0f2e854ade96203a44ca7e322d20e0a197057ea2c2271099720a211006b1'
+ 'b75cdba593bcd28beef7e55212511f5ebedda38a25c210b16226d9db4b180ef6')
+
+prepare() {
+ cd $pkgname-$pkgver
+ patch -Np1 -i ../dbus-sharp-2-porting.patch
+ patch -Np1 -i ../use_dbussharp_2.patch
+ autoreconf -fi
+}
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+ --disable-appindicator
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+ install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
Deleted: dbus-sharp-2-porting.patch
===================================================================
--- dbus-sharp-2-porting.patch 2016-07-12 19:55:31 UTC (rev 182718)
+++ dbus-sharp-2-porting.patch 2016-07-12 19:55:35 UTC (rev 182719)
@@ -1,22 +0,0 @@
-Description: Port to dbus#2 API
-Forwarded: not-needed
-
---- tasque-0.1.12.orig/src/Gtk.Tasque/RemoteControlProxy.cs
-+++ tasque-0.1.12/src/Gtk.Tasque/RemoteControlProxy.cs
-@@ -22,8 +22,7 @@ namespace Tasque
- BusG.Init ();
-
- RemoteControl remote_control = new RemoteControl ();
-- Bus.Session.Register (Namespace,
-- new ObjectPath (Path),
-+ Bus.Session.Register (new ObjectPath (Path),
- remote_control);
-
- if (Bus.Session.RequestName (Namespace)
-@@ -33,4 +32,4 @@ namespace Tasque
- return remote_control;
- }
- }
--}
-\ No newline at end of file
-+}
Copied: tasque/repos/community-any/dbus-sharp-2-porting.patch (from rev 182718, tasque/trunk/dbus-sharp-2-porting.patch)
===================================================================
--- dbus-sharp-2-porting.patch (rev 0)
+++ dbus-sharp-2-porting.patch 2016-07-12 19:55:35 UTC (rev 182719)
@@ -0,0 +1,22 @@
+Description: Port to dbus#2 API
+Forwarded: not-needed
+
+--- tasque-0.1.12.orig/src/Gtk.Tasque/RemoteControlProxy.cs
++++ tasque-0.1.12/src/Gtk.Tasque/RemoteControlProxy.cs
+@@ -22,8 +22,7 @@ namespace Tasque
+ BusG.Init ();
+
+ RemoteControl remote_control = new RemoteControl ();
+- Bus.Session.Register (Namespace,
+- new ObjectPath (Path),
++ Bus.Session.Register (new ObjectPath (Path),
+ remote_control);
+
+ if (Bus.Session.RequestName (Namespace)
+@@ -33,4 +32,4 @@ namespace Tasque
+ return remote_control;
+ }
+ }
+-}
+\ No newline at end of file
++}
Deleted: tasque.install
===================================================================
--- tasque.install 2016-07-12 19:55:31 UTC (rev 182718)
+++ tasque.install 2016-07-12 19:55:35 UTC (rev 182719)
@@ -1,11 +0,0 @@
-post_install() {
- xdg-icon-resource forceupdate
-}
-
-post_upgrade() {
- post_install $1
-}
-
-post_remove() {
- post_install $1
-}
Deleted: use_dbussharp_2.patch
===================================================================
--- use_dbussharp_2.patch 2016-07-12 19:55:31 UTC (rev 182718)
+++ use_dbussharp_2.patch 2016-07-12 19:55:35 UTC (rev 182719)
@@ -1,32 +0,0 @@
-Index: tasque/configure.ac
-===================================================================
---- tasque.orig/configure.ac 2013-11-29 00:41:30.025341888 +0000
-+++ tasque/configure.ac 2013-11-29 00:41:30.021341888 +0000
-@@ -65,8 +65,8 @@
- PKG_CHECK_MODULES([GTK_SHARP_20], [gtk-sharp-2.0 >= 2.10.0])
- PKG_CHECK_MODULES([GTK_SHARP_2_12], gtk-sharp-2.0 >= 2.12.0, GTK_2_12="yes", GTK_2_12="no")
- AM_CONDITIONAL(GTK_2_12, test "$GTK_2_12" = "yes")
--PKG_CHECK_MODULES([DBUS_SHARP_10], [dbus-sharp-1.0])
--PKG_CHECK_MODULES([DBUS_SHARP_GLIB_10], [dbus-sharp-glib-1.0])
-+PKG_CHECK_MODULES([DBUS_SHARP_10], [dbus-sharp-2.0])
-+PKG_CHECK_MODULES([DBUS_SHARP_GLIB_10], [dbus-sharp-glib-2.0])
-
- #
- # Allow the project to build without notify-sharp
-Index: tasque/src/Gtk.Tasque/Gtk.Tasque.csproj
-===================================================================
---- tasque.orig/src/Gtk.Tasque/Gtk.Tasque.csproj 2013-11-29 00:33:43.000000000 +0000
-+++ tasque/src/Gtk.Tasque/Gtk.Tasque.csproj 2013-11-29 00:41:53.765341045 +0000
-@@ -63,10 +63,10 @@
- <Reference Include="notify-sharp, Version=0.4.0.0, Culture=neutral, PublicKeyToken=2df29c54e245917a">
- <Private>False</Private>
- </Reference>
-- <Reference Include="dbus-sharp, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5675b0c3093115b5">
-+ <Reference Include="dbus-sharp, Version=2.0.0.0, Culture=neutral, PublicKeyToken=5675b0c3093115b5">
- <Private>False</Private>
- </Reference>
-- <Reference Include="dbus-sharp-glib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5675b0c3093115b5">
-+ <Reference Include="dbus-sharp-glib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=5675b0c3093115b5">
- <Private>False</Private>
- </Reference>
- </ItemGroup>
Copied: tasque/repos/community-any/use_dbussharp_2.patch (from rev 182718, tasque/trunk/use_dbussharp_2.patch)
===================================================================
--- use_dbussharp_2.patch (rev 0)
+++ use_dbussharp_2.patch 2016-07-12 19:55:35 UTC (rev 182719)
@@ -0,0 +1,32 @@
+Index: tasque/configure.ac
+===================================================================
+--- tasque.orig/configure.ac 2013-11-29 00:41:30.025341888 +0000
++++ tasque/configure.ac 2013-11-29 00:41:30.021341888 +0000
+@@ -65,8 +65,8 @@
+ PKG_CHECK_MODULES([GTK_SHARP_20], [gtk-sharp-2.0 >= 2.10.0])
+ PKG_CHECK_MODULES([GTK_SHARP_2_12], gtk-sharp-2.0 >= 2.12.0, GTK_2_12="yes", GTK_2_12="no")
+ AM_CONDITIONAL(GTK_2_12, test "$GTK_2_12" = "yes")
+-PKG_CHECK_MODULES([DBUS_SHARP_10], [dbus-sharp-1.0])
+-PKG_CHECK_MODULES([DBUS_SHARP_GLIB_10], [dbus-sharp-glib-1.0])
++PKG_CHECK_MODULES([DBUS_SHARP_10], [dbus-sharp-2.0])
++PKG_CHECK_MODULES([DBUS_SHARP_GLIB_10], [dbus-sharp-glib-2.0])
+
+ #
+ # Allow the project to build without notify-sharp
+Index: tasque/src/Gtk.Tasque/Gtk.Tasque.csproj
+===================================================================
+--- tasque.orig/src/Gtk.Tasque/Gtk.Tasque.csproj 2013-11-29 00:33:43.000000000 +0000
++++ tasque/src/Gtk.Tasque/Gtk.Tasque.csproj 2013-11-29 00:41:53.765341045 +0000
+@@ -63,10 +63,10 @@
+ <Reference Include="notify-sharp, Version=0.4.0.0, Culture=neutral, PublicKeyToken=2df29c54e245917a">
+ <Private>False</Private>
+ </Reference>
+- <Reference Include="dbus-sharp, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5675b0c3093115b5">
++ <Reference Include="dbus-sharp, Version=2.0.0.0, Culture=neutral, PublicKeyToken=5675b0c3093115b5">
+ <Private>False</Private>
+ </Reference>
+- <Reference Include="dbus-sharp-glib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5675b0c3093115b5">
++ <Reference Include="dbus-sharp-glib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=5675b0c3093115b5">
+ <Private>False</Private>
+ </Reference>
+ </ItemGroup>
More information about the arch-commits
mailing list