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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F3E1A158017 for ; Thu, 30 Sep 2021 17:24:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4D7A3E0870; Thu, 30 Sep 2021 17:24:38 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 31694E0870 for ; Thu, 30 Sep 2021 17:24:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 25FE2342CA0 for ; Thu, 30 Sep 2021 17:24:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ABA18116 for ; Thu, 30 Sep 2021 17:24:35 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1633022526.503efb391cfdde384153b4da34e4d7c25b4bc683.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libsignon-glib/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libsignon-glib/libsignon-glib-2.1.ebuild X-VCS-Directories: net-libs/libsignon-glib/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 503efb391cfdde384153b4da34e4d7c25b4bc683 X-VCS-Branch: master Date: Thu, 30 Sep 2021 17:24:35 +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: e7ea5c99-7b0a-4e1a-b93c-5d922eec74cd X-Archives-Hash: e503e37dad10d77c64219ecfaa7fe103 commit: 503efb391cfdde384153b4da34e4d7c25b4bc683 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Sep 30 13:11:03 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Sep 30 17:22:06 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=503efb39 net-libs/libsignon-glib: Call python_check_deps Python is always required in BDEPEND, but implementation is only to be enforced with USE=python. Package-Manager: Portage-3.0.26, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> net-libs/libsignon-glib/libsignon-glib-2.1.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/net-libs/libsignon-glib/libsignon-glib-2.1.ebuild b/net-libs/libsignon-glib/libsignon-glib-2.1.ebuild index e4b55547826..d23a1c777af 100644 --- a/net-libs/libsignon-glib/libsignon-glib-2.1.ebuild +++ b/net-libs/libsignon-glib/libsignon-glib-2.1.ebuild @@ -29,7 +29,7 @@ RDEPEND=" ) " DEPEND="${RDEPEND}" -BDEPEND="${PYTHON_DEPS} +BDEPEND="$(python_gen_any_dep) $(vala_depend) dev-util/gdbus-codegen dev-util/glib-utils @@ -39,6 +39,8 @@ BDEPEND="${PYTHON_DEPS} S="${WORKDIR}/${PN}-VERSION_${PV}" +python_check_deps() { return 0; } + pkg_setup() { python_setup }