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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 903AD158094 for ; Wed, 20 Jul 2022 06:47:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 999F1E0C4D; Wed, 20 Jul 2022 06:47:14 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 61EA2E0C4D for ; Wed, 20 Jul 2022 06:47:14 +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 4014C34100E for ; Wed, 20 Jul 2022 06:47:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 76C12456 for ; Wed, 20 Jul 2022 06:47:11 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1658299588.c127558551879f38767ccb67063c57c60fc6f151.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/qutebrowser/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/qutebrowser/qutebrowser-2.5.2.ebuild www-client/qutebrowser/qutebrowser-9999.ebuild X-VCS-Directories: www-client/qutebrowser/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: c127558551879f38767ccb67063c57c60fc6f151 X-VCS-Branch: master Date: Wed, 20 Jul 2022 06:47:11 +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: 1a93a632-43ae-41a1-b8ac-be897787d703 X-Archives-Hash: 4afc2ca9e95b18c13b147d05acb5daca commit: c127558551879f38767ccb67063c57c60fc6f151 Author: Ionen Wolkens gentoo org> AuthorDate: Wed Jul 20 06:39:31 2022 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Wed Jul 20 06:46:28 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1275585 www-client/qutebrowser: force pyqt5 for tests Doing this now so don't forget, will be needed when PyQt6 is in the tree and technically ensures pyside2 is not used too. Version 3.0.0_pre will be able to "pyqt$(usex qt6 6 5)" for tests, this already works with local Qt6 ebuilds. Signed-off-by: Ionen Wolkens gentoo.org> www-client/qutebrowser/qutebrowser-2.5.2.ebuild | 2 ++ www-client/qutebrowser/qutebrowser-9999.ebuild | 2 ++ 2 files changed, 4 insertions(+) diff --git a/www-client/qutebrowser/qutebrowser-2.5.2.ebuild b/www-client/qutebrowser/qutebrowser-2.5.2.ebuild index cb9e18e62ecc..a803b50c57ca 100644 --- a/www-client/qutebrowser/qutebrowser-2.5.2.ebuild +++ b/www-client/qutebrowser/qutebrowser-2.5.2.ebuild @@ -79,6 +79,8 @@ src_prepare() { } python_test() { + local -x PYTEST_QT_API=pyqt5 + local EPYTEST_DESELECT=( # end2end and other IPC tests are broken with "Name error" if # socket path is over 104 characters (=124 in /var/tmp/portage) diff --git a/www-client/qutebrowser/qutebrowser-9999.ebuild b/www-client/qutebrowser/qutebrowser-9999.ebuild index 5fbedd8a8bf8..db080c13371e 100644 --- a/www-client/qutebrowser/qutebrowser-9999.ebuild +++ b/www-client/qutebrowser/qutebrowser-9999.ebuild @@ -79,6 +79,8 @@ src_prepare() { } python_test() { + local -x PYTEST_QT_API=pyqt5 + local EPYTEST_DESELECT=( # end2end and other IPC tests are broken with "Name error" if # socket path is over 104 characters (=124 in /var/tmp/portage)