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 BFD92158090 for ; Mon, 16 May 2022 16:05:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0CB64E0951; Mon, 16 May 2022 16:05:07 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 DF060E0951 for ; Mon, 16 May 2022 16:05:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 smtp.gentoo.org (Postfix) with ESMTPS id BB251340CF2 for ; Mon, 16 May 2022 16:05:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C9EFF474 for ; Mon, 16 May 2022 16:05:02 +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: <1652717097.1ab0bcc45136f404c19e65a11e7648ea80eb6ec7.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-xmp-toolkit/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-xmp-toolkit/python-xmp-toolkit-2.0.1-r2.ebuild X-VCS-Directories: dev-python/python-xmp-toolkit/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1ab0bcc45136f404c19e65a11e7648ea80eb6ec7 X-VCS-Branch: master Date: Mon, 16 May 2022 16:05:02 +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: ca5eb6ac-249e-422d-9d72-3b7566942024 X-Archives-Hash: 9a6b1c8873d2b0720316b102877b33d1 commit: 1ab0bcc45136f404c19e65a11e7648ea80eb6ec7 Author: Michał Górny gentoo org> AuthorDate: Mon May 16 15:51:51 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon May 16 16:04:57 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ab0bcc4 dev-python/python-xmp-toolkit: Use distutils_enable_sphinx Signed-off-by: Michał Górny gentoo.org> .../python-xmp-toolkit/python-xmp-toolkit-2.0.1-r2.ebuild | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/dev-python/python-xmp-toolkit/python-xmp-toolkit-2.0.1-r2.ebuild b/dev-python/python-xmp-toolkit/python-xmp-toolkit-2.0.1-r2.ebuild index beb8ea247ada..4c0cafe7e6ba 100644 --- a/dev-python/python-xmp-toolkit/python-xmp-toolkit-2.0.1-r2.ebuild +++ b/dev-python/python-xmp-toolkit/python-xmp-toolkit-2.0.1-r2.ebuild @@ -21,11 +21,8 @@ HOMEPAGE="https://github.com/python-xmp-toolkit/python-xmp-toolkit/ https://pypi LICENSE="BSD" SLOT="0" -IUSE="doc test" -RESTRICT="!test? ( test )" DEPEND=" - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) test? ( media-libs/exempi ) " RDEPEND=" @@ -34,13 +31,5 @@ RDEPEND=" PATCHES=( "${FILESDIR}"/${P}-test.patch ) +distutils_enable_sphinx docs distutils_enable_tests unittest - -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 -}