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 1Qgdb4-00065U-Tm for garchives@archives.gentoo.org; Tue, 12 Jul 2011 14:06:02 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 06D3C21C0B4; Tue, 12 Jul 2011 14:05:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id D0D0521C0B4 for ; Tue, 12 Jul 2011 14:05:48 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 39BF62AC1F8 for ; Tue, 12 Jul 2011 14:05:48 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 813478003D for ; Tue, 12 Jul 2011 14:05:47 +0000 (UTC) From: "Paul Varner" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Paul Varner" Message-ID: <00104a648d2c713123d928ee08453d4de2192300.fuzzyray@gentoo> Subject: [gentoo-commits] proj/gentoolkit:gentoolkit commit in: pym/gentoolkit/eclean/ X-VCS-Repository: proj/gentoolkit X-VCS-Files: pym/gentoolkit/eclean/cli.py X-VCS-Directories: pym/gentoolkit/eclean/ X-VCS-Committer: fuzzyray X-VCS-Committer-Name: Paul Varner X-VCS-Revision: 00104a648d2c713123d928ee08453d4de2192300 Date: Tue, 12 Jul 2011 14:05:47 +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: a105fe48203c0c528e41520a6ca87690 commit: 00104a648d2c713123d928ee08453d4de2192300 Author: Paul Varner gentoo org> AuthorDate: Tue Jul 12 14:03:52 2011 +0000 Commit: Paul Varner gentoo org> CommitDate: Tue Jul 12 14:03:52 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gentoolkit.gi= t;a=3Dcommit;h=3D00104a64 Change "Deprecated" to "unavailable" to reflect term used in portage. Unavailable packages are packages that are installed, but do not have a corresponding ebuild available for installation. --- pym/gentoolkit/eclean/cli.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pym/gentoolkit/eclean/cli.py b/pym/gentoolkit/eclean/cli.py index 9e4bfd9..8d47cfb 100644 --- a/pym/gentoolkit/eclean/cli.py +++ b/pym/gentoolkit/eclean/cli.py @@ -421,14 +421,14 @@ def doAction(action,options,exclude=3D{}, output=3D= None): output.einfo("Your "+action+" directory was already clean.") if saved and not options['quiet']: print() - print( (pp.emph(" The following ") + yellow("Deprecated") + + print( (pp.emph(" The following ") + yellow("unavailable") + pp.emph(" files were saved from cleaning due to exclusion file entrie= s"))) output.set_colors('deprecated') clean_size =3D cleaner.pretend_clean(saved) output.total('deprecated', clean_size, len(saved), verb, action) if deprecated and not options['quiet']: print() - print( (pp.emph(" The following ") + yellow("Deprecated") + + print( (pp.emph(" The following ") + yellow("unavailable") + pp.emph(" installed packages were found"))) output.set_colors('deprecated') output.list_pkgs(deprecated)