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 60FA813835A for ; Tue, 27 Apr 2021 11:37:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6876BE0886; Tue, 27 Apr 2021 11:37:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9D376E087F for ; Tue, 27 Apr 2021 11:37:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A6E62341009 for ; Tue, 27 Apr 2021 11:37:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 15E93478 for ; Tue, 27 Apr 2021 11:37:49 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1619523464.ac0f3825ed665f90c8d13fc0e708dbd308e26844.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyperclip/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyperclip/pyperclip-1.8.2.ebuild X-VCS-Directories: dev-python/pyperclip/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: ac0f3825ed665f90c8d13fc0e708dbd308e26844 X-VCS-Branch: master Date: Tue, 27 Apr 2021 11:37:49 +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: 3ec786c8-a6ed-4163-a023-f4586ee5597c X-Archives-Hash: 3d958fb5f6368f6804bf572d03f3844b commit: ac0f3825ed665f90c8d13fc0e708dbd308e26844 Author: Michał Górny gentoo org> AuthorDate: Tue Apr 27 07:28:49 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Apr 27 11:37:44 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac0f3825 dev-python/pyperclip: Skip tests requiring Wayland Signed-off-by: Michał Górny gentoo.org> dev-python/pyperclip/pyperclip-1.8.2.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-python/pyperclip/pyperclip-1.8.2.ebuild b/dev-python/pyperclip/pyperclip-1.8.2.ebuild index 361a2543afb..e61e7e130fd 100644 --- a/dev-python/pyperclip/pyperclip-1.8.2.ebuild +++ b/dev-python/pyperclip/pyperclip-1.8.2.ebuild @@ -44,7 +44,8 @@ src_prepare() { find -type f -exec sed -i -e 's:\r$::' {} + || die # klipper is hard to get working, and once we make it work, # it breaks most of the other backends - sed -e 's:_executable_exists("klipper"):False:' \ + # wl-copy requires wayland, not Xvfb + sed -e 's:_executable_exists("\(klipper\|wl-copy\)"):False:' \ -i tests/test_pyperclip.py || die distutils-r1_src_prepare }