Depend on console-tools; drop runit 1.0.16
authorMichael Prokop <mika@grml.org>
Thu, 20 Sep 2007 15:20:18 +0000 (17:20 +0200)
committerMichael Prokop <mika@grml.org>
Thu, 20 Sep 2007 15:20:18 +0000 (17:20 +0200)
debian/changelog
debian/control
manpages/grml-scripts.1
usr_bin/runit [deleted file]

index f1326b8..513b396 100644 (file)
@@ -1,3 +1,12 @@
+grml-scripts (1.0.16) unstable; urgency=low
+
+  * Change "console-tools | xbase-clients" into dependency on
+    console-tools and put xbase-clients to Suggests instead.
+  * Drop "runit", which very probably nobody uses at all but which
+    conflicts with package runit (thanks for hint, gebi).
+
+ -- Michael Prokop <mika@grml.org>  Thu, 20 Sep 2007 17:19:13 +0200
+
 grml-scripts (1.0.15) unstable; urgency=low
 
   * grml-setkeyboard: add one further LANG=C dialog run and
 grml-scripts (1.0.15) unstable; urgency=low
 
   * grml-setkeyboard: add one further LANG=C dialog run and
index 6200ba8..131a4b5 100644 (file)
@@ -10,8 +10,8 @@ XS-Vcs-Browser: http://hg.grml.org/grml-scripts/
 
 Package: grml-scripts
 Architecture: any
 
 Package: grml-scripts
 Architecture: any
-Depends: less, dialog, perl, zsh, dash, w3m | links | links2, screen, console-tools | xbase-clients, grml-network, grml-etc-core, libterm-readkey-perl
-Suggests: ruby, python, grml-x, ipcalc, hwinfo, antiword, grml-etc, grml-rebuildfstab, grml-scanpartitions, grml-files, grml-hwinfo, grml-saveconfig, pptp-linux, flite, wmii, mutt | mutt-ng, slrn, grml-docs, grml-autoconfig (>= 0.6.9), lzop, dirvish, sudo, idesk, xlockmore
+Depends: less, dialog, perl, zsh, dash, w3m | links | links2, screen, console-tools, grml-network, grml-etc-core, libterm-readkey-perl
+Suggests: xbase-clients, ruby, python, grml-x, ipcalc, hwinfo, antiword, grml-etc, grml-rebuildfstab, grml-scanpartitions, grml-files, grml-hwinfo, grml-saveconfig, pptp-linux, flite, wmii, mutt | mutt-ng, slrn, grml-docs, grml-autoconfig (>= 0.6.9), lzop, dirvish, sudo, idesk, xlockmore
 Conflicts: scanmodem, grml-etc-core (<< 0.1-30)
 Description: some small scripts which should make life easier
  Some scripts which should make life easier. For example:
 Conflicts: scanmodem, grml-etc-core (<< 0.1-30)
 Description: some small scripts which should make life easier
  Some scripts which should make life easier. For example:
index 81d7dc2..782cefd 100644 (file)
@@ -3,7 +3,7 @@
 .\" Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
 .\" Bug-Reports:   see http://grml.org/bugs/
 .\" License:       This file is licensed under the GPL v2.
 .\" Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
 .\" Bug-Reports:   see http://grml.org/bugs/
 .\" License:       This file is licensed under the GPL v2.
-.\" Latest change: Sam Apr 14 11:02:33 CEST 2007 [mika]
+.\" Latest change: Don Sep 20 17:18:50 CEST 2007 [mika]
 .\"###############################################################################
 
 .\"###############################################################
 .\"###############################################################################
 
 .\"###############################################################
@@ -101,8 +101,6 @@ return IP address of running system on stdout (requires network access)
 .SS osd_server.py
 Listen for incoming messages on a specific port and print
 them via osd_cat.
 .SS osd_server.py
 Listen for incoming messages on a specific port and print
 them via osd_cat.
-.SS runit
-prompt for command via Xdialog and execute it afterwards
 .SS say
 wrapper for festival to use the text to speech system
 .SS search
 .SS say
 wrapper for festival to use the text to speech system
 .SS search
diff --git a/usr_bin/runit b/usr_bin/runit
deleted file mode 100755 (executable)
index d1837cc..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/sh
-# Filename:      runit
-# Purpose:       prompt for command via Xdialog and execute it afterwards
-# Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
-# Bug-Reports:   see http://grml.org/bugs/
-# License:       This file is licensed under the GPL v2.
-# Latest change: Fre Jän 07 11:46:02 CET 2005 [mika]
-################################################################################
-
-tempfile=$(mktemp)
-trap "rm -f $tempfile" 0 1 2 5 15
-
-Xdialog --cr-wrap \
-        --title "INPUT BOX" --clear \
-        --inputbox \
-"run command:" 0 0 2> $tempfile
-
-retval=$?
-
-COMMAND=$(cat "$tempfile")
-
-case $retval in
-  0)
-    echo "Trying to run: $COMMAND"
-    exec "$COMMAND" & ;;
-  1)
-    echo "Cancel pressed.";;
-esac
-
-## END OF FILE #################################################################