From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1084743-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DB171138334 for <garchives@archives.gentoo.org>; Sun, 21 Apr 2019 01:02:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C4DBCE0B4E; Sun, 21 Apr 2019 01:02:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AC022E0B4E for <gentoo-commits@lists.gentoo.org>; Sun, 21 Apr 2019 01:02:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B0284341C76 for <gentoo-commits@lists.gentoo.org>; Sun, 21 Apr 2019 01:02:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A4335580 for <gentoo-commits@lists.gentoo.org>; Sun, 21 Apr 2019 01:02:20 +0000 (UTC) From: "Zac Medico" <zmedico@gentoo.org> 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" <zmedico@gentoo.org> Message-ID: <1555808521.58fe19ffa3971e6767240392a8f6951899c412bb.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: lib/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: lib/_emerge/actions.py X-VCS-Directories: lib/_emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 58fe19ffa3971e6767240392a8f6951899c412bb X-VCS-Branch: master Date: Sun, 21 Apr 2019 01:02:20 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3cf06f21-c50d-417b-b08c-2be9a9eaaec3 X-Archives-Hash: 1040a7c61b4d7376e3138e7c67d6e1cb commit: 58fe19ffa3971e6767240392a8f6951899c412bb Author: Zac Medico <zmedico <AT> gentoo <DOT> org> AuthorDate: Sun Apr 21 01:01:05 2019 +0000 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org> CommitDate: Sun Apr 21 01:02:01 2019 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=58fe19ff emerge --info: show per-package FEATURES (bug 553224) Bug: https://bugs.gentoo.org/553224 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org> lib/_emerge/actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/_emerge/actions.py b/lib/_emerge/actions.py index e5200d73d..3e32bf8bc 100644 --- a/lib/_emerge/actions.py +++ b/lib/_emerge/actions.py @@ -1895,7 +1895,7 @@ def action_info(settings, trees, myopts, myfiles): if mypkgs: # Get our global settings (we only print stuff if it varies from # the current config) - mydesiredvars = [ 'CHOST', 'CFLAGS', 'CXXFLAGS', 'LDFLAGS' ] + mydesiredvars = ['CHOST', 'CFLAGS', 'CXXFLAGS', 'FEATURES', 'LDFLAGS'] auxkeys = mydesiredvars + list(vardb._aux_cache_keys) auxkeys.append('DEFINED_PHASES') pkgsettings = portage.config(clone=settings)