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 AE6A5158021 for ; Sat, 15 Oct 2022 15:01:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C5F15E0938; Sat, 15 Oct 2022 15:01: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 AFAC6E0936 for ; Sat, 15 Oct 2022 15:01: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 E17B3341180 for ; Sat, 15 Oct 2022 15:01:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3BEAE624 for ; Sat, 15 Oct 2022 15:01:14 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1665846023.3c3428133a381e82b3016701ecea633fa2f72cb4.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/gnome-bluetooth/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-wireless/gnome-bluetooth/gnome-bluetooth-3.34.5.ebuild X-VCS-Directories: net-wireless/gnome-bluetooth/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3c3428133a381e82b3016701ecea633fa2f72cb4 X-VCS-Branch: master Date: Sat, 15 Oct 2022 15:01:14 +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: da8040bd-9d3d-4995-8e61-8d7f26667fd2 X-Archives-Hash: 15757c9ae39586ec052faf232186908c commit: 3c3428133a381e82b3016701ecea633fa2f72cb4 Author: Sam James gentoo org> AuthorDate: Sat Oct 15 15:00:23 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Oct 15 15:00:23 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c342813 net-wireless/gnome-bluetooth: fix PythonHasVersionUsage Signed-off-by: Sam James gentoo.org> net-wireless/gnome-bluetooth/gnome-bluetooth-3.34.5.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-wireless/gnome-bluetooth/gnome-bluetooth-3.34.5.ebuild b/net-wireless/gnome-bluetooth/gnome-bluetooth-3.34.5.ebuild index a74636e59115..4555d8401f4d 100644 --- a/net-wireless/gnome-bluetooth/gnome-bluetooth-3.34.5.ebuild +++ b/net-wireless/gnome-bluetooth/gnome-bluetooth-3.34.5.ebuild @@ -47,8 +47,8 @@ PATCHES=( python_check_deps() { if use test; then - has_version -b "dev-python/python-dbusmock[${PYTHON_USEDEP}]" && - has_version -b "dev-python/dbus-python[${PYTHON_USEDEP}]" + python_has_version -b "dev-python/python-dbusmock[${PYTHON_USEDEP}]" && + python_has_version -b "dev-python/dbus-python[${PYTHON_USEDEP}]" fi }