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 52BFB1382C5 for ; Tue, 10 Apr 2018 22:17:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 60C97E0AF8; Tue, 10 Apr 2018 22:17:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 3842BE0AF8 for ; Tue, 10 Apr 2018 22:17:40 +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 10DAC335C61 for ; Tue, 10 Apr 2018 22:17:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3E4F325D for ; Tue, 10 Apr 2018 22:17:37 +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: <1523398567.1689911cf9aeb363b23e0bbd4d357cab5ce78538.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/dbapi/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/dbapi/bintree.py X-VCS-Directories: pym/portage/dbapi/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 1689911cf9aeb363b23e0bbd4d357cab5ce78538 X-VCS-Branch: master Date: Tue, 10 Apr 2018 22:17: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 X-Archives-Salt: 54ffc936-8720-4ae3-bc1b-a80fcd5c6ec8 X-Archives-Hash: 833ef5cf7953907908d3709443c2b669 commit: 1689911cf9aeb363b23e0bbd4d357cab5ce78538 Author: Zac Medico gentoo org> AuthorDate: Tue Apr 10 22:16:07 2018 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue Apr 10 22:16:07 2018 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=1689911c binarytree._update_pkgindex_header: include USE_EXPAND_UNPREFIXED vars (bug 640318) Values of USE_EXPAND_UNPREFIXED variables are required for implicit IUSE calculations. Bug: https://bugs.gentoo.org/640318 pym/portage/dbapi/bintree.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pym/portage/dbapi/bintree.py b/pym/portage/dbapi/bintree.py index ab4f4760d..324305aef 100644 --- a/pym/portage/dbapi/bintree.py +++ b/pym/portage/dbapi/bintree.py @@ -1321,7 +1321,8 @@ class binarytree(object): header["URI"] = base_uri else: header.pop("URI", None) - for k in self._pkgindex_header_keys: + for k in list(self._pkgindex_header_keys) + \ + self.settings.get("USE_EXPAND_UNPREFIXED", "").split(): v = self.settings.get(k, None) if v: header[k] = v