From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1678245-garchives=archives.gentoo.org@lists.gentoo.org> 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 DAD3A15807A for <garchives@archives.gentoo.org>; Wed, 9 Oct 2024 10:17:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ADE97E29AA; Wed, 9 Oct 2024 10:17:00 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 954A7E29AA for <gentoo-commits@lists.gentoo.org>; Wed, 9 Oct 2024 10:17:00 +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 75DA7340BEA for <gentoo-commits@lists.gentoo.org>; Wed, 9 Oct 2024 10:16:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CBECD1F42 for <gentoo-commits@lists.gentoo.org>; Wed, 9 Oct 2024 10:16:57 +0000 (UTC) From: "Sam James" <sam@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, "Sam James" <sam@gentoo.org> Message-ID: <1728468994.826384315f7c1bcb8ff5aa4cd522b22348d4e815.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/setproctitle/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/setproctitle/setproctitle-1.3.3.ebuild X-VCS-Directories: dev-python/setproctitle/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 826384315f7c1bcb8ff5aa4cd522b22348d4e815 X-VCS-Branch: master Date: Wed, 9 Oct 2024 10:16:57 +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: 3bdc41b4-46cb-4fbe-a3bd-2e02ee8da6dd X-Archives-Hash: 3de6cea6e8baa2ee46f4d1e50523b713 commit: 826384315f7c1bcb8ff5aa4cd522b22348d4e815 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Wed Oct 9 09:32:33 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed Oct 9 10:16:34 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82638431 dev-python/setproctitle: add note re DISTUTILS_EXT The extension could be made optional here but it's not useful at all to do so as it turns the package into a noop with warnings. Signed-off-by: Sam James <sam <AT> gentoo.org> dev-python/setproctitle/setproctitle-1.3.3.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev-python/setproctitle/setproctitle-1.3.3.ebuild b/dev-python/setproctitle/setproctitle-1.3.3.ebuild index 0293c81c4c3d..b347e9c3c3e0 100644 --- a/dev-python/setproctitle/setproctitle-1.3.3.ebuild +++ b/dev-python/setproctitle/setproctitle-1.3.3.ebuild @@ -3,6 +3,8 @@ EAPI=8 +# The package has a fallback implementation which is a noop but warns +# if the extensions weren't built, so we always build them. DISTUTILS_EXT=1 DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{10..13} pypy3 )