commit: 55170b5be88df6d5d8f6e07ecb39fc1a86d3426a Author: Matt Turner <mattst88 <AT> gentoo <DOT> org> AuthorDate: Fri Jul 16 21:21:44 2021 +0000 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org> CommitDate: Fri Jul 16 21:21:44 2021 +0000 URL: https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=55170b5b
equery: Remove leftovers from 'changes' removal Closes: https://bugs.gentoo.org/796986 Fixes: bcb8158 ("equery: Remove 'changes' subcommand") Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org> man/equery.1 | 48 --------------------------------------- pym/gentoolkit/equery/__init__.py | 1 - 2 files changed, 49 deletions(-) diff --git a/man/equery.1 b/man/equery.1 index 3b85bee..f7a5deb 100644 --- a/man/equery.1 +++ b/man/equery.1 @@ -87,54 +87,6 @@ Tell .B emerge to reinstall or update any package that installed a file matching a regular expression. -.SS -.BI "changes (c) [OPTIONS] " "PKG" -Display the Gentoo ChangeLog entry for the latest installable version of \fIPKG\fP. - -.I R "LOCAL OPTIONS" ":" -.HP -.B \-l, \-\-latest -.br -Display only the latest ChangeLog entry. It's not uncommon for changes to be prepended to the ChangeLog without a version header if the changes did not require a version bump. Use this option to display such entries. -.HP -.B \-f, \-\-full -.br -Display the full ChangeLog. -.br -\fBHint\fP: Try piping (|) the output to a pager, like 'less'. -.HP -.BI "\-\-limit=" "NUM" -.br -Limit the \fINUM\fP of entries displayed. Use this option in conjunction with \fB\-\-full\fP. \fB\-\-limit=3\fP would display the three latest entries. -.HP -.BI "\-\-from=" "VER" -.br -Set which \fIVER\fP to display from. Using this option by itself is equivalent to passing \fBchanges\fP a ranged package atom, e.g., '>=foo/bar\-1.5'. It can be used in conjunction with \fB\-\-to\fP to request a more complex range of entries. -.HP -.BI "\-\-to=" "VER" -.br -Set which \fIVER\fP to display to. (See \fB\-\-from\fP) -.P -.I R "EXAMPLES" ":" -.EX -.HP -equery changes portage -.EE -.br -Display the Gentoo ChangeLog entry for the latest installable version of Portage. -.EX -.HP -equery changes '=sys\-apps/portage\-2.1.6*' -.EE -.br -Use Portage's atom syntax. (See \fBman 5 ebuild\fP) -.EX -.HP -equery changes portage \-\-from=2.2_rc1 \-\-to=2.2 -.EE -.br -Display any ChangeLog entry within a range of versions. - .SS .BI "check (k) [OPTIONS] " "PKG" Check timestamps and MD5 sums for files owned by \fIPKG\fP, where \fIPKG\fP is an installed package. diff --git a/pym/gentoolkit/equery/__init__.py b/pym/gentoolkit/equery/__init__.py index 677f534..e5b3deb 100644 --- a/pym/gentoolkit/equery/__init__.py +++ b/pym/gentoolkit/equery/__init__.py @@ -82,7 +82,6 @@ def print_help(with_description=True): print(pp.command("modules") + " (" + pp.command("short name") + ")") print(format_options(( (" (b)elongs", "list what package FILES belong to"), - (" (c)hanges", "list changelog entries for ATOM"), (" chec(k)", "verify checksums and timestamps for PKG"), (" (d)epends", "list all packages directly depending on ATOM"), (" dep(g)raph", "display a tree of all dependencies for PKG"),
