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 3663D1382C5 for ; Tue, 9 Jun 2020 12:42:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 60501E08A0; Tue, 9 Jun 2020 12:42:56 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 47018E08A0 for ; Tue, 9 Jun 2020 12:42:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 3005634F0CE for ; Tue, 9 Jun 2020 12:42:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D7CEC292 for ; Tue, 9 Jun 2020 12:42:52 +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: <1591706567.682444eb8dcde1f70df0bbcfb2d4a8630ea926a9.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.7.0.ebuild X-VCS-Directories: dev-python/pyperclip/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 682444eb8dcde1f70df0bbcfb2d4a8630ea926a9 X-VCS-Branch: master Date: Tue, 9 Jun 2020 12:42:52 +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: d22bca13-80ed-40c6-8636-8bd017c994d0 X-Archives-Hash: e60f411c32a5c36bec10186e8c89a877 commit: 682444eb8dcde1f70df0bbcfb2d4a8630ea926a9 Author: Michał Górny gentoo org> AuthorDate: Tue Jun 9 12:37:56 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Jun 9 12:42:47 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=682444eb dev-python/pyperclip: Disable klipper tests Closes: https://bugs.gentoo.org/710158 Signed-off-by: Michał Górny gentoo.org> dev-python/pyperclip/pyperclip-1.7.0.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-python/pyperclip/pyperclip-1.7.0.ebuild b/dev-python/pyperclip/pyperclip-1.7.0.ebuild index 5736bc02ac0..8e4042f67f1 100644 --- a/dev-python/pyperclip/pyperclip-1.7.0.ebuild +++ b/dev-python/pyperclip/pyperclip-1.7.0.ebuild @@ -46,6 +46,10 @@ PATCHES=( src_prepare() { # stupid windows 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:' \ + -i tests/test_pyperclip.py || die distutils-r1_src_prepare }