Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jupyter_console/
Date: Wed, 15 Feb 2017 18:38:01
Message-Id: 1487183858.94b5d84d3e6d4f4e9e8492c8d1040556a486291f.soap@gentoo
1 commit: 94b5d84d3e6d4f4e9e8492c8d1040556a486291f
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 15 18:34:51 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 15 18:37:38 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94b5d84d
7
8 dev-python/jupyter_console: Fix doc building
9
10 Bug: https://bugs.gentoo.org/show_bug.cgi?id=609454
11
12 Package-Manager: Portage-2.3.3, Repoman-2.3.1
13
14 dev-python/jupyter_console/jupyter_console-5.1.0.ebuild | 6 +-----
15 1 file changed, 1 insertion(+), 5 deletions(-)
16
17 diff --git a/dev-python/jupyter_console/jupyter_console-5.1.0.ebuild b/dev-python/jupyter_console/jupyter_console-5.1.0.ebuild
18 index 93f41db80e..23d5869a30 100644
19 --- a/dev-python/jupyter_console/jupyter_console-5.1.0.ebuild
20 +++ b/dev-python/jupyter_console/jupyter_console-5.1.0.ebuild
21 @@ -45,14 +45,10 @@ python_prepare_all() {
22 python_compile_all() {
23 if use doc; then
24 emake -C docs html
25 - HTML_DOCS=( "${BUILD_DIR}"/docs/build/html/. )
26 + HTML_DOCS=( docs/build/html/. )
27 fi
28 }
29
30 python_test() {
31 nosetests --with-coverage --cover-package=jupyter_console jupyter_console || die
32 }
33 -
34 -python_install_all() {
35 - distutils-r1_python_install_all
36 -}