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 94A84138010 for ; Tue, 4 Sep 2012 03:28:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A8EF6E07AB; Tue, 4 Sep 2012 03:28:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id E0C8FE07AB for ; Tue, 4 Sep 2012 03:28:39 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 257D933D821 for ; Tue, 4 Sep 2012 03:28:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id DD58BE543D for ; Tue, 4 Sep 2012 03:28:37 +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: <1346729305.12c142c529909acf1b755690404cef51d8de3fe4.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: pym/_emerge/main.py X-VCS-Directories: pym/_emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 12c142c529909acf1b755690404cef51d8de3fe4 X-VCS-Branch: master Date: Tue, 4 Sep 2012 03:28:37 +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: 1be02044-cd1d-4347-bcbb-df7f931101bb X-Archives-Hash: 7edf1e888fb03967ef7e60bce812ed9c commit: 12c142c529909acf1b755690404cef51d8de3fe4 Author: Zac Medico gentoo org> AuthorDate: Tue Sep 4 03:28:25 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue Sep 4 03:28:25 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=12c142c5 Deprecate @installed for bug #387059. --- pym/_emerge/main.py | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/pym/_emerge/main.py b/pym/_emerge/main.py index 049c3ec..aff1d37 100644 --- a/pym/_emerge/main.py +++ b/pym/_emerge/main.py @@ -1481,6 +1481,12 @@ def expand_set_arguments(myfiles, myaction, root_config): if s not in sets: 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.") + out = portage.output.EOutput() + for line in textwrap.wrap(msg, 50): + out.ewarn(line) setconfig.active.append(s) try: set_atoms = setconfig.getSetAtoms(s)