summaryrefslogtreecommitdiffstats
path: root/pym/portage.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage.py')
-rw-r--r--pym/portage.py13
1 files changed, 11 insertions, 2 deletions
diff --git a/pym/portage.py b/pym/portage.py
index e34075437..99a2aa9e8 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -2438,10 +2438,19 @@ def fetch(myuris, mysettings, listonly=0, fetchonly=0, locks_in_subdir=".locks",
writemsg_stdout("\n", noiselevel=-1)
else:
if use_locks and can_fetch:
+ waiting_msg = None
+ if "parallel-fetch" in features:
+ waiting_msg = ("Downloading '%s'... " + \
+ "see /var/log/emerge-fetch.log for details.") % myfile
if locks_in_subdir:
- file_lock = portage_locks.lockfile(mysettings["DISTDIR"]+"/"+locks_in_subdir+"/"+myfile,wantnewlockfile=1)
+ file_lock = portage_locks.lockfile(
+ os.path.join(mysettings["DISTDIR"],
+ locks_in_subdir, myfile), wantnewlockfile=1,
+ waiting_msg=waiting_msg)
else:
- file_lock = portage_locks.lockfile(mysettings["DISTDIR"]+"/"+myfile,wantnewlockfile=1)
+ file_lock = portage_locks.lockfile(
+ myfile_path, wantnewlockfile=1,
+ waiting_msg=waiting_msg)
try:
if not listonly:
if fsmirrors and not os.path.exists(myfile_path):