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 552C01381F3 for ; Fri, 7 Dec 2012 17:57:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 31B14E0652; Fri, 7 Dec 2012 17:57:49 +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 9FDB1E0652 for ; Fri, 7 Dec 2012 17:57:48 +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 92E2533DC00 for ; Fri, 7 Dec 2012 17:57:47 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2279) id 593FD2171D; Fri, 7 Dec 2012 17:57:46 +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 distutils-r1.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: ChangeLog distutils-r1.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: <20121207175746.593FD2171D@flycatcher.gentoo.org> Date: Fri, 7 Dec 2012 17:57:46 +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: ea0af2f2-7686-4306-9573-73cb1f7a240e X-Archives-Hash: 2764b3b1147f069406086b5f97974cde mgorny 12/12/07 17:57:46 Modified: ChangeLog distutils-r1.eclass Log: Use multiprocessing post-fork wait mode to avoid early output when all jobs are running. Revision Changes Path 1.549 eclass/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.549&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.549&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.548&r2=1.549 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v retrieving revision 1.548 retrieving revision 1.549 diff -u -r1.548 -r1.549 --- ChangeLog 7 Dec 2012 17:56:22 -0000 1.548 +++ ChangeLog 7 Dec 2012 17:57:46 -0000 1.549 @@ -1,6 +1,10 @@ # ChangeLog for eclass directory # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.548 2012/12/07 17:56:22 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.549 2012/12/07 17:57:46 mgorny Exp $ + + 07 Dec 2012; Michał Górny distutils-r1.eclass: + Use multiprocessing post-fork wait mode to avoid early output when all jobs + are running. 07 Dec 2012; Michał Górny distutils-r1.eclass: Do not die when sub-phases return non-true value. This is inconsistent with 1.27 eclass/distutils-r1.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/distutils-r1.eclass?rev=1.27&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/distutils-r1.eclass?rev=1.27&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/distutils-r1.eclass?r1=1.26&r2=1.27 Index: distutils-r1.eclass =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v retrieving revision 1.26 retrieving revision 1.27 diff -u -r1.26 -r1.27 --- distutils-r1.eclass 7 Dec 2012 17:56:22 -0000 1.26 +++ distutils-r1.eclass 7 Dec 2012 17:57:46 -0000 1.27 @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.26 2012/12/07 17:56:22 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.27 2012/12/07 17:57:46 mgorny Exp $ # @ECLASS: distutils-r1 # @MAINTAINER: @@ -382,7 +382,7 @@ if [[ ${DISTUTILS_NO_PARALLEL_BUILD} ]]; then "${@}" else - multijob_child_init "${@}" + multijob_child_init --post "${@}" fi if [[ ${DISTUTILS_IN_SOURCE_BUILD} ]]; then