From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 2D4D5138010 for ; Thu, 18 Oct 2012 04:58:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A94F2E002A; Thu, 18 Oct 2012 04:58:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 1CE0CE002A for ; Thu, 18 Oct 2012 04:58:20 +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 2A97933D132 for ; Thu, 18 Oct 2012 04:58:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id D0038E5436 for ; Thu, 18 Oct 2012 04:58:18 +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: <1350536288.27dbcfdd5cd285c8b40808ff0f791b25b6f1f3cd.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/package/ebuild/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/package/ebuild/config.py X-VCS-Directories: pym/portage/package/ebuild/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 27dbcfdd5cd285c8b40808ff0f791b25b6f1f3cd X-VCS-Branch: master Date: Thu, 18 Oct 2012 04:58:18 +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: d67c475b-02b2-426f-8483-cbf0c6e2da1b X-Archives-Hash: 7ee10b540e9bad8b5efed45a2692b14a commit: 27dbcfdd5cd285c8b40808ff0f791b25b6f1f3cd Author: Zac Medico gentoo org> AuthorDate: Thu Oct 18 04:58:08 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Thu Oct 18 04:58:08 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=27dbcfdd config.setcpv: use constructed _pkg_str for mycpv --- pym/portage/package/ebuild/config.py | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/pym/portage/package/ebuild/config.py b/pym/portage/package/ebuild/config.py index 9353b15..45a3351 100644 --- a/pym/portage/package/ebuild/config.py +++ b/pym/portage/package/ebuild/config.py @@ -1312,8 +1312,9 @@ class config(object): pkg_configdict["PORTAGE_REPO_NAME"] = repository iuse = pkg_configdict["IUSE"] if pkg is None: - cpv_slot = _pkg_str(self.mycpv, metadata=pkg_configdict, + self.mycpv = _pkg_str(self.mycpv, metadata=pkg_configdict, settings=self) + cpv_slot = self.mycpv else: cpv_slot = pkg pkginternaluse = []