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 1244A1396D0 for ; Thu, 24 Aug 2017 22:47:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0717E1FC003; Thu, 24 Aug 2017 22:47:52 +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 D71641FC05E for ; Thu, 24 Aug 2017 22:47:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 0BA47341678 for ; Thu, 24 Aug 2017 22:47:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 78FF78178 for ; Thu, 24 Aug 2017 22:47:49 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1503614863.821692d22ef707100836b98f17c46e4846a3f5f4.eva@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-voip/telepathy-haze/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-voip/telepathy-haze/telepathy-haze-0.8.0-r2.ebuild X-VCS-Directories: net-voip/telepathy-haze/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: 821692d22ef707100836b98f17c46e4846a3f5f4 X-VCS-Branch: master Date: Thu, 24 Aug 2017 22:47:49 +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: 4ee45269-9d8e-49b2-ba83-d06c53651c9d X-Archives-Hash: 8db1baebdd4ab33c4c8c420b26e8a016 commit: 821692d22ef707100836b98f17c46e4846a3f5f4 Author: Gilles Dartiguelongue gentoo org> AuthorDate: Thu Aug 24 22:06:18 2017 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Thu Aug 24 22:47:43 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=821692d2 net-voip/telepathy-haze: fix python_check_deps, bug #628492 Package-Manager: Portage-2.3.8, Repoman-2.3.3 net-voip/telepathy-haze/telepathy-haze-0.8.0-r2.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/net-voip/telepathy-haze/telepathy-haze-0.8.0-r2.ebuild b/net-voip/telepathy-haze/telepathy-haze-0.8.0-r2.ebuild index 838d5918129..73c85e8f10e 100644 --- a/net-voip/telepathy-haze/telepathy-haze-0.8.0-r2.ebuild +++ b/net-voip/telepathy-haze/telepathy-haze-0.8.0-r2.ebuild @@ -44,9 +44,10 @@ PATCHES=( ) python_check_deps() { - use test \ - && { has_version "dev-python/twisted[${PYTHON_USEDEP}]" \ - || has_version "dev-python/twisted-words[${PYTHON_USEDEP}]"; } + if use test ; then + has_version "dev-python/twisted[${PYTHON_USEDEP}]" \ + || has_version "dev-python/twisted-words[${PYTHON_USEDEP}]" + fi } src_prepare() {