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 8E366158083 for ; Thu, 5 Sep 2024 08:43:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DD0CAE2ABD; Thu, 5 Sep 2024 08:43:35 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C6142E2AAF for ; Thu, 5 Sep 2024 08:43:35 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1A653342F8E for ; Thu, 5 Sep 2024 08:43:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7F14E1F3C for ; Thu, 5 Sep 2024 08:43:32 +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: <1725525735.282e028e7a1a03e1dea666e6e52269e2117f0fa2.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jaraco-test/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jaraco-test/jaraco-test-5.4.0.ebuild X-VCS-Directories: dev-python/jaraco-test/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 282e028e7a1a03e1dea666e6e52269e2117f0fa2 X-VCS-Branch: master Date: Thu, 5 Sep 2024 08:43:32 +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: 7336a8e2-cf73-48dc-82e2-f3c72232ab36 X-Archives-Hash: 29872d71177dc44150339aa0454a4abe commit: 282e028e7a1a03e1dea666e6e52269e2117f0fa2 Author: Eli Schwartz gentoo org> AuthorDate: Tue Sep 3 16:09:37 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Sep 5 08:42:15 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=282e028e dev-python/jaraco-test: Depend on dev-python/test We use a runtime dependency, because jaraco-test is a module that exists to abstract the unittest logic of multiple of jaraco's own packages into one shared package. In particular, it contains several two-line functions for performing "import test.support", apparently across multiple versions of python, on the theory that it's better to depend on a new package and chain multiple functions together on one line via `or` than use a try/except. The expected usage is that some other package has a USE=test dependency on jaraco-test, and jaraco-test has a runtime dependency on the stdlib testsuite since it exposes it. Signed-off-by: Eli Schwartz gentoo.org> Signed-off-by: Michał Górny gentoo.org> dev-python/jaraco-test/jaraco-test-5.4.0.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-python/jaraco-test/jaraco-test-5.4.0.ebuild b/dev-python/jaraco-test/jaraco-test-5.4.0.ebuild index ad20feadc830..62457c9b071d 100644 --- a/dev-python/jaraco-test/jaraco-test-5.4.0.ebuild +++ b/dev-python/jaraco-test/jaraco-test-5.4.0.ebuild @@ -24,6 +24,7 @@ RDEPEND=" dev-python/jaraco-collections[${PYTHON_USEDEP}] dev-python/jaraco-context[${PYTHON_USEDEP}] dev-python/jaraco-functools[${PYTHON_USEDEP}] + dev-python/test[${PYTHON_USEDEP}] " distutils_enable_tests pytest