[Pkg-xfce-commits] r1376 - in desktop/trunk: xfce-mcs-plugins/debian xfce4-mixer/debian xfce4-panel/debian xfce4-session/debian xfce4-utils/debian xfdesktop4/debian xfprint4/debian xfwm4/debian

huggie at alioth.debian.org huggie at alioth.debian.org
Mon Oct 8 17:52:35 UTC 2007


Author: huggie
Date: 2007-10-08 17:52:35 +0000 (Mon, 08 Oct 2007)
New Revision: 1376

Modified:
   desktop/trunk/xfce-mcs-plugins/debian/changelog
   desktop/trunk/xfce-mcs-plugins/debian/prerm
   desktop/trunk/xfce4-mixer/debian/changelog
   desktop/trunk/xfce4-mixer/debian/prerm
   desktop/trunk/xfce4-panel/debian/changelog
   desktop/trunk/xfce4-panel/debian/xfce4-panel.prerm
   desktop/trunk/xfce4-session/debian/changelog
   desktop/trunk/xfce4-session/debian/prerm
   desktop/trunk/xfce4-utils/debian/changelog
   desktop/trunk/xfce4-utils/debian/prerm
   desktop/trunk/xfdesktop4/debian/changelog
   desktop/trunk/xfdesktop4/debian/xfdesktop4.prerm
   desktop/trunk/xfprint4/debian/changelog
   desktop/trunk/xfprint4/debian/prerm
   desktop/trunk/xfwm4/debian/changelog
   desktop/trunk/xfwm4/debian/prerm
Log:
Fix up any remaining kills to kill -s USR1 to fix Hurd and lintian issues
with the other approaches.


Modified: desktop/trunk/xfce-mcs-plugins/debian/changelog
===================================================================
--- desktop/trunk/xfce-mcs-plugins/debian/changelog	2007-10-08 13:52:01 UTC (rev 1375)
+++ desktop/trunk/xfce-mcs-plugins/debian/changelog	2007-10-08 17:52:35 UTC (rev 1376)
@@ -1,3 +1,9 @@
+xfce-mcs-plugins (4.4.1-2) UNRELEASED; urgency=low
+
+  * Use kill -s to keep Hurd and lintian happy at the same time.
+
+ -- Simon Huggins <huggie at earth.li>  Mon, 08 Oct 2007 18:46:21 +0100
+
 xfce-mcs-plugins (4.4.1-1) unstable; urgency=low
 
   * New upstream release.

Modified: desktop/trunk/xfce-mcs-plugins/debian/prerm
===================================================================
--- desktop/trunk/xfce-mcs-plugins/debian/prerm	2007-10-08 13:52:01 UTC (rev 1375)
+++ desktop/trunk/xfce-mcs-plugins/debian/prerm	2007-10-08 17:52:35 UTC (rev 1376)
@@ -2,7 +2,7 @@
 
 if [ "$1" = "remove" ]; then
 	# Get xfce-mcs-manager to reinit
-	pkill -USR1 -f xfce-mcs-manager || true
+	kill -s USR1 `pidof xfce-mcs-manager` >/dev/null 2>&1 || true
 fi
 
 #DEBHELPER#

Modified: desktop/trunk/xfce4-mixer/debian/changelog
===================================================================
--- desktop/trunk/xfce4-mixer/debian/changelog	2007-10-08 13:52:01 UTC (rev 1375)
+++ desktop/trunk/xfce4-mixer/debian/changelog	2007-10-08 17:52:35 UTC (rev 1376)
@@ -1,10 +1,14 @@
 xfce4-mixer (4.4.1-4) UNRELEASED; urgency=low
 
+  [ Yves-Alexis Perez ]
   * debian/xfce4-mixer.menu: switch to new menu policy.
   * debian/postinst: use posix kill -s to avoid problems on hurd.
 
- -- Yves-Alexis Perez <corsac at corsac.net>  Mon, 17 Sep 2007 23:31:06 +0200
+  [ Simon Huggins ]
+  * debian/prerm: Use kill -s to keep Hurd and lintian happy at the same time.
 
