commit: 94b5d84d3e6d4f4e9e8492c8d1040556a486291f Author: David Seifert <soap <AT> gentoo <DOT> org> AuthorDate: Wed Feb 15 18:34:51 2017 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Wed Feb 15 18:37:38 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94b5d84d
dev-python/jupyter_console: Fix doc building Bug: https://bugs.gentoo.org/show_bug.cgi?id=609454 Package-Manager: Portage-2.3.3, Repoman-2.3.1 dev-python/jupyter_console/jupyter_console-5.1.0.ebuild | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/dev-python/jupyter_console/jupyter_console-5.1.0.ebuild b/dev-python/jupyter_console/jupyter_console-5.1.0.ebuild index 93f41db80e..23d5869a30 100644 --- a/dev-python/jupyter_console/jupyter_console-5.1.0.ebuild +++ b/dev-python/jupyter_console/jupyter_console-5.1.0.ebuild @@ -45,14 +45,10 @@ python_prepare_all() { python_compile_all() { if use doc; then emake -C docs html - HTML_DOCS=( "${BUILD_DIR}"/docs/build/html/. ) + HTML_DOCS=( docs/build/html/. ) fi } python_test() { nosetests --with-coverage --cover-package=jupyter_console jupyter_console || die } - -python_install_all() { - distutils-r1_python_install_all -}