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 429441382C5 for ; Thu, 1 Feb 2018 08:47:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A8B9E09C1; Thu, 1 Feb 2018 08:47:45 +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 44697E09C1 for ; Thu, 1 Feb 2018 08:47:45 +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 E10B1335C59 for ; Thu, 1 Feb 2018 08:47:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7A2E31C9 for ; Thu, 1 Feb 2018 08:47:42 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1517474850.235c1ae4ecdbe33b7a34b768ea2248aa566cc303.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pipenv/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pipenv/pipenv-9.0.0-r1.ebuild X-VCS-Directories: dev-python/pipenv/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 235c1ae4ecdbe33b7a34b768ea2248aa566cc303 X-VCS-Branch: master Date: Thu, 1 Feb 2018 08:47:42 +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: dd75b6de-ec63-4e6f-9820-8c1b7131392e X-Archives-Hash: 52d92e28b0e64fc2912b5134978d6928 commit: 235c1ae4ecdbe33b7a34b768ea2248aa566cc303 Author: Michał Górny gentoo org> AuthorDate: Thu Feb 1 08:46:15 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Feb 1 08:47:30 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=235c1ae4 dev-python/pipenv: Fix DEPEND -> RDEPEND Closes: https://bugs.gentoo.org/645530 dev-python/pipenv/pipenv-9.0.0-r1.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-python/pipenv/pipenv-9.0.0-r1.ebuild b/dev-python/pipenv/pipenv-9.0.0-r1.ebuild index 2d9715d9d7a..fd271941512 100644 --- a/dev-python/pipenv/pipenv-9.0.0-r1.ebuild +++ b/dev-python/pipenv/pipenv-9.0.0-r1.ebuild @@ -16,15 +16,15 @@ SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" IUSE="test" -DEPEND=" +RDEPEND=" >=dev-python/flake8-3.0.0[${PYTHON_USEDEP}] dev-python/setuptools[${PYTHON_USEDEP}] >=dev-python/pew-0.1.26[${PYTHON_USEDEP}] >=dev-python/pip-9.0.1[${PYTHON_USEDEP}] >dev-python/requests-2.18.0[${PYTHON_USEDEP}] - >=dev-python/urllib3-1.21.1[${PYTHON_USEDEP}] + >=dev-python/urllib3-1.21.1[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} test? ( - dev-python/flake8[${PYTHON_USEDEP}] dev-python/pytest[${PYTHON_USEDEP}] )"