+ -- Simon Huggins <huggie at earth.li>  Mon, 08 Oct 2007 18:46:20 +0100
+
 xfce4-mixer (4.4.1-3) unstable; urgency=low
 
   * Really build-dep on the fixed dpkg-dev for dpkg-architecture that works

Modified: desktop/trunk/xfce4-mixer/debian/prerm
===================================================================
--- desktop/trunk/xfce4-mixer/debian/prerm	2007-10-08 13:52:01 UTC (rev 1375)
+++ desktop/trunk/xfce4-mixer/debian/prerm	2007-10-08 17:52:35 UTC (rev 1376)
@@ -2,7 +2,7 @@
 
 if [ "$1" = "remove" ]; then
 	# Get xfce-mcs-manager to reinit
-	pkill -USR1 -f xfce-mcs-manager || true
+	kill -s USR1 `pidof xfce-mcs-manager` >/dev/null 2>&1 || true
 fi
 
 #DEBHELPER#

Modified: desktop/trunk/xfce4-panel/debian/changelog
===================================================================
--- desktop/trunk/xfce4-panel/debian/changelog	2007-10-08 13:52:01 UTC (rev 1375)
+++ desktop/trunk/xfce4-panel/debian/changelog	2007-10-08 17:52:35 UTC (rev 1376)
@@ -1,14 +1,18 @@
 xfce4-panel (4.4.1-2) UNRELEASED; urgency=low
 
-  ( Simon Huggins )
+  [ Simon Huggins ]
   * Use ${binary:Version} so we are binNMU safe.
 
-  ( Yves-Alexis Perez )
+  [ Yves-Alexis Perez ]
   * debian/xfce4-panel.1: update bug reporting in manpage.
   * debian/xfce4-panel.postinst: use posix kill -s            closes:  #374618
 
- -- Yves-Alexis Perez <corsac at corsac.net>  Mon, 17 Sep 2007 23:31:51 +0200
+  [ Simon Huggins ]
+  * debian/xfce4-panel.prerm: Use kill -s to keep Hurd and lintian happy at
+    the same time.
 
+ -- Simon Huggins <huggie at earth.li>  Mon, 08 Oct 2007 18:46:21 +0100
+
 xfce4-panel (4.4.1-1) unstable; urgency=low
 
   * New upstream release. 

Modified: desktop/trunk/xfce4-panel/debian/xfce4-panel.prerm
===================================================================
--- desktop/trunk/xfce4-panel/debian/xfce4-panel.prerm	2007-10-08 13:52:01 UTC (rev 1375)
+++ desktop/trunk/xfce4-panel/debian/xfce4-panel.prerm	2007-10-08 17:52:35 UTC (rev 1376)
@@ -2,7 +2,7 @@
 
 if [ "$1" = "remove" ]; then
 	# Get xfce-mcs-manager to reinit
-	pkill -USR1 -f xfce-mcs-manager || true
+	kill -s USR1 `pidof xfce-mcs-manager` >/dev/null 2>&1 || true
 fi
 
 #DEBHELPER#

Modified: desktop/trunk/xfce4-session/debian/changelog
===================================================================
--- desktop/trunk/xfce4-session/debian/changelog	2007-10-08 13:52:01 UTC (rev 1375)
+++ desktop/trunk/xfce4-session/debian/changelog	2007-10-08 17:52:35 UTC (rev 1376)
@@ -1,11 +1,15 @@
 xfce4-session (4.4.1-2) UNRELEASED; urgency=low
 
+  [ Yves-Alexis Perez ]
   * debian/control: build against dbus to enable users to shutdown trough hal.
     See README.Debian for more details.                         closes: #431886
-  * debian/postinst: use posix kill -s to avoid problems on hurd. 
+  * debian/postinst: use posix kill -s to avoid problems on hurd.
 
