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 D11AD138010 for ; Sat, 22 Sep 2012 15:54:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 907FBE04C8; Sat, 22 Sep 2012 15:53:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 613EEE04C8 for ; Sat, 22 Sep 2012 15:53:54 +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 C66F733D0AF for ; Sat, 22 Sep 2012 15:53:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 8A74BE5442 for ; Sat, 22 Sep 2012 15:53:52 +0000 (UTC) From: "Thomas Sachau" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Sachau" Message-ID: <1348329218.185cb4a638b753f01d393f59966e757020960f84.tommy@gentoo> Subject: [gentoo-commits] proj/portage:multilib 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: tommy X-VCS-Committer-Name: Thomas Sachau X-VCS-Revision: 185cb4a638b753f01d393f59966e757020960f84 X-VCS-Branch: multilib Date: Sat, 22 Sep 2012 15:53:52 +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: 19b964f0-29ab-487d-b416-667077e10346 X-Archives-Hash: 5f671bd5a48bd95bf1d1ca69f81713d6 commit: 185cb4a638b753f01d393f59966e757020960f84 Author: Thomas Sachau gentoo org> AuthorDate: Sat Sep 22 15:53:38 2012 +0000 Commit: Thomas Sachau gentoo org> CommitDate: Sat Sep 22 15:53:38 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=185cb4a6 Re-enable the USE flag for the default ABI by default --- pym/portage/package/ebuild/config.py | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/pym/portage/package/ebuild/config.py b/pym/portage/package/ebuild/config.py index 3c6b401..d3f7620 100644 --- a/pym/portage/package/ebuild/config.py +++ b/pym/portage/package/ebuild/config.py @@ -1372,6 +1372,8 @@ class config(object): if pkg_defaults: defaults.extend(pkg_defaults) defaults = " ".join(defaults) + if self.configdict["defaults"].get("MULTILIB_ABIS", "").count(' ') != 0: + defaults = defaults + " multilib_abi_" + self.configdict["defaults"].get("DEFAULT_ABI", "") if defaults != self.configdict["defaults"].get("USE",""): self.configdict["defaults"]["USE"] = defaults has_changed = True