From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id C7BD0138200 for ; Wed, 10 Apr 2013 19:48:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4038FE0985; Wed, 10 Apr 2013 19:48:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B76F8E0984 for ; Wed, 10 Apr 2013 19:48:34 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C828933DD01 for ; Wed, 10 Apr 2013 19:48:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 6B10EE42C6 for ; Wed, 10 Apr 2013 19:48:32 +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: <1365623267.3519cddbf3a2093530b12909ef2f953837c3b040.eva@gentoo> Subject: [gentoo-commits] dev/eva:master commit in: dev-python/rq/ X-VCS-Repository: dev/eva X-VCS-Files: dev-python/rq/rq-0.3.7.ebuild X-VCS-Directories: dev-python/rq/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: 3519cddbf3a2093530b12909ef2f953837c3b040 X-VCS-Branch: master Date: Wed, 10 Apr 2013 19:48:32 +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: 6a7550bc-ee8a-47fd-8604-fc3f6b2c62de X-Archives-Hash: 26de3bf1d576da1b692db01421684fc1 commit: 3519cddbf3a2093530b12909ef2f953837c3b040 Author: Gilles Dartiguelongue gentoo org> AuthorDate: Wed Apr 10 19:44:42 2013 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Wed Apr 10 19:47:47 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/eva.git;a=commit;h=3519cddb dev-python/rq: add missing PYTHON_USEDEP --- dev-python/rq/rq-0.3.7.ebuild | 12 ++++++++---- 1 files changed, 8 insertions(+), 4 deletions(-) diff --git a/dev-python/rq/rq-0.3.7.ebuild b/dev-python/rq/rq-0.3.7.ebuild index f41daae..334b801 100644 --- a/dev-python/rq/rq-0.3.7.ebuild +++ b/dev-python/rq/rq-0.3.7.ebuild @@ -18,9 +18,8 @@ IUSE="" RDEPEND=" >=dev-db/redis-2.4.13 - dev-python/logbook - dev-python/redis-py - dev-python/times + dev-python/redis-py[${PYTHON_USEDEP}] + dev-python/times[${PYTHON_USEDEP}] virtual/python-argparse[${PYTHON_USEDEP}] python_targets_python2_5? ( dev-python/importlib ) python_targets_python2_6? ( dev-python/importlib ) @@ -29,4 +28,9 @@ DEPEND="${RDEPEND} dev-python/setuptools " -# No unittest since it requires a running redis +python_prepare_all() { + # No unittest since it requires a running redis + # installation of tests is done in site-packages directly which is not + # optimal. + rm -r tests || die +}