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 01EB41382C5 for ; Sat, 6 Jun 2020 08:38:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 08BDDE08F9; Sat, 6 Jun 2020 08:38:18 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 BD13FE08F9 for ; Sat, 6 Jun 2020 08:38:17 +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 B499334F232 for ; Sat, 6 Jun 2020 08:38:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D7B4242 for ; Sat, 6 Jun 2020 08:38:15 +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: <1591432684.b8f9e9df7166e65d3df838ac0ecca3948fd7447b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/gmpy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/gmpy/gmpy-2.0.8-r1.ebuild X-VCS-Directories: dev-python/gmpy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: b8f9e9df7166e65d3df838ac0ecca3948fd7447b X-VCS-Branch: master Date: Sat, 6 Jun 2020 08:38:15 +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: f9a95f58-4194-4713-babc-d7728ee767f2 X-Archives-Hash: f9d412f663de49e99af0cc6fcf315f93 commit: b8f9e9df7166e65d3df838ac0ecca3948fd7447b Author: Michał Górny gentoo org> AuthorDate: Sat Jun 6 06:25:11 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jun 6 08:38:04 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8f9e9df dev-python/gmpy: Backport doc build fix Closes: https://bugs.gentoo.org/725884 Signed-off-by: Michał Górny gentoo.org> dev-python/gmpy/gmpy-2.0.8-r1.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dev-python/gmpy/gmpy-2.0.8-r1.ebuild b/dev-python/gmpy/gmpy-2.0.8-r1.ebuild index 20eb7743c64..489f7e73096 100644 --- a/dev-python/gmpy/gmpy-2.0.8-r1.ebuild +++ b/dev-python/gmpy/gmpy-2.0.8-r1.ebuild @@ -38,12 +38,15 @@ PATCHES=( distutils_enable_sphinx docs python_prepare_all() { - distutils-r1_python_prepare_all - # rm non std test file rm test*/gmpy_test_thr.py || die # testing for contents of __dir__ is really silly, and fails sed -i -e '/__dir__/,+1d' test3/*.py || die + # fix sphinx-1.8+ compat + # https://github.com/aleaxit/gmpy/commit/c35c1f3319fcf95e894a59a6d523851bad4abf66 + sed -i -e 's:pngmath:imgmath:' docs/conf.py || die + + distutils-r1_python_prepare_all } python_configure_all() {