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 A869D158087 for ; Sat, 29 Jan 2022 06:20:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DE9282BC009; Sat, 29 Jan 2022 06:20:22 +0000 (UTC) Received: from smtp.gentoo.org (mail.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D74F42BC018 for ; Sat, 29 Jan 2022 06:20:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 7FAF734337F for ; Sat, 29 Jan 2022 06:20:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CC5EF2B0 for ; Sat, 29 Jan 2022 06:20:17 +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: <1643437162.d0aa62f8e2540b8d4e6dde951b7415e0e5fbd7e3.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-cola/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/git-cola/git-cola-3.12.0.ebuild X-VCS-Directories: dev-vcs/git-cola/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d0aa62f8e2540b8d4e6dde951b7415e0e5fbd7e3 X-VCS-Branch: master Date: Sat, 29 Jan 2022 06:20:17 +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: 992538ae-49dd-47e9-8821-e8ab85b74ba5 X-Archives-Hash: f331ec347cc8cf4e69eb5157b3f74b0f commit: d0aa62f8e2540b8d4e6dde951b7415e0e5fbd7e3 Author: Martin Gysel bearsh org> AuthorDate: Mon Jan 24 20:05:20 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jan 29 06:19:22 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0aa62f8 dev-vcs/git-cola: Disable pytest-flake8 see also https://github.com/gentoo/gentoo/pull/23927 Signed-off-by: Martin Gysel bearsh.org> Closes: https://github.com/gentoo/gentoo/pull/23887 Signed-off-by: Sam James gentoo.org> dev-vcs/git-cola/git-cola-3.12.0.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-vcs/git-cola/git-cola-3.12.0.ebuild b/dev-vcs/git-cola/git-cola-3.12.0.ebuild index 1aa8af03490f..51817bdd4a3b 100644 --- a/dev-vcs/git-cola/git-cola-3.12.0.ebuild +++ b/dev-vcs/git-cola/git-cola-3.12.0.ebuild @@ -34,7 +34,6 @@ BDEPEND="sys-devel/gettext test? ( ${VIRTUALX_DEPEND} dev-python/pytest[\${PYTHON_USEDEP}] - dev-python/pytest-flake8[\${PYTHON_USEDEP}] dev-python/mock[\${PYTHON_USEDEP}] dev-python/PyQt5[\${PYTHON_USEDEP},gui,widgets] ) @@ -58,6 +57,9 @@ python_prepare_all() { # fix ssh-askpass directory reference sed -i -e 's/resources\.share/resources\.prefix/' cola/app.py || die + # disable flake8 testing, it's not useful for ebuilds + sed -i -e 's:--flake8::' pytest.ini || die + distutils-r1_python_prepare_all }