Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r10116 - main/trunk/pym/_emerge
Date: Sat, 03 May 2008 02:17:27
Message-Id: E1Js7JU-0001hj-QX@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-05-03 02:17:23 +0000 (Sat, 03 May 2008)
3 New Revision: 10116
4
5 Modified:
6 main/trunk/pym/_emerge/__init__.py
7 Log:
8 Add --nodeps to the parallel-fetch --resume options since recalculation of
9 deps is a a waste here.
10
11
12 Modified: main/trunk/pym/_emerge/__init__.py
13 ===================================================================
14 --- main/trunk/pym/_emerge/__init__.py 2008-05-03 02:14:08 UTC (rev 10115)
15 +++ main/trunk/pym/_emerge/__init__.py 2008-05-03 02:17:23 UTC (rev 10116)
16 @@ -5222,7 +5222,8 @@
17 fetch_env["FEATURES"] = fetch_env.get("FEATURES", "") + " -cvs"
18 fetch_env["PORTAGE_NICENESS"] = "0"
19 fetch_env["PORTAGE_PARALLEL_FETCHONLY"] = "1"
20 - fetch_args = [sys.argv[0], "--resume", "--fetchonly"]
21 + fetch_args = [sys.argv[0], "--resume",
22 + "--fetchonly", "--nodeps"]
23 resume_opts = self.myopts.copy()
24 # For automatic resume, we need to prevent
25 # any of bad_resume_opts from leaking in
26
27 --
28 gentoo-commits@l.g.o mailing list