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 B5B631382C5 for ; Mon, 18 May 2020 20:23:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7D8B5E0896; Mon, 18 May 2020 20:23:35 +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 5680AE0896 for ; Mon, 18 May 2020 20:23:35 +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 C5D9634F080 for ; Mon, 18 May 2020 20:23:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F6231B0 for ; Mon, 18 May 2020 20:23:31 +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: <1589833291.6cd3601a8139bf406fc554f655e6bdd870d16968.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/github3/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/github3/github3-1.3.0.ebuild X-VCS-Directories: dev-python/github3/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6cd3601a8139bf406fc554f655e6bdd870d16968 X-VCS-Branch: master Date: Mon, 18 May 2020 20:23:31 +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: 33fcadc0-556a-4f00-a510-f45148c416c2 X-Archives-Hash: 220c0641a127fcc461e8cafaec5c78c2 commit: 6cd3601a8139bf406fc554f655e6bdd870d16968 Author: Michał Górny gentoo org> AuthorDate: Mon May 18 20:21:31 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon May 18 20:21:31 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cd3601a dev-python/github3: Add missing dep on mock Closes: https://bugs.gentoo.org/723678 Signed-off-by: Michał Górny gentoo.org> dev-python/github3/github3-1.3.0.ebuild | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/dev-python/github3/github3-1.3.0.ebuild b/dev-python/github3/github3-1.3.0.ebuild index 7f4dc2c3055..8147e45ba6f 100644 --- a/dev-python/github3/github3-1.3.0.ebuild +++ b/dev-python/github3/github3-1.3.0.ebuild @@ -10,12 +10,11 @@ inherit distutils-r1 DESCRIPTION="A wrapper for the GitHub API written in python" HOMEPAGE="https://github3py.readthedocs.io/en/master/" SRC_URI="https://github.com/sigmavirus24/${PN}.py/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}.py-${PV}" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" RDEPEND=" dev-vcs/git @@ -24,14 +23,12 @@ RDEPEND=" >=dev-python/python-dateutil-2.6.0[${PYTHON_USEDEP}] >=dev-python/jwcrypto-0.5.0[${PYTHON_USEDEP}] ${PYTHON_DEPS}" -DEPEND="${RDEPEND} +BDEPEND=" dev-python/setuptools[${PYTHON_USEDEP}] test? ( - >dev-python/pytest-2.3.5[${PYTHON_USEDEP}] >=dev-python/betamax-0.8.0[${PYTHON_USEDEP}] >=dev-python/betamax-matchers-0.1.0[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] )" -S="${WORKDIR}/${PN}.py-${PV}" - distutils_enable_tests pytest