From 89d5906d7c9706043833719e96bf3b946bfcd2a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Bar=C4=87?= Date: Sun, 3 May 2020 21:06:49 +0200 Subject: [PATCH] dev-python/pure-protobuf: fix package installation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Maciej Barć --- dev-python/pure-protobuf/pure-protobuf-2.0.0.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-python/pure-protobuf/pure-protobuf-2.0.0.ebuild b/dev-python/pure-protobuf/pure-protobuf-2.0.0.ebuild index 1325cff90f..e240faf39e 100644 --- a/dev-python/pure-protobuf/pure-protobuf-2.0.0.ebuild +++ b/dev-python/pure-protobuf/pure-protobuf-2.0.0.ebuild @@ -26,5 +26,7 @@ python_install() { # Package installs 'tests' package which is forbidden and likely a bug in the build system. rm -r tests || die - python_foreach_impl distutils-r1_python_install + # Previously it did not actually install any python libs + python_foreach_impl esetup.py install + python_foreach_impl python_optimize }