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 5AE8F1384B4 for ; Sat, 28 Nov 2015 19:09:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A21321C126; Sat, 28 Nov 2015 19:09:53 +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 8F6C621C06A for ; Sat, 28 Nov 2015 19:09:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A1D6934087F for ; Sat, 28 Nov 2015 19:09:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6C5F0ABE for ; Sat, 28 Nov 2015 19:09:47 +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: <1448737746.e67a293e266a19946ce11f384186a9e7df3ae66c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master 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: e67a293e266a19946ce11f384186a9e7df3ae66c X-VCS-Branch: master Date: Sat, 28 Nov 2015 19:09:47 +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: 4d2ab2bd-9d9c-4f41-9d2e-a839aa8e3993 X-Archives-Hash: 3fc93246f020078c8920f680a69cac47 commit: e67a293e266a19946ce11f384186a9e7df3ae66c Author: Michał Górny gentoo org> AuthorDate: Wed Nov 18 19:44:27 2015 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Nov 28 19:09:06 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e67a293e 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 456c099..884867f 100644 --- a/eclass/python-utils-r1.eclass +++ b/eclass/python-utils-r1.eclass @@ -682,7 +682,7 @@ python_newexe() { ( dodir "${wrapd}" exeinto "${d}" - newexe "${f}" "${newfn}" || die + newexe "${f}" "${newfn}" || return ${?} ) # install the wrapper @@ -814,7 +814,7 @@ python_domodule() { ( insinto "${d}" - doins -r "${@}" || die + doins -r "${@}" || return ${?} ) python_optimize "${ED}/${d}" @@ -848,7 +848,7 @@ python_doheader() { ( insinto "${d}" - doins -r "${@}" || die + doins -r "${@}" || return ${?} ) }