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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4C6DF158041 for ; Mon, 25 Mar 2024 05:15:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2CD94E29EC; Mon, 25 Mar 2024 05:15:03 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1206FE29EC for ; Mon, 25 Mar 2024 05:15:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EF06B33BEE8 for ; Mon, 25 Mar 2024 05:15:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 52B131518 for ; Mon, 25 Mar 2024 05:15:00 +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: <1711343669.aa8be175e7dc9a41b41b1799972f43eeaf177a89.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pplpy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pplpy/pplpy-0.8.10.ebuild X-VCS-Directories: dev-python/pplpy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: aa8be175e7dc9a41b41b1799972f43eeaf177a89 X-VCS-Branch: master Date: Mon, 25 Mar 2024 05:15:00 +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: e1d93826-e159-4eaf-b9f5-ffeb4a770b3f X-Archives-Hash: e8167acb9441c5ccc48bf452a2d3a3ed commit: aa8be175e7dc9a41b41b1799972f43eeaf177a89 Author: Michał Górny gentoo org> AuthorDate: Mon Mar 25 05:14:29 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Mar 25 05:14:29 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa8be175 dev-python/pplpy: Enable py3.12 Signed-off-by: Michał Górny gentoo.org> dev-python/pplpy/pplpy-0.8.10.ebuild | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/dev-python/pplpy/pplpy-0.8.10.ebuild b/dev-python/pplpy/pplpy-0.8.10.ebuild index cd6c0247648a..66bea27018d0 100644 --- a/dev-python/pplpy/pplpy-0.8.10.ebuild +++ b/dev-python/pplpy/pplpy-0.8.10.ebuild @@ -3,9 +3,9 @@ EAPI=8 -PYTHON_COMPAT=( python3_{10..11} ) -DISTUTILS_USE_PEP517=setuptools DISTUTILS_EXT=1 +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..12} ) inherit distutils-r1 pypi @@ -32,15 +32,18 @@ RDEPEND=" " BDEPEND=" dev-python/cython[${PYTHON_USEDEP}] + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) " distutils_enable_sphinx docs/source -python_compile() { - # Parallel build breaks the test suite somehow. This should be - # reported upstream but first someone will need to figure out - # how to reproduce it outside of Gentoo. - distutils-r1_python_compile -j 1 +python_compile_all() { + use doc && emake -C docs html +} + +python_install_all(){ + use doc && local HTML_DOCS=( docs/build/html/. ) + distutils-r1_python_install_all } python_test(){