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 1D91F15A7D9 for ; Tue, 14 Mar 2023 13:21:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E65FE0769; Tue, 14 Mar 2023 13:21:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 25CF4E0769 for ; Tue, 14 Mar 2023 13:21: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 3E394335CA6 for ; Tue, 14 Mar 2023 13:21:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 669248B5 for ; Tue, 14 Mar 2023 13:21:03 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1678800047.81161c4ad7018deb995738d847d09f7f2c8d6f40.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/blueprint-compiler/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/blueprint-compiler/blueprint-compiler-0.6.0-r1.ebuild dev-util/blueprint-compiler/blueprint-compiler-0.6.0.ebuild X-VCS-Directories: dev-util/blueprint-compiler/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 81161c4ad7018deb995738d847d09f7f2c8d6f40 X-VCS-Branch: master Date: Tue, 14 Mar 2023 13:21: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: 00bace9a-df77-481c-9e1e-a33db2bc7886 X-Archives-Hash: a9918ea318b9ecda64647ed9e5bcc72c commit: 81161c4ad7018deb995738d847d09f7f2c8d6f40 Author: Alfred Wingate protonmail com> AuthorDate: Tue Mar 14 12:09:07 2023 +0000 Commit: Maciej Barć gentoo org> CommitDate: Tue Mar 14 13:20:47 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81161c4a dev-util/blueprint-compiler: move pygobject to RDEPEND Signed-off-by: Alfred Wingate protonmail.com> Closes: https://github.com/gentoo/gentoo/pull/30123 Signed-off-by: Maciej Barć gentoo.org> ...ompiler-0.6.0.ebuild => blueprint-compiler-0.6.0-r1.ebuild} | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/dev-util/blueprint-compiler/blueprint-compiler-0.6.0.ebuild b/dev-util/blueprint-compiler/blueprint-compiler-0.6.0-r1.ebuild similarity index 92% rename from dev-util/blueprint-compiler/blueprint-compiler-0.6.0.ebuild rename to dev-util/blueprint-compiler/blueprint-compiler-0.6.0-r1.ebuild index b54ac7882f03..26026e99abb1 100644 --- a/dev-util/blueprint-compiler/blueprint-compiler-0.6.0.ebuild +++ b/dev-util/blueprint-compiler/blueprint-compiler-0.6.0-r1.ebuild @@ -26,7 +26,12 @@ IUSE="doc test" REQUIRED_USE="${PYTHON_REQUIRED_USE}" RESTRICT="!test? ( test )" -RDEPEND="${PYTHON_DEPS}" +RDEPEND=" + ${PYTHON_DEPS} + $(python_gen_cond_dep ' + dev-python/pygobject:3[${PYTHON_USEDEP}] + ') +" BDEPEND=" ${RDEPEND} doc? ( @@ -37,9 +42,6 @@ BDEPEND=" ) test? ( gui-libs/gtk:4[introspection] - $(python_gen_cond_dep ' - dev-python/pygobject:3[${PYTHON_USEDEP}] - ') ) "