hwclock,ionice,rtcwake: Deprecate in favor of util-linux ones (Debian: #737672)

This commit is contained in:
Ville Skyttä 2014-02-08 15:00:10 +02:00
parent 602d18853c
commit e4b17402bb
10 changed files with 19 additions and 63 deletions

View File

@ -130,7 +130,6 @@ bashcomp_DATA = 2to3 \
hping2 \ hping2 \
htop \ htop \
htpasswd \ htpasswd \
hwclock \
iconv \ iconv \
id \ id \
idn \ idn \
@ -142,7 +141,6 @@ bashcomp_DATA = 2to3 \
installpkg \ installpkg \
interdiff \ interdiff \
invoke-rc.d \ invoke-rc.d \
ionice \
ip \ ip \
iperf \ iperf \
ipmitool \ ipmitool \
@ -305,7 +303,6 @@ bashcomp_DATA = 2to3 \
rpmcheck \ rpmcheck \
rrdtool \ rrdtool \
rsync \ rsync \
rtcwake \
sbcl \ sbcl \
sbopkg \ sbopkg \
screen \ screen \
@ -390,7 +387,16 @@ bashcomp_DATA = 2to3 \
zopfli zopfli
EXTRA_DIST = $(bashcomp_DATA) \ EXTRA_DIST = $(bashcomp_DATA) \
_mock _modules _nmcli _subversion _udevadm _yum _yum-utils _hwclock \
_ionice \
_mock \
_modules \
_nmcli \
_rtcwake \
_subversion \
_udevadm \
_yum \
_yum-utils
CLEANFILES = \ CLEANFILES = \
7za \ 7za \

View File

@ -1,5 +1,8 @@
# hwclock(8) completion -*- shell-script -*- # hwclock(8) completion -*- shell-script -*-
# Use of this file is deprecated. Upstream completion is available in
# util-linux >= 2.23, use that instead.
_hwclock() _hwclock()
{ {
local cur prev words cword local cur prev words cword

View File

@ -1,5 +1,8 @@
# ionice(1) completion -*- shell-script -*- # ionice(1) completion -*- shell-script -*-
# Use of this file is deprecated. Upstream completion is available in
# util-linux >= 2.23, use that instead.
_ionice() _ionice()
{ {
local cur prev words cword local cur prev words cword

View File

@ -1,5 +1,8 @@
# bash completion for rtcwake -*- shell-script -*- # bash completion for rtcwake -*- shell-script -*-
# Use of this file is deprecated. Upstream completion is available in
# util-linux >= 2.23, use that instead.
_rtcwake() _rtcwake()
{ {
local cur prev words cword split local cur prev words cword split

View File

@ -1 +0,0 @@
assert_source_completions hwclock

View File

@ -1 +0,0 @@
assert_source_completions ionice

View File

@ -1 +0,0 @@
assert_source_completions rtcwake

View File

@ -1,18 +0,0 @@
proc setup {} {
save_env
}
proc teardown {} {
assert_env_unmodified
}
setup
assert_complete_any "hwclock -"
sync_after_int
teardown

View File

@ -1,18 +0,0 @@
proc setup {} {
save_env
}
proc teardown {} {
assert_env_unmodified
}
setup
assert_complete_any "ionice -"
sync_after_int
teardown

View File

@ -1,20 +0,0 @@
proc setup {} {
save_env
}
proc teardown {} {
assert_env_unmodified
}
setup
assert_complete_any "rtcwake "
sync_after_int
teardown