Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/qa-scripts:master commit in: /
Date: Wed, 27 Jan 2016 22:16:12
Message-Id: 1453932954.e7b92f629b09c022fdad6f97870f7fd270fc5c83.mgorny@gentoo
1 commit: e7b92f629b09c022fdad6f97870f7fd270fc5c83
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 27 22:15:54 2016 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 27 22:15:54 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=e7b92f62
7
8 packages-inheriting-eclasses: update for pkgcore-0.9.2 API
9
10 packages-inheriting-eclasses.py | 4 ++--
11 1 file changed, 2 insertions(+), 2 deletions(-)
12
13 diff --git a/packages-inheriting-eclasses.py b/packages-inheriting-eclasses.py
14 index 13d72bc..f9636b6 100755
15 --- a/packages-inheriting-eclasses.py
16 +++ b/packages-inheriting-eclasses.py
17 @@ -1,7 +1,7 @@
18 #!/usr/bin/python
19
20 import collections, datetime, os, os.path, sys
21 -import pkgcore.config # tested with pkgcore-0.9.1
22 +import pkgcore.config # tested with pkgcore-0.9.2
23
24 def main(argv):
25 try:
26 @@ -11,7 +11,7 @@ def main(argv):
27 return 1
28
29 c = pkgcore.config.load_config()
30 - portdir = c.repo['/usr/portage']
31 + portdir = c.repo['gentoo']
32
33 output = collections.defaultdict(set)