Gentoo Archives: gentoo-commits

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