From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-961971-garchives=archives.gentoo.org@lists.gentoo.org>
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 7ACC9139695
	for <garchives@archives.gentoo.org>; Sat, 15 Jul 2017 21:42:18 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id E1CBF1FC00A;
	Sat, 15 Jul 2017 21:42:15 +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 BF7031FC00A
	for <gentoo-commits@lists.gentoo.org>; Sat, 15 Jul 2017 21:42:15 +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 AC38834194A
	for <gentoo-commits@lists.gentoo.org>; Sat, 15 Jul 2017 21:42:14 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 90A087488
	for <gentoo-commits@lists.gentoo.org>; Sat, 15 Jul 2017 21:42:12 +0000 (UTC)
From: "Patrice Clement" <monsieurp@gentoo.org>
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" <monsieurp@gentoo.org>
Message-ID: <1500154923.8c05eb3533bf6c5495f1c7637d4e0df47a6c3074.monsieurp@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/urwid/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-python/urwid/urwid-1.3.1.ebuild
X-VCS-Directories: dev-python/urwid/
X-VCS-Committer: monsieurp
X-VCS-Committer-Name: Patrice Clement
X-VCS-Revision: 8c05eb3533bf6c5495f1c7637d4e0df47a6c3074
X-VCS-Branch: master
Date: Sat, 15 Jul 2017 21:42:12 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: 1a3c5a06-3928-4927-87b2-5c2d53aa875b
X-Archives-Hash: 0097552b328246a2e8f28fcf27a95ec4

commit:     8c05eb3533bf6c5495f1c7637d4e0df47a6c3074
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 15 21:10:03 2017 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sat Jul 15 21:42:03 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c05eb35

dev-python/urwid: add missing die.

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-python/urwid/urwid-1.3.1.ebuild | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-python/urwid/urwid-1.3.1.ebuild b/dev-python/urwid/urwid-1.3.1.ebuild
index 71047820e1b..5ef27046c96 100644
--- a/dev-python/urwid/urwid-1.3.1.ebuild
+++ b/dev-python/urwid/urwid-1.3.1.ebuild
@@ -23,16 +23,16 @@ DEPEND="
 "
 
 PATCHES=(
-	"${FILESDIR}"/${PN}-1.1.0-sphinx.patch
-	"${FILESDIR}"/urwid-1.3.1-test-vterm-EINTR.patch
+	"${FILESDIR}/${PN}-1.1.0-sphinx.patch"
+	"${FILESDIR}/${PN}-1.3.1-test-vterm-EINTR.patch"
 )
 
 python_compile_all() {
-	if use doc ; then
+	if use doc; then
 		if python_is_python3; then
 			2to3 -nw --no-diffs docs/conf.py || die
 		fi
-		cd docs
+		cd docs || die
 		sphinx-build . _build/html || die
 	fi
 }