summaryrefslogtreecommitdiffstats
path: root/urpmi
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* - urpmiPascal Rigaux2007-08-091-0/+4
| | | | | | | | | | | 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
* factorize handling of -q|--quiet and -v|--verbose for all toolsPascal Rigaux2007-08-011-3/+0
| | | | | this fixes -q option not handled by urpmi.update (#31890)
* - normalize verbose option handling over $options{verbose}Pascal Rigaux2007-08-011-8/+7
| | | | | - handle $rpm_opt where it is used
* make sure comments appear in po catalogsThierry Vignaud2007-07-041-4/+7
|
* - [bugfix] fix plural handling in "Packages foo can not be installed" (#31229)Pascal Rigaux2007-06-081-15/+15
| | | | | - fix quite a few more plurals using perl_checker
* - urpmiPascal Rigaux2007-06-011-0/+1
| | | | | o [bugfix] fix urpmi --parallel (#30996)
* - urpmiPascal Rigaux2007-05-091-1/+0
| | | | | | | | o display "removing package ..." when removing an obsolete or conflicting package (need perl-URPM 1.63), and not before o in verbose mode, display "removing upgraded package ..." (should make it more understandable by users)
* display "In order to satisfy the '%s' dependency, one of the followingPascal Rigaux2007-05-031-2/+2
| | | | | | packages is needed:" so that user can understand what dependency is used (as suggested by Guillaume Rousse on cooker)
* kill dead codeThierry Vignaud2007-03-061-9/+0
|
* (ask_choice) display translated summaryThierry Vignaud2007-03-051-1/+1
|
* merge some strings (thus giving more control to translators for theThierry Vignaud2007-03-051-5/+4
| | | | | second occurence)
* more ngettextPablo Saratxaga2007-02-231-5/+6
|
* bump copyright headerThierry Vignaud2007-02-221-1/+1
|
* fixed ngettext usePablo Saratxaga2007-02-211-1/+1
|
* fixed some ngettext usePablo Saratxaga2007-02-211-24/+36
|
* cleanupPascal Rigaux2007-01-251-16/+12
|
* give better control on string to translators (appending ":" isn't niceThierry Vignaud2007-01-181-3/+3
| | | | | for quite some languages) and factorize a string
* give better control on string to translators (appending ":" isn't niceThierry Vignaud2007-01-181-3/+3
| | | | | for quite some languages)
* plural and singular were inverted (thanks to Frank Griffin for reporting)Pascal Rigaux2007-01-181-5/+5
|
* really add this singular variant for an existing plural stringThierry Vignaud2007-01-091-1/+1
|
* add singular variant for existing plural stringsThierry Vignaud2007-01-091-8/+16
|
* use plural for existing translationsThierry Vignaud2007-01-091-115/+112
|
* Copying release 1.5-2mdv2007.1 to pristine/ directory.Mandrake2006-12-081-94/+104
|
* display all found packages (when there is a choice, only the first was ↵Pascal Rigaux2006-12-041-11/+15
| | | | displayed)
* directly set $urpm->{root}, it's simplerPascal Rigaux2006-11-291-8/+7
| | | | | (also use it in urpm::get_pkgs::selected2list() even if callers didn't pass it)
* factorize --nolock and --root option handlingPascal Rigaux2006-11-291-14/+12
|
* further explain the fd leak hack commentThierry Vignaud2006-11-291-2/+3
|
* (ask_choice) add more comments for translatorsThierry Vignaud2006-11-291-3/+9
|
* (ask_choice) enable translator to control what is displayedThierry Vignaud2006-11-291-3/+4
|
* (ask_choice) simplifyThierry Vignaud2006-11-291-2/+1
|
* (ask_choice) there's no space before ":" in englishThierry Vignaud2006-11-291-1/+1
|
* add commented line allowing to have rpmlib debug messagesPascal Rigaux2006-11-271-0/+1
|
* add --auto-update to "urpmi --help", and move --no-md5sum and --force-key ↵Pascal Rigaux2006-11-271-2/+3
| | | | next to it
* use $options{usedistrib} for all progs (prepare for next commit)Pascal Rigaux2006-11-241-3/+2
|
* simplify (%urpm::args::options is exported)Pascal Rigaux2006-11-241-3/+6
|
* remove a "Use of uninitialized value ..."Pascal Rigaux2006-11-231-1/+1
|
* - move lock functions to a full blown modulePascal Rigaux2006-11-231-7/+5
| | | | | | | | | | | | - handle get_exclusive and release_exclusive on existing lock, *but* don't use it for now! (not useful) - remove urpmi_db locking from add_medium and update_media - move rpm_db locking into _read_cachedir_pubkey - update_media: restrict rpm_db exclusive locking to parse_pubkeys - urpmi: move locking rpm_db near its use - handle lock directly in urpmi.addmedia, urpmi.update, urpme, urpmf - log locking/unlocking
* don't have a global variable to hold locks, otherwise code can't lock twicePascal Rigaux2006-11-231-4/+5
| | | | | non-exclusive
* move many functions from urpm.pm to new module urpm/select.pmPascal Rigaux2006-11-211-8/+9
|
* - move download_packages_of_distant_media() from urpm.pm to urpm::get_pkgsPascal Rigaux2006-11-211-2/+3
| | | | | - move urpm::get_source_packages() -> urpm::get_pkgs::selected2list()
* create urpm::signature out of urpm.pmPascal Rigaux2006-11-211-1/+2
|
* create urpm::removable out of urpm.pmPascal Rigaux2006-11-211-2/+2
|
* move many functions from urpm.pm to urpm/media.pmPascal Rigaux2006-11-211-3/+4
|
* move create_transaction() and prepare_transaction() from urpm.pm into ↵Pascal Rigaux2006-11-211-2/+2
| | | | urpm/install.pm
* move urpm::install() into urpm::install::install() (new module)Pascal Rigaux2006-11-211-3/+4
|
* move lock functions to urpm::sysPascal Rigaux2006-11-211-4/+4
|
* drop urpm::parallel_install(), directly use {parallel_handler}->parallel_installPascal Rigaux2006-11-211-3/+5
|