diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-01-18 17:12:18 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-01-18 17:12:18 +0000 |
commit | 4770bc86abc884603500987585d34f85acfcc06b (patch) | |
tree | 8884fbabdba83b427f2d079f4331f0010a2341c1 /urpmi.bash-completion | |
parent | 66ab26598afa8239868d32b5118304c629dafe81 (diff) | |
download | urpmi-4770bc86abc884603500987585d34f85acfcc06b.tar urpmi-4770bc86abc884603500987585d34f85acfcc06b.tar.gz urpmi-4770bc86abc884603500987585d34f85acfcc06b.tar.bz2 urpmi-4770bc86abc884603500987585d34f85acfcc06b.tar.xz urpmi-4770bc86abc884603500987585d34f85acfcc06b.zip |
- urpmi:
o --buildrequires deprecate --src, --src is kept for compatibility but its
behaviour is changed a little (it doesn't download src.rpm anymore)
ie implement what i suggested on cooker mailing list:
Date: Thu, 15 Nov 2007 18:21:32 +0100
Subject: urpmi --src issues, suggesting replacing --src with --buildrequires
current situation:
% urpmi /xxx/foo.src.rpm
#=> installs foo.src.rpm buildrequires
% urpmi --install-src foo bar
#=> downloads foo.src.rpm bar.src.rpm and "rpm -i"
% urpmi --help | grep -- --src
--src, -s - next package is a source package.
% urpmi --src foo
#=> urpmi says it will install foo buildrequires + foo.src.rpm
#=> in fact, it only installs foo buildrequires
weird cases in current urpmi:
% urpmi --src foo bar
#=> equiv to "urpmi --src foo ; urpmi bar"
% urpmi foo --src bar
#=> equiv to "urpmi --src foo bar" above :-(
% urpmi --src foo --src bar
#=> equiv to "urpmi --src foo bar" :-(
suggestions:
1) we could make --src a global option:
% urpmi --src foo bar
#=> would install buildrequires of foo.src.rpm and bar.src.rpm
cons: it breaks compatibility (though i'm quite sure noone uses the
previous behaviour)
2) deprecate --src, introduce with --buildrequires:
% urpmi --buildrequires foo bar
#=> would install buildrequires of foo.src.rpm and bar.src.rpm
3) when doing "urpmi /xxx/foo.src.rpm", warn the user that it should
use either "--install-src" or "--buildrequires", and that urpmi is
defaulting to "--buildrequires"
2) and 3) are implemented now
Diffstat (limited to 'urpmi.bash-completion')
-rw-r--r-- | urpmi.bash-completion | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/urpmi.bash-completion b/urpmi.bash-completion index 65aaa3cd..39578f13 100644 --- a/urpmi.bash-completion +++ b/urpmi.bash-completion @@ -94,10 +94,10 @@ _urpmi() if [[ "$cur" == -* ]]; then # return list of available options - options="$common_options -a -p -P -y -s --update --media \ + options="$common_options -a -p -P -y --update --media \ --excludemedia --sortmedia --synthesis --auto \ --auto-select --no-uninstall --split-level \ - --split-length --fuzzy --src --install-src --clean \ + --split-length --fuzzy --buildrequires --install-src --clean \ --noclean --parallel --wget --prozilla --curl \ --limit-rate --proxy --proxy-user --bug \ --no-verify-rpm --no-install --test --excludepath \ |