Date: Monday, February 6, 2012 @ 11:38:59 Author: foutrelis Revision: 149260
archrelease: copy trunk to extra-i686, extra-x86_64 Added: xfce4-timer-plugin/repos/extra-i686/PKGBUILD (from rev 149259, xfce4-timer-plugin/trunk/PKGBUILD) xfce4-timer-plugin/repos/extra-i686/panel48.patch (from rev 149259, xfce4-timer-plugin/trunk/panel48.patch) xfce4-timer-plugin/repos/extra-x86_64/PKGBUILD (from rev 149259, xfce4-timer-plugin/trunk/PKGBUILD) xfce4-timer-plugin/repos/extra-x86_64/panel48.patch (from rev 149259, xfce4-timer-plugin/trunk/panel48.patch) Deleted: xfce4-timer-plugin/repos/extra-i686/PKGBUILD xfce4-timer-plugin/repos/extra-i686/panel48.patch xfce4-timer-plugin/repos/extra-x86_64/PKGBUILD xfce4-timer-plugin/repos/extra-x86_64/panel48.patch ----------------------------+ extra-i686/PKGBUILD | 74 ++++++++++++++++++++-------------------- extra-i686/panel48.patch | 78 +++++++++++++++++++++---------------------- extra-x86_64/PKGBUILD | 74 ++++++++++++++++++++-------------------- extra-x86_64/panel48.patch | 78 +++++++++++++++++++++---------------------- 4 files changed, 152 insertions(+), 152 deletions(-) Deleted: extra-i686/PKGBUILD =================================================================== --- extra-i686/PKGBUILD 2012-02-06 16:38:40 UTC (rev 149259) +++ extra-i686/PKGBUILD 2012-02-06 16:38:59 UTC (rev 149260) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: AndyRTR <andy...@archlinux.org> -# Contributor: Tobias Kieslich <tobias (at) archlinux.org> - -pkgname=xfce4-timer-plugin -pkgver=0.6.1 -pkgrel=1 -pkgdesc="plugin to track time for the Xfce4 panel" -arch=(i686 x86_64) -license=('GPL2') -url="http://goodies.xfce.org/projects/panel-plugins/xfce4-timer-plugin" -groups=('xfce4-goodies') -depends=('xfce4-panel' 'libxfcegui4') -makedepends=('intltool') -options=('!libtool') -source=(http://archive.xfce.org/src/panel-plugins/${pkgname}/0.6/${pkgname}-${pkgver}.tar.bz2 - panel48.patch) -md5sums=('ba5ae0e25f69517338f74a27fbaf4ca2' - 'fc9444aa98d7ef9c61d97dbd9f47e082') - -build() { - cd ${srcdir}/${pkgname}-${pkgver} - # patch from git master - patch -Np1 -i ${srcdir}/panel48.patch - ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --libexecdir=/usr/lib/ \ - --localstatedir=/var \ - --disable-static \ - --disable-debug - make -} - -package() { - cd ${srcdir}/${pkgname}-${pkgver} - make DESTDIR=${pkgdir} install -} Copied: xfce4-timer-plugin/repos/extra-i686/PKGBUILD (from rev 149259, xfce4-timer-plugin/trunk/PKGBUILD) =================================================================== --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2012-02-06 16:38:59 UTC (rev 149260) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: AndyRTR <andy...@archlinux.org> +# Contributor: Tobias Kieslich <tobias (at) archlinux.org> + +pkgname=xfce4-timer-plugin +pkgver=0.6.1 +pkgrel=2 +pkgdesc="plugin to track time for the Xfce4 panel" +arch=(i686 x86_64) +license=('GPL2') +url="http://goodies.xfce.org/projects/panel-plugins/xfce4-timer-plugin" +groups=('xfce4-goodies') +depends=('xfce4-panel' 'libxfcegui4') +makedepends=('intltool') +options=('!libtool') +source=(http://archive.xfce.org/src/panel-plugins/${pkgname}/0.6/${pkgname}-${pkgver}.tar.bz2 + panel48.patch) +md5sums=('ba5ae0e25f69517338f74a27fbaf4ca2' + 'fc9444aa98d7ef9c61d97dbd9f47e082') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + # patch from git master + patch -Np1 -i ${srcdir}/panel48.patch + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib/ \ + --localstatedir=/var \ + --disable-static \ + --disable-debug + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install +} Deleted: extra-i686/panel48.patch =================================================================== --- extra-i686/panel48.patch 2012-02-06 16:38:40 UTC (rev 149259) +++ extra-i686/panel48.patch 2012-02-06 16:38:59 UTC (rev 149260) @@ -1,39 +0,0 @@ -From 03ff202f818fe3f075a6c864ab688b57b1bb1cb4 Mon Sep 17 00:00:00 2001 -From: Nick Schermer <n...@xfce.org> -Date: Thu, 27 Jan 2011 21:18:45 +0000 -Subject: Fix segfault when creating plugin in 4.8 panel. - -Used invalid function type to construct the plugin. ---- -diff --git a/src/xfcetimer.c b/src/xfcetimer.c -index c27d37a..de7bd2b 100644 ---- a/src/xfcetimer.c -+++ b/src/xfcetimer.c -@@ -42,7 +42,7 @@ - - #include "xfcetimer.h" - --static gboolean create_plugin_control (XfcePanelPlugin *plugin); -+static void create_plugin_control (XfcePanelPlugin *plugin); - XFCE_PANEL_PLUGIN_REGISTER_EXTERNAL(create_plugin_control); - - void make_menu(plugin_data *pd); -@@ -1366,7 +1366,7 @@ static void plugin_create_options (XfcePanelPlugin *plugin,plugin_data *pd) { - * - * Returns %TRUE on success, %FALSE on failure. - **/ --static gboolean -+static void - create_plugin_control (XfcePanelPlugin *plugin) - { - -@@ -1461,7 +1461,6 @@ create_plugin_control (XfcePanelPlugin *plugin) - xfce_panel_plugin_menu_show_configure (plugin); - g_signal_connect (plugin, "configure-plugin", - G_CALLBACK (plugin_create_options), pd); -- return(TRUE); - } - - --- -cgit v0.8.3.4 Copied: xfce4-timer-plugin/repos/extra-i686/panel48.patch (from rev 149259, xfce4-timer-plugin/trunk/panel48.patch) =================================================================== --- extra-i686/panel48.patch (rev 0) +++ extra-i686/panel48.patch 2012-02-06 16:38:59 UTC (rev 149260) @@ -0,0 +1,39 @@ +From 03ff202f818fe3f075a6c864ab688b57b1bb1cb4 Mon Sep 17 00:00:00 2001 +From: Nick Schermer <n...@xfce.org> +Date: Thu, 27 Jan 2011 21:18:45 +0000 +Subject: Fix segfault when creating plugin in 4.8 panel. + +Used invalid function type to construct the plugin. +--- +diff --git a/src/xfcetimer.c b/src/xfcetimer.c +index c27d37a..de7bd2b 100644 +--- a/src/xfcetimer.c ++++ b/src/xfcetimer.c +@@ -42,7 +42,7 @@ + + #include "xfcetimer.h" + +-static gboolean create_plugin_control (XfcePanelPlugin *plugin); ++static void create_plugin_control (XfcePanelPlugin *plugin); + XFCE_PANEL_PLUGIN_REGISTER_EXTERNAL(create_plugin_control); + + void make_menu(plugin_data *pd); +@@ -1366,7 +1366,7 @@ static void plugin_create_options (XfcePanelPlugin *plugin,plugin_data *pd) { + * + * Returns %TRUE on success, %FALSE on failure. + **/ +-static gboolean ++static void + create_plugin_control (XfcePanelPlugin *plugin) + { + +@@ -1461,7 +1461,6 @@ create_plugin_control (XfcePanelPlugin *plugin) + xfce_panel_plugin_menu_show_configure (plugin); + g_signal_connect (plugin, "configure-plugin", + G_CALLBACK (plugin_create_options), pd); +- return(TRUE); + } + + +-- +cgit v0.8.3.4 Deleted: extra-x86_64/PKGBUILD =================================================================== --- extra-x86_64/PKGBUILD 2012-02-06 16:38:40 UTC (rev 149259) +++ extra-x86_64/PKGBUILD 2012-02-06 16:38:59 UTC (rev 149260) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: AndyRTR <andy...@archlinux.org> -# Contributor: Tobias Kieslich <tobias (at) archlinux.org> - -pkgname=xfce4-timer-plugin -pkgver=0.6.1 -pkgrel=1 -pkgdesc="plugin to track time for the Xfce4 panel" -arch=(i686 x86_64) -license=('GPL2') -url="http://goodies.xfce.org/projects/panel-plugins/xfce4-timer-plugin" -groups=('xfce4-goodies') -depends=('xfce4-panel' 'libxfcegui4') -makedepends=('intltool') -options=('!libtool') -source=(http://archive.xfce.org/src/panel-plugins/${pkgname}/0.6/${pkgname}-${pkgver}.tar.bz2 - panel48.patch) -md5sums=('ba5ae0e25f69517338f74a27fbaf4ca2' - 'fc9444aa98d7ef9c61d97dbd9f47e082') - -build() { - cd ${srcdir}/${pkgname}-${pkgver} - # patch from git master - patch -Np1 -i ${srcdir}/panel48.patch - ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --libexecdir=/usr/lib/ \ - --localstatedir=/var \ - --disable-static \ - --disable-debug - make -} - -package() { - cd ${srcdir}/${pkgname}-${pkgver} - make DESTDIR=${pkgdir} install -} Copied: xfce4-timer-plugin/repos/extra-x86_64/PKGBUILD (from rev 149259, xfce4-timer-plugin/trunk/PKGBUILD) =================================================================== --- extra-x86_64/PKGBUILD (rev 0) +++ extra-x86_64/PKGBUILD 2012-02-06 16:38:59 UTC (rev 149260) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: AndyRTR <andy...@archlinux.org> +# Contributor: Tobias Kieslich <tobias (at) archlinux.org> + +pkgname=xfce4-timer-plugin +pkgver=0.6.1 +pkgrel=2 +pkgdesc="plugin to track time for the Xfce4 panel" +arch=(i686 x86_64) +license=('GPL2') +url="http://goodies.xfce.org/projects/panel-plugins/xfce4-timer-plugin" +groups=('xfce4-goodies') +depends=('xfce4-panel' 'libxfcegui4') +makedepends=('intltool') +options=('!libtool') +source=(http://archive.xfce.org/src/panel-plugins/${pkgname}/0.6/${pkgname}-${pkgver}.tar.bz2 + panel48.patch) +md5sums=('ba5ae0e25f69517338f74a27fbaf4ca2' + 'fc9444aa98d7ef9c61d97dbd9f47e082') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + # patch from git master + patch -Np1 -i ${srcdir}/panel48.patch + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib/ \ + --localstatedir=/var \ + --disable-static \ + --disable-debug + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install +} Deleted: extra-x86_64/panel48.patch =================================================================== --- extra-x86_64/panel48.patch 2012-02-06 16:38:40 UTC (rev 149259) +++ extra-x86_64/panel48.patch 2012-02-06 16:38:59 UTC (rev 149260) @@ -1,39 +0,0 @@ -From 03ff202f818fe3f075a6c864ab688b57b1bb1cb4 Mon Sep 17 00:00:00 2001 -From: Nick Schermer <n...@xfce.org> -Date: Thu, 27 Jan 2011 21:18:45 +0000 -Subject: Fix segfault when creating plugin in 4.8 panel. - -Used invalid function type to construct the plugin. ---- -diff --git a/src/xfcetimer.c b/src/xfcetimer.c -index c27d37a..de7bd2b 100644 ---- a/src/xfcetimer.c -+++ b/src/xfcetimer.c -@@ -42,7 +42,7 @@ - - #include "xfcetimer.h" - --static gboolean create_plugin_control (XfcePanelPlugin *plugin); -+static void create_plugin_control (XfcePanelPlugin *plugin); - XFCE_PANEL_PLUGIN_REGISTER_EXTERNAL(create_plugin_control); - - void make_menu(plugin_data *pd); -@@ -1366,7 +1366,7 @@ static void plugin_create_options (XfcePanelPlugin *plugin,plugin_data *pd) { - * - * Returns %TRUE on success, %FALSE on failure. - **/ --static gboolean -+static void - create_plugin_control (XfcePanelPlugin *plugin) - { - -@@ -1461,7 +1461,6 @@ create_plugin_control (XfcePanelPlugin *plugin) - xfce_panel_plugin_menu_show_configure (plugin); - g_signal_connect (plugin, "configure-plugin", - G_CALLBACK (plugin_create_options), pd); -- return(TRUE); - } - - --- -cgit v0.8.3.4 Copied: xfce4-timer-plugin/repos/extra-x86_64/panel48.patch (from rev 149259, xfce4-timer-plugin/trunk/panel48.patch) =================================================================== --- extra-x86_64/panel48.patch (rev 0) +++ extra-x86_64/panel48.patch 2012-02-06 16:38:59 UTC (rev 149260) @@ -0,0 +1,39 @@ +From 03ff202f818fe3f075a6c864ab688b57b1bb1cb4 Mon Sep 17 00:00:00 2001 +From: Nick Schermer <n...@xfce.org> +Date: Thu, 27 Jan 2011 21:18:45 +0000 +Subject: Fix segfault when creating plugin in 4.8 panel. + +Used invalid function type to construct the plugin. +--- +diff --git a/src/xfcetimer.c b/src/xfcetimer.c +index c27d37a..de7bd2b 100644 +--- a/src/xfcetimer.c ++++ b/src/xfcetimer.c +@@ -42,7 +42,7 @@ + + #include "xfcetimer.h" + +-static gboolean create_plugin_control (XfcePanelPlugin *plugin); ++static void create_plugin_control (XfcePanelPlugin *plugin); + XFCE_PANEL_PLUGIN_REGISTER_EXTERNAL(create_plugin_control); + + void make_menu(plugin_data *pd); +@@ -1366,7 +1366,7 @@ static void plugin_create_options (XfcePanelPlugin *plugin,plugin_data *pd) { + * + * Returns %TRUE on success, %FALSE on failure. + **/ +-static gboolean ++static void + create_plugin_control (XfcePanelPlugin *plugin) + { + +@@ -1461,7 +1461,6 @@ create_plugin_control (XfcePanelPlugin *plugin) + xfce_panel_plugin_menu_show_configure (plugin); + g_signal_connect (plugin, "configure-plugin", + G_CALLBACK (plugin_create_options), pd); +- return(TRUE); + } + + +-- +cgit v0.8.3.4