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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 62DA415810F for ; Sun, 11 Jun 2023 11:02:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 63AFFE08A6; Sun, 11 Jun 2023 11:02:11 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 45353E08A6 for ; Sun, 11 Jun 2023 11:02:11 +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 5CB5C340D6E for ; Sun, 11 Jun 2023 11:02:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 74F30A5C for ; Sun, 11 Jun 2023 11:02:08 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1686481300.aaa8b4c986f816974543f4535ce502779df89804.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-portage/gentle/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-portage/gentle/gentle-0.1.ebuild X-VCS-Directories: app-portage/gentle/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: aaa8b4c986f816974543f4535ce502779df89804 X-VCS-Branch: dev Date: Sun, 11 Jun 2023 11:02:08 +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: 8212dfe4-e384-4091-9230-1b55eaa5ad91 X-Archives-Hash: 3aabab0a8341cc16af9efde7a7cc312c commit: aaa8b4c986f816974543f4535ce502779df89804 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Sun Jun 11 11:01:32 2023 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Sun Jun 11 11:01:40 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=aaa8b4c9 app-portage/gentle: add test deps Closes: https://bugs.gentoo.org/908304 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> app-portage/gentle/gentle-0.1.ebuild | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/app-portage/gentle/gentle-0.1.ebuild b/app-portage/gentle/gentle-0.1.ebuild index 67fa0d501..d23e040da 100644 --- a/app-portage/gentle/gentle-0.1.ebuild +++ b/app-portage/gentle/gentle-0.1.ebuild @@ -15,11 +15,18 @@ LICENSE="WTFPL-2" SLOT="0" KEYWORDS="~amd64" -BDEPEND="test? ( app-text/xmldiff[${PYTHON_USEDEP}] )" +BDEPEND=" + test? ( + app-text/xmldiff[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + $(python_gen_cond_dep \ + 'dev-python/tomli[${PYTHON_USEDEP}]' 3.10 ) + ) +" distutils_enable_tests pytest pkg_postinst() { - optfeature "toml support" dev-python/tomli optfeature "yaml support" dev-python/pyyaml + optfeature "toml support" dev-python/tomli }