- -- Yves-Alexis Perez <corsac at corsac.net>  Mon, 17 Sep 2007 23:32:59 +0200
+  [ Simon Huggins ]
+  * debian/prerm: Use kill -s to keep Hurd and lintian happy at the same time.
 
+ -- Simon Huggins <huggie at earth.li>  Mon, 08 Oct 2007 18:46:21 +0100
+
 xfce4-session (4.4.1-1) unstable; urgency=low
 
   * New upstream release.

Modified: desktop/trunk/xfce4-session/debian/prerm
===================================================================
--- desktop/trunk/xfce4-session/debian/prerm	2007-10-08 13:52:01 UTC (rev 1375)
+++ desktop/trunk/xfce4-session/debian/prerm	2007-10-08 17:52:35 UTC (rev 1376)
@@ -6,7 +6,7 @@
 
 if [ "$1" = "remove" ]; then
   # Get xfce-mcs-manager to reinit
-  pkill -USR1 -f xfce-mcs-manager || true
+  kill -s USR1 `pidof xfce-mcs-manager` >/dev/null 2>&1 || true
 fi
 
 #DEBHELPER#

Modified: desktop/trunk/xfce4-utils/debian/changelog
===================================================================
--- desktop/trunk/xfce4-utils/debian/changelog	2007-10-08 13:52:01 UTC (rev 1375)
+++ desktop/trunk/xfce4-utils/debian/changelog	2007-10-08 17:52:35 UTC (rev 1376)
@@ -1,3 +1,9 @@
+xfce4-utils (4.4.1-3) UNRELEASED; urgency=low
+
+  * Use kill -s to keep Hurd and lintian happy at the same time.
+
+ -- Simon Huggins <huggie at earth.li>  Mon, 08 Oct 2007 18:46:21 +0100
+
 xfce4-utils (4.4.1-2) unstable; urgency=low
 
   (Yves-Alexis Perez)

Modified: desktop/trunk/xfce4-utils/debian/prerm
===================================================================
--- desktop/trunk/xfce4-utils/debian/prerm	2007-10-08 13:52:01 UTC (rev 1375)
+++ desktop/trunk/xfce4-utils/debian/prerm	2007-10-08 17:52:35 UTC (rev 1376)
@@ -2,7 +2,7 @@
 
 if [ "$1" = "remove" ]; then
 	# Get xfce-mcs-manager to reinit
-	pkill -USR1 -f xfce-mcs-manager || true
+	kill -s USR1 `pidof xfce-mcs-manager` >/dev/null 2>&1 || true
 fi
 
 #DEBHELPER#

Modified: desktop/trunk/xfdesktop4/debian/changelog
===================================================================
--- desktop/trunk/xfdesktop4/debian/changelog	2007-10-08 13:52:01 UTC (rev 1375)
+++ desktop/trunk/xfdesktop4/debian/changelog	2007-10-08 17:52:35 UTC (rev 1376)
@@ -1,11 +1,15 @@
 xfdesktop4 (4.4.1-6) UNRELEASED; urgency=low
 
+  [ Yves-Alexis Perez ]
   * debian/xfdesktop4.menu: switch to new debian policy.
   * use exo-open to run terminal from menu so we respect user choice.
-  * debian/xfdesktop4.postinst: use posix kill -s to avoid problems on hurd. 
+  * debian/xfdesktop4.postinst: use posix kill -s to avoid problems on hurd.
 
- -- Yves-Alexis Perez <corsac at corsac.net>  Mon, 17 Sep 2007 23:34:40 +0200
+  [ Simon Huggins ]
+  * debian/prerm: Use kill -s to keep Hurd and lintian happy at the same time.
 
+ -- Simon Huggins <huggie at earth.li>  Mon, 08 Oct 2007 18:46:22 +0100
+
 xfdesktop4 (4.4.1-5) unstable; urgency=low
 
   * Don't ship the manpage in the -data deb as planned        closes: #431122

