From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Poq73-00086l-TR for garchives@archives.gentoo.org; Mon, 14 Feb 2011 04:32:37 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B9986E08FB; Mon, 14 Feb 2011 04:31:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 89E6EE08FB for ; Mon, 14 Feb 2011 04:31:35 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1B6C61B410F for ; Mon, 14 Feb 2011 04:31:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 7E96780075 for ; Mon, 14 Feb 2011 04:31:34 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1de9fc1a63e57bf77a029863004aaffbb17c7410.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:2.1.9 commit in: man/, pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: man/emerge.1 pym/_emerge/help.py X-VCS-Directories: man/ pym/_emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 1de9fc1a63e57bf77a029863004aaffbb17c7410 Date: Mon, 14 Feb 2011 04:31:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: dd0ea440a65fc56e095f5ba1b1a0e13b commit: 1de9fc1a63e57bf77a029863004aaffbb17c7410 Author: Zac Medico gentoo org> AuthorDate: Sun Feb 13 00:22:49 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Mon Feb 14 04:25:28 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D1de9fc1a emerge.1: cross-ref --newuse and --changed-use This will fix bug #354437. --- man/emerge.1 | 4 +++- pym/_emerge/help.py | 5 ++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/man/emerge.1 b/man/emerge.1 index 8ed8748..63e6825 100644 --- a/man/emerge.1 +++ b/man/emerge.1 @@ -439,7 +439,9 @@ A USE flag was turned on for a package. A USE flag was turned off for a package. =20 USE flags may be toggled by your profile as well as your USE and package= .use -settings. +settings. If you would like to skip rebuilds for which disabled flags ha= ve +been added to or removed from IUSE, see the related +\-\-reinstall=3Dchanged\-use option. .TP .BR "\-\-noconfmem" Causes portage to disregard merge records indicating that a config file diff --git a/pym/_emerge/help.py b/pym/_emerge/help.py index ab8985d..6a1bae4 100644 --- a/pym/_emerge/help.py +++ b/pym/_emerge/help.py @@ -508,7 +508,10 @@ def help(myopts, havecolor=3D1): print(" "+green("--newuse")+" ("+green("-N")+" short option)") desc =3D "Tells emerge to include installed packages where USE " + \ "flags have changed since compilation. This option " + \ - "also implies the --selective option." + "also implies the --selective option. If you would " + \ + "like to skip rebuilds for which disabled flags have " + \ + "been added to or removed from IUSE, see the related " + \ + "--reinstall=3Dchanged-use option." for line in wrap(desc, desc_width): print(desc_indent + line) print()