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 C9133138350 for ; Wed, 5 Feb 2020 07:10:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E2ED9E09DC; Wed, 5 Feb 2020 07:10:58 +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 C449AE09DC for ; Wed, 5 Feb 2020 07:10:58 +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 DC73034E606 for ; Wed, 5 Feb 2020 07:10:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 59AF8116 for ; Wed, 5 Feb 2020 07:10:55 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1580886611.3180f1f1c2420003f1ae09b2e3b92305789d0014.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pynvim/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pynvim/pynvim-0.4.1.ebuild X-VCS-Directories: dev-python/pynvim/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 3180f1f1c2420003f1ae09b2e3b92305789d0014 X-VCS-Branch: master Date: Wed, 5 Feb 2020 07:10:55 +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: 6bd3152d-e3db-45a4-9e15-bbeb328fc49c X-Archives-Hash: 8c6f1fc4ae510a179bf094bafb885efa commit: 3180f1f1c2420003f1ae09b2e3b92305789d0014 Author: Matt Turner gentoo org> AuthorDate: Wed Feb 5 07:09:01 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Wed Feb 5 07:10:11 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3180f1f1 dev-python/pynvim: Remove no longer needed sed Closes: https://bugs.gentoo.org/684314 Signed-off-by: Matt Turner gentoo.org> dev-python/pynvim/pynvim-0.4.1.ebuild | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dev-python/pynvim/pynvim-0.4.1.ebuild b/dev-python/pynvim/pynvim-0.4.1.ebuild index 08c2fb44841..cf1c0d3a5dc 100644 --- a/dev-python/pynvim/pynvim-0.4.1.ebuild +++ b/dev-python/pynvim/pynvim-0.4.1.ebuild @@ -26,7 +26,6 @@ RDEPEND=" distutils_enable_tests pytest python_prepare_all() { - # allow useage of renamed msgpack - sed -r -i "/^msgpack/d ; s:[\"']pytest-runner[\"'](,|)::" setup.py || die + sed -r -i "s:[\"']pytest-runner[\"'](,|)::" setup.py || die distutils-r1_python_prepare_all }