summaryrefslogtreecommitdiffstats
path: root/urpm/args.pm
Commit message (Collapse)AuthorAgeFilesLines
* - urpmq:Pascal Rigaux2008-02-251-0/+1
| | | | | o add --conflicts
* - urpmq:Pascal Rigaux2008-02-251-2/+2
| | | | | | o --requires now display the raw requires, use --requires-recursive to get the old behaviour (#29176)
* - all tools:Pascal Rigaux2008-02-231-0/+1
| | | | | | o handle mirrorlist (need perl-Zone-TimeInfo patched for geolocalisation)
* - urpmq:Pascal Rigaux2008-01-251-1/+1
| | | | | o add --no-suggests
* - urpmi:Pascal Rigaux2008-01-181-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* - urpmf:Pascal Rigaux2008-01-181-0/+1
| | | | | | o display a warning when searching "xxx(yyy)" since it is handled as a regexp and so the parentheses are useless. suggest using --literal
* factorize duplicated codePascal Rigaux2008-01-181-15/+15
|
* - urpmf:Pascal Rigaux2008-01-181-0/+1
| | | | | | o add special code for --files simple case, it makes urpmf 3x faster for this often used case
* - urpmq:Pascal Rigaux2008-01-171-0/+1
| | | | | o add --provides
* - all tools:Pascal Rigaux2008-01-171-2/+6
| | | | | | o deprecate --curl and --wget in favor of --downloader curl and --downloader --wget
* deprecate "urpmq --requires"Pascal Rigaux2008-01-141-0/+4
|
* o deprecate "urpmq -R" and "urpmq -RR"Pascal Rigaux2008-01-141-2/+6
|
* - urpmq:Pascal Rigaux2008-01-141-0/+1
| | | | | o add --sourcerpm
* - 5.0Pascal Rigaux2008-01-111-0/+1
| | | | | | | | | | | | | | | | | | | - urpmf, urpmq: o use xml info instead of hdlist when possible o "urpmq -l" is faster (3x) o "urpmf -l" is slower (1.5x) o "urpmf --sourcerpm" is much faster o see "xml-info" option in urpmi.cfg(5) to see when those files are downloaded o new require: perl module XML::LibXML - urpmq: o use rpm file instead of hdlist/xml-info when file is local o use URPM::Package->changelogs (need perl-URPM 3.06) - urpmi.update, urpmi.addmedia, urpmi.removemedia: o drop hdlist support replaced with xml media_info (this imply file-deps are correctly handled, see genhdlist2(1)) - urpmi.addmedia o new --xml-info option
* move the list of known tags out of urpm/args.pm into urpmf,Pascal Rigaux2008-01-101-25/+4
| | | | | | and remove duplicated list (nb: conf_files has been added to command-line, but this won't hurt afaik)
* normalize to fit xml_info namesPascal Rigaux2008-01-101-1/+1
|
* - urpmi.update, urpmi.addmedia, urpmi.removemedia:Pascal Rigaux2007-12-191-3/+3
| | | | | | | o drop option "-c" which used to clean /var/cache/urpmi/headers since we don't use that dir anymore :)
* - all tools:Pascal Rigaux2007-12-191-2/+2
| | | | | o drop hdlist support (will be replaced with xml media_info)
* add support for aria2 (and thus support for metalink handling as well:)Per Øyvind Karlsen2007-12-111-4/+6
|
* - urpmi:Pascal Rigaux2007-12-101-1/+1
| | | | | o handle --suggests (to override urpmi.cfg global option "no-suggests") (#36007)
* - urpmq:Pascal Rigaux2007-11-281-1/+1
| | | | | o new option --requires-recursive (alias of option -d)
* add undocumented & unstable --tune-rpm optionPascal Rigaux2007-11-141-0/+3
| | | | | (allow to test nofsync and private db)
* reverting commit (13 March 2006): Pascal Rigaux2007-09-131-1/+0
| | | | | | | "Passing bundle option, even if that does nothing for now" since it does nothing. will revert if/when support is really implemented
* - urpmfPascal Rigaux2007-09-111-3/+2
| | | | | | | o fix --synthesis (by handling synthesis argument the same way in urpmq, urpmi and urpmf)
* add new urpmi option, only for debugging purpose: --debug__do_not_installPascal Rigaux2007-09-041-0/+1
|
* - urpmiPascal Rigaux2007-08-281-1/+5
| | | | | | | o handle changes in priority-upgrade list between old and new urpmi (#32925) nb: keep --no-priority-upgrade since it is passed by older urpmi when restarting
* - urpmiPascal Rigaux2007-08-231-0/+1
| | | | | o new option --justdb (new perl-URPM 1.76)
* (set_root) do not default to --nolock when using --root (reverting rafaelThierry Vignaud2007-08-131-1/+0
| | | | | commit on 2006-01-11 13:17)
* re-indentPascal Rigaux2007-08-131-1/+1
|
* (set_root) split it out in order to be reused by rpmdrakeThierry Vignaud2007-08-131-8/+11
|
* - urpmiPascal Rigaux2007-08-111-1/+2
| | | | | | o handle preferred choices (through --prefer, /etc/urpmi/prefer.list and /etc/urpmi/prefer.vendor.list)
* factorizePascal Rigaux2007-08-111-2/+1
|
* - urpmiPascal Rigaux2007-08-111-0/+1
| | | | | o new option --replacepkgs (same as rpm --replacepkgs) (#16112)
* - all toolsPascal Rigaux2007-08-111-0/+4
| | | | | o new option --wait-lock (#13025)
* - urpmiPascal Rigaux2007-08-091-0/+2
| | | | | | | | | | | o explicit error when using "urpmi ---install-src" as user with remote media o add support for "suggests": a newly suggested package is installed as if required, but one can remove it afterwards, or use --no-suggests - urpmf o handle --suggests all the work is done in perl-URPM 1.69
* handle urpmf --licensePascal Rigaux2007-08-021-0/+1
|
* get rid of some "Use of uninitialized value"Pascal Rigaux2007-08-021-1/+1
|
* factorize handling of -q|--quiet and -v|--verbose for all toolsPascal Rigaux2007-08-011-10/+6
| | | | | this fixes -q option not handled by urpmi.update (#31890)
* - normalize verbose option handling over $options{verbose}Pascal Rigaux2007-08-011-5/+5
| | | | | - handle $rpm_opt where it is used
* - urpmi.addmedia --distrib, urpmi/urpme/urpmf/urpmq --use-distrib Pascal Rigaux2007-06-181-0/+1
| | | | | | | | | | | o media.cfg per media field hdlist=hdlist_xxx.cz is not used anymore, xxx/media_info/hdlist.cz is used instead. To get previous behaviour, use option --use-copied-hdlist or use_copied_hdlist=1 in media.cfg beware: this modifies the behaviour of urpmi, especially for multi CDs media which were the only one really using the hdlist-copied-in-media/media_info feature
* - urpmfPascal Rigaux2007-06-141-1/+1
| | | | | o add option --use-distrib
* - urpmqPascal Rigaux2007-06-141-8/+1
| | | | | | | | o allow using --use-distrib as non-root nb: reverting commit r15208 2005-10-12 "Forbid urpmq --use-distrib when non root" since i can't see any valid reason for this
* - all toolsPascal Rigaux2007-06-011-0/+1
| | | | | o --debug now implies --verbose
* re-sync after the big svn lossPascal Rigaux2007-04-241-5/+8
|
* display URPM debug messages when using --debugPascal Rigaux2007-01-091-2/+6
|
* add code to help debugging bugs like #26256Pascal Rigaux2006-12-061-5/+13
|
* directly set $urpm->{root}, it's simplerPascal Rigaux2006-11-291-2/+2
| | | | | (also use it in urpm::get_pkgs::selected2list() even if callers didn't pass it)
* factorize --nolock and --root option handlingPascal Rigaux2006-11-291-13/+8
|
* urpmi.removemedia now use urpm::args, and some cleanupPascal Rigaux2006-11-291-10/+11
|
* --debug for all progsPascal Rigaux2006-11-281-3/+7
|