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 095A51580B4 for ; Sat, 4 Sep 2021 06:26:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 360E8E088F; Sat, 4 Sep 2021 06:26:48 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 1E12AE088F for ; Sat, 4 Sep 2021 06:26:48 +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 24B4D33BF3C for ; Sat, 4 Sep 2021 06:26:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 941E1CF for ; Sat, 4 Sep 2021 06:26:43 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1630736448.38082584832e277fc2c124dc71f7e72e3a4b97f0.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/tortoisehg/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/tortoisehg/tortoisehg-5.8.1.ebuild dev-vcs/tortoisehg/tortoisehg-5.8.ebuild dev-vcs/tortoisehg/tortoisehg-5.9.ebuild dev-vcs/tortoisehg/tortoisehg-9999.ebuild X-VCS-Directories: dev-vcs/tortoisehg/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 38082584832e277fc2c124dc71f7e72e3a4b97f0 X-VCS-Branch: master Date: Sat, 4 Sep 2021 06:26:43 +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: 60a0b485-cd2b-4f81-9a05-b5b703c71139 X-Archives-Hash: 2e594c43521490621e893c3a5445cd47 commit: 38082584832e277fc2c124dc71f7e72e3a4b97f0 Author: Sergey Torokhov yandex ru> AuthorDate: Thu Sep 2 04:17:03 2021 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Sat Sep 4 06:20:48 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38082584 dev-vcs/tortoisehg: fix test PYTHON_USEDEP Signed-off-by: Sergey Torokhov yandex.ru> Closes: https://github.com/gentoo/gentoo/pull/22181 Signed-off-by: Joonas Niilola gentoo.org> dev-vcs/tortoisehg/tortoisehg-5.8.1.ebuild | 4 ++-- dev-vcs/tortoisehg/tortoisehg-5.8.ebuild | 4 ++-- dev-vcs/tortoisehg/tortoisehg-5.9.ebuild | 4 ++-- dev-vcs/tortoisehg/tortoisehg-9999.ebuild | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/dev-vcs/tortoisehg/tortoisehg-5.8.1.ebuild b/dev-vcs/tortoisehg/tortoisehg-5.8.1.ebuild index 6ad5578ea55..0809d1d2559 100644 --- a/dev-vcs/tortoisehg/tortoisehg-5.8.1.ebuild +++ b/dev-vcs/tortoisehg/tortoisehg-5.8.1.ebuild @@ -39,8 +39,8 @@ RDEPEND=" DEPEND=" ${RDEPEND} test? ( - dev-python/mock - dev-python/pytest + dev-python/mock[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] ) " diff --git a/dev-vcs/tortoisehg/tortoisehg-5.8.ebuild b/dev-vcs/tortoisehg/tortoisehg-5.8.ebuild index 702819ea4b0..31b4b602f28 100644 --- a/dev-vcs/tortoisehg/tortoisehg-5.8.ebuild +++ b/dev-vcs/tortoisehg/tortoisehg-5.8.ebuild @@ -39,8 +39,8 @@ RDEPEND=" DEPEND=" ${RDEPEND} test? ( - dev-python/mock - dev-python/pytest + dev-python/mock[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] ) " diff --git a/dev-vcs/tortoisehg/tortoisehg-5.9.ebuild b/dev-vcs/tortoisehg/tortoisehg-5.9.ebuild index a68201d3b42..97e0009c544 100644 --- a/dev-vcs/tortoisehg/tortoisehg-5.9.ebuild +++ b/dev-vcs/tortoisehg/tortoisehg-5.9.ebuild @@ -39,8 +39,8 @@ RDEPEND=" DEPEND=" ${RDEPEND} test? ( - dev-python/mock - dev-python/pytest + dev-python/mock[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] ) " diff --git a/dev-vcs/tortoisehg/tortoisehg-9999.ebuild b/dev-vcs/tortoisehg/tortoisehg-9999.ebuild index a68201d3b42..97e0009c544 100644 --- a/dev-vcs/tortoisehg/tortoisehg-9999.ebuild +++ b/dev-vcs/tortoisehg/tortoisehg-9999.ebuild @@ -39,8 +39,8 @@ RDEPEND=" DEPEND=" ${RDEPEND} test? ( - dev-python/mock - dev-python/pytest + dev-python/mock[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] ) "