From: William Hubbs Date: Fri, 13 Mar 2020 22:17:49 +0000 (-0500) Subject: dev-python/django_prometheus: fix sed to remove pytest-runner X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=749d96fe8dd409e12d5abb35cebaf5be75bc12e9;p=gentoo.git dev-python/django_prometheus: fix sed to remove pytest-runner Signed-off-by: William Hubbs --- 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 a745970dbcd7..09c740ab364b 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 }