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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B328D158287 for ; Mon, 12 May 2025 18:49:26 +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 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 9D72D343517 for ; Mon, 12 May 2025 18:49:26 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 9ED091102C5; Mon, 12 May 2025 18:49:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 bobolink.gentoo.org (Postfix) with ESMTPS id 947131102C5 for ; Mon, 12 May 2025 18:49:25 +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 4F4A5343519 for ; Mon, 12 May 2025 18:49:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B646F2774 for ; Mon, 12 May 2025 18:49:23 +0000 (UTC) From: "Sam James" 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" Message-ID: <1747075239.220b50e611be998967218264e73b0564e302f117.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.5.ebuild X-VCS-Directories: dev-python/setproctitle/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 220b50e611be998967218264e73b0564e302f117 X-VCS-Branch: master Date: Mon, 12 May 2025 18:49:23 +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: 4cdef4ff-5bea-4ca3-b4da-c64052b4d846 X-Archives-Hash: ca00ccdfd1c9f9953994788a2e2521aa commit: 220b50e611be998967218264e73b0564e302f117 Author: Sam James gentoo org> AuthorDate: Mon May 12 18:39:50 2025 +0000 Commit: Sam James gentoo org> CommitDate: Mon May 12 18:40:39 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=220b50e6 dev-python/setproctitle: drop -std=gnu17 workaround It was fixed upstream in 1.3.5. Bug: https://bugs.gentoo.org/943816 Signed-off-by: Sam James gentoo.org> dev-python/setproctitle/setproctitle-1.3.5.ebuild | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/dev-python/setproctitle/setproctitle-1.3.5.ebuild b/dev-python/setproctitle/setproctitle-1.3.5.ebuild index 7acebad1160c..5f206d2ad779 100644 --- a/dev-python/setproctitle/setproctitle-1.3.5.ebuild +++ b/dev-python/setproctitle/setproctitle-1.3.5.ebuild @@ -9,7 +9,7 @@ DISTUTILS_EXT=1 DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{11..14} pypy3_11 ) -inherit distutils-r1 flag-o-matic pypi +inherit distutils-r1 pypi DESCRIPTION="Allow customization of the process title" HOMEPAGE=" @@ -29,10 +29,3 @@ src_prepare() { # remove the override that makes extension builds non-fatal sed -i -e '/cmdclass/d' setup.py || die } - -src_configure() { - # https://github.com/dvarrazzo/py-setproctitle/issues/145 - append-cflags -std=gnu17 - - distutils-r1_src_configure -}