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 A1ADD1382C5 for ; Sun, 14 Jun 2020 20:12:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D8763E0992; Sun, 14 Jun 2020 20:12:47 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 C4438E0992 for ; Sun, 14 Jun 2020 20:12:47 +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 B210034F051 for ; Sun, 14 Jun 2020 20:12:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 29F6024C for ; Sun, 14 Jun 2020 20:12:45 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1592165547.e82db9c838c494ff8eba37d89949a57dc1bdcc5e.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/quantities/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/quantities/quantities-0.12.4.ebuild X-VCS-Directories: dev-python/quantities/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: e82db9c838c494ff8eba37d89949a57dc1bdcc5e X-VCS-Branch: dev Date: Sun, 14 Jun 2020 20:12:45 +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: 2d81d6a5-d32d-420f-b0d7-e4702899f577 X-Archives-Hash: 82cd936461c0dfcfa3acdbc2874a6ba9 commit: e82db9c838c494ff8eba37d89949a57dc1bdcc5e Author: Andrew Ammerlaan riseup net> AuthorDate: Sun Jun 14 20:12:01 2020 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Sun Jun 14 20:12:27 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e82db9c8 dev-python/quantities: allow doc building with newer sphinx Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Andrew Ammerlaan riseup.net> dev-python/quantities/quantities-0.12.4.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dev-python/quantities/quantities-0.12.4.ebuild b/dev-python/quantities/quantities-0.12.4.ebuild index 2a20bbc..f7d77e9 100644 --- a/dev-python/quantities/quantities-0.12.4.ebuild +++ b/dev-python/quantities/quantities-0.12.4.ebuild @@ -32,9 +32,12 @@ python_prepare_all() { sed -i -e 's:test_fix:_&:' \ quantities/tests/test_umath.py || die + # pngmath replaced with imgmath in sphinx>1.8 + sed -i -e 's:ext.pngmath:ext.imgmath:g' \ + doc/conf.py || die + distutils-r1_python_prepare_all } distutils_enable_tests unittest -# wants ext.pngmath which got removed in sphinx-2 -distutils_enable_sphinx doc dev-python/numpydoc "dev-python/sphinx-1.8" 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 C456413835A for ; Sun, 14 Jun 2020 20:12:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 096DAE0AB7; Sun, 14 Jun 2020 20:12:54 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 E903FE0AB7 for ; Sun, 14 Jun 2020 20:12:53 +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 0805B34F070 for ; Sun, 14 Jun 2020 20:12:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 83CD8297 for ; Sun, 14 Jun 2020 20:12:51 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1592165547.e82db9c838c494ff8eba37d89949a57dc1bdcc5e.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/quantities/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/quantities/quantities-0.12.4.ebuild X-VCS-Directories: dev-python/quantities/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: e82db9c838c494ff8eba37d89949a57dc1bdcc5e X-VCS-Branch: master Date: Sun, 14 Jun 2020 20:12:51 +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: c3249ca7-1dbd-44b9-a490-f7d82a735e20 X-Archives-Hash: ad0033a047153b262e3c42a3e3526ccb Message-ID: <20200614201251.4MlVct014BPa3qz_CftUHRYdXkHj-mzcGTjWNJc_3Mg@z> commit: e82db9c838c494ff8eba37d89949a57dc1bdcc5e Author: Andrew Ammerlaan riseup net> AuthorDate: Sun Jun 14 20:12:01 2020 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Sun Jun 14 20:12:27 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e82db9c8 dev-python/quantities: allow doc building with newer sphinx Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Andrew Ammerlaan riseup.net> dev-python/quantities/quantities-0.12.4.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dev-python/quantities/quantities-0.12.4.ebuild b/dev-python/quantities/quantities-0.12.4.ebuild index 2a20bbc..f7d77e9 100644 --- a/dev-python/quantities/quantities-0.12.4.ebuild +++ b/dev-python/quantities/quantities-0.12.4.ebuild @@ -32,9 +32,12 @@ python_prepare_all() { sed -i -e 's:test_fix:_&:' \ quantities/tests/test_umath.py || die + # pngmath replaced with imgmath in sphinx>1.8 + sed -i -e 's:ext.pngmath:ext.imgmath:g' \ + doc/conf.py || die + distutils-r1_python_prepare_all } distutils_enable_tests unittest -# wants ext.pngmath which got removed in sphinx-2 -distutils_enable_sphinx doc dev-python/numpydoc "dev-python/sphinx-1.8"