summaryrefslogtreecommitdiffstats
path: root/urpm/cdrom.pm
Commit message (Collapse)AuthorAgeFilesLines
* final urpm::cdrom adaptation to blist->{pkgs} instead of blist->{list}Pascal Rigaux2008-07-081-1/+1
|
* $o_url and blists_url is no more allowed, so adaptPascal Rigaux2008-07-081-18/+16
|
* rename varPascal Rigaux2008-07-081-2/+2
|
* migrate to use blist->{pkgs} instead of blist->{list}Pascal Rigaux2008-07-081-7/+7
|
* use a local copy of $blists to avoid modifying itPascal Rigaux2008-07-081-6/+6
|
* goal: get rid of $list which must be used together with $urpm->{media}, and ↵Pascal Rigaux2008-07-081-5/+1
| | | | | | | | | | | | | | 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
* - compute $blist->{list} first url instead of having it in $blist->{url}Pascal Rigaux2008-07-081-1/+1
| | | | | - create file_or_synthesis_dir_from_blist() and use it
* - urpmi:Pascal Rigaux2008-03-251-1/+2
| | | | | o nice error message when hal daemon is not running and is needed (#39327)
* - urpmi:Pascal Rigaux2008-03-191-9/+9
| | | | | | | | | | | | o fix getting rpms from different media on same DVD without it $blist->{medium}{mntpoint} is set during first _find_blist_url_matching() and "$blist->{medium}{mntpoint} and next" will block everything. with this commit, it won't copy rpms on disk even if on different media if same DVD.
* CD-ROM is an acronym; let's make it clearThierry Vignaud2008-03-131-1/+1
|
* enhance cdrom fallback without perl-Hal-CdromsPascal Rigaux2008-03-111-1/+1
|
* - urpmi:Pascal Rigaux2008-03-111-2/+4
| | | | | o have a nicer error message when perl-Hal-Cdroms is missing (#38778)
* correctly name function since it's outside of its modulePascal Rigaux2008-03-031-1/+1
|
* fix commentPascal Rigaux2008-03-031-1/+0
|
* HAL can fail to umount the cdrom if it was not mounted by HAL.Pascal Rigaux2008-02-291-1/+6
| | | | | in that case, use "umount" command directly.
* o use hal to wait-for/mount cdroms: Pascal Rigaux2008-02-291-0/+237
you can now use more than one cdrom drive big commit, no time to split it... some details: - split urpm::removable into urpm::removable and urpm::cdrom - fix setting $urpm->{removable_mounted} - in try_mounting_non_cdroms(), check for local url, simpler than checking is_cdrom_url and then checking file_from_local_medium - fix _try_mounting_medium() not mounting non-cdrom anymore (regression introduced during devel) - even if urpmi says it wants cdroms in a given order, if you make a mistake, it will use the one you give (as a side-effect, it simplifies the sort on "already mounted" cdrom (cf _sort_media disappearing))