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 A6DE415808B for ; Mon, 21 Feb 2022 14:22:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EA98FE09AD; Mon, 21 Feb 2022 14:22:06 +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 CCF08E09AD for ; Mon, 21 Feb 2022 14:22:06 +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 97C4934342F for ; Mon, 21 Feb 2022 14:22:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D04202A4 for ; Mon, 21 Feb 2022 14:22:03 +0000 (UTC) From: "Yuan Liao" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yuan Liao" Message-ID: <1645448982.0e4a1a1043d43b0c2c6c8b4e4eb9dd91511fa366.liaoyuan@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-util/blueprint-compiler/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-util/blueprint-compiler/blueprint-compiler-0.1.0_pre20220219.ebuild dev-util/blueprint-compiler/blueprint-compiler-9999.ebuild X-VCS-Directories: dev-util/blueprint-compiler/ X-VCS-Committer: liaoyuan X-VCS-Committer-Name: Yuan Liao X-VCS-Revision: 0e4a1a1043d43b0c2c6c8b4e4eb9dd91511fa366 X-VCS-Branch: dev Date: Mon, 21 Feb 2022 14:22:03 +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: bb7f941a-e098-4bc3-ac02-3da4e554b2ec X-Archives-Hash: ea0672f062f8bc645c75f3823edd2e15 commit: 0e4a1a1043d43b0c2c6c8b4e4eb9dd91511fa366 Author: Yuan Liao gmail com> AuthorDate: Mon Feb 21 13:05:20 2022 +0000 Commit: Yuan Liao gmail com> CommitDate: Mon Feb 21 13:09:42 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0e4a1a10 dev-util/blueprint-compiler: Add missing test dependency Closes: https://bugs.gentoo.org/833823 Signed-off-by: Yuan Liao gmail.com> .../blueprint-compiler-0.1.0_pre20220219.ebuild | 9 ++++++++- dev-util/blueprint-compiler/blueprint-compiler-9999.ebuild | 9 ++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/dev-util/blueprint-compiler/blueprint-compiler-0.1.0_pre20220219.ebuild b/dev-util/blueprint-compiler/blueprint-compiler-0.1.0_pre20220219.ebuild index 6dfccd58c..f38e5e7d8 100644 --- a/dev-util/blueprint-compiler/blueprint-compiler-0.1.0_pre20220219.ebuild +++ b/dev-util/blueprint-compiler/blueprint-compiler-0.1.0_pre20220219.ebuild @@ -28,8 +28,9 @@ HOMEPAGE="https://jwestman.pages.gitlab.gnome.org/blueprint-compiler/" LICENSE="LGPL-3+" SLOT="0" -IUSE="doc" +IUSE="doc test" REQUIRED_USE="${PYTHON_REQUIRED_USE}" +RESTRICT="!test? ( test )" BDEPEND=" ${PYTHON_DEPS} @@ -39,6 +40,12 @@ BDEPEND=" ) " +DEPEND=" + test? ( + gui-libs/gtk:4[introspection] + ) +" + RDEPEND=" ${PYTHON_DEPS} " diff --git a/dev-util/blueprint-compiler/blueprint-compiler-9999.ebuild b/dev-util/blueprint-compiler/blueprint-compiler-9999.ebuild index 7ffa8d633..219419000 100644 --- a/dev-util/blueprint-compiler/blueprint-compiler-9999.ebuild +++ b/dev-util/blueprint-compiler/blueprint-compiler-9999.ebuild @@ -28,8 +28,9 @@ HOMEPAGE="https://jwestman.pages.gitlab.gnome.org/blueprint-compiler/" LICENSE="LGPL-3+" SLOT="0" -IUSE="doc" +IUSE="doc test" REQUIRED_USE="${PYTHON_REQUIRED_USE}" +RESTRICT="!test? ( test )" BDEPEND=" ${PYTHON_DEPS} @@ -39,6 +40,12 @@ BDEPEND=" ) " +DEPEND=" + test? ( + gui-libs/gtk:4[introspection] + ) +" + RDEPEND=" ${PYTHON_DEPS} "