From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-862545-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	by finch.gentoo.org (Postfix) with ESMTP id A7E2B58973
	for <garchives@archives.gentoo.org>; Wed, 10 Feb 2016 16:15:40 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 0114621C0F3;
	Wed, 10 Feb 2016 16:15:39 +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 8BD2821C0F3
	for <gentoo-commits@lists.gentoo.org>; Wed, 10 Feb 2016 16:15:38 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 906FB340AA1
	for <gentoo-commits@lists.gentoo.org>; Wed, 10 Feb 2016 16:15:37 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id DDE83CEB
	for <gentoo-commits@lists.gentoo.org>; Wed, 10 Feb 2016 16:15:35 +0000 (UTC)
From: "Justin Lecher" <jlec@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, "Justin Lecher" <jlec@gentoo.org>
Message-ID: <1455120933.329cf07554886e8a9a18c290a3822da34cc403ab.jlec@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyopencl/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-python/pyopencl/pyopencl-2015.2.4.ebuild
X-VCS-Directories: dev-python/pyopencl/
X-VCS-Committer: jlec
X-VCS-Committer-Name: Justin Lecher
X-VCS-Revision: 329cf07554886e8a9a18c290a3822da34cc403ab
X-VCS-Branch: master
Date: Wed, 10 Feb 2016 16:15:35 +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: 1e97080e-71af-4df7-96b6-bd7e38198af6
X-Archives-Hash: 2b9f75256b581b91d721f914ba6f081f

commit:     329cf07554886e8a9a18c290a3822da34cc403ab
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 10 16:15:26 2016 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Feb 10 16:15:33 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=329cf075

dev-python/pyopencl: Fix deps

Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=574346

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 dev-python/pyopencl/pyopencl-2015.2.4.ebuild | 18 +++++++++++-------
 1 file changed, 11 insertions(+), 7 deletions(-)

diff --git a/dev-python/pyopencl/pyopencl-2015.2.4.ebuild b/dev-python/pyopencl/pyopencl-2015.2.4.ebuild
index 8297973..7351247 100644
--- a/dev-python/pyopencl/pyopencl-2015.2.4.ebuild
+++ b/dev-python/pyopencl/pyopencl-2015.2.4.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
+
 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
 
 inherit distutils-r1
@@ -16,16 +17,19 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="examples opengl"
 
-RDEPEND=">=dev-libs/boost-1.48[python,${PYTHON_USEDEP}]
-	dev-python/decorator[${PYTHON_USEDEP}]
-	dev-python/numpy[${PYTHON_USEDEP}]
+RDEPEND="
+	>=dev-libs/boost-1.48[python,${PYTHON_USEDEP}]
+	>=dev-python/appdirs-1.4.0[${PYTHON_USEDEP}]
+	>=dev-python/cffi-1.1.0:=[${PYTHON_USEDEP}]
+	>=dev-python/decorator-3.2.0[${PYTHON_USEDEP}]
 	dev-python/mako[${PYTHON_USEDEP}]
-	dev-python/pytools[${PYTHON_USEDEP}]
+	dev-python/numpy[${PYTHON_USEDEP}]
+	>=dev-python/pytools-2015.1.2[${PYTHON_USEDEP}]
+	>=dev-python/six-1.9.0[${PYTHON_USEDEP}]
 	>=virtual/opencl-0-r1"
 DEPEND="${RDEPEND}"
 
-src_configure()
-{
+src_configure() {
 	local myconf=()
 	if use opengl; then
 		myconf+=(--cl-enable-gl)