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 A3C79138010 for ; Fri, 2 Nov 2012 23:00:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8F1BDE0484; Fri, 2 Nov 2012 23:00:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id ED232E0484 for ; Fri, 2 Nov 2012 23:00:41 +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 26F9633C4EE for ; Fri, 2 Nov 2012 23:00:41 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id AFD50E544B for ; Fri, 2 Nov 2012 23:00:39 +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: <1351897183.455330fa1078e4a3aff621c20b3f7d98febd1c69.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.2.ebuild X-VCS-Directories: dev-python/rq/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: 455330fa1078e4a3aff621c20b3f7d98febd1c69 X-VCS-Branch: master Date: Fri, 2 Nov 2012 23:00:39 +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: fb404336-af41-4498-9f92-d0138e1fe58e X-Archives-Hash: c0769542b96ce05b77751d56420fdb57 commit: 455330fa1078e4a3aff621c20b3f7d98febd1c69 Author: Gilles Dartiguelongue gentoo org> AuthorDate: Fri Nov 2 22:59:43 2012 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Fri Nov 2 22:59:43 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/eva.git;a=commit;h=455330fa dev-python/rq: fix argparse dependency Thanks to mgorny for teaching me the proper way, bug #440398. --- dev-python/rq/rq-0.3.2.ebuild | 13 +++++-------- 1 files changed, 5 insertions(+), 8 deletions(-) diff --git a/dev-python/rq/rq-0.3.2.ebuild b/dev-python/rq/rq-0.3.2.ebuild index 7d8580f..8e2f8ee 100644 --- a/dev-python/rq/rq-0.3.2.ebuild +++ b/dev-python/rq/rq-0.3.2.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/rsa/rsa-3.1.1.ebuild,v 1.4 2012/08/19 18:48:44 johu Exp $ +# $Header: $ EAPI="4" -PYTHON_COMPAT=( python2_5 python2_6 python2_7 ) +PYTHON_COMPAT=( python2_{5,6,7} ) inherit distutils-r1 @@ -21,12 +21,9 @@ RDEPEND=" dev-python/logbook dev-python/redis-py dev-python/times - python_targets_python2_5? ( - dev-python/argparse - dev-python/importlib ) - python_targets_python2_6? ( - dev-python/argparse - dev-python/importlib ) + virtual/python-argparse[${PYTHON_USEDEP}] + python_targets_python2_5? ( dev-python/importlib ) + python_targets_python2_6? ( dev-python/importlib ) " DEPEND="${RDEPEND} dev-python/setuptools