Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/json-rpc/
Date: Thu, 23 Aug 2018 18:50:50
Message-Id: 1535050235.330875eb464377a5be18a47911f138086438acd7.monsieurp@gentoo
1 commit: 330875eb464377a5be18a47911f138086438acd7
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 23 16:02:49 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 23 18:50:35 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=330875eb
7
8 dev-python/json-rpc: add missing die.
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 dev-python/json-rpc/json-rpc-1.11.0.ebuild | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/dev-python/json-rpc/json-rpc-1.11.0.ebuild b/dev-python/json-rpc/json-rpc-1.11.0.ebuild
16 index b46a3f9f107..d56a28e57a0 100644
17 --- a/dev-python/json-rpc/json-rpc-1.11.0.ebuild
18 +++ b/dev-python/json-rpc/json-rpc-1.11.0.ebuild
19 @@ -28,7 +28,7 @@ DEPEND="
20 )"
21
22 python_prepare_all() {
23 - cat > jsonrpc/six.py <<- EOF
24 + cat > jsonrpc/six.py <<- EOF || die
25 from __future__ import absolute_import
26 from six import *
27 EOF
28 @@ -36,5 +36,5 @@ python_prepare_all() {
29 }
30
31 python_test() {
32 - esetup.py test
33 + esetup.py test || die
34 }