From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 3FFD015827B for ; Fri, 15 Aug 2025 19:13:57 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 2B6BA340F0E for ; Fri, 15 Aug 2025 19:13:57 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 5FAF0110560; Fri, 15 Aug 2025 19:13:52 +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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 597EA110560 for ; Fri, 15 Aug 2025 19:13:52 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1462A340CD8 for ; Fri, 15 Aug 2025 19:13:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 342E93355 for ; Fri, 15 Aug 2025 19:13:50 +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: <1755285220.c97f8d9f22b6bd8eb1034c0a14e21624fd2ee7ae.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/nh3/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/nh3/nh3-0.3.0.ebuild X-VCS-Directories: dev-python/nh3/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c97f8d9f22b6bd8eb1034c0a14e21624fd2ee7ae X-VCS-Branch: master Date: Fri, 15 Aug 2025 19:13:50 +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: 7ece61a6-c138-461b-88e5-0b5e4f97f0e5 X-Archives-Hash: 4efee541eb37d6dc8d38a95c4aef96de commit: c97f8d9f22b6bd8eb1034c0a14e21624fd2ee7ae Author: Michał Górny gentoo org> AuthorDate: Fri Aug 15 17:39:03 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Aug 15 19:13:40 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c97f8d9f dev-python/nh3: Set RUST_MIN_VER Closes: https://bugs.gentoo.org/961537 Signed-off-by: Michał Górny gentoo.org> dev-python/nh3/nh3-0.3.0.ebuild | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/dev-python/nh3/nh3-0.3.0.ebuild b/dev-python/nh3/nh3-0.3.0.ebuild index 8a92deb9c292..90c150569f4d 100644 --- a/dev-python/nh3/nh3-0.3.0.ebuild +++ b/dev-python/nh3/nh3-0.3.0.ebuild @@ -3,6 +3,11 @@ EAPI=8 +DISTUTILS_EXT=1 +DISTUTILS_USE_PEP517=maturin +PYTHON_COMPAT=( pypy3_11 python3_{11..14} ) + +RUST_MIN_VER="1.82.0" CRATES=" aliasable@0.1.3 ammonia@4.1.1 @@ -109,10 +114,6 @@ CRATES=" zerovec@0.11.2 " -DISTUTILS_EXT=1 -DISTUTILS_USE_PEP517=maturin -PYTHON_COMPAT=( pypy3_11 python3_{11..14} ) - inherit cargo distutils-r1 pypi DESCRIPTION="Ammonia HTML sanitizer Python binding"