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 62D4E1581E7 for ; Sat, 27 Apr 2024 11:10:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 305C2E29FC; Sat, 27 Apr 2024 11:10:17 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 18DBCE29FD for ; Sat, 27 Apr 2024 11:10:17 +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 DD50133BDFF for ; Sat, 27 Apr 2024 11:10:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3DF9B1768 for ; Sat, 27 Apr 2024 11:10:13 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1714211406.49c50b2c7b05494cf77ce4a8608f99debcb1deeb.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-crystal/kilt/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-crystal/kilt/kilt-0.6.1.ebuild X-VCS-Directories: dev-crystal/kilt/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 49c50b2c7b05494cf77ce4a8608f99debcb1deeb X-VCS-Branch: master Date: Sat, 27 Apr 2024 11:10:13 +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: 3a510ff7-e7bd-4249-a904-18d47db6cad6 X-Archives-Hash: 488ece4f4d920e83d6228f4b739fc51f commit: 49c50b2c7b05494cf77ce4a8608f99debcb1deeb Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Sat Apr 27 07:39:04 2024 +0000 Commit: David Roman gmail com> CommitDate: Sat Apr 27 09:50:06 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=49c50b2c dev-crystal/kilt: add test deps to doc deps Closes: https://bugs.gentoo.org/921742 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> dev-crystal/kilt/kilt-0.6.1.ebuild | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/dev-crystal/kilt/kilt-0.6.1.ebuild b/dev-crystal/kilt/kilt-0.6.1.ebuild index f6ea9ef7db..09736f26d5 100644 --- a/dev-crystal/kilt/kilt-0.6.1.ebuild +++ b/dev-crystal/kilt/kilt-0.6.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 2022 Gentoo Authors +# Copyright 2022-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -15,17 +15,16 @@ KEYWORDS="~amd64" IUSE="test" RESTRICT="!test? ( test )" +TEST_DEPEND=" + dev-crystal/crustache + dev-crystal/jbuilder + dev-crystal/liquid + dev-crystal/slang + dev-crystal/temel + dev-crystal/water +" RDEPEND="dev-crystal/crikey" -BDEPEND=" - doc? ( - dev-crystal/crustache - ) - test? ( - dev-crystal/crustache - dev-crystal/jbuilder - dev-crystal/liquid - dev-crystal/slang - dev-crystal/temel - dev-crystal/water - ) +DEPEND=" + doc? ( ${TEST_DEPEND} ) + test? ( ${TEST_DEPEND} ) "