summaryrefslogtreecommitdiffstats
path: root/urpm/get_pkgs.pm
Commit message (Collapse)AuthorAgeFilesLines
* now, get rid of blist->{list} :)Pascal Rigaux2008-07-081-6/+3
|
* fix typoPascal Rigaux2008-07-081-2/+2
|
* migrate download_packages_of_distant_media() to use blist->{pkgs} instead of ↵Pascal Rigaux2008-07-081-6/+4
| | | | blist->{list}
* migrate _download_packages_of_distant_media() to use blist->{pkgs} instead ↵Pascal Rigaux2008-07-081-7/+8
| | | | of blist->{list}
* add {pkgs} to $blist, it deprecates {list}Pascal Rigaux2008-07-081-3/+7
|
* make selected2list() use selected2local_and_blists()Pascal Rigaux2008-07-081-17/+14
| | | | | and make selected2local_and_blists() do the computation
* rename $i to $id to make it clearPascal Rigaux2008-07-081-6/+6
|
* rename/create vars for clarityPascal Rigaux2008-07-081-5/+6
|
* pass a blist to _download_packages_of_distant_media()Pascal Rigaux2008-07-081-12/+10
|
* re-indentPascal Rigaux2008-07-081-29/+30
|
* create _download_packages_of_distant_media() out of ↵Pascal Rigaux2008-07-081-15/+23
| | | | download_packages_of_distant_media()
* goal: get rid of $list which must be used together with $urpm->{media}, and ↵Pascal Rigaux2008-07-081-8/+27
| | | | | | | | | | | | | | use $blists instead - create urpm::get_pkgs::selected2local_and_blists(), which is similar to selected2list(), but returns a $blists - the following functions have been modified to use a $blists instead of $list: urpm::cdrom::copy_packages_of_removable_media() urpm::install::prepare_transaction() urpm::removable::try_mounting_non_cdroms() urpm::get_pkgs::download_packages_of_distant_media() - adapt code to use $blists
* create cachedir_rpms() out of _selected2local_and_ids()Pascal Rigaux2008-07-081-8/+23
|
* create _selected2local_and_ids() out of selected2list()Pascal Rigaux2008-07-081-9/+20
|
* we don't need to know the medium to compute ->is_delta_installable, so doingPascal Rigaux2008-07-081-4/+4
| | | | | it in previous loop
* rename varPascal Rigaux2008-07-081-3/+3
|
* adapt the error message: --install-src is allowed for non-root for some time,Pascal Rigaux2008-07-071-2/+1
| | | | | | so the real pb here is $cachedir/partial being fucked up (occurs for example when /var is being removed during urpmi...)
* - urpmiPascal Rigaux2008-06-261-1/+1
| | | | | o fix displaying "files are missing" (regression introduced in 5.6)
* empty_dir() is a better name, clean_dir() will be used for just removing the dirPascal Rigaux2008-06-241-2/+2
|
* move removing bad file inside verify_partial_rpm_and_move()Pascal Rigaux2008-02-261-3/+4
| | | | | (it won't hurt urpm::removable::_do_the_copy())
* simplifyPascal Rigaux2008-02-261-2/+2
|
* urpm::get_pkgs::verify_partial_rpm_and_move() return the final rpmPascal Rigaux2008-02-261-1/+1
|
* create verify_partial_rpm_and_move() out ofPascal Rigaux2008-02-261-4/+12
| | | | | download_packages_of_distant_media()
* fix typo (introduced on 2008-02-24 r237346)Pascal Rigaux2008-02-261-1/+1
|
* rename some varsPascal Rigaux2008-02-261-14/+12
|
* display a "bad rpms" message instead of "files are missing" when the ↵Pascal Rigaux2008-02-241-10/+17
| | | | | | | | | | downloaded rpm is bad. this adds a new callback for rpmdrake: "bad_rpms" this modifies the API of urpm::get_pkgs::download_packages_of_distant_media ($error_sources is now { url => reason } instead of { id => url })
* further simplify (allowed by making "moving file" fatal)Pascal Rigaux2008-02-241-2/+1
|
* - urpmi, urpmi.addmedia, urpmi.update:Pascal Rigaux2008-02-241-2/+2
| | | | | | o have fatal errors on some errors that must not happen (eg: moving rpm from download dir to cachedir)
* - urpmi:Pascal Rigaux2008-01-181-3/+11
| | | | | o --install-src as user now works for remote medium
* use var (for future commit)Pascal Rigaux2008-01-181-6/+8
|
* - urpmi:Pascal Rigaux2007-11-151-1/+9
| | | | | | | | o fix "urpmi --install-src" (regression introduced in 4.10.9) nb: packages_by_name can't be used here since $urpm->{provides} doesn't have src.rpm so a full search is needed
* - fix using already downloaded rpms (from /var/cache/urpmi/rpms) (#33655)Pascal Rigaux2007-09-171-12/+17
|
* previous commit was making some wrong assumptions when simplifyingPascal Rigaux2007-09-121-4/+13
| | | | | selected2list(). it needs to be a little more complex...
* simplify selected2list() mess Pascal Rigaux2007-09-111-75/+24
| | | | | => make it instantaneous instead of taking 20% of the time of a small urpmi command
* move cleaning of cachedir out of selected2list()Pascal Rigaux2007-09-111-7/+8
|
* simplify error handlingPascal Rigaux2007-09-111-14/+2
|
* better error message as suggested on cooker-i18nPascal Rigaux2007-08-281-1/+1
|
* better error message as suggested on cooker-i18nPascal Rigaux2007-08-281-1/+1
|
* fix typoPascal Rigaux2007-08-081-1/+1
|
* - urpmiPascal Rigaux2007-08-081-0/+5
| | | | | o explicit error when using "urpmi ---install-src" as user with remote media
* restore cleaning /var/cache/urpmi/rpmsPascal Rigaux2007-01-101-6/+7
|
* simplifyPascal Rigaux2007-01-101-13/+10
|
* fix using N()Pascal Rigaux2007-01-101-1/+1
|
* simplifyPascal Rigaux2007-01-101-10/+7
|
* log the cleaning of /var/cache/urpmi/partialPascal Rigaux2007-01-101-0/+1
|
* 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)
* - move download_packages_of_distant_media() from urpm.pm to urpm::get_pkgsPascal Rigaux2006-11-211-0/+218
- move urpm::get_source_packages() -> urpm::get_pkgs::selected2list()