From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B1ADB139694 for ; Wed, 15 Feb 2017 18:38:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0A7D621C11C; Wed, 15 Feb 2017 18:38:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D987121C11C for ; Wed, 15 Feb 2017 18:38:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CC8DF34164B for ; Wed, 15 Feb 2017 18:37:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CAFB948F7 for ; Wed, 15 Feb 2017 18:37:57 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1487183864.a78c6bce7f684215f32845e7e55c2790cbba9c68.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ipyparallel/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/ipyparallel/ipyparallel-6.0.1.ebuild X-VCS-Directories: dev-python/ipyparallel/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: a78c6bce7f684215f32845e7e55c2790cbba9c68 X-VCS-Branch: master Date: Wed, 15 Feb 2017 18:37:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 60a4bbbd-0d8c-495a-98f4-13b9cceda928 X-Archives-Hash: cc7785e15c6bd3afcd98ae6f1c2162cf commit: a78c6bce7f684215f32845e7e55c2790cbba9c68 Author: David Seifert gentoo org> AuthorDate: Wed Feb 15 18:37:14 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Wed Feb 15 18:37:44 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a78c6bce dev-python/ipyparallel: Fix doc building Bug: https://bugs.gentoo.org/show_bug.cgi?id=609380 Package-Manager: Portage-2.3.3, Repoman-2.3.1 dev-python/ipyparallel/ipyparallel-6.0.1.ebuild | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/dev-python/ipyparallel/ipyparallel-6.0.1.ebuild b/dev-python/ipyparallel/ipyparallel-6.0.1.ebuild index 5f2ec29ed8..9b0dad4661 100644 --- a/dev-python/ipyparallel/ipyparallel-6.0.1.ebuild +++ b/dev-python/ipyparallel/ipyparallel-6.0.1.ebuild @@ -53,14 +53,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() { iptest --coverage xml ipyparallel.tests -- -vsx || die } - -python_install_all() { - distutils-r1_python_install_all -}