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 BADC0138350 for ; Mon, 30 Mar 2020 22:06:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0BD44E0B73; Mon, 30 Mar 2020 22:06:55 +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 E5C22E0B73 for ; Mon, 30 Mar 2020 22:06:54 +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 9BBAE34F085 for ; Mon, 30 Mar 2020 22:06:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4404013A for ; Mon, 30 Mar 2020 22:06:52 +0000 (UTC) From: "Patrick McLean" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick McLean" Message-ID: <1585606002.3ffcde8c1e7685008918495dfa152afa132573eb.chutzpah@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cherrypy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/cherrypy/cherrypy-18.5.0.ebuild X-VCS-Directories: dev-python/cherrypy/ X-VCS-Committer: chutzpah X-VCS-Committer-Name: Patrick McLean X-VCS-Revision: 3ffcde8c1e7685008918495dfa152afa132573eb X-VCS-Branch: master Date: Mon, 30 Mar 2020 22:06: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: f40bedf7-3c8f-422b-b1e0-1f698776e715 X-Archives-Hash: ee8a95f3195fd56119eab2ca7ee258f2 commit: 3ffcde8c1e7685008918495dfa152afa132573eb Author: Patrick McLean sony com> AuthorDate: Mon Mar 30 22:06:28 2020 +0000 Commit: Patrick McLean gentoo org> CommitDate: Mon Mar 30 22:06:42 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ffcde8c dev-python/cherrypy: Fix sed to remove pytest-cov We need to make sure all pytest-cov related parameters are stripped, not just the first one. Bug: https://bugs.gentoo.org/715008 Copyright: Sony Interactive Entertainment Inc. Package-Manager: Portage-2.3.96, Repoman-2.3.22 Signed-off-by: Patrick McLean gentoo.org> dev-python/cherrypy/cherrypy-18.5.0.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-python/cherrypy/cherrypy-18.5.0.ebuild b/dev-python/cherrypy/cherrypy-18.5.0.ebuild index d113700efc1..2e86a61b646 100644 --- a/dev-python/cherrypy/cherrypy-18.5.0.ebuild +++ b/dev-python/cherrypy/cherrypy-18.5.0.ebuild @@ -53,9 +53,9 @@ python_prepare_all() { sed -r -e '/(pytest-sugar|pytest-cov)/ d' \ -i setup.py || die - sed -r -e 's:--cov-report[[:space:]]+[[:graph:]]+::' \ - -e 's:--cov[[:graph:]]+::' \ - -e 's:--doctest[[:graph:]]+::' \ + sed -r -e 's:--cov-report[[:space:]]+[[:graph:]]+::g' \ + -e 's:--cov[[:graph:]]+::g' \ + -e 's:--doctest[[:graph:]]+::g' \ -i pytest.ini || die distutils-r1_python_prepare_all