[Pkg-xfce-commits] r3651 - in goodies/trunk/xfce4-timer-plugin/debian: . patches source
Yves-Alexis Perez
corsac at alioth.debian.org
Thu Nov 5 11:04:29 UTC 2009
Author: corsac
Date: 2009-11-05 23:04:29 +0000 (Thu, 05 Nov 2009)
New Revision: 3651
Added:
goodies/trunk/xfce4-timer-plugin/debian/patches/
goodies/trunk/xfce4-timer-plugin/debian/patches/01_improve-timer-stop.patch
goodies/trunk/xfce4-timer-plugin/debian/patches/series
goodies/trunk/xfce4-timer-plugin/debian/source/
goodies/trunk/xfce4-timer-plugin/debian/source/format
goodies/trunk/xfce4-timer-plugin/debian/watch
Modified:
goodies/trunk/xfce4-timer-plugin/debian/changelog
goodies/trunk/xfce4-timer-plugin/debian/compat
goodies/trunk/xfce4-timer-plugin/debian/control
goodies/trunk/xfce4-timer-plugin/debian/rules
Log:
* convert package to 3.0 (quilt) format.
* debian/patches:
- 01_improve-timer-stop added. closes: #554601, #554597
* debian/rules:
- switch to debhelper 7.
- add -Wl,-z,defs -Wl,--as-needed to LDFLAGS.
* debian/control:
- update standards version to 3.8.3.
- update debhelper build-dep to 7.
* debian/compat bumped to 7.
Modified: goodies/trunk/xfce4-timer-plugin/debian/changelog
===================================================================
--- goodies/trunk/xfce4-timer-plugin/debian/changelog 2009-11-05 22:56:04 UTC (rev 3650)
+++ goodies/trunk/xfce4-timer-plugin/debian/changelog 2009-11-05 23:04:29 UTC (rev 3651)
@@ -5,8 +5,18 @@
[ Yves-Alexis Perez ]
* debian/watch edited to track Xfce archive reorganisation.
+ * convert package to 3.0 (quilt) format.
+ * debian/patches:
+ - 01_improve-timer-stop added. closes: #554601, #554597
+ * debian/rules:
+ - switch to debhelper 7.
+ - add -Wl,-z,defs -Wl,--as-needed to LDFLAGS.
+ * debian/control:
+ - update standards version to 3.8.3.
+ - update debhelper build-dep to 7.
+ * debian/compat bumped to 7.
- -- Yves-Alexis Perez <corsac at debian.org> Mon, 03 Aug 2009 18:33:00 +0200
+ -- Yves-Alexis Perez <corsac at debian.org> Fri, 06 Nov 2009 00:03:24 +0100
xfce4-timer-plugin (0.6.1-1) unstable; urgency=low
Modified: goodies/trunk/xfce4-timer-plugin/debian/compat
===================================================================
--- goodies/trunk/xfce4-timer-plugin/debian/compat 2009-11-05 22:56:04 UTC (rev 3650)
+++ goodies/trunk/xfce4-timer-plugin/debian/compat 2009-11-05 23:04:29 UTC (rev 3651)
@@ -1 +1 @@
-4
+7
Modified: goodies/trunk/xfce4-timer-plugin/debian/control
===================================================================
--- goodies/trunk/xfce4-timer-plugin/debian/control 2009-11-05 22:56:04 UTC (rev 3650)
+++ goodies/trunk/xfce4-timer-plugin/debian/control 2009-11-05 23:04:29 UTC (rev 3651)
@@ -3,10 +3,10 @@
Priority: optional
Maintainer: Debian Xfce Maintainers <pkg-xfce-devel at lists.alioth.debian.org>
Uploaders: Yves-Alexis Perez <corsac at debian.org>, Emanuele Rocca <ema at debian.org>, Simon Huggins <huggie at earth.li>
-Build-Depends: debhelper (>= 4.1.0), cdbs, libxml-parser-perl,
+Build-Depends: debhelper (>= 7), cdbs, libxml-parser-perl,
xfce4-panel-dev (>= 4.4.0), intltool, pkg-config, libglib2.0-dev,
libgtk2.0-dev, libxfcegui4-dev
-Standards-Version: 3.8.0
+Standards-Version: 3.8.3
Vcs-Svn: svn://svn.debian.org/pkg-xfce/goodies/trunk/xfce4-timer-plugin/
Vcs-Browser: http://svn.debian.org/wsvn/pkg-xfce/goodies/trunk/xfce4-timer-plugin/
Added: goodies/trunk/xfce4-timer-plugin/debian/patches/01_improve-timer-stop.patch
===================================================================
--- goodies/trunk/xfce4-timer-plugin/debian/patches/01_improve-timer-stop.patch (rev 0)
+++ goodies/trunk/xfce4-timer-plugin/debian/patches/01_improve-timer-stop.patch 2009-11-05 23:04:29 UTC (rev 3651)
@@ -0,0 +1,21 @@
+diff --git a/src/xfcetimer.c b/src/xfcetimer.c
+index c27d37a..6bac153 100644
+--- a/src/xfcetimer.c
++++ b/src/xfcetimer.c
+@@ -115,13 +115,15 @@ static gboolean timeout_function (gpointer data){
+ }
+
+ /* Countdown is over, stop timer and free resources */
++ g_snprintf(tiptext,31,_("%ds left"),0);
++ gtk_tooltips_set_tip(pd->tip,GTK_WIDGET(pd->base),tiptext,NULL);
+
+ /*g_fprintf(stderr,"\nTimer command is ==> %s...",pd->timeout_command);*/
+
+ if( (strlen(pd->timeout_command)==0) || !pd->nowin_if_alarm ) {
+ gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(pd->pbar),1);
+ dialog = gtk_message_dialog_new (NULL,
+- GTK_DIALOG_DESTROY_WITH_PARENT,
++ GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_MODAL,
+ GTK_MESSAGE_WARNING,
+ GTK_BUTTONS_CLOSE,
+ _("Beeep! :) \nTime is up!"));
Added: goodies/trunk/xfce4-timer-plugin/debian/patches/series
===================================================================
--- goodies/trunk/xfce4-timer-plugin/debian/patches/series (rev 0)
+++ goodies/trunk/xfce4-timer-plugin/debian/patches/series 2009-11-05 23:04:29 UTC (rev 3651)
@@ -0,0 +1 @@
+01_improve-timer-stop.patch
Modified: goodies/trunk/xfce4-timer-plugin/debian/rules
===================================================================
--- goodies/trunk/xfce4-timer-plugin/debian/rules 2009-11-05 22:56:04 UTC (rev 3650)
+++ goodies/trunk/xfce4-timer-plugin/debian/rules 2009-11-05 23:04:29 UTC (rev 3651)
@@ -1,3 +1,5 @@
#!/usr/bin/make -f
-include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/class/autotools.mk
+LDFLAGS += -Wl,-z,defs -Wl,--as-needed
+
+%:
+ dh $@
Added: goodies/trunk/xfce4-timer-plugin/debian/source/format
===================================================================
--- goodies/trunk/xfce4-timer-plugin/debian/source/format (rev 0)
+++ goodies/trunk/xfce4-timer-plugin/debian/source/format 2009-11-05 23:04:29 UTC (rev 3651)
@@ -0,0 +1 @@
+3.0 (quilt)
Added: goodies/trunk/xfce4-timer-plugin/debian/watch
===================================================================
--- goodies/trunk/xfce4-timer-plugin/debian/watch (rev 0)
+++ goodies/trunk/xfce4-timer-plugin/debian/watch 2009-11-05 23:04:29 UTC (rev 3651)
@@ -0,0 +1,3 @@
+version=3
+http://archive.xfce.org/src/panel-plugins/xfce4-timer-plugin/([\d\.]+)/ \
+ xfce4-timer-plugin-([\d\.]+)\.tar\.(?:gz|bz2)
More information about the Pkg-xfce-commits
mailing list