diff options
author | Olivier Blin <oblin@mandriva.org> | 2004-01-17 00:11:09 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2004-01-17 00:11:09 +0000 |
commit | f3c0f0a35348ffacaeb53444201692f43f3dda52 (patch) | |
tree | 10c33735855d786a565b62d27833db3c9cb0aca3 | |
parent | 9db2c62eef045c74b3553734ba8a18ebec6a8059 (diff) | |
download | urpmi-f3c0f0a35348ffacaeb53444201692f43f3dda52.tar urpmi-f3c0f0a35348ffacaeb53444201692f43f3dda52.tar.gz urpmi-f3c0f0a35348ffacaeb53444201692f43f3dda52.tar.bz2 urpmi-f3c0f0a35348ffacaeb53444201692f43f3dda52.tar.xz urpmi-f3c0f0a35348ffacaeb53444201692f43f3dda52.zip |
support --root in bash_completion (Guillaume Rousse)
-rw-r--r-- | urpmi.bash-completion | 6 | ||||
-rw-r--r-- | urpmi.spec | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/urpmi.bash-completion b/urpmi.bash-completion index 73ac2eb5..3b2c463b 100644 --- a/urpmi.bash-completion +++ b/urpmi.bash-completion @@ -77,6 +77,10 @@ _urpmi() _urpmi_aliases return 0 ;; + --root) + _filedir -d + return 0 + ;; esac if [[ "$cur" == -* ]]; then @@ -88,7 +92,7 @@ _urpmi() --noclean --force --allow-nodeps --allow-force --parallel \ --wget --curl --limit-rate --proxy --proxy-user --bug \ --env --X --best-output --verify-rpm --no-verify-rpm \ - --test --excludepath --excludedocs ' -- $cur ) ) + --test --excludepath --excludedocs --root' -- $cur ) ) else # return available packages (unless it is clearly a file) and rpm files if [[ "$cur" != */* ]]; then @@ -7,7 +7,7 @@ ################################################################## %define name urpmi -%define version 4.4.2 +%define version 4.4.3 %define release 1mdk %define group %(perl -e 'printf "%%s\\n", "%_vendor" =~ /mandrake/i ? "System/Configuration/Packaging" : "System Environment/Base"') @@ -236,6 +236,10 @@ $urpm->update_media(nolock => 1, nopubkey => 1); %{compat_perl_vendorlib}/urpm/parallel_ssh.pm %changelog +* Sat Jan 17 2004 Blin Olivier <olivier@blino.mds> 4.4.3-1mdk +- fix --limit-rate in man pages (it's in bytes/sec) +- support --root in bash_completion (Guillaume Rousse) + * Thu Jan 15 2004 Olivier Blin <blino@mandrake.org> 4.4.2-1mdk - print updates description in urpmq -i when available - add auto and keep options in global config section |