[arch-commits] Commit in tasque/repos/community-any (7 files)
Balló György
bgyorgy at archlinux.org
Fri Dec 28 17:41:17 UTC 2018
Date: Friday, December 28, 2018 @ 17:41:17
Author: bgyorgy
Revision: 418706
archrelease: copy trunk to community-any
Added:
tasque/repos/community-any/PKGBUILD
(from rev 418705, tasque/trunk/PKGBUILD)
tasque/repos/community-any/dbus-sharp-2-porting.patch
(from rev 418705, tasque/trunk/dbus-sharp-2-porting.patch)
tasque/repos/community-any/tasque.appdata.xml
(from rev 418705, tasque/trunk/tasque.appdata.xml)
tasque/repos/community-any/use_dbussharp_2.patch
(from rev 418705, 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/use_dbussharp_2.patch
----------------------------+
PKGBUILD | 76 ++++++++++++++++++++++---------------------
dbus-sharp-2-porting.patch | 44 ++++++++++++------------
tasque.appdata.xml | 21 +++++++++++
use_dbussharp_2.patch | 64 ++++++++++++++++++------------------
4 files changed, 115 insertions(+), 90 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2018-12-28 17:41:12 UTC (rev 418705)
+++ PKGBUILD 2018-12-28 17:41:17 UTC (rev 418706)
@@ -1,36 +0,0 @@
-# Maintainer: Balló György <ballogyor+arch at gmail dot com>
-
-pkgname=tasque
-pkgver=0.1.12
-pkgrel=5
-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"
-}
Copied: tasque/repos/community-any/PKGBUILD (from rev 418705, tasque/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2018-12-28 17:41:17 UTC (rev 418706)
@@ -0,0 +1,40 @@
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+
+pkgname=tasque
+pkgver=0.1.12
+pkgrel=6
+pkgdesc="Easy quick task management app written in C Sharp"
+arch=('any')
+url="https://wiki.gnome.org/Attic/Tasque"
+license=('MIT')
+depends=('notify-sharp' 'sqlite')
+makedepends=('intltool')
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+ tasque.appdata.xml
+ dbus-sharp-2-porting.patch
+ use_dbussharp_2.patch)
+sha256sums=('db4d4a822cfa87ce8cf311189e17fa8fbda37e7c943874b6bf62c6a84b2d824d'
+ 'f5d76db752d95eedde81857cfa9a46caa21e9d7528f8992e0b3d9a992a8ca624'
+ '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"
+ install -Dm644 ../tasque.appdata.xml "$pkgdir/usr/share/metainfo/tasque.appdata.xml"
+ rm -r "$pkgdir/usr/share/pixmaps/"
+}
Deleted: dbus-sharp-2-porting.patch
===================================================================
--- dbus-sharp-2-porting.patch 2018-12-28 17:41:12 UTC (rev 418705)
+++ dbus-sharp-2-porting.patch 2018-12-28 17:41:17 UTC (rev 418706)
@@ -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 418705, tasque/trunk/dbus-sharp-2-porting.patch)
===================================================================
--- dbus-sharp-2-porting.patch (rev 0)
+++ dbus-sharp-2-porting.patch 2018-12-28 17:41:17 UTC (rev 418706)
@@ -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
++}
Copied: tasque/repos/community-any/tasque.appdata.xml (from rev 418705, tasque/trunk/tasque.appdata.xml)
===================================================================
--- tasque.appdata.xml (rev 0)
+++ tasque.appdata.xml 2018-12-28 17:41:17 UTC (rev 418706)
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<component type="desktop-application">
+ <id>org.gnome.tasque</id>
+ <launchable type="desktop-id">tasque.desktop</launchable>
+ <name>Tasque</name>
+ <summary>Easy quick task management</summary>
+ <metadata_license>CC0-1.0</metadata_license>
+ <project_license>MIT</project_license>
+ <description>
+ <p>Tasque is a simple task management app (TODO list). It supports syncing with the on-line service Remember the Milk or simply storing your tasks locally.</p>
+ </description>
+ <screenshots>
+ <screenshot type="default">
+ <image>https://people.gnome.org/~sharm/tasque-0.1.8.png</image>
+ </screenshot>
+ </screenshots>
+ <url type="bugtracker">https://gitlab.gnome.org/Archive/tasque/issues</url>
+ <url type="homepage">https://wiki.gnome.org/Attic/Tasque</url>
+ <update_contact>tasque-list at gnome.org</update_contact>
+ <translation type="gettext">tasque</translation>
+</component>
Deleted: use_dbussharp_2.patch
===================================================================
--- use_dbussharp_2.patch 2018-12-28 17:41:12 UTC (rev 418705)
+++ use_dbussharp_2.patch 2018-12-28 17:41:17 UTC (rev 418706)
@@ -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 418705, tasque/trunk/use_dbussharp_2.patch)
===================================================================
--- use_dbussharp_2.patch (rev 0)
+++ use_dbussharp_2.patch 2018-12-28 17:41:17 UTC (rev 418706)
@@ -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