Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r11689 - main/trunk/pym/portage
Date: Mon, 13 Oct 2008 20:52:09
Message-Id: E1KpUOe-00043Q-F6@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-10-13 20:52:07 +0000 (Mon, 13 Oct 2008)
3 New Revision: 11689
4
5 Modified:
6 main/trunk/pym/portage/__init__.py
7 Log:
8 Make sure the pkg_nofetch phase is only called once when in fetchonly mode.
9
10
11 Modified: main/trunk/pym/portage/__init__.py
12 ===================================================================
13 --- main/trunk/pym/portage/__init__.py 2008-10-13 00:39:21 UTC (rev 11688)
14 +++ main/trunk/pym/portage/__init__.py 2008-10-13 20:52:07 UTC (rev 11689)
15 @@ -4106,7 +4106,7 @@
16 else:
17 writemsg("!!! Couldn't download '%s'. Aborting.\n" % myfile,
18 noiselevel=-1)
19 - if fetchonly:
20 + if fetchonly and not restrict_fetch:
21 failed_files.add(myfile)
22 continue
23 return 0