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 706471382C5 for ; Fri, 28 May 2021 21:48:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 80DCCE0839; Fri, 28 May 2021 21:48:37 +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 68EDCE0839 for ; Fri, 28 May 2021 21:48:37 +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 EAA19340E7C for ; Fri, 28 May 2021 21:48:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D62759C for ; Fri, 28 May 2021 21:48:34 +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: <1622238484.95f24cca2723012d25589febc993a7a45f030e1f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinxcontrib-asyncio/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sphinxcontrib-asyncio/sphinxcontrib-asyncio-0.2.0-r2.ebuild X-VCS-Directories: dev-python/sphinxcontrib-asyncio/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 95f24cca2723012d25589febc993a7a45f030e1f X-VCS-Branch: master Date: Fri, 28 May 2021 21:48:34 +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: 0037856a-d930-4f2e-a3f9-ca9107dfd72e X-Archives-Hash: aceb1c007bec7d021ef281d97af0184a commit: 95f24cca2723012d25589febc993a7a45f030e1f Author: Zamarin Arthur gmail com> AuthorDate: Fri May 28 15:39:25 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri May 28 21:48:04 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95f24cca dev-python/sphinxcontrib-asyncio: EAPI=7, fix sphinx >= 4.0 - fix for `dev-python/sphinx` >= 4.0. Now successfully generates self docs - bump to `EAPI=7` - use `distutils_enable_sphinx` for docs - bump to python 3.9 Signed-off-by: Zamarin Arthur gmail.com> Signed-off-by: Michał Górny gentoo.org> .../sphinxcontrib-asyncio-0.2.0-r2.ebuild | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/dev-python/sphinxcontrib-asyncio/sphinxcontrib-asyncio-0.2.0-r2.ebuild b/dev-python/sphinxcontrib-asyncio/sphinxcontrib-asyncio-0.2.0-r2.ebuild index 1fd70333189..7b80ce7fde6 100644 --- a/dev-python/sphinxcontrib-asyncio/sphinxcontrib-asyncio-0.2.0-r2.ebuild +++ b/dev-python/sphinxcontrib-asyncio/sphinxcontrib-asyncio-0.2.0-r2.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -PYTHON_COMPAT=( python3_{7,8} ) +PYTHON_COMPAT=( python3_{7..9} ) inherit distutils-r1 DESCRIPTION="sphinx extension to support coroutines in markup" @@ -13,17 +13,18 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" -IUSE="doc" -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) -" RDEPEND="dev-python/sphinx[${PYTHON_USEDEP}] dev-python/namespace-sphinxcontrib[${PYTHON_USEDEP}]" -python_compile_all() { - use doc && emake -C docs html +distutils_enable_sphinx docs + +src_prepare() { + # fix for sphinx >= 4.0 + sed -e 's/PyModulelevel/PyFunction/g' \ + -e 's/PyClassmember/PyClassMethod/g' \ + -i sphinxcontrib/asyncio.py || die + default } python_install() { @@ -32,7 +33,6 @@ python_install() { } python_install_all() { - use doc && local HTML_DOCS=( docs/_build/html/. ) distutils-r1_python_install_all # clean up pth files bug #623852 find "${ED}" -name '*.pth' -delete || die