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 0E3AB138359 for ; Thu, 7 May 2020 08:57:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4A1B2E0957; Thu, 7 May 2020 08:57:00 +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 3117DE0957 for ; Thu, 7 May 2020 08:57: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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D8DD034F49C for ; Thu, 7 May 2020 08:56:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7561A1D6 for ; Thu, 7 May 2020 08:56:57 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1588841811.a0187687170c5afc8c7da73af08bc74df1517e09.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinx/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sphinx/sphinx-3.0.3.ebuild X-VCS-Directories: dev-python/sphinx/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a0187687170c5afc8c7da73af08bc74df1517e09 X-VCS-Branch: master Date: Thu, 7 May 2020 08:56: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ef91f8f4-f6a1-4124-b76b-b141c39fd2e7 X-Archives-Hash: e7f1e0e48e7fe4650952cb81c1b2f0cc commit: a0187687170c5afc8c7da73af08bc74df1517e09 Author: Michał Górny gentoo org> AuthorDate: Thu May 7 07:55:02 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu May 7 08:56:51 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0187687 dev-python/sphinx: Disable intersphinx Closes: https://bugs.gentoo.org/721306 Signed-off-by: Michał Górny gentoo.org> dev-python/sphinx/sphinx-3.0.3.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-python/sphinx/sphinx-3.0.3.ebuild b/dev-python/sphinx/sphinx-3.0.3.ebuild index ea19d76fea3..3154c9ce95a 100644 --- a/dev-python/sphinx/sphinx-3.0.3.ebuild +++ b/dev-python/sphinx/sphinx-3.0.3.ebuild @@ -86,6 +86,10 @@ python_prepare_all() { @pytest.mark.skipif(hasattr(sys, "pypy_version_info"), reason="broken on pypy3")' \ tests/test_pycode_parser.py || die + # disable internet access + sed -i -e 's:^intersphinx_mapping:disabled_&:' \ + doc/conf.py || die + distutils-r1_python_prepare_all }