[arch-commits] Commit in gnome-do/repos (10 files)
Jan de Groot
jgc at archlinux.org
Thu Feb 26 12:25:05 UTC 2015
Date: Thursday, February 26, 2015 @ 13:25:05
Author: jgc
Revision: 128252
archrelease: copy trunk to community-staging-i686, community-staging-x86_64
Added:
gnome-do/repos/community-staging-i686/
gnome-do/repos/community-staging-i686/03_dbus_sharp_2.diff
(from rev 128251, gnome-do/trunk/03_dbus_sharp_2.diff)
gnome-do/repos/community-staging-i686/PKGBUILD
(from rev 128251, gnome-do/trunk/PKGBUILD)
gnome-do/repos/community-staging-i686/fix-build.patch
(from rev 128251, gnome-do/trunk/fix-build.patch)
gnome-do/repos/community-staging-i686/gnome-do.install
(from rev 128251, gnome-do/trunk/gnome-do.install)
gnome-do/repos/community-staging-x86_64/
gnome-do/repos/community-staging-x86_64/03_dbus_sharp_2.diff
(from rev 128251, gnome-do/trunk/03_dbus_sharp_2.diff)
gnome-do/repos/community-staging-x86_64/PKGBUILD
(from rev 128251, gnome-do/trunk/PKGBUILD)
gnome-do/repos/community-staging-x86_64/fix-build.patch
(from rev 128251, gnome-do/trunk/fix-build.patch)
gnome-do/repos/community-staging-x86_64/gnome-do.install
(from rev 128251, gnome-do/trunk/gnome-do.install)
-----------------------------------------------+
community-staging-i686/03_dbus_sharp_2.diff | 13 ++++++
community-staging-i686/PKGBUILD | 45 ++++++++++++++++++++++++
community-staging-i686/fix-build.patch | 12 ++++++
community-staging-i686/gnome-do.install | 22 +++++++++++
community-staging-x86_64/03_dbus_sharp_2.diff | 13 ++++++
community-staging-x86_64/PKGBUILD | 45 ++++++++++++++++++++++++
community-staging-x86_64/fix-build.patch | 12 ++++++
community-staging-x86_64/gnome-do.install | 22 +++++++++++
8 files changed, 184 insertions(+)
Copied: gnome-do/repos/community-staging-i686/03_dbus_sharp_2.diff (from rev 128251, gnome-do/trunk/03_dbus_sharp_2.diff)
===================================================================
--- community-staging-i686/03_dbus_sharp_2.diff (rev 0)
+++ community-staging-i686/03_dbus_sharp_2.diff 2015-02-26 12:25:05 UTC (rev 128252)
@@ -0,0 +1,13 @@
+--- a/configure.ac
++++ b/configure.ac
+@@ -97,8 +97,8 @@
+ AC_SUBST([GKEYFILE_SHARP_LIBS])
+
+ dnl -- Use D-Bus# where available.
+-PKG_CHECK_MODULES([DBUS_SHARP], [dbus-sharp-1.0], HAVE_DBUS_SHARP=yes, HAVE_DBUS_SHARP=no)
+-PKG_CHECK_MODULES([DBUS_SHARP_GLIB], [dbus-sharp-glib-1.0], HAVE_DBUS_SHARP_GLIB=yes, HAVE_DBUS_SHARP_GLIB=no)
++PKG_CHECK_MODULES([DBUS_SHARP], [dbus-sharp-2.0], HAVE_DBUS_SHARP=yes, HAVE_DBUS_SHARP=no)
++PKG_CHECK_MODULES([DBUS_SHARP_GLIB], [dbus-sharp-glib-2.0], HAVE_DBUS_SHARP_GLIB=yes, HAVE_DBUS_SHARP_GLIB=no)
+
+ if test "x$HAVE_DBUS_SHARP" = "xyes" ; then
+ DBUS_BUILD_DEFINES=-define:USE_DBUS_SHARP
Copied: gnome-do/repos/community-staging-i686/PKGBUILD (from rev 128251, gnome-do/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-02-26 12:25:05 UTC (rev 128252)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+# Contributor: Allan McRae <allan at archlinux.org>
+# Contributor: Doehni <dohny at gmx.de>
+
+pkgname=gnome-do
+pkgver=0.95.3
+pkgrel=2
+pkgdesc="Quickly search for many items present on your desktop or the web, and perform useful actions on those items"
+arch=('i686' 'x86_64')
+url="http://do.cooperteam.net/"
+license=('GPL3')
+depends=('gconf-sharp' 'gnome-desktop2' 'gnome-keyring-sharp' 'mono-addins' 'notify-sharp' 'gkeyfile-sharp')
+makedepends=('intltool' 'gio-sharp')
+install=$pkgname.install
+source=(http://launchpad.net/do/trunk/$pkgver/+download/$pkgname-$pkgver.tar.gz
+ 03_dbus_sharp_2.diff
+ fix-build.patch)
+md5sums=('698ff640c8b54565725e9f836384c894'
+ '4629501823d94099fbb9d613913839a6'
+ '4ac79a8270bc6c1539f56b8f56043894')
+
+prepare() {
+ cd $pkgname-$pkgver
+
+ # Fix build
+ patch -Np1 -i ../fix-build.patch
+
+ # Use dbus-sharp-2
+ patch -Np1 -i ../03_dbus_sharp_2.diff
+}
+
+build() {
+ cd $pkgname-$pkgver
+ autoreconf -fi
+ ./configure --prefix=/usr --sysconfdir=/etc \
+ --disable-schemas-install \
+ --with-gconf-schema-file-dir=/usr/share/gconf/schemas
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+}
Copied: gnome-do/repos/community-staging-i686/fix-build.patch (from rev 128251, gnome-do/trunk/fix-build.patch)
===================================================================
--- community-staging-i686/fix-build.patch (rev 0)
+++ community-staging-i686/fix-build.patch 2015-02-26 12:25:05 UTC (rev 128252)
@@ -0,0 +1,12 @@
+diff -Naur gnome-do-0.95.1.orig/Do/src/Do.UI/PluginNodeView.cs gnome-do-0.95.1/Do/src/Do.UI/PluginNodeView.cs
+--- gnome-do-0.95.1.orig/Do/src/Do.UI/PluginNodeView.cs 2014-10-06 02:04:38.165823000 +0200
++++ gnome-do-0.95.1/Do/src/Do.UI/PluginNodeView.cs 2014-10-06 02:04:59.252989251 +0200
+@@ -94,7 +94,7 @@
+
+ cell = new CellRendererPixbuf ();
+ cell.SetFixedSize (IconSize + IconPadding, IconSize + IconPadding);
+- AppendColumn ("Icon", cell, IconDataFunc as TreeCellDataFunc);
++ AppendColumn ("Icon", cell, IconDataFunc);
+
+ cell = new Gtk.CellRendererText ();
+ (cell as CellRendererText).WrapWidth = WrapWidth;
Copied: gnome-do/repos/community-staging-i686/gnome-do.install (from rev 128251, gnome-do/trunk/gnome-do.install)
===================================================================
--- community-staging-i686/gnome-do.install (rev 0)
+++ community-staging-i686/gnome-do.install 2015-02-26 12:25:05 UTC (rev 128252)
@@ -0,0 +1,22 @@
+pkgname=gnome-do
+
+post_install() {
+ gconfpkg --install $pkgname
+ gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+ pre_remove $1
+}
+
+post_upgrade() {
+ post_install $1
+}
+
+pre_remove() {
+ gconfpkg --uninstall $pkgname
+}
+
+post_remove() {
+ gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
Copied: gnome-do/repos/community-staging-x86_64/03_dbus_sharp_2.diff (from rev 128251, gnome-do/trunk/03_dbus_sharp_2.diff)
===================================================================
--- community-staging-x86_64/03_dbus_sharp_2.diff (rev 0)
+++ community-staging-x86_64/03_dbus_sharp_2.diff 2015-02-26 12:25:05 UTC (rev 128252)
@@ -0,0 +1,13 @@
+--- a/configure.ac
++++ b/configure.ac
+@@ -97,8 +97,8 @@
+ AC_SUBST([GKEYFILE_SHARP_LIBS])
+
+ dnl -- Use D-Bus# where available.
+-PKG_CHECK_MODULES([DBUS_SHARP], [dbus-sharp-1.0], HAVE_DBUS_SHARP=yes, HAVE_DBUS_SHARP=no)
+-PKG_CHECK_MODULES([DBUS_SHARP_GLIB], [dbus-sharp-glib-1.0], HAVE_DBUS_SHARP_GLIB=yes, HAVE_DBUS_SHARP_GLIB=no)
++PKG_CHECK_MODULES([DBUS_SHARP], [dbus-sharp-2.0], HAVE_DBUS_SHARP=yes, HAVE_DBUS_SHARP=no)
++PKG_CHECK_MODULES([DBUS_SHARP_GLIB], [dbus-sharp-glib-2.0], HAVE_DBUS_SHARP_GLIB=yes, HAVE_DBUS_SHARP_GLIB=no)
+
+ if test "x$HAVE_DBUS_SHARP" = "xyes" ; then
+ DBUS_BUILD_DEFINES=-define:USE_DBUS_SHARP
Copied: gnome-do/repos/community-staging-x86_64/PKGBUILD (from rev 128251, gnome-do/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2015-02-26 12:25:05 UTC (rev 128252)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+# Contributor: Allan McRae <allan at archlinux.org>
+# Contributor: Doehni <dohny at gmx.de>
+
+pkgname=gnome-do
+pkgver=0.95.3
+pkgrel=2
+pkgdesc="Quickly search for many items present on your desktop or the web, and perform useful actions on those items"
+arch=('i686' 'x86_64')
+url="http://do.cooperteam.net/"
+license=('GPL3')
+depends=('gconf-sharp' 'gnome-desktop2' 'gnome-keyring-sharp' 'mono-addins' 'notify-sharp' 'gkeyfile-sharp')
+makedepends=('intltool' 'gio-sharp')
+install=$pkgname.install
+source=(http://launchpad.net/do/trunk/$pkgver/+download/$pkgname-$pkgver.tar.gz
+ 03_dbus_sharp_2.diff
+ fix-build.patch)
+md5sums=('698ff640c8b54565725e9f836384c894'
+ '4629501823d94099fbb9d613913839a6'
+ '4ac79a8270bc6c1539f56b8f56043894')
+
+prepare() {
+ cd $pkgname-$pkgver
+
+ # Fix build
+ patch -Np1 -i ../fix-build.patch
+
+ # Use dbus-sharp-2
+ patch -Np1 -i ../03_dbus_sharp_2.diff
+}
+
+build() {
+ cd $pkgname-$pkgver
+ autoreconf -fi
+ ./configure --prefix=/usr --sysconfdir=/etc \
+ --disable-schemas-install \
+ --with-gconf-schema-file-dir=/usr/share/gconf/schemas
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+}
Copied: gnome-do/repos/community-staging-x86_64/fix-build.patch (from rev 128251, gnome-do/trunk/fix-build.patch)
===================================================================
--- community-staging-x86_64/fix-build.patch (rev 0)
+++ community-staging-x86_64/fix-build.patch 2015-02-26 12:25:05 UTC (rev 128252)
@@ -0,0 +1,12 @@
+diff -Naur gnome-do-0.95.1.orig/Do/src/Do.UI/PluginNodeView.cs gnome-do-0.95.1/Do/src/Do.UI/PluginNodeView.cs
+--- gnome-do-0.95.1.orig/Do/src/Do.UI/PluginNodeView.cs 2014-10-06 02:04:38.165823000 +0200
++++ gnome-do-0.95.1/Do/src/Do.UI/PluginNodeView.cs 2014-10-06 02:04:59.252989251 +0200
+@@ -94,7 +94,7 @@
+
+ cell = new CellRendererPixbuf ();
+ cell.SetFixedSize (IconSize + IconPadding, IconSize + IconPadding);
+- AppendColumn ("Icon", cell, IconDataFunc as TreeCellDataFunc);
++ AppendColumn ("Icon", cell, IconDataFunc);
+
+ cell = new Gtk.CellRendererText ();
+ (cell as CellRendererText).WrapWidth = WrapWidth;
Copied: gnome-do/repos/community-staging-x86_64/gnome-do.install (from rev 128251, gnome-do/trunk/gnome-do.install)
===================================================================
--- community-staging-x86_64/gnome-do.install (rev 0)
+++ community-staging-x86_64/gnome-do.install 2015-02-26 12:25:05 UTC (rev 128252)
@@ -0,0 +1,22 @@
+pkgname=gnome-do
+
+post_install() {
+ gconfpkg --install $pkgname
+ gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+ pre_remove $1
+}
+
+post_upgrade() {
+ post_install $1
+}
+
+pre_remove() {
+ gconfpkg --uninstall $pkgname
+}
+
+post_remove() {
+ gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
More information about the arch-commits
mailing list