Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r13426 - main/branches/2.1.6/pym/_emerge
Date: Thu, 30 Apr 2009 06:48:04
Message-Id: E1LzQ3p-00044q-BG@stork.gentoo.org
1 Author: zmedico
2 Date: 2009-04-30 06:47:55 +0000 (Thu, 30 Apr 2009)
3 New Revision: 13426
4
5 Modified:
6 main/branches/2.1.6/pym/_emerge/help.py
7 Log:
8 Document --root and --config-root. (trunk r13247)
9
10 Modified: main/branches/2.1.6/pym/_emerge/help.py
11 ===================================================================
12 --- main/branches/2.1.6/pym/_emerge/help.py 2009-04-30 06:47:20 UTC (rev 13425)
13 +++ main/branches/2.1.6/pym/_emerge/help.py 2009-04-30 06:47:55 UTC (rev 13426)
14 @@ -266,6 +266,12 @@
15 for line in wrap(desc, desc_width):
16 print desc_indent + line
17 print
18 + print " "+green("--config-root=DIR")
19 + desc = "Set the PORTAGE_CONFIGROOT environment variable " + \
20 + "which is documented in the emerge(1) man page."
21 + for line in wrap(desc, desc_width):
22 + print desc_indent + line
23 + print
24 print " "+green("--debug")+" ("+green("-d")+" short option)"
25 print " Tell emerge to run the ebuild command in --debug mode. In this"
26 print " mode, the bash build environment will run with the -x option,"
27 @@ -416,6 +422,12 @@
28 print " not trigger reinstallation when flags that the user has not"
29 print " enabled are added or removed."
30 print
31 + print " "+green("--root=DIR")
32 + desc = "Set the ROOT environment variable " + \
33 + "which is documented in the emerge(1) man page."
34 + for line in wrap(desc, desc_width):
35 + print desc_indent + line
36 + print
37 print " "+green("--root-deps")
38 desc = "Install build-time dependencies to ROOT instead of /. This option " + \
39 "should not be enabled under normal circumstances. For currently supported " + \