Gentoo Archives: gentoo-commits

From: "Maciej Barć" <xgqt@××××××××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pure-protobuf/
Date: Sun, 03 May 2020 19:10:39
Message-Id: 1588533011.89d5906d7c9706043833719e96bf3b946bfcd2a9.xgqt@gentoo
1 commit: 89d5906d7c9706043833719e96bf3b946bfcd2a9
2 Author: Maciej Barć <xgqt <AT> protonmail <DOT> com>
3 AuthorDate: Sun May 3 19:06:49 2020 +0000
4 Commit: Maciej Barć <xgqt <AT> protonmail <DOT> com>
5 CommitDate: Sun May 3 19:10:11 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=89d5906d
7
8 dev-python/pure-protobuf: fix package installation
9
10 Package-Manager: Portage-2.3.89, Repoman-2.3.20
11 Signed-off-by: Maciej Barć <xgqt <AT> protonmail.com>
12
13 dev-python/pure-protobuf/pure-protobuf-2.0.0.ebuild | 4 +++-
14 1 file changed, 3 insertions(+), 1 deletion(-)
15
16 diff --git a/dev-python/pure-protobuf/pure-protobuf-2.0.0.ebuild b/dev-python/pure-protobuf/pure-protobuf-2.0.0.ebuild
17 index 1325cff..e240faf 100644
18 --- a/dev-python/pure-protobuf/pure-protobuf-2.0.0.ebuild
19 +++ b/dev-python/pure-protobuf/pure-protobuf-2.0.0.ebuild
20 @@ -26,5 +26,7 @@ python_install() {
21 # Package installs 'tests' package which is forbidden and likely a bug in the build system.
22 rm -r tests || die
23
24 - python_foreach_impl distutils-r1_python_install
25 + # Previously it did not actually install any python libs
26 + python_foreach_impl esetup.py install
27 + python_foreach_impl python_optimize
28 }