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 4BD7C158041 for ; Mon, 25 Mar 2024 10:13:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1AB9AE29ED; Mon, 25 Mar 2024 10:13:57 +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 E8FD8E29ED for ; Mon, 25 Mar 2024 10:13:56 +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 E5C3D343080 for ; Mon, 25 Mar 2024 10:13:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 54542B29 for ; Mon, 25 Mar 2024 10:13:54 +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: <1711361558.d8c770274eb612119c7490dfb3fa850bdc26e5f7.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libinput/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libinput/libinput-1.25.0.ebuild X-VCS-Directories: dev-libs/libinput/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d8c770274eb612119c7490dfb3fa850bdc26e5f7 X-VCS-Branch: master Date: Mon, 25 Mar 2024 10:13:54 +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: da8641c2-55cc-4faf-aad2-cfc72a4cf50b X-Archives-Hash: 0cd1238f99193c59ecd5d22dd46d5256 commit: d8c770274eb612119c7490dfb3fa850bdc26e5f7 Author: Sam James gentoo org> AuthorDate: Mon Mar 25 10:12:38 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Mar 25 10:12:38 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8c77027 dev-libs/libinput: add pytest-xdist test dep The validate-quirks-files test needs this as it tries to invoke w/ -n rather than hitting an importerror. Signed-off-by: Sam James gentoo.org> dev-libs/libinput/libinput-1.25.0.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev-libs/libinput/libinput-1.25.0.ebuild b/dev-libs/libinput/libinput-1.25.0.ebuild index 27fd6eabd2b0..00fdfcb82be1 100644 --- a/dev-libs/libinput/libinput-1.25.0.ebuild +++ b/dev-libs/libinput/libinput-1.25.0.ebuild @@ -44,6 +44,7 @@ BDEPEND=" test? ( $(python_gen_any_dep ' dev-python/pytest[${PYTHON_USEDEP}] + dev-python/pytest-xdist[${PYTHON_USEDEP}] ') ) " @@ -61,6 +62,7 @@ python_check_deps() { if use test; then python_has_version \ "dev-python/pytest[${PYTHON_USEDEP}]" \ + "dev-python/pytest-xdist[${PYTHON_USEDEP}]" \ || return fi }