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 1QvD6r-0004gT-8R for garchives@archives.gentoo.org; Sun, 21 Aug 2011 18:51:01 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6903A21C0E6; Sun, 21 Aug 2011 18:50:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 369DC21C0E6 for ; Sun, 21 Aug 2011 18:50:38 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6A4ED1B4057 for ; Sun, 21 Aug 2011 18:50:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 6DBB680048 for ; Sun, 21 Aug 2011 18:50:37 +0000 (UTC) From: "Александр Берсенев" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Александр Берсенев" Message-ID: Subject: [gentoo-commits] proj/autodep:master commit in: portage_with_autodep/pym/_emerge/ X-VCS-Repository: proj/autodep X-VCS-Files: portage_with_autodep/pym/_emerge/EventsAnalyser.py X-VCS-Directories: portage_with_autodep/pym/_emerge/ X-VCS-Committer: bay X-VCS-Committer-Name: Александр Берсенев X-VCS-Revision: ceda17612f4fa2037c80eddcaa6696cb30f7ad01 Date: Sun, 21 Aug 2011 18:50:37 +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: X-Archives-Hash: d8d4d1c2e30a010b6d3b798ee538c919 commit: ceda17612f4fa2037c80eddcaa6696cb30f7ad01 Author: Alexander Bersenev hackerdom ru> AuthorDate: Sun Aug 21 22:03:33 2011 +0000 Commit: =D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4=D1=80 =D0=91= =D0=B5=D1=80=D1=81=D0=B5=D0=BD=D0=B5=D0=B2 hackerdom ru> CommitDate: Sun Aug 21 22:03:33 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/autodep.git;a= =3Dcommit;h=3Dceda1761 python 2.6 compatibility --- portage_with_autodep/pym/_emerge/EventsAnalyser.py | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/portage_with_autodep/pym/_emerge/EventsAnalyser.py b/portage= _with_autodep/pym/_emerge/EventsAnalyser.py index eb2c943..a0562aa 100644 --- a/portage_with_autodep/pym/_emerge/EventsAnalyser.py +++ b/portage_with_autodep/pym/_emerge/EventsAnalyser.py @@ -267,21 +267,21 @@ class FilterProcGenerator: =09 system_packages=3Dportageutils.get_system_packages_list() =20 - allfiles=3DGentoolkitUtils.get_all_packages_files() + allfiles=3DGentoolkitUtils().get_all_packages_files() portage.util.writemsg("All files list recieved, waiting for " \ "a list of allowed files\n") =20 =20 allowedpkgs=3Dsystem_packages+list(deps_portage)+list(deps_all)=09 =09 - allowedfiles=3DGentoolkitUtils.getfilesbypackages(allowedpkgs) + allowedfiles=3DGentoolkitUtils().getfilesbypackages(allowedpkgs) #for pkg in allowedpkgs: # allowedfiles+=3DGentoolkitUtils.getfilesbypackage(pkg) =20 #import pdb; pdb.set_trace() =20 # manually add all python interpreters to this list - allowedfiles+=3DGentoolkitUtils.getfilesbypackages(['python']) + allowedfiles+=3DGentoolkitUtils().getfilesbypackages(['python']) allowedfiles=3Dset(allowedfiles) =09 deniedfiles=3Dallfiles-allowedfiles @@ -318,7 +318,7 @@ class EventsAnalyser: filenames=3Dfilenames.union(fail_events) filenames=3Dlist(filenames) =20 - file_to_package=3DGentoolkitUtils.getpackagesbyfiles(filenames) + file_to_package=3DGentoolkitUtils().getpackagesbyfiles(filenames) # This part is completly unreadable.=20 # It converting one complex struct(returned by getfsevents) to another= complex # struct which good for generating output.