aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gmail.com>2015-12-03 02:22:19 -0500
committerTim Harder <radhermit@gmail.com>2015-12-03 02:23:04 -0500
commit3f99435662adee8174f0be8f142a34bee0b3b1a3 (patch)
tree882dd0da360de95ab7afa7a6b39737d59c25128a
parentshell/pkgcore.sh: make sure to use unfiltered repos (diff)
downloadpkgcore-3f99435662adee8174f0be8f142a34bee0b3b1a3.tar.gz
pkgcore-3f99435662adee8174f0be8f142a34bee0b3b1a3.tar.bz2
pkgcore-3f99435662adee8174f0be8f142a34bee0b3b1a3.zip
pquery: reword and clarify filter option docs
-rw-r--r--pkgcore/scripts/pquery.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/pkgcore/scripts/pquery.py b/pkgcore/scripts/pquery.py
index 12d8e6c27..e4cffab39 100644
--- a/pkgcore/scripts/pquery.py
+++ b/pkgcore/scripts/pquery.py
@@ -448,19 +448,19 @@ repo_group = argparser.add_argument_group(
'options controlling which repositories to inspect')
repo_group.add_argument(
'--raw', action='store_true', default=False,
- help="disable configuration and filtering ",
+ help="disable configuration filtering ",
docs="""
- This means you see the raw dependencies, rather than the
- dependencies rendered via your USE configuration. Primarily useful
- for people who need to look under the hood- ebuild devs, PM tool
- authors, etc. Note this option ignores --domain if is specified.
+ This forces raw dependencies to be used, rather than the dependencies
+ rendered via your USE configuration. Primarily useful for people who
+ need to look under the hood- ebuild devs, PM tool authors, etc. Note
+ this option ignores --domain if is specified.
""")
repo_group.add_argument(
'--unfiltered', action='store_true', default=False,
- help="disable all license filtering and visibility filtering",
+ help="disable all license and visibility filtering",
docs="""
- This means all package filtering mechanisms such as ACCEPT_KEYWORDS and
- package.mask are disabled.
+ Disables all package filtering mechanisms such as ACCEPT_KEYWORDS,
+ ACCEPT_LICENSE, and package.mask.
""")
repo_group.add_argument(
'--virtuals', action='store', choices=('only', 'disable'),