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 1SHVwO-0002Vx-6E for garchives@archives.gentoo.org; Tue, 10 Apr 2012 07:56:40 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F0D91E0CD4; Tue, 10 Apr 2012 07:56:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id C1641E0CD4 for ; Tue, 10 Apr 2012 07:56:27 +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 2B6601B400A for ; Tue, 10 Apr 2012 07:56:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id C4997E5402 for ; Tue, 10 Apr 2012 07:56:25 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1334044576.bec63d2692577a57c72d3d93ecf10007f96b2233.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: bec63d2692577a57c72d3d93ecf10007f96b2233 X-VCS-Branch: master Date: Tue, 10 Apr 2012 07:56:25 +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: 1578aeb3-a4e0-40ee-b515-63dd0dc1f3df X-Archives-Hash: 4ec8e1ecec49f1223a8f0dfbb6235683 commit: bec63d2692577a57c72d3d93ecf10007f96b2233 Author: Micha=C5=82 G=C3=B3rny gentoo org> AuthorDate: Tue Apr 10 07:56:16 2012 +0000 Commit: Micha=C5=82 G=C3=B3rny gentoo org> CommitDate: Tue Apr 10 07:56:16 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/qa-scripts.gi= t;a=3Dcommit;h=3Dbec63d26 Update for pkgcore API changes. --- packages-inheriting-eclasses.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages-inheriting-eclasses.py b/packages-inheriting-eclass= es.py index 29770b7..0e88c42 100755 --- a/packages-inheriting-eclasses.py +++ b/packages-inheriting-eclasses.py @@ -1,7 +1,7 @@ #!/usr/bin/python =20 import collections, datetime, os, os.path, sys -import pkgcore.config # tested with pkgcore-0.6.4 +import pkgcore.config # tested with pkgcore-0.7.7.8 =20 def main(argv): try: @@ -49,7 +49,7 @@ def main(argv):
  • / (go back)
  • -''' % (max([len(e) for e in output]), datetime.datetime.fromtimes= tamp(c.syncer['%s syncer' % portdir.location].current_timestamp()), '\n'.= join(['
  • %s.eclass (%d packages),
  • ' % (e, e,= len(output[e])) for e in sorted(output)]))) +''' % (max([len(e) for e in output]), datetime.datetime.fromtimes= tamp(c.syncer['sync:%s' % portdir.location].current_timestamp()), '\n'.jo= in(['
  • %s.eclass (%d packages),
  • ' % (e, e, l= en(output[e])) for e in sorted(output)]))) f.close() =20 return 0