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 4382A158089 for ; Fri, 22 Sep 2023 17:16:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 419072BC013; Fri, 22 Sep 2023 17:16:32 +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 2E4C22BC013 for ; Fri, 22 Sep 2023 17:16:32 +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 59FC833BF3B for ; Fri, 22 Sep 2023 17:16:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A65D911D6 for ; Fri, 22 Sep 2023 17:16:29 +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: <1695402929.57a515f41a0863392c295ea6165fca920c49823d.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/xdg-desktop-portal/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.18.0-r1.ebuild X-VCS-Directories: sys-apps/xdg-desktop-portal/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 57a515f41a0863392c295ea6165fca920c49823d X-VCS-Branch: master Date: Fri, 22 Sep 2023 17:16:29 +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: 769c25ad-ac14-4156-8728-70cd385455d8 X-Archives-Hash: 2649fce0b1c2039b3ea46f64fced9d03 commit: 57a515f41a0863392c295ea6165fca920c49823d Author: Sam James gentoo org> AuthorDate: Fri Sep 22 17:15:29 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri Sep 22 17:15:29 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57a515f4 sys-apps/xdg-desktop-portal: test dep fixes Needs pytest-xdist. libportal is only for tests too. Signed-off-by: Sam James gentoo.org> sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.18.0-r1.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.18.0-r1.ebuild b/sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.18.0-r1.ebuild index f2b74f7cce28..6f4fd2a04167 100644 --- a/sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.18.0-r1.ebuild +++ b/sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.18.0-r1.ebuild @@ -30,7 +30,6 @@ DEPEND=" flatpak? ( sys-apps/flatpak ) seccomp? ( sys-apps/bubblewrap ) systemd? ( sys-apps/systemd ) - test? ( dev-libs/libportal ) " RDEPEND=" ${DEPEND} @@ -42,8 +41,10 @@ BDEPEND=" virtual/pkgconfig test? ( ${PYTHON_DEPS} + dev-libs/libportal $(python_gen_any_dep ' dev-python/pytest[${PYTHON_USEDEP}] + dev-python/pytest-xdist[${PYTHON_USEDEP}] dev-python/python-dbusmock[${PYTHON_USEDEP}] ') ) @@ -65,6 +66,7 @@ pkg_setup() { python_check_deps() { python_has_version "dev-python/pytest[${PYTHON_USEDEP}]" && + python_has_version "dev-python/pytest-xdist[${PYTHON_USEDEP}]" && python_has_version "dev-python/python-dbusmock[${PYTHON_USEDEP}]" }