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 1RFD0P-00024U-Ta for garchives@archives.gentoo.org; Sat, 15 Oct 2011 22:47:02 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C5B4B21C04D; Sat, 15 Oct 2011 22:46:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 95E6321C04D for ; Sat, 15 Oct 2011 22:46:54 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 03A87646CC for ; Sat, 15 Oct 2011 22:46:54 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 1A88B80042 for ; Sat, 15 Oct 2011 22:46:53 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <9f7aba55758ba93414ed07c58a0129178188c31b.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: pym/_emerge/EbuildMetadataPhase.py X-VCS-Directories: pym/_emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 9f7aba55758ba93414ed07c58a0129178188c31b Date: Sat, 15 Oct 2011 22:46:53 +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: 7f77f30f04ad57c2424c6e24cc419da5 commit: 9f7aba55758ba93414ed07c58a0129178188c31b Author: Zac Medico gentoo org> AuthorDate: Sat Oct 15 22:46:37 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Sat Oct 15 22:46:37 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D9f7aba55 EbuildMetadataPhase: fix broken _metadata_callback This fixes a regression in FEATURES=3Dparse-eapi-ebuild-head support for egencache since commit 2ed1cb53cc4158af08c22d466b15b9a9a7767212. --- pym/_emerge/EbuildMetadataPhase.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pym/_emerge/EbuildMetadataPhase.py b/pym/_emerge/EbuildMetad= ataPhase.py index 95729e8..a6630ad 100644 --- a/pym/_emerge/EbuildMetadataPhase.py +++ b/pym/_emerge/EbuildMetadataPhase.py @@ -44,8 +44,8 @@ class EbuildMetadataPhase(SubProcess): =20 if eapi is not None: if not portage.eapi_is_supported(eapi): - self.metadata_callback(self.cpv, ebuild_path, - self.repo_path, {'EAPI' : eapi}, self.ebuild_hash.mtime) + self.metadata_callback(self.cpv, + self.repo_path, {'EAPI' : eapi}, self.ebuild_hash) self._set_returncode((self.pid, os.EX_OK << 8)) self.wait() return