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 5F03713835A for ; Thu, 1 Oct 2020 21:35:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DDAE3E0824; Thu, 1 Oct 2020 21:35:18 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 A7C0DE0819 for ; Thu, 1 Oct 2020 21:35:18 +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 0D0C4335C9F for ; Thu, 1 Oct 2020 21:35:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 76DB7380 for ; Thu, 1 Oct 2020 21:35:15 +0000 (UTC) From: "Matthew Thode" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Thode" Message-ID: <1601588107.ee6ff1abdb03f580aedfe98c6259cc3568c4ec2a.prometheanfire@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/certbot/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/certbot/certbot-1.7.0.ebuild app-crypt/certbot/certbot-1.8.0.ebuild app-crypt/certbot/certbot-9999.ebuild X-VCS-Directories: app-crypt/certbot/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matthew Thode X-VCS-Revision: ee6ff1abdb03f580aedfe98c6259cc3568c4ec2a X-VCS-Branch: master Date: Thu, 1 Oct 2020 21:35:15 +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: 8f942ec2-82fa-4b76-96c6-2a0ecba467fa X-Archives-Hash: 1ba934348b94e952d3e3fc49c8f63e9b commit: ee6ff1abdb03f580aedfe98c6259cc3568c4ec2a Author: Matthew Thode gentoo org> AuthorDate: Thu Oct 1 21:26:16 2020 +0000 Commit: Matthew Thode gentoo org> CommitDate: Thu Oct 1 21:35:07 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee6ff1ab app-crypt/certbot: switch to eclass for distutils depend Closes: https://bugs.gentoo.org/745846 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Matthew Thode gentoo.org> app-crypt/certbot/certbot-1.7.0.ebuild | 4 +--- app-crypt/certbot/certbot-1.8.0.ebuild | 4 +--- app-crypt/certbot/certbot-9999.ebuild | 4 +--- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/app-crypt/certbot/certbot-1.7.0.ebuild b/app-crypt/certbot/certbot-1.7.0.ebuild index 7a862586d0d..6f5c706cae2 100644 --- a/app-crypt/certbot/certbot-1.7.0.ebuild +++ b/app-crypt/certbot/certbot-1.7.0.ebuild @@ -3,6 +3,7 @@ EAPI=7 PYTHON_COMPAT=(python{3_6,3_7,3_8}) +DISTUTILS_USE_SETUPTOOLS=rdepend if [[ ${PV} == 9999* ]]; then EGIT_REPO_URI="https://github.com/certbot/certbot.git" @@ -23,9 +24,7 @@ SLOT="0" IUSE="test" RESTRICT="!test? ( test )" -CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" RDEPEND=" - ${CDEPEND} >=app-crypt/acme-1.6.0[${PYTHON_USEDEP}] >=dev-python/configargparse-0.9.3[${PYTHON_USEDEP}] dev-python/configobj[${PYTHON_USEDEP}] @@ -37,7 +36,6 @@ RDEPEND=" dev-python/pytz[${PYTHON_USEDEP}] dev-python/zope-component[${PYTHON_USEDEP}] dev-python/zope-interface[${PYTHON_USEDEP}]" -DEPEND="${CDEPEND}" distutils_enable_tests pytest diff --git a/app-crypt/certbot/certbot-1.8.0.ebuild b/app-crypt/certbot/certbot-1.8.0.ebuild index f5147fca793..8496941da96 100644 --- a/app-crypt/certbot/certbot-1.8.0.ebuild +++ b/app-crypt/certbot/certbot-1.8.0.ebuild @@ -3,6 +3,7 @@ EAPI=7 PYTHON_COMPAT=(python{3_6,3_7,3_8}) +DISTUTILS_USE_SETUPTOOLS=rdepend if [[ ${PV} == 9999* ]]; then EGIT_REPO_URI="https://github.com/certbot/certbot.git" @@ -23,9 +24,7 @@ SLOT="0" IUSE="test" RESTRICT="!test? ( test )" -CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" RDEPEND=" - ${CDEPEND} >=app-crypt/acme-1.6.0[${PYTHON_USEDEP}] >=dev-python/configargparse-0.9.3[${PYTHON_USEDEP}] dev-python/configobj[${PYTHON_USEDEP}] @@ -37,7 +36,6 @@ RDEPEND=" dev-python/pytz[${PYTHON_USEDEP}] dev-python/zope-component[${PYTHON_USEDEP}] dev-python/zope-interface[${PYTHON_USEDEP}]" -DEPEND="${CDEPEND}" distutils_enable_tests pytest diff --git a/app-crypt/certbot/certbot-9999.ebuild b/app-crypt/certbot/certbot-9999.ebuild index f5147fca793..8496941da96 100644 --- a/app-crypt/certbot/certbot-9999.ebuild +++ b/app-crypt/certbot/certbot-9999.ebuild @@ -3,6 +3,7 @@ EAPI=7 PYTHON_COMPAT=(python{3_6,3_7,3_8}) +DISTUTILS_USE_SETUPTOOLS=rdepend if [[ ${PV} == 9999* ]]; then EGIT_REPO_URI="https://github.com/certbot/certbot.git" @@ -23,9 +24,7 @@ SLOT="0" IUSE="test" RESTRICT="!test? ( test )" -CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" RDEPEND=" - ${CDEPEND} >=app-crypt/acme-1.6.0[${PYTHON_USEDEP}] >=dev-python/configargparse-0.9.3[${PYTHON_USEDEP}] dev-python/configobj[${PYTHON_USEDEP}] @@ -37,7 +36,6 @@ RDEPEND=" dev-python/pytz[${PYTHON_USEDEP}] dev-python/zope-component[${PYTHON_USEDEP}] dev-python/zope-interface[${PYTHON_USEDEP}]" -DEPEND="${CDEPEND}" distutils_enable_tests pytest