From cdb523d5ab869b95f9c33fa0928744adcfb64e2d Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Thu, 20 Sep 2007 17:20:18 +0200 Subject: [PATCH] Depend on console-tools; drop runit --- debian/changelog | 9 +++++++++ debian/control | 4 ++-- manpages/grml-scripts.1 | 4 +--- usr_bin/runit | 30 ------------------------------ 4 files changed, 12 insertions(+), 35 deletions(-) delete mode 100755 usr_bin/runit diff --git a/debian/changelog b/debian/changelog index f1326b8..513b396 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 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 diff --git a/debian/control b/debian/control index 6200ba8..131a4b5 100644 --- a/debian/control +++ b/debian/control @@ -10,8 +10,8 @@ XS-Vcs-Browser: http://hg.grml.org/grml-scripts/ 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: diff --git a/manpages/grml-scripts.1 b/manpages/grml-scripts.1 index 81d7dc2..782cefd 100644 --- a/manpages/grml-scripts.1 +++ b/manpages/grml-scripts.1 @@ -3,7 +3,7 @@ .\" Authors: grml-team (grml.org), (c) Michael Prokop .\" 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 runit -prompt for command via Xdialog and execute it afterwards .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 index d1837cc..0000000 --- a/usr_bin/runit +++ /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 -# 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 ################################################################# -- 2.1.4