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 1Prw5l-0001a4-Um for garchives@archives.gentoo.org; Tue, 22 Feb 2011 17:32:06 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 65FA11C061; Tue, 22 Feb 2011 17:31:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 361C51C061 for ; Tue, 22 Feb 2011 17:31:59 +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 AD57C1BC0CA for ; Tue, 22 Feb 2011 17:31:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 1844D8006E for ; Tue, 22 Feb 2011 17:31:58 +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: <88a4d89c50b75959a8ed75c4ff59335202007f8a.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: pym/_emerge/help.py X-VCS-Directories: pym/_emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 88a4d89c50b75959a8ed75c4ff59335202007f8a Date: Tue, 22 Feb 2011 17:31:58 +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: 0d2a55e4005b7cb8db02903481f5d8bb commit: 88a4d89c50b75959a8ed75c4ff59335202007f8a Author: Zac Medico gentoo org> AuthorDate: Tue Feb 22 17:31:50 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue Feb 22 17:31:50 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D88a4d89c emerge: mention revdep-rebuild in depclean help --- pym/_emerge/help.py | 15 ++++++++++----- 1 files changed, 10 insertions(+), 5 deletions(-) diff --git a/pym/_emerge/help.py b/pym/_emerge/help.py index bd6c0f2..2f8b342 100644 --- a/pym/_emerge/help.py +++ b/pym/_emerge/help.py @@ -94,11 +94,16 @@ def help(myopts, havecolor=3D1): "listed in package.provided (see portage(5)) may be removed by " + \ "depclean, even if they are part of the world set." =20 - if not _ENABLE_DYN_LINK_MAP: - paragraph +=3D " Also note that " + \ - "depclean may break link level dependencies. Thus, it is " + \ - "recommended to use a tool such as revdep-rebuild(1) " + \ - "in order to detect such breakage." + paragraph +=3D " Also note that " + \ + "depclean may break link level dependencies" + + if _ENABLE_DYN_LINK_MAP: + paragraph +=3D ", especially when the " + \ + "--depclean-lib-check option is disabled" + + paragraph +=3D ". Thus, it is " + \ + "recommended to use a tool such as revdep-rebuild(1) " + \ + "in order to detect such breakage." =20 for line in wrap(paragraph, desc_width): print(desc_indent + line)