Modified: desktop/trunk/xfdesktop4/debian/xfdesktop4.prerm
===================================================================
--- desktop/trunk/xfdesktop4/debian/xfdesktop4.prerm	2007-10-08 13:52:01 UTC (rev 1375)
+++ desktop/trunk/xfdesktop4/debian/xfdesktop4.prerm	2007-10-08 17:52:35 UTC (rev 1376)
@@ -2,7 +2,7 @@
 
 if [ "$1" = "remove" ]; then
 	# Get xfce-mcs-manager to reinit
-	pkill -USR1 -f xfce-mcs-manager || true
+	kill -s USR1 `pidof xfce-mcs-manager` >/dev/null 2>&1 || true
 fi
 
 #DEBHELPER#

Modified: desktop/trunk/xfprint4/debian/changelog
===================================================================
--- desktop/trunk/xfprint4/debian/changelog	2007-10-08 13:52:01 UTC (rev 1375)
+++ desktop/trunk/xfprint4/debian/changelog	2007-10-08 17:52:35 UTC (rev 1376)
@@ -1,13 +1,17 @@
 xfprint4 (4.4.1-2) UNRELEASED; urgency=low
 
+  [ Yves-Alexis Perez ]
   * debian/menu: switch to new menu policy.
-  * debian/rules: 
+  * debian/rules:
     - don't recreate icon at build time.           closes: #442770
     - don't ignore all errors for distclean rule.
   * debian/postinst: use posix kill -s to avoid problems on hurd.
 
- -- Yves-Alexis Perez <corsac at corsac.net>  Tue, 18 Sep 2007 23:08:46 +0200
+  [ Simon Huggins ]
+  * debian/prerm: Use kill -s to keep Hurd and lintian happy at the same time.
 
+ -- Simon Huggins <huggie at earth.li>  Mon, 08 Oct 2007 18:46:22 +0100
+
 xfprint4 (4.4.1-1) unstable; urgency=low
 
   * New upstream release.

Modified: desktop/trunk/xfprint4/debian/prerm
===================================================================
--- desktop/trunk/xfprint4/debian/prerm	2007-10-08 13:52:01 UTC (rev 1375)
+++ desktop/trunk/xfprint4/debian/prerm	2007-10-08 17:52:35 UTC (rev 1376)
@@ -2,7 +2,7 @@
 
 if [ "$1" = "remove" ]; then
 	# Get xfce-mcs-manager to reinit
-	pkill -USR1 -f xfce-mcs-manager || true
+	kill -s USR1 `pidof xfce-mcs-manager` >/dev/null 2>&1 || true
 fi
 
 #DEBHELPER#

Modified: desktop/trunk/xfwm4/debian/changelog
===================================================================
--- desktop/trunk/xfwm4/debian/changelog	2007-10-08 13:52:01 UTC (rev 1375)
+++ desktop/trunk/xfwm4/debian/changelog	2007-10-08 17:52:35 UTC (rev 1376)
@@ -1,3 +1,9 @@
+xfwm4 (4.4.1-4) UNRELEASED; urgency=low
+
+  * Use kill -s to keep Hurd and lintian happy at the same time.
+
+ -- Simon Huggins <huggie at earth.li>  Mon, 08 Oct 2007 18:46:22 +0100
+
 xfwm4 (4.4.1-3) unstable; urgency=high
 
   * debian/xfwm4.1: update bugs reporting in manpage.

Modified: desktop/trunk/xfwm4/debian/prerm
===================================================================
--- desktop/trunk/xfwm4/debian/prerm	2007-10-08 13:52:01 UTC (rev 1375)
+++ desktop/trunk/xfwm4/debian/prerm	2007-10-08 17:52:35 UTC (rev 1376)
@@ -6,7 +6,7 @@
   update-alternatives --remove x-window-manager /usr/bin/xfwm4
 
   # Get xfce-mcs-manager to reinit
-  pkill -USR1 -f xfce-mcs-manager || true
+  kill -s USR1 `pidof xfce-mcs-manager` >/dev/null 2>&1 || true
 fi
 
 #DEBHELPER#




More information about the Pkg-xfce-commits mailing list