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 A82AE1389E2 for ; Sat, 29 Nov 2014 18:06:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4145EE07A7; Sat, 29 Nov 2014 18:06:39 +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 ECDD4E07A7 for ; Sat, 29 Nov 2014 18:06:38 +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 091D734049E for ; Sat, 29 Nov 2014 18:06:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AA85CB2BA for ; Sat, 29 Nov 2014 18:06:35 +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: <1417284241.b5b0d117433843da6a8d695140a68c7f13cf72ac.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: pym/_emerge/actions.py X-VCS-Directories: pym/_emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: b5b0d117433843da6a8d695140a68c7f13cf72ac X-VCS-Branch: master Date: Sat, 29 Nov 2014 18:06:35 +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: c26c06b6-ed3e-4abb-9888-4c98671a15b9 X-Archives-Hash: de6dc37501ba804f9af351908fb19137 commit: b5b0d117433843da6a8d695140a68c7f13cf72ac Author: Zac Medico gentoo org> AuthorDate: Fri Nov 28 22:27:18 2014 +0000 Commit: Zac Medico gentoo org> CommitDate: Sat Nov 29 18:04:01 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=b5b0d117 emerge: warn about @installed, don't deprecate (387059) The @installed set may have some legitimate uses. Therefore, change the deprecation warning to a warning about unsolved blockers. The warning will now appear as follows: * The @installed set is not recommended when updating * packages because it will often introduce unsolved blocker * conflicts. Please refer to bug #387059 for details. X-Gentoo-Bug: 387059 X-Gentoo-Url: https://bugs.gentoo.org/show_bug.cgi?id=387059 Acked-by: Brian Dolbec gentoo.org> --- pym/_emerge/actions.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pym/_emerge/actions.py b/pym/_emerge/actions.py index dec5b04..d9c45c1 100644 --- a/pym/_emerge/actions.py +++ b/pym/_emerge/actions.py @@ -3538,10 +3538,12 @@ def expand_set_arguments(myfiles, myaction, root_config): display_missing_pkg_set(root_config, s) return (None, 1) if s == "installed": - msg = ("The @installed set is deprecated and will soon be " - "removed. Please refer to bug #387059 for details.") + msg = ("The @installed set is not recommended when " + "updating packages because it will often " + "introduce unsolved blocker conflicts. Please " + "refer to bug #387059 for details.") out = portage.output.EOutput() - for line in textwrap.wrap(msg, 50): + for line in textwrap.wrap(msg, 57): out.ewarn(line) setconfig.active.append(s)