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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 22B8815800A for ; Thu, 3 Aug 2023 11:05:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2CDCFE0D28; Thu, 3 Aug 2023 11:05:37 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 36B15E0D28 for ; Thu, 3 Aug 2023 11:05:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 33B6D335D1E for ; Thu, 3 Aug 2023 11:05:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9488AE8F for ; Thu, 3 Aug 2023 11:05:33 +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: <1691060706.aae5e900c980b2fac79c38ad4cbb7bb68e0b3ef5.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pymongo/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pymongo/pymongo-4.4.1.ebuild X-VCS-Directories: dev-python/pymongo/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: aae5e900c980b2fac79c38ad4cbb7bb68e0b3ef5 X-VCS-Branch: master Date: Thu, 3 Aug 2023 11:05:33 +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: c780c743-5e77-4633-90b1-910fab47eefb X-Archives-Hash: 25299bbaf2bfabd9f0083b44e892f20a commit: aae5e900c980b2fac79c38ad4cbb7bb68e0b3ef5 Author: Michał Górny gentoo org> AuthorDate: Thu Aug 3 11:04:12 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Aug 3 11:05:06 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aae5e900 dev-python/pymongo: Pull test-full deps only with USE=test Closes: https://bugs.gentoo.org/911653 Signed-off-by: Michał Górny gentoo.org> dev-python/pymongo/pymongo-4.4.1.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/dev-python/pymongo/pymongo-4.4.1.ebuild b/dev-python/pymongo/pymongo-4.4.1.ebuild index a371ef783deb..a543900a9665 100644 --- a/dev-python/pymongo/pymongo-4.4.1.ebuild +++ b/dev-python/pymongo/pymongo-4.4.1.ebuild @@ -31,8 +31,10 @@ RDEPEND=" kerberos? ( dev-python/pykerberos[${PYTHON_USEDEP}] ) " BDEPEND=" - test-full? ( - >=dev-db/mongodb-2.6.0 + test? ( + test-full? ( + >=dev-db/mongodb-2.6.0 + ) ) " @@ -40,7 +42,7 @@ distutils_enable_sphinx doc distutils_enable_tests unittest reqcheck() { - if use test-full; then + if use test && use test-full; then # During the tests, database size reaches 1.5G. local CHECKREQS_DISK_BUILD=1536M