mgorny 14/04/28 17:38:51 Modified: libxml2-2.9.1-r2.ebuild ChangeLog Log: Replace multilib_build_binaries with multilib_is_native_abi. The two are equivalent now, and the team has decided to use the old name as being less confusing. (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Revision Changes Path 1.5 dev-libs/libxml2/libxml2-2.9.1-r2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/libxml2-2.9.1-r2.ebuild?rev=1.5&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/libxml2-2.9.1-r2.ebuild?rev=1.5&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/libxml2-2.9.1-r2.ebuild?r1=1.4&r2=1.5 Index: libxml2-2.9.1-r2.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.9.1-r2.ebuild,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- libxml2-2.9.1-r2.ebuild 18 Jan 2014 02:53:03 -0000 1.4 +++ libxml2-2.9.1-r2.ebuild 28 Apr 2014 17:38:51 -0000 1.5 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.9.1-r2.ebuild,v 1.4 2014/01/18 02:53:03 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.9.1-r2.ebuild,v 1.5 2014/04/28 17:38:51 mgorny Exp $ EAPI="5" PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} ) @@ -110,7 +110,7 @@ local myconf - if multilib_build_binaries; then + if multilib_is_native_abi; then myconf="$(use_with python) $(use_with readline) $(use_with readline history)" @@ -133,7 +133,7 @@ multilib_src_compile() { default - if multilib_build_binaries && use python; then + if multilib_is_native_abi && use python; then python_copy_sources python_foreach_impl libxml2_py_emake fi @@ -141,14 +141,14 @@ multilib_src_test() { default - multilib_build_binaries && use python && python_foreach_impl libxml2_py_emake test + multilib_is_native_abi && use python && python_foreach_impl libxml2_py_emake test } multilib_src_install() { emake DESTDIR="${D}" \ EXAMPLES_DIR="${EPREFIX}"/usr/share/doc/${PF}/examples install - if multilib_build_binaries && use python; then + if multilib_is_native_abi && use python; then python_foreach_impl libxml2_py_emake DESTDIR="${D}" \ docsdir="${EPREFIX}"/usr/share/doc/${PF}/python \ exampledir="${EPREFIX}"/usr/share/doc/${PF}/python/examples \ 1.410 dev-libs/libxml2/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.410&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.410&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/ChangeLog?r1=1.409&r2=1.410 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v retrieving revision 1.409 retrieving revision 1.410 diff -u -r1.409 -r1.410 --- ChangeLog 22 Feb 2014 21:19:27 -0000 1.409 +++ ChangeLog 28 Apr 2014 17:38:51 -0000 1.410 @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libxml2 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.409 2014/02/22 21:19:27 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.410 2014/04/28 17:38:51 mgorny Exp $ + + 28 Apr 2014; Michał Górny <[email protected]> libxml2-2.9.1-r2.ebuild: + Replace multilib_build_binaries with multilib_is_native_abi. The two are + equivalent now, and the team has decided to use the old name as being less + confusing. 22 Feb 2014; Pacho Ramos <[email protected]> libxml2-2.9.1-r2.ebuild: Fix wrong commit, bug 502160
