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

corsac-guest at alioth.debian.org corsac-guest at alioth.debian.org
Mon Sep 17 21:41:06 UTC 2007


Author: corsac-guest
Date: 2007-09-17 21:41:05 +0000 (Mon, 17 Sep 2007)
New Revision: 1364

Added:
   desktop/trunk/xfwm4/debian/lintian
Modified:
   desktop/trunk/exo/debian/changelog
   desktop/trunk/exo/debian/libexo-0.3-0.postinst
   desktop/trunk/orage/debian/changelog
   desktop/trunk/orage/debian/postinst
   desktop/trunk/xfce-mcs-plugins/debian/changelog
   desktop/trunk/xfce-mcs-plugins/debian/postinst
   desktop/trunk/xfce4-mixer/debian/changelog
   desktop/trunk/xfce4-mixer/debian/postinst
   desktop/trunk/xfce4-panel/debian/changelog
   desktop/trunk/xfce4-panel/debian/xfce4-panel.postinst
   desktop/trunk/xfce4-session/debian/changelog
   desktop/trunk/xfce4-session/debian/postinst
   desktop/trunk/xfce4-utils/debian/changelog
   desktop/trunk/xfce4-utils/debian/postinst
   desktop/trunk/xfdesktop4/debian/changelog
   desktop/trunk/xfdesktop4/debian/xfdesktop4.postinst
   desktop/trunk/xfprint4/debian/changelog
   desktop/trunk/xfprint4/debian/postinst
   desktop/trunk/xfwm4/debian/changelog
   desktop/trunk/xfwm4/debian/postinst
   desktop/trunk/xfwm4/debian/rules
Log:
use posix kill -s to avoid problems on hurd


Modified: desktop/trunk/exo/debian/changelog
===================================================================
--- desktop/trunk/exo/debian/changelog	2007-09-16 21:09:31 UTC (rev 1363)
+++ desktop/trunk/exo/debian/changelog	2007-09-17 21:41:05 UTC (rev 1364)
@@ -6,8 +6,9 @@
   (Yves-Alexis Perez)
   * debian/control: condition build-dep on libhal-storage-dev so package can
     be built on hurd-i386.                                    closes: #430858
+  * debian/libexo-0.3-0.postinst: use kill -s so we don't have problem on hurd.
 
- -- Yves-Alexis Perez <corsac at corsac.net>  Wed, 27 Jun 2007 20:33:20 +0200
+ -- Yves-Alexis Perez <corsac at corsac.net>  Mon, 17 Sep 2007 23:20:12 +0200
 
 exo (0.3.2-4) unstable; urgency=low
 

Modified: desktop/trunk/exo/debian/libexo-0.3-0.postinst
===================================================================
--- desktop/trunk/exo/debian/libexo-0.3-0.postinst	2007-09-16 21:09:31 UTC (rev 1363)
+++ desktop/trunk/exo/debian/libexo-0.3-0.postinst	2007-09-17 21:41:05 UTC (rev 1364)
@@ -3,8 +3,7 @@
 if [ "$1" = "configure" ]; then
 	# Get xfce-mcs-manager to reinit
 	#Hurd doesnt have pkill so we use another way
-	#pkill -USR1 -f xfce-mcs-manager || true
-	/bin/kill -USR1 `pidof xfce-mcs-manager` >/dev/null 2>&1|| true
+	kill -s USR1 `pidof xfce-mcs-manager` >/dev/null 2>&1|| true
 
 fi
 #DEBHELPER#

Modified: desktop/trunk/orage/debian/changelog
===================================================================
--- desktop/trunk/orage/debian/changelog	2007-09-16 21:09:31 UTC (rev 1363)
+++ desktop/trunk/orage/debian/changelog	2007-09-17 21:41:05 UTC (rev 1364)
@@ -1,8 +1,9 @@
 orage (4.4.1-1) unstable; urgency=low
 
-  * New upstream release. 
+  * New upstream release.
+  * debian/postinst: use posix kill -s to avoid problems on hurd.
 
- -- Yves-Alexis Perez <corsac at corsac.net>  Sun, 15 Apr 2007 15:28:17 +0100
+ -- Yves-Alexis Perez <corsac at corsac.net>  Mon, 17 Sep 2007 23:30:32 +0200
 
 orage (4.4.0-1) experimental; urgency=low
   

