From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 59C09139694 for ; Sat, 15 Jul 2017 21:46:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A1B8F1FC047; Sat, 15 Jul 2017 21:46:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 810991FC047 for ; Sat, 15 Jul 2017 21:46:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8F347341914 for ; Sat, 15 Jul 2017 21:46:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 49B257488 for ; Sat, 15 Jul 2017 21:46:50 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1500155151.c261c1afabbfb8727cfdb4a71880d766365db5d3.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/mpi4py/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/mpi4py/mpi4py-2.0.0.ebuild X-VCS-Directories: dev-python/mpi4py/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: c261c1afabbfb8727cfdb4a71880d766365db5d3 X-VCS-Branch: master Date: Sat, 15 Jul 2017 21:46:50 +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: a0e7f01d-0c7f-4307-a54c-b07559039f5e X-Archives-Hash: 225e0fa9d1b4738dacfc3e39f5f5ec6d commit: c261c1afabbfb8727cfdb4a71880d766365db5d3 Author: Patrice Clement gentoo org> AuthorDate: Sat Jul 15 21:45:51 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sat Jul 15 21:45:51 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c261c1af dev-python/mpi4py: add missing dies. Package-Manager: Portage-2.3.6, Repoman-2.3.1 dev-python/mpi4py/mpi4py-2.0.0.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-python/mpi4py/mpi4py-2.0.0.ebuild b/dev-python/mpi4py/mpi4py-2.0.0.ebuild index 730cbd92b6e..1ccb4b31011 100644 --- a/dev-python/mpi4py/mpi4py-2.0.0.ebuild +++ b/dev-python/mpi4py/mpi4py-2.0.0.ebuild @@ -24,7 +24,7 @@ DISTUTILS_IN_SOURCE_BUILD=1 python_prepare_all() { # not needed on install - rm -r docs/source || die + rm -vr docs/source || die distutils-r1_python_prepare_all } @@ -35,9 +35,9 @@ src_compile() { python_test() { echo "Beginning test phase" - pushd "${BUILD_DIR}"/../ &> /dev/null + pushd "${BUILD_DIR}"/../ &> /dev/null || die mpiexec -n 2 "${PYTHON}" ./test/runtests.py -v || die "Testsuite failed under ${EPYTHON}" - popd &> /dev/null + popd &> /dev/null || die } python_install_all() {