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 EB330158021 for ; Wed, 12 Oct 2022 14:52:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 25A13E0977; Wed, 12 Oct 2022 14:52:43 +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 10CFDE0974 for ; Wed, 12 Oct 2022 14:52:43 +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 3FEA134107F for ; Wed, 12 Oct 2022 14:52:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 39848619 for ; Wed, 12 Oct 2022 14:52:39 +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: <1665586352.e572376426d1f576c412a2b6281d1b4e86da4547.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/coverage/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/coverage/coverage-6.4.4-r1.ebuild dev-python/coverage/coverage-6.4.4.ebuild dev-python/coverage/coverage-6.5.0-r1.ebuild dev-python/coverage/coverage-6.5.0.ebuild X-VCS-Directories: dev-python/coverage/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e572376426d1f576c412a2b6281d1b4e86da4547 X-VCS-Branch: master Date: Wed, 12 Oct 2022 14:52:39 +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: f0c282d6-4cfa-491c-89d8-14ed8a034ead X-Archives-Hash: 6903d7f91fcf862e207358b2633f5be9 commit: e572376426d1f576c412a2b6281d1b4e86da4547 Author: Michał Górny gentoo org> AuthorDate: Wed Oct 12 14:06:37 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Oct 12 14:52:32 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5723764 dev-python/coverage: Explicitly depend on dev-python/tomli To avoid transitive dependencies on TOML provider in other packages (e.g. dev-python/pytest-cov), just depend on it unconditionally here. It's not like our build systems don't depend on it, and it's needed only for Python < 3.11 anyway. Signed-off-by: Michał Górny gentoo.org> .../coverage/{coverage-6.4.4.ebuild => coverage-6.4.4-r1.ebuild} | 5 +++++ .../coverage/{coverage-6.5.0.ebuild => coverage-6.5.0-r1.ebuild} | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/dev-python/coverage/coverage-6.4.4.ebuild b/dev-python/coverage/coverage-6.4.4-r1.ebuild similarity index 95% rename from dev-python/coverage/coverage-6.4.4.ebuild rename to dev-python/coverage/coverage-6.4.4-r1.ebuild index 46cfdde3d0d1..d0af269cf673 100644 --- a/dev-python/coverage/coverage-6.4.4.ebuild +++ b/dev-python/coverage/coverage-6.4.4-r1.ebuild @@ -21,6 +21,11 @@ LICENSE="BSD" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos" +RDEPEND=" + $(python_gen_cond_dep ' + dev-python/tomli[${PYTHON_USEDEP}] + ' 3.{8..10}) +" BDEPEND=" test? ( dev-python/flaky[${PYTHON_USEDEP}] diff --git a/dev-python/coverage/coverage-6.5.0.ebuild b/dev-python/coverage/coverage-6.5.0-r1.ebuild similarity index 95% rename from dev-python/coverage/coverage-6.5.0.ebuild rename to dev-python/coverage/coverage-6.5.0-r1.ebuild index e2e5a9ba699a..ffeda11b21d4 100644 --- a/dev-python/coverage/coverage-6.5.0.ebuild +++ b/dev-python/coverage/coverage-6.5.0-r1.ebuild @@ -21,6 +21,11 @@ LICENSE="BSD" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" +RDEPEND=" + $(python_gen_cond_dep ' + dev-python/tomli[${PYTHON_USEDEP}] + ' 3.{8..10}) +" BDEPEND=" test? ( dev-python/flaky[${PYTHON_USEDEP}]