Modified: desktop/trunk/orage/debian/postinst
===================================================================
--- desktop/trunk/orage/debian/postinst	2007-09-16 21:09:31 UTC (rev 1363)
+++ desktop/trunk/orage/debian/postinst	2007-09-17 21:41:05 UTC (rev 1364)
@@ -2,7 +2,7 @@
 
 if [ "$1" = "configure" ]; then
 	# Get xfce-mcs-manager to reinit
-	/bin/kill -USR1 `pidof xfce-mcs-manager` >/dev/null 2>&1|| true
+	kill -s USR1 `pidof xfce-mcs-manager` >/dev/null 2>&1|| true
 
 fi
 

Modified: desktop/trunk/xfce-mcs-plugins/debian/changelog
===================================================================
--- desktop/trunk/xfce-mcs-plugins/debian/changelog	2007-09-16 21:09:31 UTC (rev 1363)
+++ desktop/trunk/xfce-mcs-plugins/debian/changelog	2007-09-17 21:41:05 UTC (rev 1364)
@@ -1,9 +1,10 @@
 xfce-mcs-plugins (4.4.1-1) unstable; urgency=low
 
   * New upstream release.
-  * debian/copyright: update copyright holders. 
+  * debian/copyright: update copyright holders.
+  * debian/postinst: use posix kill -s to avoid problems on hurd. 
 
- -- Yves-Alexis Perez <corsac at corsac.net>  Sun, 15 Apr 2007 15:28:17 +0100
+ -- Yves-Alexis Perez <corsac at corsac.net>  Mon, 17 Sep 2007 23:34:08 +0200
 
 xfce-mcs-plugins (4.4.0-1) experimental; urgency=low
 

Modified: desktop/trunk/xfce-mcs-plugins/debian/postinst
===================================================================
--- desktop/trunk/xfce-mcs-plugins/debian/postinst	2007-09-16 21:09:31 UTC (rev 1363)
+++ desktop/trunk/xfce-mcs-plugins/debian/postinst	2007-09-17 21:41:05 UTC (rev 1364)
@@ -2,9 +2,7 @@
 
 if [ "$1" = "configure" ]; then
 	# Get xfce-mcs-manager to reinit
-	# hurd doesnt have procps so we do it another way
-	#pkill -USR1 -f xfce-mcs-manager || true
-	/bin/kill -USR1 `pidof xfce-mcs-manager` >/dev/null 2>&1|| true
+	kill -s USR1 `pidof xfce-mcs-manager` >/dev/null 2>&1|| true
 
 fi
 

Modified: desktop/trunk/xfce4-mixer/debian/changelog
===================================================================
--- desktop/trunk/xfce4-mixer/debian/changelog	2007-09-16 21:09:31 UTC (rev 1363)
+++ desktop/trunk/xfce4-mixer/debian/changelog	2007-09-17 21:41:05 UTC (rev 1364)
@@ -1,8 +1,9 @@
 xfce4-mixer (4.4.1-4) UNRELEASED; urgency=low
 
-  * debian/xfce4-mixer.menu: switch to new menu policy. 
+  * 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>  Wed, 08 Aug 2007 08:09:35 +0200
+ -- Yves-Alexis Perez <corsac at corsac.net>  Mon, 17 Sep 2007 23:31:06 +0200
 
 xfce4-mixer (4.4.1-3) unstable; urgency=low
 

Modified: desktop/trunk/xfce4-mixer/debian/postinst
===================================================================
--- desktop/trunk/xfce4-mixer/debian/postinst	2007-09-16 21:09:31 UTC (rev 1363)
+++ desktop/trunk/xfce4-mixer/debian/postinst	2007-09-17 21:41:05 UTC (rev 1364)
@@ -2,9 +2,7 @@
 
 if [ "$1" = "configure" ]; then
 	# Get xfce-mcs-manager to reinit
-	# hurd doesnt have procps so we do that another way
-	#pkill -USR1 -f xfce-mcs-manager || true
-	/bin/kill -USR1 `pidof xfce-mcs-manager` >/dev/null 2>&1|| true
+	kill -s USR1 `pidof xfce-mcs-manager` >/dev/null 2>&1|| true
 
 fi
 

