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 6689D13835A for ; Mon, 12 Oct 2020 18:36:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 910C3E088A; Mon, 12 Oct 2020 18:36:57 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 576CBE088A for ; Mon, 12 Oct 2020 18:36:57 +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 131BE335D2B for ; Mon, 12 Oct 2020 18:36:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 843313A0 for ; Mon, 12 Oct 2020 18:36:54 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1602527806.3dde55d0fdf67d3072a8ed190d2e17a996b54a72.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/diff-cover/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/diff-cover/diff-cover-2.3.0.ebuild X-VCS-Directories: dev-python/diff-cover/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 3dde55d0fdf67d3072a8ed190d2e17a996b54a72 X-VCS-Branch: master Date: Mon, 12 Oct 2020 18:36:54 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7a617816-b383-4109-9de8-841d83035ce6 X-Archives-Hash: e804c985afc0b00a53b3bcbba62a5e67 commit: 3dde55d0fdf67d3072a8ed190d2e17a996b54a72 Author: Jakov Smolic sartura hr> AuthorDate: Mon Oct 12 17:59:06 2020 +0000 Commit: Zac Medico gentoo org> CommitDate: Mon Oct 12 18:36:46 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dde55d0 dev-python/diff-cover: correct DISTUTILS_USE_SETUPTOOLS Closes: https://bugs.gentoo.org/748081 Closes: https://github.com/gentoo/gentoo/pull/17906 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Jakov Smolic sartura.hr> Signed-off-by: Zac Medico gentoo.org> dev-python/diff-cover/diff-cover-2.3.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/diff-cover/diff-cover-2.3.0.ebuild b/dev-python/diff-cover/diff-cover-2.3.0.ebuild index c8b17359bb2..61931388f52 100644 --- a/dev-python/diff-cover/diff-cover-2.3.0.ebuild +++ b/dev-python/diff-cover/diff-cover-2.3.0.ebuild @@ -4,6 +4,7 @@ EAPI=7 PYTHON_COMPAT=( python3_{6,7} ) +DISTUTILS_USE_SETUPTOOLS=rdepend inherit distutils-r1 @@ -17,8 +18,7 @@ KEYWORDS="~amd64 ~x86" IUSE="test" RESTRICT="!test? ( test )" -RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - >=dev-python/jinja-2.7.1[${PYTHON_USEDEP}] +RDEPEND=">=dev-python/jinja-2.7.1[${PYTHON_USEDEP}] dev-python/jinja2_pluralize[${PYTHON_USEDEP}] dev-python/pygments[${PYTHON_USEDEP}] dev-python/six[${PYTHON_USEDEP}]"