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 2FA0F138335 for ; Thu, 3 Oct 2019 23:28:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0980E0822; Thu, 3 Oct 2019 23:28:21 +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 8DEBDE0822 for ; Thu, 3 Oct 2019 23:28:21 +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 505E034B8C2 for ; Thu, 3 Oct 2019 23:28:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A59D9828 for ; Thu, 3 Oct 2019 23:28:18 +0000 (UTC) From: "Matthew Thode" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Thode" Message-ID: <1570145286.51f81f7a0d3e7f99961259d5ea979bb249ebd996.prometheanfire@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-neutronclient/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-neutronclient/python-neutronclient-6.12.0.ebuild X-VCS-Directories: dev-python/python-neutronclient/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matthew Thode X-VCS-Revision: 51f81f7a0d3e7f99961259d5ea979bb249ebd996 X-VCS-Branch: master Date: Thu, 3 Oct 2019 23:28:18 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1a762e62-39f6-4697-be7f-0e4e3c2ed657 X-Archives-Hash: 9ff64213e56f8adbdab4a9daed183da7 commit: 51f81f7a0d3e7f99961259d5ea979bb249ebd996 Author: Matthew Thode gentoo org> AuthorDate: Thu Oct 3 23:28:06 2019 +0000 Commit: Matthew Thode gentoo org> CommitDate: Thu Oct 3 23:28:06 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51f81f7a dev-python/python-neutronclient: remove broken doc builds fixes: https://bugs.gentoo.org/696132 Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Matthew Thode gentoo.org> .../python-neutronclient-6.12.0.ebuild | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/dev-python/python-neutronclient/python-neutronclient-6.12.0.ebuild b/dev-python/python-neutronclient/python-neutronclient-6.12.0.ebuild index dc0ed5640e9..e5c439a68a1 100644 --- a/dev-python/python-neutronclient/python-neutronclient-6.12.0.ebuild +++ b/dev-python/python-neutronclient/python-neutronclient-6.12.0.ebuild @@ -13,8 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" -IUSE="doc test" -REQUIRED_USE="test? ( doc )" +IUSE="test" CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}] !~dev-python/pbr-2.1.0" @@ -37,11 +36,6 @@ DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] >=dev-python/stestr-2.0.0[${PYTHON_USEDEP}] >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}] >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}] - ) - doc? ( - >=dev-python/openstackdocstheme-1.17.0[${PYTHON_USEDEP}] - >=dev-python/sphinx-1.6.2[${PYTHON_USEDEP}] - !~dev-python/sphinx-1.6.6[${PYTHON_USEDEP}] )" RDEPEND=" @@ -73,10 +67,6 @@ python_prepare_all() { distutils-r1_python_prepare_all } -python_compile_all() { - use doc && "${PYTHON}" setup.py build_sphinx -} - python_test() { testr init testr run || die "tests failed under python2.7" @@ -94,8 +84,3 @@ python_install() { ln -s neutronclient quantumclient || die ln -s neutron quantumclient/quantum || die } - -python_install_all() { - use doc && local HTML_DOCS=( doc/build/html/. ) - distutils-r1_python_install_all -}