summaryrefslogtreecommitdiffstats
path: root/urpmi
Commit message (Collapse)AuthorAgeFilesLines
* - urpmi:Pascal Rigaux2008-02-251-2/+3
| | | | | | o display "%s of packages will be retrieved." (need perl-URPM 3.10 and synthesis built with @filesize@)
* don't use global configs_dir when using --envPascal Rigaux2008-02-251-0/+1
|
* deffine 'message' callbackThierry Vignaud2008-02-251-0/+4
|
* add --debug in usage and man pagePascal Rigaux2008-02-151-0/+1
|
* nocheck_access is quite wrong nowadays afaikPascal Rigaux2008-02-051-1/+0
|
* add --no-suggests to urpmi usagePascal Rigaux2008-01-251-0/+1
|
* add --aria2-options to --help outputPer Øyvind Karlsen2008-01-191-0/+1
|
* - urpmi:Pascal Rigaux2008-01-181-16/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* fix using urpmi --env where the media are virtual (by removing "virtual" ↵Pascal Rigaux2008-01-171-1/+5
| | | | from urpmi.cfg)
* - all tools:Pascal Rigaux2008-01-171-5/+4
| | | | | | o deprecate --curl and --wget in favor of --downloader curl and --downloader --wget
* add missing --aria2 to --helpPer Øyvind Karlsen2008-01-171-0/+1
|
* better fix for "always prompt before doing a priority-upgrade transaction,Pascal Rigaux2008-01-111-1/+1
| | | | | | | | | | | | even if there is only one priority upgrade package (since there will be more packages to install after restarting urpmi)" since we don't want to prompt if all pkgs have been especially prompted on command-line also not using suggests when selecting pkgs in priority-upgrade (nb: this may by-pass some suggests in priority-upgrade pkgs, need more checking)
* - urpmiPascal Rigaux2008-01-081-1/+1
| | | | | | | | | o always prompt before doing a priority-upgrade transaction, even if there is only one priority upgrade package (since there will be more packages to install after restarting urpmi) see bug #36483 which mention this
* - urpmi.update, urpmi.addmedia, urpmi.removemedia:Pascal Rigaux2007-12-191-1/+0
| | | | | | | 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/+0
| | | | | o drop hdlist support (will be replaced with xml media_info)
* - urpmi:Pascal Rigaux2007-12-181-1/+1
| | | | | | | | o do remove __db* on priority-upgrade (fix regression introduced in 4.10.15) (may fix #36190)
* create urpm->new_parse_cmdline and use itPascal Rigaux2007-12-121-4/+1
| | | | | (it may be a little stricter for urpmi since we exit(1) on parse_cmdline error)
* factorize default options, and have them by default in $urpm->{options}Pascal Rigaux2007-11-281-7/+4
|
* - urpmi:Pascal Rigaux2007-11-281-2/+2
| | | | | | | | o small transactions should have at least 8 packages (ie --split-length is now 8 by default) o do not do a big transaction if installing less than 20 packages (ie --split-level is now 1 by default)
* - all tools:Pascal Rigaux2007-11-221-1/+1
| | | | | | | o exit with code 1 after displaying usage (instead of exit code 0) (urpmi exit code "1" is correctly documented in urpmi's manpage)
* - urpmiPascal Rigaux2007-11-191-3/+4
| | | | | | | | | o --auto-update is quite unsafe, but at least now it should be cleaner (ensure $urpm doesn't have media twice) bug triggered by --auto-update --update. still --auto-update --update should not update non-update media...
* a somewhat better error message Pascal Rigaux2007-11-151-1/+1
| | | | | (occurs when using --install-src and a buildrequire is missing)
* nicer error messagePascal Rigaux2007-11-151-1/+1
|
* create urpm::sys::clean_rpmdb_shared_regions() and use itPascal Rigaux2007-10-021-1/+1
|
* $rpm_lock is undefined when we create the rpmdb from scratchPascal Rigaux2007-10-021-1/+1
|
* debug__do_not_install: better do it everywherePascal Rigaux2007-09-271-1/+1
|
* --env is used for debugging, so don't clobber urpmi.log from bug reportPascal Rigaux2007-09-271-2/+0
| | | | | (it also fixes fork mess when debugging)
* fix using debug__do_not_installPascal Rigaux2007-09-271-2/+2
|
* - urpmfPascal Rigaux2007-09-111-3/+2
| | | | | | | o fix --synthesis (by handling synthesis argument the same way in urpmq, urpmi and urpmf)
* - urpmi, urpmePascal Rigaux2007-09-101-4/+10
| | | | | | | o default to selecting all the prefered packages according to installed locales (need perl-URPM 1.81 to work)
* - urpmi, urpmePascal Rigaux2007-09-101-18/+10
| | | | | | | | | o do not prompt questions if not waiting for user answer (for urpmi --force or urpme --force) create message_input_() which deprecated message_input(), $o_default_input is dumb IMO
* - urpmiPascal Rigaux2007-09-071-22/+10
| | | | | | o enhance "columns" display of packages to install (esp. fit on 80 columns)
* small fix: there may be no medium name for a package (from command line)Pascal Rigaux2007-09-071-1/+2
|
* - urpmiPascal Rigaux2007-09-061-9/+18
| | | | | | | | | o display size that will be installed - removed with a nice message (#32022) o display packages which are going to installed with name-version-release info in columns (need enhancing a little more the "info in columns")
* simplifyPascal Rigaux2007-09-061-3/+3
|
* - urpmiPascal Rigaux2007-09-061-3/+1
| | | | | | | | | | o display size that will be installed - removed - urpmi, urpme o use best unit (KB, MB...) to display size will be installed - removed for this, use ->selected_size from perl-URPM and import formatXiB from drakx common.pm
* remove duplicated $env codePascal Rigaux2007-09-061-10/+6
|
* add new urpmi option, only for debugging purpose: --debug__do_not_installPascal Rigaux2007-09-041-2/+2
|
* - urpmiPascal Rigaux2007-08-281-8/+8
| | | | | | | 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)
* - urpmiPascal Rigaux2007-08-211-3/+3
| | | | | o fix --bug when there is no /etc/urpmi/prefer.list file
* add 'meta-task' to 'priority-upgrade' because of /etc/urpmi/prefer.vendor.listThierry Vignaud2007-08-141-1/+1
|
* do try to umount removable media when using --debug (fixing commit rafel'sThierry Vignaud2007-08-131-0/+2
| | | | | commit r15048 on 2005-06-09)
* - libraryPascal Rigaux2007-08-121-1/+2
| | | | | | | o urpm::select: new function get_preferred() replacing sort_choices() (for drakx) o get rid of "use of unitialized" when file is unset (for drakx)
* - urpmiPascal Rigaux2007-08-111-5/+14
| | | | | | o handle preferred choices (through --prefer, /etc/urpmi/prefer.list and /etc/urpmi/prefer.vendor.list)
* - urpmiPascal Rigaux2007-08-111-2/+12
| | | | | o new option --replacepkgs (same as rpm --replacepkgs) (#16112)
* - all toolsPascal Rigaux2007-08-111-2/+2
| | | | | o new option --wait-lock (#13025)
* fix typo in previous commitPascal Rigaux2007-08-101-1/+1
|
* - urpmiPascal Rigaux2007-08-091-230/+19
| | | | | o move some code to new module urpm::main_loop to share it with rpmdrake
* we already computed the number of package (cosmetic)Thierry Vignaud2007-08-091-3/+3
|