From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-860065-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	by finch.gentoo.org (Postfix) with ESMTP id B206258973
	for <garchives@archives.gentoo.org>; Wed, 27 Jan 2016 22:16:12 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id D5691E08A0;
	Wed, 27 Jan 2016 22:16:10 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 805B6E08A0
	for <gentoo-commits@lists.gentoo.org>; Wed, 27 Jan 2016 22:16:10 +0000 (UTC)
Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84])
	(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 349FD340A2B
	for <gentoo-commits@lists.gentoo.org>; Wed, 27 Jan 2016 22:16:09 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id A3EA8E5F
	for <gentoo-commits@lists.gentoo.org>; Wed, 27 Jan 2016 22:16:04 +0000 (UTC)
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" <mgorny@gentoo.org>
Message-ID: <1453932954.e7b92f629b09c022fdad6f97870f7fd270fc5c83.mgorny@gentoo>
Subject: [gentoo-commits] proj/qa-scripts:master commit in: /
X-VCS-Repository: proj/qa-scripts
X-VCS-Files: packages-inheriting-eclasses.py
X-VCS-Directories: /
X-VCS-Committer: mgorny
X-VCS-Committer-Name: Michał Górny
X-VCS-Revision: e7b92f629b09c022fdad6f97870f7fd270fc5c83
X-VCS-Branch: master
Date: Wed, 27 Jan 2016 22:16:04 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: 324ddbc7-9c35-4208-bc65-20be44584172
X-Archives-Hash: b6babed66ec405edd2bf3fd2e69533a8

commit:     e7b92f629b09c022fdad6f97870f7fd270fc5c83
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 27 22:15:54 2016 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Jan 27 22:15:54 2016 +0000
URL:        https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=e7b92f62

packages-inheriting-eclasses: update for pkgcore-0.9.2 API

 packages-inheriting-eclasses.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/packages-inheriting-eclasses.py b/packages-inheriting-eclasses.py
index 13d72bc..f9636b6 100755
--- a/packages-inheriting-eclasses.py
+++ b/packages-inheriting-eclasses.py
@@ -1,7 +1,7 @@
 #!/usr/bin/python
 
 import collections, datetime, os, os.path, sys
-import pkgcore.config # tested with pkgcore-0.9.1
+import pkgcore.config # tested with pkgcore-0.9.2
 
 def main(argv):
 	try:
@@ -11,7 +11,7 @@ def main(argv):
 		return 1
 
 	c = pkgcore.config.load_config()
-	portdir = c.repo['/usr/portage']
+	portdir = c.repo['gentoo']
 
 	output = collections.defaultdict(set)