Gentoo Archives: gentoo-commits

From: Matt Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/glance/
Date: Wed, 30 Nov 2016 05:19:05
Message-Id: 1480483090.4d4e5d7cc0065576d0fd3b0bf4a14ea73a3d7be0.prometheanfire@gentoo
1 commit: 4d4e5d7cc0065576d0fd3b0bf4a14ea73a3d7be0
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 30 05:05:54 2016 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 30 05:18:10 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d4e5d7c
7
8 app-admin/glance: switch fully to python_install_all
9
10 Package-Manager: portage-2.3.0
11
12 app-admin/glance/glance-2016.2.9999.ebuild | 6 ++----
13 1 file changed, 2 insertions(+), 4 deletions(-)
14
15 diff --git a/app-admin/glance/glance-2016.2.9999.ebuild b/app-admin/glance/glance-2016.2.9999.ebuild
16 index 2793e71..35e099b 100644
17 --- a/app-admin/glance/glance-2016.2.9999.ebuild
18 +++ b/app-admin/glance/glance-2016.2.9999.ebuild
19 @@ -117,8 +117,8 @@ python_compile_all() {
20 use doc && "${PYTHON}" setup.py build_sphinx
21 }
22
23 -python_install() {
24 - distutils-r1_python_install
25 +python_install_all() {
26 + distutils-r1_python_install_all
27
28 for svc in api glare registry scrubber; do
29 newinitd "${FILESDIR}/glance.initd" glance-${svc}
30 @@ -134,9 +134,7 @@ python_install() {
31 insinto /etc/glance
32 insopts -m 0640 -o glance -g glance
33 doins -r etc/*.ini etc/*.conf etc/*.sample etc/*.json etc/meta*
34 -}
35
36 -python_install_all() {
37 use doc && local HTML_DOCS=( doc/build/html/. )
38 distutils-r1_python_install_all
39 }