summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* - urpmf:Pascal Rigaux2008-01-184-9/+53
| | | | | | o add special code for --files simple case, it makes urpmf 3x faster for this often used case
* fix using urpmi --env where the media are virtual (by removing "virtual" ↵Pascal Rigaux2008-01-171-1/+5
| | | | from urpmi.cfg)
* o fix displaying error message when failing to lock (regression in 5.1)Pascal Rigaux2008-01-172-2/+3
| | | | | (thanks to blino)
* - urpmq:Pascal Rigaux2008-01-176-2/+27
| | | | | o add --provides
* - all tools:Pascal Rigaux2008-01-174-15/+17
| | | | | | o deprecate --curl and --wget in favor of --downloader curl and --downloader --wget
* add missing --aria2 to --helpPer Øyvind Karlsen2008-01-171-0/+1
|
* 5.1Pascal Rigaux2008-01-162-1/+3
|
* test urpmq/urpmf correctly use info.xml.lzma with exotic medium namePascal Rigaux2008-01-161-1/+37
|
* need real fix... urpmi one or the other...Pascal Rigaux2008-01-161-1/+1
|
* - urpmf, urpmq:Pascal Rigaux2008-01-152-2/+5
| | | | | | | o fix using xml info files with spaces in medium name (as reported in a comment of bug #36742)
* add run_urpm_cmd()Pascal Rigaux2008-01-151-1/+7
|
* use genhdlist2 and create xml info filesPascal Rigaux2008-01-151-3/+4
|
* fix calls to {fatal}Pascal Rigaux2008-01-152-4/+4
|
* fix commit adding --sourcerpmPascal Rigaux2008-01-151-1/+1
|
* rpm bug #27417 is fixedPascal Rigaux2008-01-152-2/+0
|
* test "urpmq --list"Pascal Rigaux2008-01-151-0/+6
|
* - urpmqPascal Rigaux2008-01-152-0/+4
| | | | | | | o fix --list (regression introduced in 5.0) (those lines were wrongly dropped in r232614 2007-12-19)
* deprecate "urpmq --requires"Pascal Rigaux2008-01-142-1/+5
|
* o deprecate "urpmq -R" and "urpmq -RR"Pascal Rigaux2008-01-142-2/+7
|
* fix documentation for "urpmq -d"Pascal Rigaux2008-01-141-1/+1
|
* - urpmq:Pascal Rigaux2008-01-145-6/+19
| | | | | o add --sourcerpm
* - urpmf:Pascal Rigaux2008-01-142-1/+4
| | | | | o fix --license
* - 5.0Pascal Rigaux2008-01-1115-63/+561
| | | | | | | | | | | | | | | | | | | - 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
* factorize code with statedir_media_info_file()Pascal Rigaux2008-01-111-3/+7
|
* create _copy_media_info_file() out of _get_list_or_pubkey__local()Pascal Rigaux2008-01-111-5/+14
|
* better fix for "always prompt before doing a priority-upgrade transaction,Pascal Rigaux2008-01-112-2/+2
| | | | | | | | | | | | 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)
* enhance commentPascal Rigaux2008-01-111-2/+2
|
* - urpmq:Pascal Rigaux2008-01-112-6/+5
| | | | | o use URPM::Package->changelogs (need perl-URPM 3.06)
* use a var name $id instead of $_Pascal Rigaux2008-01-101-3/+3
|
* move the list of known tags out of urpm/args.pm into urpmf,Pascal Rigaux2008-01-102-38/+38
| | | | | | 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-102-4/+4
|
* no_second_pass option is no more (since "drop hdlist support")Pascal Rigaux2008-01-102-2/+0
|
* add put_in_hash() for future usePascal Rigaux2008-01-101-1/+2
|
* - urpmfPascal Rigaux2008-01-102-1/+4
| | | | | | o fix an *old* bug (since december 2002) making urpmf keeps parsed hdlist files in memory (was fixed for multitags, but not for simple tags)
* fix regression (introduced long ago: 2006-11-15): correctly detect ldap is ↵Pascal Rigaux2008-01-101-3/+3
| | | | | | | not configured (otherwise it introduces weird issues...)
* when doing urpmi.addmedia on a remote medium, we first look forPascal Rigaux2008-01-082-7/+15
| | | | | | synthesis.hdlist.cz, but we should also download MD5SUM and check synthesis.hdlist.cz (the checking was only done on urpmi.update)
* better error message: "copying" is not adapted for something we downloaded, ↵Pascal Rigaux2008-01-081-1/+1
| | | | "retrieval" works better for both copied/retrieved cases
* drop synthesis_for_virtual_medium() since it is unusedPascal Rigaux2008-01-081-4/+0
|
* create _download_MD5SUM() out of ↵Pascal Rigaux2008-01-081-6/+12
| | | | _update_medium__parse_if_unmodified__remote() for future use
* cosmetic: display "updated medium xxx" when we're done with itPascal Rigaux2008-01-081-5/+4
|
* - rename _get_list_or_pubkey__remote() into _download_list_or_pubkey()Pascal Rigaux2008-01-081-4/+11
| | | | | - create _download_media_info_file() out of _download_list_or_pubkey() for future use
* create get_medium_option() for future usePascal Rigaux2008-01-081-0/+6
|
* - urpmiPascal Rigaux2008-01-082-1/+4
| | | | | | | | | 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
* updateJosé Melo2008-01-041-5/+5
|
* Updated Norwegian Nynorsk translation.Karl Ove Hufthammer2008-01-011-1/+1
|
* Updated Norwegian Nynorsk translation.Karl Ove Hufthammer2007-12-261-1/+1
|
* Updated Norwegian Nynorsk translation.Karl Ove Hufthammer2007-12-251-1/+1
|
* oops, fix previous commitPascal Rigaux2007-12-211-2/+2
|
* add bug numberPascal Rigaux2007-12-211-1/+1
|
* add a test case for #27417 (no fix yet)Pascal Rigaux2007-12-202-0/+56
|