Remove use of ucf for /etc/bash-completion (Closes: #488171).
This commit is contained in:
parent
09e0b28c4c
commit
fb45a9303d
8
debian/changelog
vendored
8
debian/changelog
vendored
@ -1,5 +1,6 @@
|
||||
bash-completion (20080624) UNRELEASED; urgency=low
|
||||
bash-completion (20080705) unstable; urgency=low
|
||||
|
||||
[ David Paleino ]
|
||||
* Added more completions to imagemagick (thanks to Nelson A. de
|
||||
Oliveira) (Closes: #487786)
|
||||
* Added xrandr completion (thanks to Anton Khirnov) (Closes: #487825)
|
||||
@ -9,7 +10,10 @@ bash-completion (20080624) UNRELEASED; urgency=low
|
||||
- added . to $PATH, to allow debugging "local" executables.
|
||||
- do not complete Bash's builtins (thanks to Morita Sho)
|
||||
|
||||
-- David Paleino <d.paleino@gmail.com> Wed, 25 Jun 2008 21:17:23 +0200
|
||||
[ Luk Claes ]
|
||||
* Remove use of ucf for /etc/bash-completion (Closes: #488171).
|
||||
|
||||
-- Luk Claes <luk@debian.org> Sat, 05 Jul 2008 16:14:15 +0200
|
||||
|
||||
bash-completion (20080617.5) unstable; urgency=medium
|
||||
|
||||
|
2
debian/control
vendored
2
debian/control
vendored
@ -8,7 +8,7 @@ Standards-Version: 3.8.0
|
||||
|
||||
Package: bash-completion
|
||||
Architecture: all
|
||||
Depends: bash (>= 3.1dfsg-9), ucf
|
||||
Depends: bash (>= 3.1dfsg-9)
|
||||
Replaces: bash (<< 3.1dfsg-9)
|
||||
Description: programmable completion for the bash shell
|
||||
bash completion extends bashs standard completion behavior to achieve
|
||||
|
1
debian/dirs
vendored
1
debian/dirs
vendored
@ -1,5 +1,4 @@
|
||||
etc/bash_completion.d
|
||||
usr/bin
|
||||
usr/share/bash
|
||||
usr/share/doc/bash
|
||||
usr/share/doc/bash-completion
|
||||
|
2
debian/install
vendored
2
debian/install
vendored
@ -1,3 +1,3 @@
|
||||
bash_completion /usr/share/bash/
|
||||
bash_completion /etc/
|
||||
contrib /usr/share/doc/bash-completion/
|
||||
extra/dh_bash-completion /usr/bin/
|
||||
|
9
debian/postinst
vendored
9
debian/postinst
vendored
@ -4,8 +4,13 @@ set -e
|
||||
|
||||
case "$1" in
|
||||
configure)
|
||||
ucf /usr/share/bash/bash_completion /etc/bash_completion
|
||||
ucfr bash-completion /etc/bash_completion
|
||||
# remove ucf configury
|
||||
if which ucf >/dev/null; then
|
||||
ucf --purge /etc/bash_completion
|
||||
fi
|
||||
if which ucfr >/dev/null; then
|
||||
ucfr --purge bash-completion /etc/bash_completion
|
||||
fi
|
||||
;;
|
||||
abort-upgrade|abort-remove|abort-deconfigure)
|
||||
;;
|
||||
|
6
debian/postrm
vendored
6
debian/postrm
vendored
@ -5,12 +5,6 @@ set -e
|
||||
case "$1" in
|
||||
purge)
|
||||
rm -f /etc/bash_completion
|
||||
if which ucf >/dev/null; then
|
||||
ucf --purge /etc/bash_completion
|
||||
fi
|
||||
if which ucfr >/dev/null; then
|
||||
ucfr --purge bash-completion /etc/bash_completion
|
||||
fi
|
||||
;;
|
||||
remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
|
||||
;;
|
||||
|
Loading…
x
Reference in New Issue
Block a user