[Pkg-xfce-commits] r714 - in desktop/trunk: exo/debian
xfce-mcs-plugins/debian xfce4-mixer/debian xfce4-panel/debian
xfce4-session/debian xfce4-utils/debian xfdesktop4/debian
xfprint4/debian xfwm4/debian
Yves-Alexis Perez
corsac-guest at costa.debian.org
Tue Jun 20 11:50:21 UTC 2006
Author: corsac-guest
Date: 2006-06-20 11:50:19 +0000 (Tue, 20 Jun 2006)
New Revision: 714
Modified:
desktop/trunk/exo/debian/changelog
desktop/trunk/exo/debian/libexo-0.3-0.postinst
desktop/trunk/xfce-mcs-plugins/debian/changelog
desktop/trunk/xfce-mcs-plugins/debian/control
desktop/trunk/xfce-mcs-plugins/debian/postinst
desktop/trunk/xfce4-mixer/debian/changelog
desktop/trunk/xfce4-mixer/debian/control
desktop/trunk/xfce4-mixer/debian/postinst
desktop/trunk/xfce4-panel/debian/changelog
desktop/trunk/xfce4-panel/debian/control
desktop/trunk/xfce4-panel/debian/xfce4-panel.postinst
desktop/trunk/xfce4-session/debian/changelog
desktop/trunk/xfce4-session/debian/control
desktop/trunk/xfce4-session/debian/postinst
desktop/trunk/xfce4-utils/debian/changelog
desktop/trunk/xfce4-utils/debian/control
desktop/trunk/xfce4-utils/debian/postinst
desktop/trunk/xfdesktop4/debian/changelog
desktop/trunk/xfdesktop4/debian/control
desktop/trunk/xfdesktop4/debian/postinst
desktop/trunk/xfprint4/debian/changelog
desktop/trunk/xfprint4/debian/control
desktop/trunk/xfprint4/debian/postinst
desktop/trunk/xfwm4/debian/changelog
desktop/trunk/xfwm4/debian/control
desktop/trunk/xfwm4/debian/postinst
Log:
fixed packages by not using pkill in postinst
Modified: desktop/trunk/exo/debian/changelog
===================================================================
--- desktop/trunk/exo/debian/changelog 2006-06-18 06:08:00 UTC (rev 713)
+++ desktop/trunk/exo/debian/changelog 2006-06-20 11:50:19 UTC (rev 714)
@@ -1,3 +1,9 @@
+exo (0.3.1.6beta1-2) UNRELEASED; urgency=low
+
+ * Fixed package on hurd by not using pkill in postinst
+
+ -- Yves-Alexis Perez <corsac at corsac.net> Tue, 20 Jun 2006 13:18:36 +0200
+
exo (0.3.1.6beta1-1) unstable; urgency=low
(Yves-Alexis Perez)
Modified: desktop/trunk/exo/debian/libexo-0.3-0.postinst
===================================================================
--- desktop/trunk/exo/debian/libexo-0.3-0.postinst 2006-06-18 06:08:00 UTC (rev 713)
+++ desktop/trunk/exo/debian/libexo-0.3-0.postinst 2006-06-20 11:50:19 UTC (rev 714)
@@ -1,6 +1,11 @@
#!/bin/sh
-# Get xfce-mcs-manager to reinit
-pkill -USR1 -f xfce-mcs-manager || true
+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
+ mcs=`ps aux | grep xfce-[m]cs-manager | awk '{ print $2 }'`
+ kill -USR1 $mcs || true
+fi
#DEBHELPER#
Modified: desktop/trunk/xfce-mcs-plugins/debian/changelog
===================================================================
--- desktop/trunk/xfce-mcs-plugins/debian/changelog 2006-06-18 06:08:00 UTC (rev 713)
+++ desktop/trunk/xfce-mcs-plugins/debian/changelog 2006-06-20 11:50:19 UTC (rev 714)
@@ -1,3 +1,9 @@
+xfce-mcs-plugins (4.3.90.1-2) unstable; urgency=low
+
+ * Fixed package on hurd by not using pkill in postinst
+
+ -- Yves-Alexis Perez <corsac at corsac.net> Tue, 20 Jun 2006 13:42:06 +0200
+
xfce-mcs-plugins (4.3.90.1-1) unstable; urgency=low
* New upstream release
Modified: desktop/trunk/xfce-mcs-plugins/debian/control
===================================================================
--- desktop/trunk/xfce-mcs-plugins/debian/control 2006-06-18 06:08:00 UTC (rev 713)
+++ desktop/trunk/xfce-mcs-plugins/debian/control 2006-06-20 11:50:19 UTC (rev 714)
@@ -8,7 +8,7 @@
Package: xfce4-mcs-plugins
Architecture: any
-Depends: ${shlibs:Depends}, xfce4-mcs-manager (>= 4.3.90.1-1), procps
+Depends: ${shlibs:Depends}, xfce4-mcs-manager (>= 4.3.90.1-1)
Description: Special modules for the xfce4-mcs-manager
This package contains some settings manager plugins. The plugins
provide settings dialogs for general items that are not part of a
Modified: desktop/trunk/xfce-mcs-plugins/debian/postinst
===================================================================
--- desktop/trunk/xfce-mcs-plugins/debian/postinst 2006-06-18 06:08:00 UTC (rev 713)
+++ desktop/trunk/xfce-mcs-plugins/debian/postinst 2006-06-20 11:50:19 UTC (rev 714)
@@ -2,7 +2,11 @@
if [ "$1" = "configure" ]; then
# Get xfce-mcs-manager to reinit
- pkill -USR1 -f xfce-mcs-manager || true
+ # hurd doesnt have procps so we do it another way
+ #pkill -USR1 -f xfce-mcs-manager || true
+ mcs=`ps aux | grep xfce-[m]cs-manager | awk '{ print $2 }'`
+ kill -USR1 $mcs || true
+
fi
#DEBHELPER#
Modified: desktop/trunk/xfce4-mixer/debian/changelog
===================================================================
--- desktop/trunk/xfce4-mixer/debian/changelog 2006-06-18 06:08:00 UTC (rev 713)
+++ desktop/trunk/xfce4-mixer/debian/changelog 2006-06-20 11:50:19 UTC (rev 714)
@@ -1,3 +1,9 @@
+xfce4-mixer (4.3.90.1-3) UNRELEASED; urgency=low
+
+ * Fix package on hurd by not using pkill in postinst
+
+ -- Yves-Alexis Perez <corsac at corsac.net> Tue, 20 Jun 2006 13:37:27 +0200
+
xfce4-mixer (4.3.90.1-2) unstable; urgency=low
(Yves-Alexis Perez)
Modified: desktop/trunk/xfce4-mixer/debian/control
===================================================================
--- desktop/trunk/xfce4-mixer/debian/control 2006-06-18 06:08:00 UTC (rev 713)
+++ desktop/trunk/xfce4-mixer/debian/control 2006-06-20 11:50:19 UTC (rev 714)
@@ -8,7 +8,7 @@
Package: xfce4-mixer
Architecture: any
-Depends: ${shlibs:Depends}, xfce4-mixer-alsa (= ${Source-Version}) | xfce4-mixer-oss (= ${Source-Version}), procps
+Depends: ${shlibs:Depends}, xfce4-mixer-alsa (= ${Source-Version}) | xfce4-mixer-oss (= ${Source-Version})
Description: Xfce4 Mixer frontend
This is the frontend for mixer settings delivered together
with the Xfce4 desktop environment. It does the same jobs
Modified: desktop/trunk/xfce4-mixer/debian/postinst
===================================================================
--- desktop/trunk/xfce4-mixer/debian/postinst 2006-06-18 06:08:00 UTC (rev 713)
+++ desktop/trunk/xfce4-mixer/debian/postinst 2006-06-20 11:50:19 UTC (rev 714)
@@ -2,7 +2,11 @@
if [ "$1" = "configure" ]; then
# Get xfce-mcs-manager to reinit
- pkill -USR1 -f xfce-mcs-manager || true
+ # hurd doesnt have procps so we do that another way
+ #pkill -USR1 -f xfce-mcs-manager || true
+ mcs=`ps aux | grep xfce-[m]cs-manager | awk '{ print $2 }'`
+ kill -USR1 $mcs || true
+
fi
#DEBHELPER#
Modified: desktop/trunk/xfce4-panel/debian/changelog
===================================================================
--- desktop/trunk/xfce4-panel/debian/changelog 2006-06-18 06:08:00 UTC (rev 713)
+++ desktop/trunk/xfce4-panel/debian/changelog 2006-06-20 11:50:19 UTC (rev 714)
@@ -1,8 +1,9 @@
xfce4-panel (4.3.90.1-4) UNRELEASED; urgency=low
- * Fixed typo in debian/NEWS
+ * Fixed typo in debian/NEWS
+ * Fixed package on hurd by not using pkill in postinst Closes: #374618
- -- Yves-Alexis Perez <corsac at corsac.net> Sun, 18 Jun 2006 08:06:34 +0200
+ -- Yves-Alexis Perez <corsac at corsac.net> Tue, 20 Jun 2006 13:38:59 +0200
xfce4-panel (4.3.90.1-3) unstable; urgency=low
Modified: desktop/trunk/xfce4-panel/debian/control
===================================================================
--- desktop/trunk/xfce4-panel/debian/control 2006-06-18 06:08:00 UTC (rev 713)
+++ desktop/trunk/xfce4-panel/debian/control 2006-06-20 11:50:19 UTC (rev 714)
@@ -8,7 +8,7 @@
Package: xfce4-panel
Architecture: any
-Depends: ${shlibs:Depends}, procps, libexo-0.3-0 (>= 0.3.1.6beta1-1)
+Depends: ${shlibs:Depends}, libexo-0.3-0 (>= 0.3.1.6beta1-1)
Replaces: xfce4 (<< 4.0.0.final-1), xfce4-iconbox, xfce4-showdesktop-plugin, xfce4-systray, xfce4-windowlist-plugin, xfce4-utils (<< 4.3.90.1-1), xfce4-trigger-launcher
Conflicts: xfce4 (<< 4.0.0.final-1), xfce4-themes, xfce4-iconbox, xfce4-showdesktop-plugin, xfce4-systray, xfce4-windowlist-plugin, xfce4-trigger-launcher
Description: The Xfce4 desktop environment panel
Modified: desktop/trunk/xfce4-panel/debian/xfce4-panel.postinst
===================================================================
--- desktop/trunk/xfce4-panel/debian/xfce4-panel.postinst 2006-06-18 06:08:00 UTC (rev 713)
+++ desktop/trunk/xfce4-panel/debian/xfce4-panel.postinst 2006-06-20 11:50:19 UTC (rev 714)
@@ -2,7 +2,11 @@
if [ "$1" = "configure" ]; then
# Get xfce-mcs-manager to reinit
- pkill -USR1 -f xfce-mcs-manager || true
+ # hurd doesnt have procps so we do it another way
+ #pkill -USR1 -f xfce-mcs-manager || true
+ mcs=`ps aux | grep xfce-[m]cs-manager | awk '{ print $2 }'`
+ kill -USR1 $mcs || true
+
# Run ldconfig to update shared library system
ldconfig
fi
Modified: desktop/trunk/xfce4-session/debian/changelog
===================================================================
--- desktop/trunk/xfce4-session/debian/changelog 2006-06-18 06:08:00 UTC (rev 713)
+++ desktop/trunk/xfce4-session/debian/changelog 2006-06-20 11:50:19 UTC (rev 714)
@@ -1,3 +1,9 @@
+xfce4-session (4.3.90.1-2) UNRELEASED; urgency=low
+
+ * Fixed package on hurd by not using pkill in postinst
+
+ -- Yves-Alexis Perez <corsac at corsac.net> Tue, 20 Jun 2006 13:40:19 +0200
+
xfce4-session (4.3.90.1-1) unstable; urgency=low
(Yves-Alexis Perez)
Modified: desktop/trunk/xfce4-session/debian/control
===================================================================
--- desktop/trunk/xfce4-session/debian/control 2006-06-18 06:08:00 UTC (rev 713)
+++ desktop/trunk/xfce4-session/debian/control 2006-06-20 11:50:19 UTC (rev 714)
@@ -9,7 +9,7 @@
Package: xfce4-session
Architecture: any
Depends: ${shlibs:Depends}, fortune-mod
-Recommends: xbase-clients, xfwm4, xfce4-utils, xfdesktop4, xfce4-panel, procps
+Recommends: xbase-clients, xfwm4, xfce4-utils, xfdesktop4, xfce4-panel
Suggests: sudo
Provides: x-session-manager
Conflicts: xfce4-toys
Modified: desktop/trunk/xfce4-session/debian/postinst
===================================================================
--- desktop/trunk/xfce4-session/debian/postinst 2006-06-18 06:08:00 UTC (rev 713)
+++ desktop/trunk/xfce4-session/debian/postinst 2006-06-20 11:50:19 UTC (rev 714)
@@ -6,8 +6,12 @@
--slave /usr/share/man/man1/x-session-manager.1.gz \
x-session-manager.1.gz /usr/share/man/man1/xfce4-session.1.gz
- # Get xfce-mcs-manager to reinit
- pkill -USR1 -f xfce-mcs-manager || true
+ # Get xfce-mcs-manager to reinit
+ # hurd doesnt have procps so we do it another way
+ #pkill -USR1 -f xfce-mcs-manager || true
+ mcs=`ps aux | grep xfce-[m]cs-manager | awk '{ print $2 }'`
+ kill -USR1 $mcs || true
+
fi
#DEBHELPER#
Modified: desktop/trunk/xfce4-utils/debian/changelog
===================================================================
--- desktop/trunk/xfce4-utils/debian/changelog 2006-06-18 06:08:00 UTC (rev 713)
+++ desktop/trunk/xfce4-utils/debian/changelog 2006-06-20 11:50:19 UTC (rev 714)
@@ -1,3 +1,9 @@
+xfce4-utils (4.3.90.1-2) UNRELEASED; urgency=low
+
+ * Fixed package on hurd by not using pkill in postinst
+
+ -- Yves-Alexis Perez <corsac at corsac.net> Tue, 20 Jun 2006 13:41:14 +0200
+
xfce4-utils (4.3.90.1-1) unstable; urgency=low
* New upstream release
Modified: desktop/trunk/xfce4-utils/debian/control
===================================================================
--- desktop/trunk/xfce4-utils/debian/control 2006-06-18 06:08:00 UTC (rev 713)
+++ desktop/trunk/xfce4-utils/debian/control 2006-06-20 11:50:19 UTC (rev 714)
@@ -8,7 +8,7 @@
Package: xfce4-utils
Architecture: any
-Depends: ${shlibs:Depends}, xterm|x-terminal-emulator, procps
+Depends: ${shlibs:Depends}, xterm|x-terminal-emulator
Recommends: xfwm4, xfce4-panel
Suggests: xfce4-session
Description: Various tools for Xfce
Modified: desktop/trunk/xfce4-utils/debian/postinst
===================================================================
--- desktop/trunk/xfce4-utils/debian/postinst 2006-06-18 06:08:00 UTC (rev 713)
+++ desktop/trunk/xfce4-utils/debian/postinst 2006-06-20 11:50:19 UTC (rev 714)
@@ -2,7 +2,11 @@
if [ "$1" = "configure" ]; then
# Get xfce-mcs-manager to reinit
- pkill -USR1 -f xfce-mcs-manager || true
+ # hurd doesnt have procps so we do it another way
+ mcs=`ps aux | grep xfce-[m]cs-manager | awk '{ print $2 }'`
+ kill -USR1 $mcs || true
+
+ #pkill -USR1 -f xfce-mcs-manager || true
fi
#DEBHELPER#
Modified: desktop/trunk/xfdesktop4/debian/changelog
===================================================================
--- desktop/trunk/xfdesktop4/debian/changelog 2006-06-18 06:08:00 UTC (rev 713)
+++ desktop/trunk/xfdesktop4/debian/changelog 2006-06-20 11:50:19 UTC (rev 714)
@@ -1,3 +1,9 @@
+xfdesktop4 (4.3.90.1-4) UNRELEASED; urgency=low
+
+ * Fixed package on hurd by not using pkill in postinst
+
+ -- Yves-Alexis Perez <corsac at corsac.net> Tue, 20 Jun 2006 13:43:04 +0200
+
xfdesktop4 (4.3.90.1-3) unstable; urgency=low
* Use Thunar instead of xffm in menu files. Closes: #372847
Modified: desktop/trunk/xfdesktop4/debian/control
===================================================================
--- desktop/trunk/xfdesktop4/debian/control 2006-06-18 06:08:00 UTC (rev 713)
+++ desktop/trunk/xfdesktop4/debian/control 2006-06-20 11:50:19 UTC (rev 714)
@@ -8,7 +8,7 @@
Package: xfdesktop4
Architecture: any
-Depends: ${shlibs:Depends}, xfce4-mcs-manager, xfce4-utils, procps
+Depends: ${shlibs:Depends}, xfce4-mcs-manager, xfce4-utils
Suggests: menu
Conflicts: menu (<<2.1.12)
Description: Provides desktop background and root menu
Modified: desktop/trunk/xfdesktop4/debian/postinst
===================================================================
--- desktop/trunk/xfdesktop4/debian/postinst 2006-06-18 06:08:00 UTC (rev 713)
+++ desktop/trunk/xfdesktop4/debian/postinst 2006-06-20 11:50:19 UTC (rev 714)
@@ -11,7 +11,11 @@
fi
# Get xfce-mcs-manager to reinit
- pkill -USR1 -f xfce-mcs-manager || true
+ # hurd doesnt have procps so we do it another way
+ #pkill -USR1 -f xfce-mcs-manager || true
+ mcs=`ps aux | grep xfce-[m]cs-manager | awk '{ print $2 }'`
+ kill -USR1 $mcs || true
+
fi
#DEBHELPER#
Modified: desktop/trunk/xfprint4/debian/changelog
===================================================================
--- desktop/trunk/xfprint4/debian/changelog 2006-06-18 06:08:00 UTC (rev 713)
+++ desktop/trunk/xfprint4/debian/changelog 2006-06-20 11:50:19 UTC (rev 714)
@@ -1,3 +1,9 @@
+xfprint4 (4.3.90.1-2) UNRELEASED; urgency=low
+
+ * Fixed package on hurd by not using pkill in postinst
+
+ -- Yves-Alexis Perez <corsac at corsac.net> Tue, 20 Jun 2006 13:43:51 +0200
+
xfprint4 (4.3.90.1-1) unstable; urgency=low
(Yves-Alexis Perez)
Modified: desktop/trunk/xfprint4/debian/control
===================================================================
--- desktop/trunk/xfprint4/debian/control 2006-06-18 06:08:00 UTC (rev 713)
+++ desktop/trunk/xfprint4/debian/control 2006-06-20 11:50:19 UTC (rev 714)
@@ -8,7 +8,7 @@
Package: xfprint4
Architecture: any
-Depends: ${shlibs:Depends}, procps
+Depends: ${shlibs:Depends}
Suggests: a2ps, psutils
Description: Printer GUI for Xfce4
xfprint4 is a printer manager for the Xfce4 desktop environment. It allows
Modified: desktop/trunk/xfprint4/debian/postinst
===================================================================
--- desktop/trunk/xfprint4/debian/postinst 2006-06-18 06:08:00 UTC (rev 713)
+++ desktop/trunk/xfprint4/debian/postinst 2006-06-20 11:50:19 UTC (rev 714)
@@ -2,7 +2,11 @@
if [ "$1" = "configure" ]; then
# Get xfce-mcs-manager to reinit
- pkill -USR1 -f xfce-mcs-manager || true
+ # hurd doesnt have procps so we do it another way
+ #pkill -USR1 -f xfce-mcs-manager || true
+ mcs=`ps aux | grep xfce-[m]cs-manager | awk '{ print $2 }'`
+ kill -USR1 $mcs || true
+
fi
#DEBHELPER#
Modified: desktop/trunk/xfwm4/debian/changelog
===================================================================
--- desktop/trunk/xfwm4/debian/changelog 2006-06-18 06:08:00 UTC (rev 713)
+++ desktop/trunk/xfwm4/debian/changelog 2006-06-20 11:50:19 UTC (rev 714)
@@ -1,3 +1,9 @@
+xfwm4 (4.3.90.1-2) UNRELEASED; urgency=low
+
+ * Fixed package on hurd by not using pkill in postinst
+
+ -- Yves-Alexis Perez <corsac at corsac.net> Tue, 20 Jun 2006 13:45:16 +0200
+
xfwm4 (4.3.90.1-1) unstable; urgency=low
* New upstream release
Modified: desktop/trunk/xfwm4/debian/control
===================================================================
--- desktop/trunk/xfwm4/debian/control 2006-06-18 06:08:00 UTC (rev 713)
+++ desktop/trunk/xfwm4/debian/control 2006-06-20 11:50:19 UTC (rev 714)
@@ -8,7 +8,7 @@
Package: xfwm4
Architecture: any
-Depends: ${shlibs:Depends}, procps
+Depends: ${shlibs:Depends}
Recommends: xfwm4-themes, xfce4-mcs-manager
Suggests: xfce4
Provides: x-window-manager
Modified: desktop/trunk/xfwm4/debian/postinst
===================================================================
--- desktop/trunk/xfwm4/debian/postinst 2006-06-18 06:08:00 UTC (rev 713)
+++ desktop/trunk/xfwm4/debian/postinst 2006-06-20 11:50:19 UTC (rev 714)
@@ -3,13 +3,17 @@
# install alternatives links
if [ "$1" = "configure" ]; then
- update-alternatives --install /usr/bin/x-window-manager \
- x-window-manager /usr/bin/xfwm4 60 --slave \
- /usr/share/man/man1/x-window-manager.1.gz \
- x-window-manager.1.gz /usr/share/man/man1/xfwm4.1.gz
+ update-alternatives --install /usr/bin/x-window-manager \
+ x-window-manager /usr/bin/xfwm4 60 --slave \
+ /usr/share/man/man1/x-window-manager.1.gz \
+ 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
+ mcs=`ps aux | grep xfce-[m]cs-manager | awk '{ print $2 }'`
+ kill -USR1 $mcs || true
- # Get xfce-mcs-manager to reinit
- pkill -USR1 -f xfce-mcs-manager || true
fi
#DEBHELPER#
More information about the Pkg-xfce-commits
mailing list