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 61F9E1388C1 for ; Wed, 25 Nov 2015 12:03:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 93D5E21C07A; Wed, 25 Nov 2015 12:03:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5C6B221C050 for ; Wed, 25 Nov 2015 12:03:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3E0E2340702 for ; Wed, 25 Nov 2015 12:03:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2B6C6E82 for ; Wed, 25 Nov 2015 12:03:40 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1448452547.3d19a17951ff0d0a63e2f7a2a2e1c24943721933.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:python-eapi6 commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/python-utils-r1.eclass X-VCS-Directories: eclass/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3d19a17951ff0d0a63e2f7a2a2e1c24943721933 X-VCS-Branch: python-eapi6 Date: Wed, 25 Nov 2015 12:03:40 +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: f120eb69-9c49-4c77-819b-58ea7b77df2f X-Archives-Hash: 2b680fd167fe4d7985c72ea04321a3db commit: 3d19a17951ff0d0a63e2f7a2a2e1c24943721933 Author: Michał Górny gentoo org> AuthorDate: Wed Nov 18 19:44:27 2015 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Nov 25 11:55:47 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d19a179 python-utils-r1.eclass: Support nonfatal in python_do* and python_new* eclass/python-utils-r1.eclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass index 59e8799..7617c3f 100644 --- a/eclass/python-utils-r1.eclass +++ b/eclass/python-utils-r1.eclass @@ -679,7 +679,7 @@ python_newexe() { ( dodir "${wrapd}" exeinto "${d}" - newexe "${f}" "${newfn}" || die + newexe "${f}" "${newfn}" || return ${?} ) # install the wrapper @@ -811,7 +811,7 @@ python_domodule() { ( insinto "${d}" - doins -r "${@}" || die + doins -r "${@}" || return ${?} ) python_optimize "${ED}/${d}" @@ -845,7 +845,7 @@ python_doheader() { ( insinto "${d}" - doins -r "${@}" || die + doins -r "${@}" || return ${?} ) }