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 1QENTy-00068Y-2T for garchives@archives.gentoo.org; Mon, 25 Apr 2011 15:13:50 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0A4301C019; Mon, 25 Apr 2011 15:13:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id CF6251C095 for ; Mon, 25 Apr 2011 15:13:32 +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 42A021B4086 for ; Mon, 25 Apr 2011 15:13:32 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id A75A98049D for ; Mon, 25 Apr 2011 15:13:31 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <00e17176b0052f5b6a2376c2b3a9864c11eff680.dol-sen@gentoo> Subject: [gentoo-commits] proj/gentoolkit:revdep-rebuild commit in: pym/gentoolkit/revdep_rebuild/ X-VCS-Repository: proj/gentoolkit X-VCS-Files: pym/gentoolkit/revdep_rebuild/stuff.py X-VCS-Directories: pym/gentoolkit/revdep_rebuild/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 00e17176b0052f5b6a2376c2b3a9864c11eff680 Date: Mon, 25 Apr 2011 15:13:31 +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: ca645089630693d53aba0dd5ada85963 commit: 00e17176b0052f5b6a2376c2b3a9864c11eff680 Author: dol-sen gmail com> AuthorDate: Mon Apr 25 07:05:43 2011 +0000 Commit: Brian Dolbec gmail com> CommitDate: Mon Apr 25 07:05:43 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gentoolkit.gi= t;a=3Dcommit;h=3D00e17176 change the masking status message. --- pym/gentoolkit/revdep_rebuild/stuff.py | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/pym/gentoolkit/revdep_rebuild/stuff.py b/pym/gentoolkit/revd= ep_rebuild/stuff.py index b1b6709..459301f 100644 --- a/pym/gentoolkit/revdep_rebuild/stuff.py +++ b/pym/gentoolkit/revdep_rebuild/stuff.py @@ -1,6 +1,7 @@ #!/usr/bin/python =20 import subprocess + import portage =20 =20 @@ -39,7 +40,7 @@ def get_masking_status(ebuild): try: status =3D portage.getmaskingstatus(ebuild) except KeyError: - status =3D ['deprecated'] + status =3D ['unavailable'] return status =20 if __name__ =3D=3D '__main__':