From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1690642-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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1EC0D158042 for <garchives@archives.gentoo.org>; Sat, 16 Nov 2024 23:27:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 495DCE09ED; Sat, 16 Nov 2024 23:27:55 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 32076E09ED for <gentoo-commits@lists.gentoo.org>; Sat, 16 Nov 2024 23:27:55 +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 6A1B334131D for <gentoo-commits@lists.gentoo.org>; Sat, 16 Nov 2024 23:27:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C1D2318DD for <gentoo-commits@lists.gentoo.org>; Sat, 16 Nov 2024 23:27:52 +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: <1731799652.8b979f80983c2bb7f219e65d0f55aab4f43b32b3.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/git/git-2.47.0-r1.ebuild dev-vcs/git/git-9999-r1.ebuild dev-vcs/git/git-9999-r2.ebuild dev-vcs/git/git-9999-r3.ebuild dev-vcs/git/git-9999.ebuild X-VCS-Directories: dev-vcs/git/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 8b979f80983c2bb7f219e65d0f55aab4f43b32b3 X-VCS-Branch: master Date: Sat, 16 Nov 2024 23:27:52 +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: f5da3816-8e2a-41dc-b181-da5b0f5a39b7 X-Archives-Hash: 03ea59cbc32211d7d84bc758d376c0ef commit: 8b979f80983c2bb7f219e65d0f55aab4f43b32b3 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sat Nov 16 23:26:57 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Nov 16 23:27:32 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b979f80 dev-vcs/git: build with -std=gnu17 Bug: https://lore.kernel.org/git/87ed3apy2u.fsf <AT> gentoo.org/ Signed-off-by: Sam James <sam <AT> gentoo.org> dev-vcs/git/git-2.47.0-r1.ebuild | 5 ++++- dev-vcs/git/git-9999-r1.ebuild | 5 ++++- dev-vcs/git/git-9999-r2.ebuild | 5 ++++- dev-vcs/git/git-9999-r3.ebuild | 5 ++++- dev-vcs/git/git-9999.ebuild | 5 ++++- 5 files changed, 20 insertions(+), 5 deletions(-) diff --git a/dev-vcs/git/git-2.47.0-r1.ebuild b/dev-vcs/git/git-2.47.0-r1.ebuild index 0de66a8aadb3..02512210c101 100644 --- a/dev-vcs/git/git-2.47.0-r1.ebuild +++ b/dev-vcs/git/git-2.47.0-r1.ebuild @@ -8,7 +8,7 @@ GENTOO_DEPEND_ON_PERL=no # bug #329479: git-remote-testgit is not multiple-version aware PYTHON_COMPAT=( python3_{10..13} ) -inherit toolchain-funcs perl-module bash-completion-r1 optfeature plocale python-single-r1 systemd +inherit flag-o-matic toolchain-funcs perl-module bash-completion-r1 optfeature plocale python-single-r1 systemd PLOCALES="bg ca de es fr is it ko pt_PT ru sv vi zh_CN" @@ -326,6 +326,9 @@ git_emake() { } src_configure() { + # https://lore.kernel.org/git/87ed3apy2u.fsf@gentoo.org/ + append-cflags -std=gnu17 + exportmakeopts } diff --git a/dev-vcs/git/git-9999-r1.ebuild b/dev-vcs/git/git-9999-r1.ebuild index 17a8afd1ac8b..39ba0bb5efe7 100644 --- a/dev-vcs/git/git-9999-r1.ebuild +++ b/dev-vcs/git/git-9999-r1.ebuild @@ -8,7 +8,7 @@ GENTOO_DEPEND_ON_PERL=no # bug #329479: git-remote-testgit is not multiple-version aware PYTHON_COMPAT=( python3_{10..13} ) -inherit toolchain-funcs perl-module bash-completion-r1 optfeature plocale python-single-r1 systemd +inherit flag-o-matic toolchain-funcs perl-module bash-completion-r1 optfeature plocale python-single-r1 systemd PLOCALES="bg ca de es fr is it ko pt_PT ru sv vi zh_CN" @@ -323,6 +323,9 @@ git_emake() { } src_configure() { + # https://lore.kernel.org/git/87ed3apy2u.fsf@gentoo.org/ + append-cflags -std=gnu17 + exportmakeopts } diff --git a/dev-vcs/git/git-9999-r2.ebuild b/dev-vcs/git/git-9999-r2.ebuild index 17a8afd1ac8b..39ba0bb5efe7 100644 --- a/dev-vcs/git/git-9999-r2.ebuild +++ b/dev-vcs/git/git-9999-r2.ebuild @@ -8,7 +8,7 @@ GENTOO_DEPEND_ON_PERL=no # bug #329479: git-remote-testgit is not multiple-version aware PYTHON_COMPAT=( python3_{10..13} ) -inherit toolchain-funcs perl-module bash-completion-r1 optfeature plocale python-single-r1 systemd +inherit flag-o-matic toolchain-funcs perl-module bash-completion-r1 optfeature plocale python-single-r1 systemd PLOCALES="bg ca de es fr is it ko pt_PT ru sv vi zh_CN" @@ -323,6 +323,9 @@ git_emake() { } src_configure() { + # https://lore.kernel.org/git/87ed3apy2u.fsf@gentoo.org/ + append-cflags -std=gnu17 + exportmakeopts } diff --git a/dev-vcs/git/git-9999-r3.ebuild b/dev-vcs/git/git-9999-r3.ebuild index 17a8afd1ac8b..39ba0bb5efe7 100644 --- a/dev-vcs/git/git-9999-r3.ebuild +++ b/dev-vcs/git/git-9999-r3.ebuild @@ -8,7 +8,7 @@ GENTOO_DEPEND_ON_PERL=no # bug #329479: git-remote-testgit is not multiple-version aware PYTHON_COMPAT=( python3_{10..13} ) -inherit toolchain-funcs perl-module bash-completion-r1 optfeature plocale python-single-r1 systemd +inherit flag-o-matic toolchain-funcs perl-module bash-completion-r1 optfeature plocale python-single-r1 systemd PLOCALES="bg ca de es fr is it ko pt_PT ru sv vi zh_CN" @@ -323,6 +323,9 @@ git_emake() { } src_configure() { + # https://lore.kernel.org/git/87ed3apy2u.fsf@gentoo.org/ + append-cflags -std=gnu17 + exportmakeopts } diff --git a/dev-vcs/git/git-9999.ebuild b/dev-vcs/git/git-9999.ebuild index 17a8afd1ac8b..39ba0bb5efe7 100644 --- a/dev-vcs/git/git-9999.ebuild +++ b/dev-vcs/git/git-9999.ebuild @@ -8,7 +8,7 @@ GENTOO_DEPEND_ON_PERL=no # bug #329479: git-remote-testgit is not multiple-version aware PYTHON_COMPAT=( python3_{10..13} ) -inherit toolchain-funcs perl-module bash-completion-r1 optfeature plocale python-single-r1 systemd +inherit flag-o-matic toolchain-funcs perl-module bash-completion-r1 optfeature plocale python-single-r1 systemd PLOCALES="bg ca de es fr is it ko pt_PT ru sv vi zh_CN" @@ -323,6 +323,9 @@ git_emake() { } src_configure() { + # https://lore.kernel.org/git/87ed3apy2u.fsf@gentoo.org/ + append-cflags -std=gnu17 + exportmakeopts }