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 C31FD198005 for ; Tue, 19 Mar 2013 16:50:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 717A9E0439; Tue, 19 Mar 2013 16:50:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0DBDDE0439 for ; Tue, 19 Mar 2013 16:50:26 +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 1BBB833D876 for ; Tue, 19 Mar 2013 16:50:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id AA537E4073 for ; Tue, 19 Mar 2013 16:50:24 +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: <1363711762.2e13ec014ffda81d340f3d373e879b9587078b0c.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/repoman/ X-VCS-Repository: proj/portage X-VCS-Files: pym/repoman/checks.py X-VCS-Directories: pym/repoman/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 2e13ec014ffda81d340f3d373e879b9587078b0c X-VCS-Branch: master Date: Tue, 19 Mar 2013 16:50:24 +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: 6b2d9a28-a8f9-47f9-8ced-d7cf18d7ffdc X-Archives-Hash: ef66c5aa96cfca40f356fd0b087bb81b commit: 2e13ec014ffda81d340f3d373e879b9587078b0c Author: Zac Medico gentoo org> AuthorDate: Tue Mar 19 16:49:22 2013 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue Mar 19 16:49:22 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=2e13ec01 repoman: exempt multilib-minimal for get_libdir This will fix bug #461944. --- pym/repoman/checks.py | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/pym/repoman/checks.py b/pym/repoman/checks.py index 1a53934..5146e4d 100644 --- a/pym/repoman/checks.py +++ b/pym/repoman/checks.py @@ -596,7 +596,8 @@ _eclass_info = { ), # These are "eclasses are the whole ebuild" type thing. - 'exempt_eclasses': _eclass_export_functions + ('autotools', 'libtool'), + 'exempt_eclasses': _eclass_export_functions + ('autotools', 'libtool', + 'multilib-minimal'), 'comprehensive': False },