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 268FB1382C5 for ; Wed, 24 Jun 2020 07:07:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0C61DE0959; Wed, 24 Jun 2020 07:07:23 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 E563CE0957 for ; Wed, 24 Jun 2020 07:07:22 +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 A01C234EDE8 for ; Wed, 24 Jun 2020 07:07:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 30CFD2C5 for ; Wed, 24 Jun 2020 07:07:16 +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: <1592982421.4afcf436b076dceaa4b2cec1d8c4f588ac542f02.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/wtforms/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/wtforms/wtforms-2.2.1.ebuild X-VCS-Directories: dev-python/wtforms/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4afcf436b076dceaa4b2cec1d8c4f588ac542f02 X-VCS-Branch: master Date: Wed, 24 Jun 2020 07:07:16 +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: 880de00d-2735-4a9e-9908-16782b97a106 X-Archives-Hash: 5522743b5cf58b676f1affa520f13860 commit: 4afcf436b076dceaa4b2cec1d8c4f588ac542f02 Author: Michał Górny gentoo org> AuthorDate: Wed Jun 24 06:35:11 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jun 24 07:07:01 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4afcf436 dev-python/wtforms: Port to py3.9 Signed-off-by: Michał Górny gentoo.org> dev-python/wtforms/wtforms-2.2.1.ebuild | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/dev-python/wtforms/wtforms-2.2.1.ebuild b/dev-python/wtforms/wtforms-2.2.1.ebuild index aeb0c540d6e..e52ad989976 100644 --- a/dev-python/wtforms/wtforms-2.2.1.ebuild +++ b/dev-python/wtforms/wtforms-2.2.1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( pypy3 python2_7 python3_{6,7,8} ) +PYTHON_COMPAT=( pypy3 python2_7 python3_{6..9} ) inherit distutils-r1 MY_PN="WTForms" @@ -22,8 +22,6 @@ RESTRICT="!test? ( test )" S="${WORKDIR}/${MY_P}" BDEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - doc? ( >=dev-python/sphinx-0.6[${PYTHON_USEDEP}] ) test? ( dev-python/Babel[${PYTHON_USEDEP}] dev-python/python-dateutil[${PYTHON_USEDEP}] @@ -32,6 +30,8 @@ BDEPEND=" ) " +distutils_enable_sphinx docs + python_prepare_all() { # Extension-tests are written for an older version of Django # Disable pep8 even when it is installed @@ -43,17 +43,6 @@ python_prepare_all() { distutils-r1_python_prepare_all } -python_compile_all() { - if use doc; then - emake -C docs html - HTML_DOCS=( docs/_build/html/. ) - fi -} - python_test() { "${EPYTHON}" tests/runtests.py -v || die } - -python_install_all() { - distutils-r1_python_install_all -}