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 933C3138010 for ; Thu, 18 Oct 2012 02:00:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 63860E02DF; Thu, 18 Oct 2012 01:59:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id D46F1E02DF for ; Thu, 18 Oct 2012 01:59:52 +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 41CF133D77F for ; Thu, 18 Oct 2012 01:59:52 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id E24EFE5436 for ; Thu, 18 Oct 2012 01:59:50 +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: <1350525580.d25923e5770329b6b692ec2c05bb2dafaa4e7d4c.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/repoman X-VCS-Directories: bin/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: d25923e5770329b6b692ec2c05bb2dafaa4e7d4c X-VCS-Branch: master Date: Thu, 18 Oct 2012 01:59:50 +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: 6f15dee0-193f-40ca-a8f2-bae59782e247 X-Archives-Hash: 7ebc0a9d23f3bb27f6ff2fa3c9ad8272 commit: d25923e5770329b6b692ec2c05bb2dafaa4e7d4c Author: Zac Medico gentoo org> AuthorDate: Thu Oct 18 01:59:40 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Thu Oct 18 01:59:40 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=d25923e5 repoman: fix KEYWORDS.dropped for EAPI 5 sub-slot --- bin/repoman | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/repoman b/bin/repoman index ba0ec9a..1502d6b 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1806,9 +1806,9 @@ for x in effective_scanlist: ebuild_archs = set(kw.lstrip("~") for kw in keywords \ if not kw.startswith("-")) - previous_keywords = slot_keywords.get(myaux["SLOT"]) + previous_keywords = slot_keywords.get(pkg.slot) if previous_keywords is None: - slot_keywords[myaux["SLOT"]] = set() + slot_keywords[pkg.slot] = set() elif ebuild_archs and not live_ebuild: dropped_keywords = previous_keywords.difference(ebuild_archs) if dropped_keywords: @@ -1817,7 +1817,7 @@ for x in effective_scanlist: relative_path + ": %s" % \ " ".join(sorted(dropped_keywords))) - slot_keywords[myaux["SLOT"]].update(ebuild_archs) + slot_keywords[pkg.slot].update(ebuild_archs) # KEYWORDS="-*" is a stupid replacement for package.mask and screws general KEYWORDS semantics if "-*" in keywords: