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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id ECEE915807B for ; Sat, 16 Nov 2024 09:19:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EA564E0891; Sat, 16 Nov 2024 09:19:28 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 9BDBCE089C for ; Sat, 16 Nov 2024 09:19:28 +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 84649340C15 for ; Sat, 16 Nov 2024 09:19:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F3F3AE7 for ; Sat, 16 Nov 2024 09:19:25 +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: <1731748719.fbdb7f4bfb559a5812c3c0c5f33ea56c74831925.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/sudo/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/sudo/sudo-1.9.15_p5.ebuild app-admin/sudo/sudo-1.9.16-r1.ebuild app-admin/sudo/sudo-1.9.16_p1.ebuild app-admin/sudo/sudo-9999.ebuild X-VCS-Directories: app-admin/sudo/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: fbdb7f4bfb559a5812c3c0c5f33ea56c74831925 X-VCS-Branch: master Date: Sat, 16 Nov 2024 09:19:25 +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: 56dc6252-2928-47dd-8c28-797d4a9f1697 X-Archives-Hash: 16a0c170b42ed60349e06ab986f78b1e commit: fbdb7f4bfb559a5812c3c0c5f33ea56c74831925 Author: Sam James gentoo org> AuthorDate: Sat Nov 16 09:10:51 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sat Nov 16 09:18:39 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbdb7f4b app-admin/sudo: pass -std=gnu17 GCC trunk now defaults to -std=gnu23 with which sudo is not yet compatible, so build with -std=gnu17 for now. Bug: https://github.com/sudo-project/sudo/issues/420 Signed-off-by: Sam James gentoo.org> app-admin/sudo/sudo-1.9.15_p5.ebuild | 5 ++++- app-admin/sudo/sudo-1.9.16-r1.ebuild | 5 ++++- app-admin/sudo/sudo-1.9.16_p1.ebuild | 5 ++++- app-admin/sudo/sudo-9999.ebuild | 5 ++++- 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/app-admin/sudo/sudo-1.9.15_p5.ebuild b/app-admin/sudo/sudo-1.9.15_p5.ebuild index 70d37ba4d885..a4b306483ee4 100644 --- a/app-admin/sudo/sudo-1.9.15_p5.ebuild +++ b/app-admin/sudo/sudo-1.9.15_p5.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit pam libtool tmpfiles toolchain-funcs +inherit flag-o-matic pam libtool tmpfiles toolchain-funcs MY_P="${P/_/}" MY_P="${MY_P/beta/b}" @@ -144,6 +144,9 @@ src_configure() { # bug #767712 tc-export PKG_CONFIG + # https://github.com/sudo-project/sudo/issues/420 + append-cflags -std=gnu17 + # - audit: somebody got to explain me how I can test this before I # enable it.. - Diego # - plugindir: autoconf code is crappy and does not delay evaluation diff --git a/app-admin/sudo/sudo-1.9.16-r1.ebuild b/app-admin/sudo/sudo-1.9.16-r1.ebuild index 6e25ed577a92..6954116fe1d7 100644 --- a/app-admin/sudo/sudo-1.9.16-r1.ebuild +++ b/app-admin/sudo/sudo-1.9.16-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit autotools pam tmpfiles toolchain-funcs +inherit autotools flag-o-matic pam tmpfiles toolchain-funcs MY_P="${P/_/}" MY_P="${MY_P/beta/b}" @@ -150,6 +150,9 @@ src_configure() { # bug #767712 tc-export PKG_CONFIG + # https://github.com/sudo-project/sudo/issues/420 + append-cflags -std=gnu17 + # - audit: somebody got to explain me how I can test this before I # enable it.. - Diego # - plugindir: autoconf code is crappy and does not delay evaluation diff --git a/app-admin/sudo/sudo-1.9.16_p1.ebuild b/app-admin/sudo/sudo-1.9.16_p1.ebuild index 5a882d3247ac..c537dac71b70 100644 --- a/app-admin/sudo/sudo-1.9.16_p1.ebuild +++ b/app-admin/sudo/sudo-1.9.16_p1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit pam tmpfiles toolchain-funcs +inherit flag-o-matic pam tmpfiles toolchain-funcs MY_P="${P/_/}" MY_P="${MY_P/beta/b}" @@ -148,6 +148,9 @@ src_configure() { # bug #767712 tc-export PKG_CONFIG + # https://github.com/sudo-project/sudo/issues/420 + append-cflags -std=gnu17 + # - audit: somebody got to explain me how I can test this before I # enable it.. - Diego # - plugindir: autoconf code is crappy and does not delay evaluation diff --git a/app-admin/sudo/sudo-9999.ebuild b/app-admin/sudo/sudo-9999.ebuild index 5a882d3247ac..c537dac71b70 100644 --- a/app-admin/sudo/sudo-9999.ebuild +++ b/app-admin/sudo/sudo-9999.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit pam tmpfiles toolchain-funcs +inherit flag-o-matic pam tmpfiles toolchain-funcs MY_P="${P/_/}" MY_P="${MY_P/beta/b}" @@ -148,6 +148,9 @@ src_configure() { # bug #767712 tc-export PKG_CONFIG + # https://github.com/sudo-project/sudo/issues/420 + append-cflags -std=gnu17 + # - audit: somebody got to explain me how I can test this before I # enable it.. - Diego # - plugindir: autoconf code is crappy and does not delay evaluation