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 563E0138334 for ; Mon, 15 Oct 2018 23:37:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E4474E08A8; Mon, 15 Oct 2018 23:37:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BEED1E08A8 for ; Mon, 15 Oct 2018 23:37:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ED8F7335CE9 for ; Mon, 15 Oct 2018 23:37:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D7EB5391 for ; Mon, 15 Oct 2018 23:37:01 +0000 (UTC) From: "Virgil Dupras" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Virgil Dupras" Message-ID: <1539646483.8133380f8289b3e8b45b8edb9ac879343bcbddf4.vdupras@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/txaio/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/txaio/txaio-2.7.1.ebuild dev-python/txaio/txaio-2.9.0.ebuild X-VCS-Directories: dev-python/txaio/ X-VCS-Committer: vdupras X-VCS-Committer-Name: Virgil Dupras X-VCS-Revision: 8133380f8289b3e8b45b8edb9ac879343bcbddf4 X-VCS-Branch: master Date: Mon, 15 Oct 2018 23:37:01 +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: 321ad994-368f-4639-992e-07ec37f493d2 X-Archives-Hash: 6dde8531f4745f70101da8255f37caf5 commit: 8133380f8289b3e8b45b8edb9ac879343bcbddf4 Author: Virgil Dupras gentoo org> AuthorDate: Mon Oct 15 23:28:03 2018 +0000 Commit: Virgil Dupras gentoo org> CommitDate: Mon Oct 15 23:34:43 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8133380f dev-python/txaio: fix doc building Closes: https://bugs.gentoo.org/634740 Signed-off-by: Virgil Dupras gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-python/txaio/txaio-2.7.1.ebuild | 4 ++-- dev-python/txaio/txaio-2.9.0.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-python/txaio/txaio-2.7.1.ebuild b/dev-python/txaio/txaio-2.7.1.ebuild index 0d6b45adb06..1fe2daa2e08 100644 --- a/dev-python/txaio/txaio-2.7.1.ebuild +++ b/dev-python/txaio/txaio-2.7.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -66,6 +66,6 @@ python_test() { } python_install_all() { - use doc && HTML_DOCS=( doc/_build/html/. ) + use doc && HTML_DOCS=( docs/_build/html/. ) distutils-r1_python_install_all } diff --git a/dev-python/txaio/txaio-2.9.0.ebuild b/dev-python/txaio/txaio-2.9.0.ebuild index eff2bf41f96..aed5bfe9cfb 100644 --- a/dev-python/txaio/txaio-2.9.0.ebuild +++ b/dev-python/txaio/txaio-2.9.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -48,6 +48,6 @@ python_test() { } python_install_all() { - use doc && HTML_DOCS=( doc/_build/html/. ) + use doc && HTML_DOCS=( docs/_build/html/. ) distutils-r1_python_install_all }