From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A8A231382C5 for ; Mon, 23 Apr 2018 19:48:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D0B19E0B1A; Mon, 23 Apr 2018 19:48:42 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AB269E0B13 for ; Mon, 23 Apr 2018 19:48:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 702C2335C61 for ; Mon, 23 Apr 2018 19:48:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D59EC292 for ; Mon, 23 Apr 2018 19:48:39 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1524512805.b58ba964c79f8ec7e450b871059306bbc433a7ca.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: pym/_emerge/EbuildBuild.py X-VCS-Directories: pym/_emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: b58ba964c79f8ec7e450b871059306bbc433a7ca X-VCS-Branch: master Date: Mon, 23 Apr 2018 19:48:39 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 0d551c52-8dd1-4ecf-a4ee-2b786230d6ff X-Archives-Hash: 75508b3f36cb420ccc2c395afbc7d3b6 commit: b58ba964c79f8ec7e450b871059306bbc433a7ca Author: Zac Medico gentoo org> AuthorDate: Mon Apr 23 19:46:45 2018 +0000 Commit: Zac Medico gentoo org> CommitDate: Mon Apr 23 19:46:45 2018 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=b58ba964 EbuildBuild: pass loop parameter to async_fetch_map Fixes: db4dca876cdb ("EbuildBuild._start(): fix event loop recursion (bug 653844)") pym/_emerge/EbuildBuild.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pym/_emerge/EbuildBuild.py b/pym/_emerge/EbuildBuild.py index 9651bd419..e5b96691a 100644 --- a/pym/_emerge/EbuildBuild.py +++ b/pym/_emerge/EbuildBuild.py @@ -48,7 +48,8 @@ class EbuildBuild(CompositeTask): self._start_task( AsyncTaskFuture( future=self.pkg.root_config.trees["porttree"].dbapi.\ - async_aux_get(self.pkg.cpv, ["SRC_URI"], myrepo=self.pkg.repo)), + async_aux_get(self.pkg.cpv, ["SRC_URI"], myrepo=self.pkg.repo, + loop=self.scheduler)), self._start_with_metadata) def _start_with_metadata(self, aux_get_task):