From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1174439-garchives=archives.gentoo.org@lists.gentoo.org> 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 D31ED13835A for <garchives@archives.gentoo.org>; Tue, 26 May 2020 16:23:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 12939E08F7; Tue, 26 May 2020 16:23:45 +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 ED00AE08F7 for <gentoo-commits@lists.gentoo.org>; Tue, 26 May 2020 16:23:44 +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 CC3B034EDE8 for <gentoo-commits@lists.gentoo.org>; Tue, 26 May 2020 16:23:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D5EF4270 for <gentoo-commits@lists.gentoo.org>; Tue, 26 May 2020 16:23:40 +0000 (UTC) From: "Michał Górny" <mgorny@gentoo.org> 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" <mgorny@gentoo.org> Message-ID: <1590510214.b71bfcdfd53f3b1377584bf6ffe1b3f9f43d77fb.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/html5lib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/html5lib/html5lib-1.0.1-r2.ebuild X-VCS-Directories: dev-python/html5lib/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: b71bfcdfd53f3b1377584bf6ffe1b3f9f43d77fb X-VCS-Branch: master Date: Tue, 26 May 2020 16:23:40 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 977b5f97-0a24-4e3c-9f2d-d6084dd40b65 X-Archives-Hash: 924fab7cfac49d92cd72bde89972bd88 commit: b71bfcdfd53f3b1377584bf6ffe1b3f9f43d77fb Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Tue May 26 16:06:46 2020 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Tue May 26 16:23:34 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b71bfcdf dev-python/html5lib: Port to py39 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/html5lib/html5lib-1.0.1-r2.ebuild | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/dev-python/html5lib/html5lib-1.0.1-r2.ebuild b/dev-python/html5lib/html5lib-1.0.1-r2.ebuild index 89f23560821..b2553ca1f8c 100644 --- a/dev-python/html5lib/html5lib-1.0.1-r2.ebuild +++ b/dev-python/html5lib/html5lib-1.0.1-r2.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python{2_7,3_{6,7,8}} pypy3 ) +PYTHON_COMPAT=( python{2_7,3_{6,7,8,9}} pypy3 ) PYTHON_REQ_USE="xml(+)" inherit distutils-r1 @@ -16,18 +16,17 @@ LICENSE="MIT" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 ~x64-macos" IUSE="test" +RESTRICT+=" !test? ( test )" RDEPEND=">=dev-python/six-1.9[${PYTHON_USEDEP}] dev-python/webencodings[${PYTHON_USEDEP}]" -BDEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] +BDEPEND=" test? ( + ${RDEPEND} dev-python/pytest-expect[${PYTHON_USEDEP}] dev-python/mock[${PYTHON_USEDEP}] )" -RESTRICT+=" !test? ( test )" - PATCHES=( # fix deprecated import "${FILESDIR}/html5lib-1.0.1-collections-abc.patch"