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 B84E21381F3 for ; Fri, 6 Sep 2013 17:11:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 52BC2E0FAC; Fri, 6 Sep 2013 17:11:55 +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 D474EE0FAC for ; Fri, 6 Sep 2013 17:11:54 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C4D2733DAC8 for ; Fri, 6 Sep 2013 17:11:53 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2305) id 65B232004C; Fri, 6 Sep 2013 17:11:52 +0000 (UTC) From: "Ian Stakenvicius (axs)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, axs@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog cmake-multilib.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: ChangeLog cmake-multilib.eclass X-VCS-Directories: eclass X-VCS-Committer: axs X-VCS-Committer-Name: Ian Stakenvicius Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130906171152.65B232004C@flycatcher.gentoo.org> Date: Fri, 6 Sep 2013 17:11: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: 031ede61-5ae2-442c-a025-7bff81b3ee88 X-Archives-Hash: 8d760f31419932985f76cb1b01082658 axs 13/09/06 17:11:52 Modified: ChangeLog cmake-multilib.eclass Log: added multilib_*_wrappers calls to cmake-multilib.eclass Revision Changes Path 1.950 eclass/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.950&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.950&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.949&r2=1.950 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v retrieving revision 1.949 retrieving revision 1.950 diff -u -r1.949 -r1.950 --- ChangeLog 5 Sep 2013 22:40:12 -0000 1.949 +++ ChangeLog 6 Sep 2013 17:11:52 -0000 1.950 @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.949 2013/09/05 22:40:12 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.950 2013/09/06 17:11:52 axs Exp $ + + 06 Sep 2013; Ian Stakenvicius cmake-multilib.eclass: + added multilib_*_wrappers calls to cmake-multilib.eclass 05 Sep 2013; Michał Górny git-r3.eclass: Do not pass --depth when updating a branch, it trrigers issues in git. @@ -35,6 +38,9 @@ 28 Aug 2013; Tom Wijsman ant-tasks.eclass: Made ant-tasks.eclass support newer versions of the 1.9 branch. + 28 Aug 2013; Ian Stakenvicius mozconfig-3.eclass: + pegged virtual/jpeg at slot 0 in mozconfig-3.eclass + 27 Aug 2013; Michał Górny python-r1.eclass: Enable EAPI=4 on python-r1. 1.3 eclass/cmake-multilib.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/cmake-multilib.eclass?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/cmake-multilib.eclass?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/cmake-multilib.eclass?r1=1.2&r2=1.3 Index: cmake-multilib.eclass =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/cmake-multilib.eclass,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- cmake-multilib.eclass 13 Apr 2013 19:15:04 -0000 1.2 +++ cmake-multilib.eclass 6 Sep 2013 17:11:52 -0000 1.3 @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-multilib.eclass,v 1.2 2013/04/13 19:15:04 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-multilib.eclass,v 1.3 2013/09/06 17:11:52 axs Exp $ # @ECLASS: cmake-multilib.eclass # @MAINTAINER: @@ -49,8 +49,10 @@ cmake-utils_src_install "${@}" # Make sure all headers are the same for each ABI. + multilib_prepare_wrappers multilib_check_headers } multilib_foreach_abi cmake-multilib_secure_install "${@}" + multilib_install_wrappers }