commit: d55690aa3a1a9b4a78e87acd6ce179c17262966e Author: Greg Kubaryk <kurly <AT> vt <DOT> edu> AuthorDate: Mon Oct 20 00:07:20 2014 +0000 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org> CommitDate: Mon Oct 20 00:07:20 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=d55690aa
emerge: add -U option short for --changed-use X-Gentoo-Bug: 524426 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=524426 --- man/emerge.1 | 4 ++-- pym/_emerge/main.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/man/emerge.1 b/man/emerge.1 index 2264b58..9873ba9 100644 --- a/man/emerge.1 +++ b/man/emerge.1 @@ -1,4 +1,4 @@ -.TH "EMERGE" "1" "Sep 2014" "Portage VERSION" "Portage" +.TH "EMERGE" "1" "Oct 2014" "Portage VERSION" "Portage" .SH "NAME" emerge \- Command\-line interface to the Portage system .SH "SYNOPSIS" @@ -399,7 +399,7 @@ Creates binary packages for all ebuilds processed without actually merging the packages. This comes with the caveat that all build-time dependencies must already be emerged on the system. .TP -.BR "\-\-changed\-use" +.BR "\-\-changed\-use " (\fB\-U\fR) Tells emerge to include installed packages where USE flags have changed since installation. This option also implies the \fB\-\-selective\fR option. Unlike \fB\-\-newuse\fR, the diff --git a/pym/_emerge/main.py b/pym/_emerge/main.py index 3883f72..f5f2ec4 100644 --- a/pym/_emerge/main.py +++ b/pym/_emerge/main.py @@ -69,7 +69,7 @@ shortmapping={ "r":"--resume", "s":"--search", "S":"--searchdesc", "t":"--tree", -"u":"--update", +"u":"--update", "U":"--changed-use", "V":"--version" }
