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 4731F1580BA for ; Fri, 27 Aug 2021 10:29:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 47E69E0875; Fri, 27 Aug 2021 10:29:46 +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 2CFC4E0875 for ; Fri, 27 Aug 2021 10:29:46 +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 33621342C5A for ; Fri, 27 Aug 2021 10:29:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7437648 for ; Fri, 27 Aug 2021 10:29:42 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1630060034.4e3e24a192e9d620c7bcbccf536c3c68f04fd363.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/utidylib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/utidylib/utidylib-0.6-r1.ebuild dev-python/utidylib/utidylib-0.7.ebuild X-VCS-Directories: dev-python/utidylib/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 4e3e24a192e9d620c7bcbccf536c3c68f04fd363 X-VCS-Branch: master Date: Fri, 27 Aug 2021 10:29:42 +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: e8802752-7fad-416f-bde1-c3b373bbb3df X-Archives-Hash: 84cef952a9f1d4a18e0c31ff68b8b33e commit: 4e3e24a192e9d620c7bcbccf536c3c68f04fd363 Author: Marek Szuba gentoo org> AuthorDate: Fri Aug 27 10:27:14 2021 +0000 Commit: Marek Szuba gentoo org> CommitDate: Fri Aug 27 10:27:14 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e3e24a1 dev-python/utidylib: allow both htmltidy-5+ and tidy-html5 Signed-off-by: Marek Szuba gentoo.org> dev-python/utidylib/utidylib-0.6-r1.ebuild | 6 +++--- dev-python/utidylib/utidylib-0.7.ebuild | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-python/utidylib/utidylib-0.6-r1.ebuild b/dev-python/utidylib/utidylib-0.6-r1.ebuild index 9f3834f74ca..3b82a2b1f54 100644 --- a/dev-python/utidylib/utidylib-0.6-r1.ebuild +++ b/dev-python/utidylib/utidylib-0.6-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{7,8,9} ) +PYTHON_COMPAT=( python3_{8,9} ) MY_P="uTidylib-${PV}" inherit distutils-r1 @@ -28,7 +28,7 @@ DEPEND=" dev-python/six[${PYTHON_USEDEP}] " RDEPEND=" - app-text/tidy-html5 + || ( app-text/tidy-html5 >=app-text/htmltidy-5.0.0 ) " RESTRICT="!test? ( test )" diff --git a/dev-python/utidylib/utidylib-0.7.ebuild b/dev-python/utidylib/utidylib-0.7.ebuild index bf503955762..d6947dea0a0 100644 --- a/dev-python/utidylib/utidylib-0.7.ebuild +++ b/dev-python/utidylib/utidylib-0.7.ebuild @@ -16,7 +16,7 @@ LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86" -RDEPEND="app-text/tidy-html5" +RDEPEND="|| ( app-text/tidy-html5 >=app-text/htmltidy-5.0.0 )" DEPEND="dev-python/six[${PYTHON_USEDEP}]" distutils_enable_tests pytest