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 50D4F138206 for ; Fri, 29 Apr 2016 17:25:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 17FC321C08E; Fri, 29 Apr 2016 17:24:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 08F3521C084 for ; Fri, 29 Apr 2016 17:24:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 87CED340D90 for ; Fri, 29 Apr 2016 17:24:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ECD0E87B for ; Fri, 29 Apr 2016 17:24:45 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1461694068.8443e66ae5ffce5fb0daa73a3eeb0b18077ee942.dolsen@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/repoman/ X-VCS-Repository: proj/portage X-VCS-Files: pym/repoman/scanner.py X-VCS-Directories: pym/repoman/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 8443e66ae5ffce5fb0daa73a3eeb0b18077ee942 X-VCS-Branch: master Date: Fri, 29 Apr 2016 17:24:45 +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: 9409a626-d9a3-4348-bf14-55fc9b1c6809 X-Archives-Hash: e921d545bbfa689a48a8d0bfe7a9d8e4 commit: 8443e66ae5ffce5fb0daa73a3eeb0b18077ee942 Author: Zac Medico gentoo org> AuthorDate: Tue Apr 26 18:07:48 2016 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Tue Apr 26 18:07:48 2016 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=8443e66a Scanner: remove self.pkgs attribute pym/repoman/scanner.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pym/repoman/scanner.py b/pym/repoman/scanner.py index 6ded7ee..d966513 100644 --- a/pym/repoman/scanner.py +++ b/pym/repoman/scanner.py @@ -179,8 +179,6 @@ class Scanner(object): chain(self.changed.changed, self.changed.new, self.changed.removed), self.repolevel, self.reposplit, self.categories)) - self.pkgs = None - # Create our kwargs dict here to initialize the plugins with self.kwargs = { "repo_settings": self.repo_settings, @@ -348,8 +346,8 @@ class Scanner(object): continue # Sort ebuilds in ascending order for the KEYWORDS.dropped check. - self.pkgs = dynamic_data['pkgs'].get() - ebuildlist = sorted(self.pkgs.values()) + pkgs = dynamic_data['pkgs'].get() + ebuildlist = sorted(pkgs.values()) ebuildlist = [pkg.pf for pkg in ebuildlist] if self.checks['changelog'] and "ChangeLog" not in checkdirlist: