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 7121E138247 for ; Tue, 31 Dec 2013 18:31:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DF766E0A60; Tue, 31 Dec 2013 18:31:51 +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 72192E0A60 for ; Tue, 31 Dec 2013 18:31:51 +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 707A033F805 for ; Tue, 31 Dec 2013 18:31:50 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2279) id 413652004C; Tue, 31 Dec 2013 18:31:48 +0000 (UTC) From: "Michal Gorny (mgorny)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, mgorny@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog multilib-build.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: ChangeLog multilib-build.eclass X-VCS-Directories: eclass X-VCS-Committer: mgorny X-VCS-Committer-Name: Michal Gorny Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20131231183149.413652004C@flycatcher.gentoo.org> Date: Tue, 31 Dec 2013 18:31:48 +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: b27ce620-1c04-40d4-9d47-c447c50ec26f X-Archives-Hash: fae01dbc905b4523678fd9fdc4c87435 mgorny 13/12/31 18:31:48 Modified: ChangeLog multilib-build.eclass Log: Improve documentation on multilib_is_native_abi & multilib_build_binaries to make it clear which one to use. Requested and reviewed by okias. Revision Changes Path 1.1105 eclass/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1105&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1105&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1104&r2=1.1105 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v retrieving revision 1.1104 retrieving revision 1.1105 diff -u -r1.1104 -r1.1105 --- ChangeLog 30 Dec 2013 08:25:35 -0000 1.1104 +++ ChangeLog 31 Dec 2013 18:31:47 -0000 1.1105 @@ -1,6 +1,10 @@ # ChangeLog for eclass directory # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1104 2013/12/30 08:25:35 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1105 2013/12/31 18:31:47 mgorny Exp $ + + 31 Dec 2013; Michał Górny multilib-build.eclass: + Improve documentation on multilib_is_native_abi & multilib_build_binaries to + make it clear which one to use. Requested and reviewed by okias. 30 Dec 2013; Ryan Hill wxwidgets.eclass: Add 3.0 support. 1.25 eclass/multilib-build.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?rev=1.25&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?rev=1.25&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?r1=1.24&r2=1.25 Index: multilib-build.eclass =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v retrieving revision 1.24 retrieving revision 1.25 diff -u -r1.24 -r1.25 --- multilib-build.eclass 28 Dec 2013 18:23:25 -0000 1.24 +++ multilib-build.eclass 31 Dec 2013 18:31:47 -0000 1.25 @@ -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/multilib-build.eclass,v 1.24 2013/12/28 18:23:25 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.25 2013/12/31 18:31:47 mgorny Exp $ # @ECLASS: multilib-build.eclass # @MAINTAINER: @@ -371,9 +371,8 @@ # Determine whether the currently built ABI is the profile native. # Return true status (0) if that is true, otherwise false (1). # -# This is often useful for configure calls when some of the options are -# supposed to be disabled for multilib ABIs (like those used for -# executables only). +# This function is not intended to be used directly. Please use +# multilib_build_binaries instead. multilib_is_native_abi() { debug-print-function ${FUNCNAME} "${@}" @@ -384,14 +383,14 @@ # @FUNCTION: multilib_build_binaries # @DESCRIPTION: -# Determine whether to build binaries for the current build ABI. -# Returns true status (0) if the current built ABI is the profile -# native or COMPLETE_MULTILIB variable is set to yes, otherwise +# Determine whether to build binaries for the currently build ABI. +# Returns true status (0) if the currently built ABI is the profile +# native or COMPLETE_MULTILIB variable is set to 'yes', otherwise # false (1). # -# The COMPLETE_MULTILIB variable can be set by users or profiles -# when they want to build binaries for none-default ABI so e.g. -# 32bit binaries on amd64. +# This is often useful for configure calls when some of the options are +# supposed to be disabled for multilib ABIs (like those used for +# executables only). multilib_build_binaries() { debug-print-function ${FUNCNAME} "${@}"