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 F1AE7138334 for ; Thu, 23 Aug 2018 18:50:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E2810E0935; Thu, 23 Aug 2018 18:50:49 +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 B76A9E0935 for ; Thu, 23 Aug 2018 18:50:49 +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 0FA5D335CA3 for ; Thu, 23 Aug 2018 18:50:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 70BB12A9 for ; Thu, 23 Aug 2018 18:50:45 +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: <1535050235.330875eb464377a5be18a47911f138086438acd7.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/json-rpc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/json-rpc/json-rpc-1.11.0.ebuild X-VCS-Directories: dev-python/json-rpc/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 330875eb464377a5be18a47911f138086438acd7 X-VCS-Branch: master Date: Thu, 23 Aug 2018 18:50:45 +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: a65f32d4-5f12-49de-b864-be6b0d601428 X-Archives-Hash: 2c1ea0fded9d582022785f6afe35a7de commit: 330875eb464377a5be18a47911f138086438acd7 Author: Patrice Clement gentoo org> AuthorDate: Thu Aug 23 16:02:49 2018 +0000 Commit: Patrice Clement gentoo org> CommitDate: Thu Aug 23 18:50:35 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=330875eb dev-python/json-rpc: add missing die. Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-python/json-rpc/json-rpc-1.11.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/json-rpc/json-rpc-1.11.0.ebuild b/dev-python/json-rpc/json-rpc-1.11.0.ebuild index b46a3f9f107..d56a28e57a0 100644 --- a/dev-python/json-rpc/json-rpc-1.11.0.ebuild +++ b/dev-python/json-rpc/json-rpc-1.11.0.ebuild @@ -28,7 +28,7 @@ DEPEND=" )" python_prepare_all() { - cat > jsonrpc/six.py <<- EOF + cat > jsonrpc/six.py <<- EOF || die from __future__ import absolute_import from six import * EOF @@ -36,5 +36,5 @@ python_prepare_all() { } python_test() { - esetup.py test + esetup.py test || die }