From 749d96fe8dd409e12d5abb35cebaf5be75bc12e9 Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Fri, 13 Mar 2020 17:17:49 -0500 Subject: [PATCH] dev-python/django_prometheus: fix sed to remove pytest-runner Signed-off-by: William Hubbs --- dev-python/django-prometheus/django-prometheus-2.0.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/django-prometheus/django-prometheus-2.0.0.ebuild b/dev-python/django-prometheus/django-prometheus-2.0.0.ebuild index a745970dbcd7c..09c740ab364b8 100644 --- a/dev-python/django-prometheus/django-prometheus-2.0.0.ebuild +++ b/dev-python/django-prometheus/django-prometheus-2.0.0.ebuild @@ -18,6 +18,6 @@ DEPEND=">=dev-python/prometheus_client-0.7[${PYTHON_USEDEP}]" RDEPEND="${DEPEND}" python_prepare_all() { - sed -i "s/'pytest-runner'//" setup.py || die + sed -i "/pytest-runner/d" setup.py || die distutils-r1_python_prepare_all }