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 3433F13835A for ; Tue, 25 May 2021 16:05:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 78F2AE07DB; Tue, 25 May 2021 16:05:12 +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 5ECA2E07DB for ; Tue, 25 May 2021 16:05:12 +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 4F24A340E0A for ; Tue, 25 May 2021 16:05:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AF7E17A3 for ; Tue, 25 May 2021 16:05:07 +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: <1621958702.e7b6b7bf15db0f610d47d324b564abc244a76a7f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/mutagen/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/mutagen/mutagen-1.45.1.ebuild X-VCS-Directories: media-libs/mutagen/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e7b6b7bf15db0f610d47d324b564abc244a76a7f X-VCS-Branch: master Date: Tue, 25 May 2021 16:05:07 +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: 2348bf83-2661-4bc6-9de5-cdf362727552 X-Archives-Hash: a53def9f3c9126f7d0af89d7d24298f2 commit: e7b6b7bf15db0f610d47d324b564abc244a76a7f Author: Zamarin Arthur gmail com> AuthorDate: Tue May 25 14:14:18 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue May 25 16:05:02 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7b6b7bf media-libs/mutagen: cleanup doc generation Signed-off-by: Zamarin Arthur gmail.com> Signed-off-by: Michał Górny gentoo.org> media-libs/mutagen/mutagen-1.45.1.ebuild | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/media-libs/mutagen/mutagen-1.45.1.ebuild b/media-libs/mutagen/mutagen-1.45.1.ebuild index 2f34aa45389..bc580066567 100644 --- a/media-libs/mutagen/mutagen-1.45.1.ebuild +++ b/media-libs/mutagen/mutagen-1.45.1.ebuild @@ -4,7 +4,6 @@ EAPI=7 PYTHON_COMPAT=( python3_{7,8,9} ) -DISTUTILS_USE_SETUPTOOLS=rdepend inherit distutils-r1 DESCRIPTION="Audio metadata tag reader and writer implemented in pure Python" @@ -14,15 +13,11 @@ SRC_URI="https://github.com/quodlibet/mutagen/releases/download/release-${PV}/${ LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ~hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux" -IUSE="doc test" +IUSE="test" # TODO: Missing support for >=dev-python/eyeD3-0.7 API # test? ( >=dev-python/eyeD3-0.7 ) BDEPEND=" - doc? ( - dev-python/sphinx - dev-python/sphinx_rtd_theme - ) test? ( dev-python/hypothesis[${PYTHON_USEDEP}] dev-python/pyflakes[${PYTHON_USEDEP}] @@ -32,16 +27,11 @@ BDEPEND=" RESTRICT="!test? ( test )" -python_compile_all() { - use doc && emake -C docs -} +DOCS=( NEWS README.rst ) + +distutils_enable_sphinx docs \ + dev-python/sphinx_rtd_theme python_test() { esetup.py test --no-quality } - -python_install_all() { - local DOCS=( NEWS README.rst ) - use doc && local HTML_DOCS=( docs/_build/. ) - distutils-r1_python_install_all -}