diff options
| author | Martin Matous <m@matous.dev> | 2022-07-08 20:05:58 -0700 |
|---|---|---|
| committer | Brian Dolbec <dolsen@gentoo.org> | 2022-07-08 20:10:24 -0700 |
| commit | 6a9be2d05751558d7d34e900dfc06a721278b447 (patch) | |
| tree | 98d11e212ac3bb609685c80b03b4d1e884257c13 | |
| parent | 71c6d4d94a5bd5aac3fb090e2e306c278a83b954 (diff) | |
| download | gentoolkit-6a9be2d05751558d7d34e900dfc06a721278b447.tar.gz | |
equery: update linguas->l10n option
Signed-off-by: Martin Matous <m@matous.dev>
Signed-off-by: Brian Dolbec <dolsen@gentoo.org>
| -rw-r--r-- | man/equery.1 | 4 | ||||
| -rw-r--r-- | pym/gentoolkit/equery/uses.py | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/man/equery.1 b/man/equery.1 index 83aba0d..ee7ad7b 100644 --- a/man/equery.1 +++ b/man/equery.1 @@ -547,9 +547,9 @@ Display all package versions. Without this option, \fBequery\fP will choose the .br Show the forced and masked USE flags .HP -.B \-i, \-\-ignore\-linguas +.B \-i, \-\-ignore\-l10n .br -Do not show the linguas USE flags +Do not show the l10n USE flags .P .I R "EXAMPLES" ":" .EX diff --git a/pym/gentoolkit/equery/uses.py b/pym/gentoolkit/equery/uses.py index 7af7f43..89f011c 100644 --- a/pym/gentoolkit/equery/uses.py +++ b/pym/gentoolkit/equery/uses.py @@ -215,8 +215,7 @@ def get_output_descriptions(pkg, global_usedesc): if QUERY_OPTS["ignore_l10n"]: for a in usevar[:]: - # TODO: Remove linguas after transition to l10n is complete - if a.startswith("l10n_") or a.startswith("linguas_"): + if a.startswith("l10n_"): usevar.remove(a) if pkg.is_installed(): |
