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 1PriU6-0004ms-9C for garchives@archives.gentoo.org; Tue, 22 Feb 2011 03:00:18 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2E8071C041; Tue, 22 Feb 2011 03:00:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id EE2501C041 for ; Tue, 22 Feb 2011 03:00:10 +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 6283B1B417D for ; Tue, 22 Feb 2011 03:00:10 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id CDAAB8006A for ; Tue, 22 Feb 2011 03:00:09 +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: <969ba46944335b7a35337a8ec6d4d2245e728e13.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: 969ba46944335b7a35337a8ec6d4d2245e728e13 Date: Tue, 22 Feb 2011 03:00:09 +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: a9d6789d2a026f95e443960d541b16c6 commit: 969ba46944335b7a35337a8ec6d4d2245e728e13 Author: Zac Medico gentoo org> AuthorDate: Tue Feb 22 02:59:24 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue Feb 22 02:59:24 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D969ba469 chk_updated_cfg_files: don't display ._cfg0000_ --- pym/_emerge/actions.py | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/pym/_emerge/actions.py b/pym/_emerge/actions.py index 980ad75..8330c04 100644 --- a/pym/_emerge/actions.py +++ b/pym/_emerge/actions.py @@ -2948,7 +2948,10 @@ def chk_updated_cfg_files(eroot, config_protect): level=3Dlogging.INFO, noiselevel=3D-1) else: # it's a protected dir if len(x[1]) =3D=3D 1: - writemsg_level("config file '%s' needs updating.\n" % x[1][0], + head, tail =3D os.path.split(x[1][0]) + tail =3D tail[len("._cfg0000_"):] + fpath =3D os.path.join(head, tail) + writemsg_level("config file '%s' needs updating.\n" % fpath, level=3Dlogging.INFO, noiselevel=3D-1) else: writemsg_level("%d config files in '%s' need updating.\n" % \