Skip to content

Commit f088fd2

Browse files
authored
Merge pull request #190 from nicolasbock/update_usage
Update usage information
2 parents 0811ae5 + 1fbcf98 commit f088fd2

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

README.rst

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,14 @@ The command understands the following command line arguments:
7575
[--install-basic-packages] [--threads N] [--use USE [USE ...]]
7676
[--global-use GLOBAL_USE [GLOBAL_USE ...]] [--unmask ATOM] [--unstable]
7777
[--gcc-version VER] [--python-single-target PYTHON_SINGLE_TARGET]
78-
[--python-targets PYTHON_TARGETS] [--rm]
79-
[--storage-opt STORAGE_OPT [STORAGE_OPT ...]] [--with-X] [--with-vnc]
80-
[--profile PROFILE] [--docker-image DOCKER_IMAGE] [--pull]
78+
[--python-targets PYTHON_TARGETS] [--rm] [--storage-opt STORAGE_OPT [STORAGE_OPT ...]]
79+
[--with-X] [--with-vnc] [--profile PROFILE] [--features FEATURES [FEATURES ...]]
80+
[--docker-image DOCKER_IMAGE] [--docker-command DOCKER_COMMAND] [--pull]
81+
[--show-options] [--ccache CCACHE_DIR]
8182
8283
A dockerized approach to test a Gentoo package within a clean stage3.
8384
84-
optional arguments:
85+
options:
8586
-h, --help show this help message and exit
8687
--version show program's version number and exit
8788
--atom ATOM [ATOM ...]
@@ -113,9 +114,16 @@ The command understands the following command line arguments:
113114
--with-X Globally enable the X USE flag
114115
--with-vnc Install VNC server to test graphical applications
115116
--profile PROFILE The profile to use (default = default/linux/amd64/17.1)
117+
--features FEATURES [FEATURES ...]
118+
Set FEATURES, see https://wiki.gentoo.org/wiki/FEATURES (default = ['-sandbox',
119+
'-usersandbox', 'userfetch'])
116120
--docker-image DOCKER_IMAGE
117121
Specify the docker image to use (default = gentoo/stage3)
122+
--docker-command DOCKER_COMMAND
123+
Specify the docker command
118124
--pull Download latest docker image
125+
--show-options Show currently selected options and defaults
126+
--ccache CCACHE_DIR Path to mount that contains ccache cache
119127
120128
Developer Instructions
121129
----------------------

ebuildtester/parse.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,8 @@ def parse_commandline(args):
132132
action="store_true")
133133
parser.add_argument(
134134
"--ccache",
135-
help="Ccache path to mount into docker container")
135+
metavar="CCACHE_DIR",
136+
help="Path to mount that contains ccache cache")
136137

137138
if '--complete' in args:
138139
print('Suggesting')

0 commit comments

Comments
 (0)