From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 1490A138824 for ; Mon, 20 Oct 2014 00:08:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DFD49E08F0; Mon, 20 Oct 2014 00:08:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9065EE08F0 for ; Mon, 20 Oct 2014 00:08:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8FC9F3404BE for ; Mon, 20 Oct 2014 00:08:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3A0DD845C for ; Mon, 20 Oct 2014 00:08:38 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1413763640.d55690aa3a1a9b4a78e87acd6ce179c17262966e.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: man/, pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: man/emerge.1 pym/_emerge/main.py X-VCS-Directories: pym/_emerge/ man/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: d55690aa3a1a9b4a78e87acd6ce179c17262966e X-VCS-Branch: master Date: Mon, 20 Oct 2014 00:08:38 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 4c1180f5-3702-4302-b6d1-d1c048b3b44c X-Archives-Hash: 2b59323bc7f95bc60541c3792b2c518a commit: d55690aa3a1a9b4a78e87acd6ce179c17262966e Author: Greg Kubaryk vt edu> AuthorDate: Mon Oct 20 00:07:20 2014 +0000 Commit: Zac Medico gentoo 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" }