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 28C84158088 for ; Mon, 24 Jan 2022 22:14:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A0A1E2BC014; Mon, 24 Jan 2022 22:14:12 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 E88742BC002 for ; Mon, 24 Jan 2022 22:14:11 +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 51FBA342F34 for ; Mon, 24 Jan 2022 22:14:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C6FE32A2 for ; Mon, 24 Jan 2022 22:14:07 +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: <1643062179.5c13687575b70fdba9b0978c63efaca007dcb5a8.mgorny@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.11.0.ebuild X-VCS-Directories: dev-vcs/git-cola/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5c13687575b70fdba9b0978c63efaca007dcb5a8 X-VCS-Branch: master Date: Mon, 24 Jan 2022 22:14:07 +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: 10afc5d2-43db-462e-8a2c-d566f96f4ef2 X-Archives-Hash: a7b6b1535620be71ca821b8825b0adf1 commit: 5c13687575b70fdba9b0978c63efaca007dcb5a8 Author: Michał Górny gentoo org> AuthorDate: Sun Jan 23 15:18:54 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Jan 24 22:09:39 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c136875 dev-vcs/git-cola: Disable pytest-flake8 Signed-off-by: Michał Górny gentoo.org> dev-vcs/git-cola/git-cola-3.11.0.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-vcs/git-cola/git-cola-3.11.0.ebuild b/dev-vcs/git-cola/git-cola-3.11.0.ebuild index 1aa8af03490f..ebab708004f6 100644 --- a/dev-vcs/git-cola/git-cola-3.11.0.ebuild +++ b/dev-vcs/git-cola/git-cola-3.11.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -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 }