Modified: desktop/trunk/xfce4-panel/debian/changelog
===================================================================
--- desktop/trunk/xfce4-panel/debian/changelog	2007-09-16 21:09:31 UTC (rev 1363)
+++ desktop/trunk/xfce4-panel/debian/changelog	2007-09-17 21:41:05 UTC (rev 1364)
@@ -1,12 +1,13 @@
 xfce4-panel (4.4.1-2) UNRELEASED; urgency=low
 
-  [ Simon Huggins ]
+  ( Simon Huggins )
   * Use ${binary:Version} so we are binNMU safe.
 
-  [ Yves-Alexis Perez ]
-  * debian/xfce4-panel.1: update bug reporting in manpage. 
+  ( 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, 23 Jul 2007 21:25:56 +0200
+ -- Yves-Alexis Perez <corsac at corsac.net>  Mon, 17 Sep 2007 23:31:51 +0200
 
 xfce4-panel (4.4.1-1) unstable; urgency=low
 

Modified: desktop/trunk/xfce4-panel/debian/xfce4-panel.postinst
===================================================================
--- desktop/trunk/xfce4-panel/debian/xfce4-panel.postinst	2007-09-16 21:09:31 UTC (rev 1363)
+++ desktop/trunk/xfce4-panel/debian/xfce4-panel.postinst	2007-09-17 21:41:05 UTC (rev 1364)
@@ -2,10 +2,9 @@
 
 if [ "$1" = "configure" ]; then
 	# Get xfce-mcs-manager to reinit
-	# hurd doesnt have procps so we do it another way
-	#pkill -USR1 -f xfce-mcs-manager || true
-	/bin/kill -USR1 `pidof xfce-mcs-manager` >/dev/null 2>&1|| true
+	kill -s USR1 `pidof xfce-mcs-manager` >/dev/null 2>&1|| true
 
+
 	# Run ldconfig to update shared library system
 	ldconfig
 fi

Modified: desktop/trunk/xfce4-session/debian/changelog
===================================================================
--- desktop/trunk/xfce4-session/debian/changelog	2007-09-16 21:09:31 UTC (rev 1363)
+++ desktop/trunk/xfce4-session/debian/changelog	2007-09-17 21:41:05 UTC (rev 1364)
@@ -2,8 +2,9 @@
 
   * 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. 
 
- -- Yves-Alexis Perez <corsac at corsac.net>  Sat, 07 Jul 2007 01:20:53 +0200
+ -- Yves-Alexis Perez <corsac at corsac.net>  Mon, 17 Sep 2007 23:32:59 +0200
 
 xfce4-session (4.4.1-1) unstable; urgency=low
 

Modified: desktop/trunk/xfce4-session/debian/postinst
===================================================================
--- desktop/trunk/xfce4-session/debian/postinst	2007-09-16 21:09:31 UTC (rev 1363)
+++ desktop/trunk/xfce4-session/debian/postinst	2007-09-17 21:41:05 UTC (rev 1364)
@@ -7,9 +7,7 @@
     x-session-manager.1.gz /usr/share/man/man1/xfce4-session.1.gz 
 
   	# Get xfce-mcs-manager to reinit
-  	# hurd doesnt have procps so we do it another way
-  	#pkill -USR1 -f xfce-mcs-manager || true
-        /bin/kill -USR1 `pidof xfce-mcs-manager` >/dev/null 2>&1|| true
+	kill -s USR1 `pidof xfce-mcs-manager` >/dev/null 2>&1|| true
 	
 fi
 

Modified: desktop/trunk/xfce4-utils/debian/changelog
===================================================================
--- desktop/trunk/xfce4-utils/debian/changelog	2007-09-16 21:09:31 UTC (rev 1363)
+++ desktop/trunk/xfce4-utils/debian/changelog	2007-09-17 21:41:05 UTC (rev 1364)
@@ -3,8 +3,9 @@
   * debian/xfterm4.1, debian/xfce4-utils.1: update bug reporting address in
     manpage.
   * debian/menu: switch to new menu policy.
+  * debian/postinst: use posix kill -s to avoid problems on hurd. 
 
- -- Yves-Alexis Perez <corsac at corsac.net>  Wed, 08 Aug 2007 08:52:57 +0200
+ -- Yves-Alexis Perez <corsac at corsac.net>  Mon, 17 Sep 2007 23:33:35 +0200
 
 xfce4-utils (4.4.1-1) unstable; urgency=low
 

Modified: desktop/trunk/xfce4-utils/debian/postinst
===================================================================
--- desktop/trunk/xfce4-utils/debian/postinst	2007-09-16 21:09:31 UTC (rev 1363)
+++ desktop/trunk/xfce4-utils/debian/postinst	2007-09-17 21:41:05 UTC (rev 1364)
@@ -2,9 +2,7 @@
 
 if [ "$1" = "configure" ]; then
 	# Get xfce-mcs-manager to reinit
-	# hurd doesnt have procps so we do it another way
-	#pkill -USR1 -f xfce-mcs-manager || true
-	/bin/kill -USR1 `pidof xfce-mcs-manager` >/dev/null 2>&1|| 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-09-16 21:09:31 UTC (rev 1363)
+++ desktop/trunk/xfdesktop4/debian/changelog	2007-09-17 21:41:05 UTC (rev 1364)
@@ -1,9 +1,10 @@
 xfdesktop4 (4.4.1-6) UNRELEASED; urgency=low
 
   * debian/xfdesktop4.menu: switch to new debian policy.
-  * use exo-open to run terminal from menu so we respect user choice. 
+  * 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. 
 
- -- Yves-Alexis Perez <corsac at corsac.net>  Sat, 11 Aug 2007 22:12:42 +0200
+ -- Yves-Alexis Perez <corsac at corsac.net>  Mon, 17 Sep 2007 23:34:40 +0200
 
 xfdesktop4 (4.4.1-5) unstable; urgency=low
 

Modified: desktop/trunk/xfdesktop4/debian/xfdesktop4.postinst
===================================================================
--- desktop/trunk/xfdesktop4/debian/xfdesktop4.postinst	2007-09-16 21:09:31 UTC (rev 1363)
+++ desktop/trunk/xfdesktop4/debian/xfdesktop4.postinst	2007-09-17 21:41:05 UTC (rev 1364)
@@ -11,9 +11,7 @@
 	fi
 
 	# Get xfce-mcs-manager to reinit
-	# hurd doesnt have procps so we do it another way
-	#pkill -USR1 -f xfce-mcs-manager || true
-	/bin/kill -USR1 `pidof xfce-mcs-manager` > /dev/null 2>&1|| true
+	kill -s USR1 `pidof xfce-mcs-manager` > /dev/null 2>&1|| true
 
 fi
 

Modified: desktop/trunk/xfprint4/debian/changelog
===================================================================
--- desktop/trunk/xfprint4/debian/changelog	2007-09-16 21:09:31 UTC (rev 1363)
+++ desktop/trunk/xfprint4/debian/changelog	2007-09-17 21:41:05 UTC (rev 1364)
@@ -1,9 +1,10 @@
 xfprint4 (4.4.1-2) UNRELEASED; urgency=low
 
   * debian/menu: switch to new menu policy.
-  * debian/rules: don't recreate icon at build time.           closes: #442770 
+  * debian/rules: don't recreate icon at build time.           closes: #442770
+  * debian/postinst: use posix kill -s to avoid problems on hurd. 
 
- -- Yves-Alexis Perez <corsac at fitz.corsac.net>  Sun, 16 Sep 2007 22:49:33 +0200
+ -- Yves-Alexis Perez <corsac at corsac.net>  Mon, 17 Sep 2007 23:35:06 +0200
 
 xfprint4 (4.4.1-1) unstable; urgency=low
 

Modified: desktop/trunk/xfprint4/debian/postinst
===================================================================
--- desktop/trunk/xfprint4/debian/postinst	2007-09-16 21:09:31 UTC (rev 1363)
+++ desktop/trunk/xfprint4/debian/postinst	2007-09-17 21:41:05 UTC (rev 1364)
@@ -2,9 +2,7 @@
 
 if [ "$1" = "configure" ]; then
 	# Get xfce-mcs-manager to reinit
-	# hurd doesnt have procps so we do it another way
-	#pkill -USR1 -f xfce-mcs-manager || true
-	/bin/kill -USR1 `pidof xfce-mcs-manager` >/dev/null 2>&1|| true
+	kill -s USR1 `pidof xfce-mcs-manager` >/dev/null 2>&1|| true
 
 fi
 

Modified: desktop/trunk/xfwm4/debian/changelog
===================================================================
--- desktop/trunk/xfwm4/debian/changelog	2007-09-16 21:09:31 UTC (rev 1363)
+++ desktop/trunk/xfwm4/debian/changelog	2007-09-17 21:41:05 UTC (rev 1364)
@@ -1,9 +1,12 @@
 xfwm4 (4.4.1-3) UNRELEASED; urgency=low
 
   * debian/xfwm4.1: update bugs reporting in manpage.
-  * debian/xfwm4.menu: switch to new menu policy. 
+  * debian/xfwm4.menu: switch to new menu policy.
+  * debian/postinst: use posix kill -s to avoid problems on hurd.
+  * debian/rules: enable output of distclean target.
+  * debian/lintian: ignore safe lintian warnings.
 
- -- Yves-Alexis Perez <corsac at corsac.net>  Wed, 08 Aug 2007 08:22:21 +0200
+ -- Yves-Alexis Perez <corsac at corsac.net>  Mon, 17 Sep 2007 23:35:32 +0200
 
 xfwm4 (4.4.1-2) unstable; urgency=low
 

Added: desktop/trunk/xfwm4/debian/lintian
===================================================================
--- desktop/trunk/xfwm4/debian/lintian	                        (rev 0)
+++ desktop/trunk/xfwm4/debian/lintian	2007-09-17 21:41:05 UTC (rev 1364)
@@ -0,0 +1,4 @@
+#xfwm4 use xfce-mcs-manager to manage its settings.
+xfwm4: desktop-command-not-in-package
+#Xfce doesn't have its FD.O category yet.
+xfwm4: desktop-entry-invalid-category

Modified: desktop/trunk/xfwm4/debian/postinst
===================================================================
--- desktop/trunk/xfwm4/debian/postinst	2007-09-16 21:09:31 UTC (rev 1363)
+++ desktop/trunk/xfwm4/debian/postinst	2007-09-17 21:41:05 UTC (rev 1364)
@@ -9,9 +9,7 @@
 	x-window-manager.1.gz /usr/share/man/man1/xfwm4.1.gz
 	
 	# Get xfce-mcs-manager to reinit
-	# hurd doesnt have procps so we do it another way
-	#pkill -USR1 -f xfce-mcs-manager || true
-	/bin/kill -USR1 `pidof xfce-mcs-manager` >/dev/null 2>&1|| true
+	kill -s USR1 `pidof xfce-mcs-manager` >/dev/null 2>&1|| true
 
 fi
 

Modified: desktop/trunk/xfwm4/debian/rules
===================================================================
--- desktop/trunk/xfwm4/debian/rules	2007-09-16 21:09:31 UTC (rev 1363)
+++ desktop/trunk/xfwm4/debian/rules	2007-09-17 21:41:05 UTC (rev 1364)
@@ -42,7 +42,7 @@
 	
 	-rm -f configure-stamp build-stamp 
 
-	-$(MAKE) distclean
+	[ ! -f Makefile ] || $(MAKE) distclean
 	-test -r /usr/share/misc/config.sub && \
 	  cp -f /usr/share/misc/config.sub config.sub
 	-test -r /usr/share/misc/config.guess && \
@@ -67,6 +67,10 @@
 	chrpath -d -k `pwd`/debian/xfwm4/usr/bin/* \
 		`pwd`/debian/xfwm4/usr/lib/xfce4/mcs-plugins/*
 
+	install -D -p -o root -g root -m 644 `pwd`/debian/lintian \
+	  `pwd`/debian/xfwm4/usr/share/lintian/overrides/xfwm4
+
+
 binary-indep: build install
 binary-arch: build install
 	




More information about the Pkg-xfce-commits mailing list