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 0BF11138334 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 9E354E082B; 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 7825CE0823 for ; Thu, 3 Oct 2019 23:28:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 1D96734B8BF 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 9215B804 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: <1570145212.22ff67c95a07062ea6b02d3c67d48c961818f314.prometheanfire@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-glanceclient/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-glanceclient/python-glanceclient-2.16.0.ebuild X-VCS-Directories: dev-python/python-glanceclient/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matthew Thode X-VCS-Revision: 22ff67c95a07062ea6b02d3c67d48c961818f314 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: 5df458a2-9274-47f9-ba99-b280545ed2cf X-Archives-Hash: dd2abca24d28719cb2e90037bef4a1e7 commit: 22ff67c95a07062ea6b02d3c67d48c961818f314 Author: Matthew Thode gentoo org> AuthorDate: Thu Oct 3 23:26:52 2019 +0000 Commit: Matthew Thode gentoo org> CommitDate: Thu Oct 3 23:26:52 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22ff67c9 dev-python/python-glanceclient: remove broken doc build fixes: https://bugs.gentoo.org/696130 Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Matthew Thode gentoo.org> .../python-glanceclient-2.16.0.ebuild | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/dev-python/python-glanceclient/python-glanceclient-2.16.0.ebuild b/dev-python/python-glanceclient/python-glanceclient-2.16.0.ebuild index ac7282a691d..8c0dda871d1 100644 --- a/dev-python/python-glanceclient/python-glanceclient-2.16.0.ebuild +++ b/dev-python/python-glanceclient/python-glanceclient-2.16.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" @@ -35,11 +34,6 @@ DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}] >=dev-python/requests-mock-1.2.0[${PYTHON_USEDEP}] ) - doc? ( - >=dev-python/openstackdocstheme-1.18.1[${PYTHON_USEDEP}] - >=dev-python/sphinx-1.6.2[${PYTHON_USEDEP}] - !~dev-python/sphinx-1.6.6[${PYTHON_USEDEP}] - ) " RDEPEND=" ${CDEPEND} @@ -57,22 +51,12 @@ RDEPEND=" " python_prepare_all() { - sed -e 's:intersphinx_mapping:_&:' -i doc/source/conf.py || die sed -i '/^hacking/d' test-requirements.txt || die distutils-r1_python_prepare_all } -python_compile_all() { - use doc && esetup.py build_sphinx -} - python_test() { testr init testr run || die "testsuite failed under python2.7" flake8 tests && einfo "run flake8 over tests folder passed" || die } - -python_install_all() { - use doc && local HTML_DOCS=( doc/build/html/. ) - distutils-r1_python_install_all -}