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 E179E158090 for ; Wed, 11 May 2022 11:47:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 29DA9E08EF; Wed, 11 May 2022 11:47:12 +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 0884EE08EF for ; Wed, 11 May 2022 11:47:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 1CAE534121F for ; Wed, 11 May 2022 11:47:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A9DC53BF for ; Wed, 11 May 2022 11:47:08 +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: <1652269624.896273c19146f20e7077796790787062bf29970f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/lxml/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/lxml/lxml-4.8.0-r1.ebuild X-VCS-Directories: dev-python/lxml/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 896273c19146f20e7077796790787062bf29970f X-VCS-Branch: master Date: Wed, 11 May 2022 11:47:08 +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: 1f3f7cdf-6fd2-4a6a-bb67-e3e8125ac43a X-Archives-Hash: 86b5b2daa5d2c7a487277a52354e97b0 commit: 896273c19146f20e7077796790787062bf29970f Author: Michał Górny gentoo org> AuthorDate: Wed May 11 11:34:57 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed May 11 11:47:04 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=896273c1 dev-python/lxml: Enable py3.11 Signed-off-by: Michał Górny gentoo.org> dev-python/lxml/lxml-4.8.0-r1.ebuild | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/dev-python/lxml/lxml-4.8.0-r1.ebuild b/dev-python/lxml/lxml-4.8.0-r1.ebuild index 59de9e826e8a..26e673acd7a9 100644 --- a/dev-python/lxml/lxml-4.8.0-r1.ebuild +++ b/dev-python/lxml/lxml-4.8.0-r1.ebuild @@ -4,12 +4,16 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..10} pypy3 ) +PYTHON_COMPAT=( python3_{8..11} pypy3 ) inherit distutils-r1 optfeature toolchain-funcs DESCRIPTION="A Pythonic binding for the libxml2 and libxslt libraries" -HOMEPAGE="https://lxml.de/ https://pypi.org/project/lxml/ https://github.com/lxml/lxml" +HOMEPAGE=" + https://lxml.de/ + https://pypi.org/project/lxml/ + https://github.com/lxml/lxml +" SRC_URI="https://github.com/lxml/lxml/archive/${P}.tar.gz" S=${WORKDIR}/lxml-${P} @@ -20,10 +24,12 @@ IUSE="doc examples +threads test" RESTRICT="!test? ( test )" # Note: lib{xml2,xslt} are used as C libraries, not Python modules. -RDEPEND=" +DEPEND=" >=dev-libs/libxml2-2.9.12-r2 >=dev-libs/libxslt-1.1.28" -DEPEND="${RDEPEND}" +RDEPEND=" + ${DEPEND} +" BDEPEND=" virtual/pkgconfig dev-python/cython[${PYTHON_USEDEP}] @@ -35,8 +41,10 @@ BDEPEND=" dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}] ') ) - test? ( dev-python/cssselect[${PYTHON_USEDEP}] ) - " + test? ( + dev-python/cssselect[${PYTHON_USEDEP}] + ) +" PATCHES=( "${FILESDIR}"/${PN}-4.6.0-tests-pypy.patch