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 1D0B3138334 for ; Sun, 14 Oct 2018 20:45:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E1D03E0821; Sun, 14 Oct 2018 20:45:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 BBEE2E0821 for ; Sun, 14 Oct 2018 20:45:57 +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 B69B1335CCC for ; Sun, 14 Oct 2018 20:45:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F3DA43D4 for ; Sun, 14 Oct 2018 20:45:54 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1539549944.b9a0956be6cfedb4fe5cb4d4f94b1675db4dff3e.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/apbs/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-chemistry/apbs/apbs-1.4.1-r2.ebuild X-VCS-Directories: sci-chemistry/apbs/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: b9a0956be6cfedb4fe5cb4d4f94b1675db4dff3e X-VCS-Branch: master Date: Sun, 14 Oct 2018 20:45:54 +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: 149ce22f-560d-4b29-8864-2255db0db2e0 X-Archives-Hash: 9eadb2915cf91a6da3415558cddcddea commit: b9a0956be6cfedb4fe5cb4d4f94b1675db4dff3e Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Oct 14 20:42:25 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Oct 14 20:45:44 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9a0956b sci-chemistry/apbs: Several missing || die Signed-off-by: Andreas Sturmlechner gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 sci-chemistry/apbs/apbs-1.4.1-r2.ebuild | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/sci-chemistry/apbs/apbs-1.4.1-r2.ebuild b/sci-chemistry/apbs/apbs-1.4.1-r2.ebuild index aecbcd3ce74..2f20af9fb69 100644 --- a/sci-chemistry/apbs/apbs-1.4.1-r2.ebuild +++ b/sci-chemistry/apbs/apbs-1.4.1-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -63,7 +63,8 @@ src_prepare() { use doc && MAKEOPTS+=" -j1" if use python; then unset PATCHES || die - cd tools/python && distutils-r1_src_prepare + cd tools/python || die + distutils-r1_src_prepare fi } @@ -92,7 +93,8 @@ src_configure() { ) cmake-utils_src_configure if use python; then - cd tools/python && distutils-r1_src_configure + cd tools/python || die + distutils-r1_src_configure fi } @@ -100,7 +102,8 @@ src_compile(){ cmake-utils_src_compile if use python; then append-ldflags -L"${S}"/lib - cd tools/python && distutils-r1_src_compile + cd tools/python || die + distutils-r1_src_compile fi } @@ -121,7 +124,8 @@ src_install() { fi done if use python; then - cd tools/python && distutils-r1_src_install + cd tools/python || die + distutils-r1_src_install rm -rf "${ED}"/usr/share/apbs/tools/python || die fi }